summaryrefslogtreecommitdiffstats
path: root/superkaramba/src/systemtray.h
blob: 02870a8c587ae395bdb3bd1af5bccc4df5deb52c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 ***************************************************************************
    copyright (C) 2003      Adam Geitgey <adam@rootnode.org>
                  2003      Sven Leiber <s.leiber@web.de>
                  2000-2001 Matthias Ettrich <ettrich@kde.org>
                  2000-2001 Matthias Elter   <elter@kde.org>
                  2001      Carsten Pfeiffer <pfeiffer@kde.org>
                  2001      Martijn Klingens <mklingens@yahoo.com>
 ***************************************************************************

 ***************************************************************************
 *                                                                         *
 *   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 <tqobject.h>
#include <tqpixmap.h>
#include <tqptrlist.h>
#include <qxembed.h>

class KWinModule;

typedef long unsigned int Atom;


class Systemtray : public TQWidget
{
    Q_OBJECT
    TQ_OBJECT
public:
    Systemtray(TQWidget* tqparent);
    ~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 *kwin_module;
    TQValueList<WId> systemTrayWindows;

    TQPtrList<QXEmbed> m_Wins;

    Atom net_system_tray_selection;
    Atom net_system_tray_opcode;

    int no_of_systray_windows;
};

#endif