summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/graphwindow.cpp
authormickeyl <mickeyl>2003-05-05 22:27:02 (UTC)
committer mickeyl <mickeyl>2003-05-05 22:27:02 (UTC)
commit58a78cbe1bc5ded219ba23432041f20e03404403 (patch) (side-by-side diff)
treee06706f3cbd0303cdcd52ab4a94650b2059ed07c /noncore/net/wellenreiter/gui/graphwindow.cpp
parent3f8c29b3cbbb32864694fe9c95b43d1cb777360e (diff)
downloadopie-58a78cbe1bc5ded219ba23432041f20e03404403.zip
opie-58a78cbe1bc5ded219ba23432041f20e03404403.tar.gz
opie-58a78cbe1bc5ded219ba23432041f20e03404403.tar.bz2
major overhaul of the configuration window - showing what will come soon...
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
p->drawPoint( x+width-1, y );
}
void MFrequencySpectrum::drawBar( QPainter* p, int x, int y, int width, int height, int maxheight )
{
-/* int h1 = 133; int h2 = 0;
+ int h1 = 133; int h2 = 0;
int s1 = 200; int s2 = 255;
- int v1 = 140; int v2 = 255; */
+ int v1 = 140; int v2 = 255;
- int h1 = 196; int h2 = 194;
+ /*int h1 = 196; int h2 = 194;
int s1 = 85; int s2 = 15;
- int v1 = 95; int v2 = 237;
+ int v1 = 95; int v2 = 237;*/
QColor c( 120, 60, 200 );
for ( int i = 0; i < height; ++i )
{
int h = (h2-h1)*i/maxheight + h1;
int s = (s2-s1)*i/maxheight + s1;
@@ -122,13 +122,13 @@ void Legende::drawContents( QPainter* p )
MGraphWindow::MGraphWindow( QWidget* parent, const char* name, WFlags f )
:QVBox( parent, name, f )
{
spectrum = new MFrequencySpectrum( 14, this );
legende = new Legende( 14, this );
- startTimer( 50 );
+ startTimer( 50 ); //FIXME: tweak
//testGraph();
};
@@ -143,13 +143,13 @@ void MGraphWindow::testGraph()
void MGraphWindow::timerEvent( QTimerEvent* e )
{
for ( int i = 0; i < 14; i++ )
{
- spectrum->decrease( i, 4 );
+ spectrum->decrease( i, 1 ); //TODO: make this customizable?
}
spectrum->repaint();
}
void MGraphWindow::traffic( int channel, int signal )