/* This file is part of Clementine. Copyright 2003-2005, Max Howell Copyright 2009-2010, David Sansome Copyright 2010, 2014, John Maguire Copyright 2014-2015, Mark Furneaux Copyright 2014, Krzysztof A. Sobiecki Clementine is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Clementine is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Clementine. If not, see . */ /* Original Author: Max Howell 2003-2005 */ #ifndef ANALYZERS_BLOCKANALYZER_H_ #define ANALYZERS_BLOCKANALYZER_H_ #include "analyzerbase.h" #include class QResizeEvent; class QMouseEvent; class QPalette; class BlockAnalyzer : public Analyzer::Base { Q_OBJECT public: Q_INVOKABLE BlockAnalyzer(QWidget*); ~BlockAnalyzer(); static const uint kHeight; static const uint kWidth; static const uint kMinRows; static const uint kMinColumns; static const uint kMaxColumns; static const uint kFadeSize; static const char* kName; protected: virtual void transform(Analyzer::Scope&); virtual void analyze(QPainter& p, const Analyzer::Scope&, bool new_frame); virtual void resizeEvent(QResizeEvent*); virtual void paletteChange(const QPalette&); virtual void framerateChanged(); virtual void psychedelicModeChanged(bool); void drawBackground(); void determineStep(); private: QPixmap* bar() { return &barPixmap_; } uint columns_, rows_; // number of rows and columns of blocks uint y_; // y-offset from top of widget QPixmap barPixmap_; QPixmap topBarPixmap_; QPixmap background_; QPixmap canvas_; Analyzer::Scope scope_; // so we don't create a vector every frame QVector store_; // current bar kHeights QVector yscale_; QVector fade_bars_; QVector fade_pos_; QVector fade_intensity_; float step_; // rows to fall per frame }; #endif // ANALYZERS_BLOCKANALYZER_H_