/* * Copyright (C) 2003 by Scott Monachello * 2007 the ktimetracker developers * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA. * */ #ifndef TRAY_ICON_H #define TRAY_ICON_H #include #include #include #include "task.h" #include "ktimetrackerpart.h" #include class MainWindow; class TrayIcon : public KStatusNotifierItem { Q_OBJECT public: explicit TrayIcon(MainWindow * parent); explicit TrayIcon(ktimetrackerpart *); TrayIcon(); ~TrayIcon(); private: int _activeIcon; static QVector *icons; QTimer *_taskActiveTimer; public Q_SLOTS: void startClock(); void stopClock(); void resetClock(); void updateToolTip( QList activeTasks); void initToolTip(); protected Q_SLOTS: void advanceClock(); // experiment /* void insertTitle(QString title); private: KMenu *trayPopupMenu; QPopupMenu *trayPopupMenu2; */ }; #endif // TRAY_ICON_H