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
@@ -44,19 +44,19 @@ void MFrequencySpectrum::drawLine( QPainter* p, int x, int y, int width, const Q
44 p->drawPoint( x+width-1, y ); 44 p->drawPoint( x+width-1, y );
45} 45}
46 46
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 )
60 { 60 {
61 int h = (h2-h1)*i/maxheight + h1; 61 int h = (h2-h1)*i/maxheight + h1;
62 int s = (s2-s1)*i/maxheight + s1; 62 int s = (s2-s1)*i/maxheight + s1;
@@ -122,13 +122,13 @@ void Legende::drawContents( QPainter* p )
122 122
123MGraphWindow::MGraphWindow( QWidget* parent, const char* name, WFlags f ) 123MGraphWindow::MGraphWindow( QWidget* parent, const char* name, WFlags f )
124 :QVBox( parent, name, f ) 124 :QVBox( parent, name, 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
132}; 132};
133 133
134 134
@@ -143,13 +143,13 @@ void MGraphWindow::testGraph()
143 143
144 144
145void MGraphWindow::timerEvent( QTimerEvent* e ) 145void 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}
153 153
154 154
155void MGraphWindow::traffic( int channel, int signal ) 155void MGraphWindow::traffic( int channel, int signal )