diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-09 22:47:44 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-09 22:47:44 -0500 |
commit | bdaebee214fb3f7a9c7f6ab38fc57d4bc5f8cd99 (patch) | |
tree | d82f11d620ac9d71064d1cf82b2ce6af6c385f78 /src/toplevel.cpp | |
parent | 747d40114cfce22630e1996a0c155e3ccd329a68 (diff) | |
download | kerberostray-bdaebee214fb3f7a9c7f6ab38fc57d4bc5f8cd99.tar.gz kerberostray-bdaebee214fb3f7a9c7f6ab38fc57d4bc5f8cd99.zip |
Fix FTBFS
Diffstat (limited to 'src/toplevel.cpp')
-rw-r--r-- | src/toplevel.cpp | 36 |
1 files changed, 5 insertions, 31 deletions
diff --git a/src/toplevel.cpp b/src/toplevel.cpp index 6e79055..d1caa0e 100644 --- a/src/toplevel.cpp +++ b/src/toplevel.cpp @@ -50,15 +50,9 @@ #include <kaction.h> #include <knotifydialog.h> -#include "tealist.h" -#include "timeedit.h" #include "toplevel.h" #include "toplevel.moc" - -const int TopLevel::DEFAULT_TEA_TIME = 3*60; - - TopLevel::TopLevel() : KSystemTray() { setBackgroundMode(X11ParentRelative); // what for? @@ -66,8 +60,7 @@ TopLevel::TopLevel() : KSystemTray() KConfig *config = kapp->config(); config->setGroup("Kerberos"); - confAct = new KAction(i18n("&Configure..."), "configure", 0, - TQT_TQOBJECT(this), TQT_SLOT(config()), actionCollection(), "configure"); + confAct = new KAction(i18n("&Configure..."), "configure", 0, TQT_TQOBJECT(this), TQT_SLOT(config()), actionCollection(), "configure"); // create app menu (displayed on right-click) menu = new TQPopupMenu(); @@ -81,11 +74,6 @@ TopLevel::TopLevel() : KSystemTray() confAct->plug(menu); menu->insertItem(SmallIcon("help"), i18n("&Help"), helpMnu); menu->insertItem(SmallIcon("exit"), i18n("Quit"), kapp, TQT_SLOT(quit())); - - confdlg = 0L; - anondlg = 0L; - - stop(); // reset timer, disable some menu entries, etc. } /* slot: signal shutDown() from KApplication */ @@ -130,27 +118,13 @@ void TopLevel::mousePressEvent(TQMouseEvent *event) /** Handle paintEvent (ie. animate icon) */ void TopLevel::paintEvent(TQPaintEvent *) { - TQPixmap *pm = &mugPixmap; - - if (running) { - if (useTrayVis) - pm = &teaAnim1Pixmap; // this is 'mugPixmap' plus brown content - else - pm = &teaNotReadyPixmap; // generic "steeping" icon - } else { - // use simple two-frame "animation" - // FIXME: how about using a TQMovie instead? (eg. MNG) - if (ready) { - if (firstFrame) - pm = &teaAnim1Pixmap; - else - pm = &teaAnim2Pixmap; - } - } + TQPixmap *pm = &noTicketsPixmap; + + // RAJA FIXME TQPixmap base(*pm); // make copy of base pixmap TQPainter p(this); - p.drawPixmap(x, y, base); + p.drawPixmap(0, 0, base); p.end(); } |