-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblockanalyzer.h
79 lines (66 loc) · 2.97 KB
/
blockanalyzer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/****************************************************************************************
* Copyright (c) 2003-2005 Max Howell <[email protected]> *
* *
* This program 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 2 of the License, or (at your option) any later *
* version. *
* *
* This program 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 Pulic License for more details. *
* *
* You should have received a copy of the GNU General Public License along with *
* this program. If not, see <http://www.gnu.org/licenses/>. *
****************************************************************************************/
#ifndef BLOCKANALYZER_H
#define BLOCKANALYZER_H
#include "analyzerbase.h"
#include <QColor>
//Added by qt3to4:
#include <QResizeEvent>
#include <QMouseEvent>
#include <QContextMenuEvent>
#include <QPixmap>
class QResizeEvent;
class QMouseEvent;
class QPalette;
/**
* @author Max Howell
*/
class BlockAnalyzer : public Analyzer::Base2D
{
public:
BlockAnalyzer( QWidget* );
~BlockAnalyzer();
// Signed ints because most of what we compare them against are ints
static const int HEIGHT = 2;
static const int WIDTH = 4;
static const int MIN_ROWS = 3; //arbituary
static const int MIN_COLUMNS = 32; //arbituary
static const int MAX_COLUMNS = 256; //must be 2**n
static const int FADE_SIZE = 90;
protected:
virtual void transform( QVector<float>& );
virtual void analyze( const QVector<float>& );
virtual void paintEvent( QPaintEvent* );
virtual void resizeEvent( QResizeEvent* );
virtual void paletteChange( const QPalette& );
void drawBackground();
void determineStep();
private:
uint m_columns, m_rows; //number of rows and columns of blocks
uint m_y; //y-offset from top of widget
QPixmap m_barPixmap;
QPixmap m_topBarPixmap;
QVector<float> m_scope; //so we don't create a vector every frame
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;
QPixmap m_background;
float m_step; //rows to fall per frame
};
#endif