~ubuntu-branches/ubuntu/trusty/fluxbox/trusty-proposed

« back to all changes in this revision

Viewing changes to src/SystemTray.hh

  • Committer: Bazaar Package Importer
  • Author(s): Dmitry E. Oboukhov
  • Date: 2008-07-01 10:38:14 UTC
  • mfrom: (2.1.12 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080701103814-khx2b6il152x9p93
Tags: 1.0.0+deb1-8
* x-dev has been removed from build-depends (out-of-date package).
* Standards-Version bumped to 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// SystemTray.hh
2
 
// Copyright (c) 2003 - 2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3
 
//
4
 
// Permission is hereby granted, free of charge, to any person obtaining a
5
 
// copy of this software and associated documentation files (the "Software"),
6
 
// to deal in the Software without restriction, including without limitation
7
 
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8
 
// and/or sell copies of the Software, and to permit persons to whom the
9
 
// Software is furnished to do so, subject to the following conditions:
10
 
//
11
 
// The above copyright notice and this permission notice shall be included in
12
 
// all copies or substantial portions of the Software.
13
 
//
14
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
 
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
 
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17
 
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
 
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19
 
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20
 
// DEALINGS IN THE SOFTWARE.
21
 
 
22
 
// $Id: SystemTray.hh 3865 2005-01-24 18:34:57Z mathias $
23
 
 
24
 
#ifndef SYSTEMTRAY_HH
25
 
#define SYSTEMTRAY_HH
26
 
 
27
 
 
28
 
#include "FbTk/FbWindow.hh"
29
 
#include "FbTk/EventHandler.hh"
30
 
#include "FbTk/Observer.hh"
31
 
 
32
 
#include "ToolbarItem.hh"
33
 
#include "ButtonTheme.hh"
34
 
#include "Screen.hh"
35
 
 
36
 
#include <X11/Xlib.h>
37
 
 
38
 
#include <list>
39
 
 
40
 
class AtomHandler;
41
 
 
42
 
class SystemTray: public ToolbarItem, public FbTk::EventHandler, public FbTk::Observer {
43
 
public:
44
 
 
45
 
    explicit SystemTray(const FbTk::FbWindow &parent, ButtonTheme &theme, BScreen& screen);
46
 
    virtual ~SystemTray();
47
 
 
48
 
    void move(int x, int y);
49
 
    void resize(unsigned int width, unsigned int height);
50
 
    void moveResize(int x, int y,
51
 
                    unsigned int width, unsigned int height);
52
 
    void show();
53
 
    void hide();
54
 
 
55
 
    bool active() { return !m_clients.empty(); }
56
 
 
57
 
    bool clientMessage(const XClientMessageEvent &event);
58
 
    void exposeEvent(XExposeEvent &event);
59
 
    void handleEvent(XEvent &event);
60
 
 
61
 
    void addClient(Window win);
62
 
    void removeClient(Window win);
63
 
 
64
 
    unsigned int width() const;
65
 
    unsigned int height() const;
66
 
    unsigned int borderWidth() const;
67
 
 
68
 
    int numClients() const { return m_clients.size(); }
69
 
    const FbTk::FbWindow &window() const { return m_window; }
70
 
 
71
 
    inline void renderTheme(unsigned char alpha) {}
72
 
    inline void updateSizing() {}
73
 
 
74
 
private:
75
 
 
76
 
    void update(FbTk::Subject *subj);
77
 
    
78
 
    typedef std::list<FbTk::FbWindow *> ClientList;
79
 
    ClientList::iterator findClient(Window win);
80
 
 
81
 
    void rearrangeClients();
82
 
    void removeAllClients();
83
 
 
84
 
    FbTk::FbWindow m_window;
85
 
    ButtonTheme& m_theme;
86
 
    BScreen& m_screen;
87
 
    Pixmap m_pixmap;
88
 
 
89
 
    std::auto_ptr<AtomHandler> m_handler;
90
 
 
91
 
    ClientList m_clients;
92
 
};
93
 
 
94
 
#endif // SYSTEMTRAY_HH