2009-12-24 20:16:07 +01:00
|
|
|
// Maintainer: Max Howell <mac.howell@methylblue.com>, (C) 2003-5
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef BLOCKANALYZER_H
|
|
|
|
#define BLOCKANALYZER_H
|
|
|
|
|
|
|
|
#include "analyzerbase.h"
|
2010-08-28 20:48:16 +02:00
|
|
|
#include <qcolor.h>
|
2009-12-24 20:16:07 +01:00
|
|
|
|
|
|
|
class QResizeEvent;
|
|
|
|
class QMouseEvent;
|
|
|
|
class QPalette;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Max Howell
|
|
|
|
*/
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
class BlockAnalyzer : public Analyzer::Base {
|
2010-03-20 23:45:54 +01:00
|
|
|
Q_OBJECT
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
|
|
|
Q_INVOKABLE BlockAnalyzer(QWidget*);
|
|
|
|
~BlockAnalyzer();
|
|
|
|
|
|
|
|
static const uint HEIGHT;
|
|
|
|
static const uint WIDTH;
|
|
|
|
static const uint MIN_ROWS;
|
|
|
|
static const uint MIN_COLUMNS;
|
|
|
|
static const uint MAX_COLUMNS;
|
|
|
|
static const uint FADE_SIZE;
|
|
|
|
|
|
|
|
static const char* kName;
|
|
|
|
|
|
|
|
protected:
|
2014-05-13 14:46:22 +02:00
|
|
|
virtual void transform(Analyzer::Scope&);
|
|
|
|
virtual void analyze(QPainter& p, const Analyzer::Scope&, bool new_frame);
|
2014-02-07 16:34:20 +01:00
|
|
|
virtual void resizeEvent(QResizeEvent*);
|
|
|
|
virtual void paletteChange(const QPalette&);
|
2014-05-13 22:43:46 +02:00
|
|
|
virtual void framerateChanged();
|
2014-02-07 16:34:20 +01:00
|
|
|
|
|
|
|
void drawBackground();
|
|
|
|
void determineStep();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QPixmap* bar() { return &m_barPixmap; }
|
|
|
|
|
|
|
|
uint m_columns, m_rows; // number of rows and columns of blocks
|
2014-02-07 17:08:31 +01:00
|
|
|
uint m_y; // y-offset from top of widget
|
2014-02-07 16:34:20 +01:00
|
|
|
QPixmap m_barPixmap;
|
|
|
|
QPixmap m_topBarPixmap;
|
|
|
|
QPixmap m_background;
|
2014-04-27 07:54:42 +02:00
|
|
|
QPixmap canvas_;
|
2014-05-13 14:46:22 +02:00
|
|
|
Analyzer::Scope m_scope; // so we don't create a vector every frame
|
2014-02-07 16:34:20 +01:00
|
|
|
std::vector<float> m_store; // current bar heights
|
|
|
|
std::vector<float> m_yscale;
|
|
|
|
|
|
|
|
// FIXME why can't I namespace these? c++ issue?
|
|
|
|
std::vector<QPixmap> m_fade_bars;
|
|
|
|
std::vector<uint> m_fade_pos;
|
|
|
|
std::vector<int> m_fade_intensity;
|
|
|
|
|
|
|
|
float m_step; // rows to fall per frame
|
2009-12-24 20:16:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|