/* *************************************************************************** copyright (C) 2003 Adam Geitgey 2003 Sven Leiber 2000-2001 Matthias Ettrich 2000-2001 Matthias Elter 2001 Carsten Pfeiffer 2001 Martijn Klingens *************************************************************************** *************************************************************************** * * * 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. * * * *************************************************************************** */ #ifndef TESTCARDAPPLET_H #define TESTCARDAPPLET_H #include #include #include #include class KWinModule; typedef long unsigned int Atom; class Systemtray : public TQWidget { Q_OBJECT public: Systemtray(TQWidget* parent); ~Systemtray(); void updateBackgroundPixmap ( const TQPixmap & ); int getCurrentWindowCount(); virtual void initSystray( void ); public slots: void updateTrayWindows(); int getTraySize(); void systemTrayWindowAdded( WId w ); void systemTrayWindowRemoved( WId w ); void layoutSystray(); signals: void updated(); private: KWinModule *twin_module; TQValueList systemTrayWindows; TQPtrList m_Wins; Atom net_system_tray_selection; Atom net_system_tray_opcode; int no_of_systray_windows; }; #endif