-rw-r--r-- | noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp index cc1bbbb..a7f98be 100644 --- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp +++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp | |||
@@ -53,20 +53,20 @@ void StockTickerPluginWidget::init() { | |||
53 | stocktickerTicker->setMinimumHeight(15); | 53 | stocktickerTicker->setMinimumHeight(15); |
54 | connect( stocktickerTicker, SIGNAL( mousePressed()), this, SLOT( doStocks() )); | 54 | connect( stocktickerTicker, SIGNAL( mousePressed()), this, SLOT( doStocks() )); |
55 | 55 | ||
56 | layout->addWidget( stocktickerTicker); | 56 | layout->addWidget( stocktickerTicker); |
57 | // Config cfg( "stockticker"); | ||
58 | // cfg.setGroup("Timer"); | ||
59 | // timerDelay= cfg.readNumEntry("Delay",0); | ||
60 | // if(timerDelay > 0 ) | ||
61 | // startTimer(timerDelay*60000); | ||
62 | // qDebug("timer ^ set for %d",(timerDelay*60000)/60000); | ||
57 | 63 | ||
58 | Config cfg( "stockticker"); | ||
59 | cfg.setGroup("Timer"); | ||
60 | timerDelay= cfg.readNumEntry("Delay",0); | ||
61 | if(timerDelay > 0) | ||
62 | startTimer(timerDelay*60000); | ||
63 | |||
64 | } | 64 | } |
65 | 65 | ||
66 | void StockTickerPluginWidget::doStocks() { | 66 | void StockTickerPluginWidget::doStocks() { |
67 | |||
68 | Config cfg( "stockticker"); | 67 | Config cfg( "stockticker"); |
68 | |||
69 | cfg.setGroup( "Symbols" ); | 69 | cfg.setGroup( "Symbols" ); |
70 | QString symbollist; | 70 | QString symbollist; |
71 | symbollist = cfg.readEntry("Symbols", ""); | 71 | symbollist = cfg.readEntry("Symbols", ""); |
72 | symbollist.replace(QRegExp(" "),"+");//seperated by + | 72 | symbollist.replace(QRegExp(" "),"+");//seperated by + |
@@ -247,10 +247,14 @@ void StockTickerPluginWidget::DefProxy(void) { | |||
247 | } | 247 | } |
248 | } | 248 | } |
249 | 249 | ||
250 | void StockTickerPluginWidget::timerEvent( QTimerEvent *e ) { | 250 | void StockTickerPluginWidget::timerEvent( QTimerEvent *e ) { |
251 | qDebug("timer"); | ||
252 | killTimer(e->timerId()); | 251 | killTimer(e->timerId()); |
253 | doStocks(); | 252 | doStocks(); |
253 | Config cfg( "stockticker"); | ||
254 | cfg.setGroup("Timer"); | ||
255 | timerDelay= cfg.readNumEntry("Delay",0); | ||
254 | if(timerDelay > 0) | 256 | if(timerDelay > 0) |
255 | startTimer(timerDelay*60000); | 257 | startTimer(timerDelay*60000); |
258 | qDebug("timer set for %d",(timerDelay*60000)/60000); | ||
259 | |||
256 | } | 260 | } |