summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/graphwindow.cpp
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/gui/graphwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/graphwindow.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/noncore/net/wellenreiter/gui/graphwindow.cpp b/noncore/net/wellenreiter/gui/graphwindow.cpp
index c620fe2..7e1f378 100644
--- a/noncore/net/wellenreiter/gui/graphwindow.cpp
+++ b/noncore/net/wellenreiter/gui/graphwindow.cpp
@@ -47,13 +47,13 @@ void MFrequencySpectrum::drawLine( QPainter* p, int x, int y, int width, const Q
47 47
48void MFrequencySpectrum::drawBar( QPainter* p, int x, int y, int width, int height, int maxheight ) 48void MFrequencySpectrum::drawBar( QPainter* p, int x, int y, int width, int height, int maxheight )
49{ 49{
50/* int h1 = 133; int h2 = 0; 50 int h1 = 133; int h2 = 0;
51 int s1 = 200; int s2 = 255; 51 int s1 = 200; int s2 = 255;
52 int v1 = 140; int v2 = 255; */ 52 int v1 = 140; int v2 = 255;
53 53
54 int h1 = 196; int h2 = 194; 54 /*int h1 = 196; int h2 = 194;
55 int s1 = 85; int s2 = 15; 55 int s1 = 85; int s2 = 15;
56 int v1 = 95; int v2 = 237; 56 int v1 = 95; int v2 = 237;*/
57 57
58 QColor c( 120, 60, 200 ); 58 QColor c( 120, 60, 200 );
59 for ( int i = 0; i < height; ++i ) 59 for ( int i = 0; i < height; ++i )
@@ -125,7 +125,7 @@ MGraphWindow::MGraphWindow( QWidget* parent, const char* name, WFlags f )
125{ 125{
126 spectrum = new MFrequencySpectrum( 14, this ); 126 spectrum = new MFrequencySpectrum( 14, this );
127 legende = new Legende( 14, this ); 127 legende = new Legende( 14, this );
128 startTimer( 50 ); 128 startTimer( 50 ); //FIXME: tweak
129 129
130 //testGraph(); 130 //testGraph();
131 131
@@ -146,7 +146,7 @@ void MGraphWindow::timerEvent( QTimerEvent* e )
146{ 146{
147 for ( int i = 0; i < 14; i++ ) 147 for ( int i = 0; i < 14; i++ )
148 { 148 {
149 spectrum->decrease( i, 4 ); 149 spectrum->decrease( i, 1 ); //TODO: make this customizable?
150 } 150 }
151 spectrum->repaint(); 151 spectrum->repaint();
152} 152}