diff options
author | rathnor <rathnor> | 2003-07-28 15:06:36 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-07-28 15:06:36 (GMT) |
commit | d353b688dec41daddeec9696586a4519f58cce45 (patch) | |
tree | 322a29e0e31cb15a7725047c10144c4ab3d5e130 /src/Ewmh.hh | |
parent | f9bb208da8e8926281c91f3e386ec1de48f700a2 (diff) | |
download | fluxbox_pavel-d353b688dec41daddeec9696586a4519f58cce45.zip fluxbox_pavel-d353b688dec41daddeec9696586a4519f58cce45.tar.bz2 |
update many things to use WinClient instead of FluxboxWindow
Diffstat (limited to 'src/Ewmh.hh')
-rw-r--r-- | src/Ewmh.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Ewmh.hh b/src/Ewmh.hh index 206f36e..ffc660f 100644 --- a/src/Ewmh.hh +++ b/src/Ewmh.hh | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: Ewmh.hh,v 1.9 2003/07/04 14:06:20 rathnor Exp $ | 22 | // $Id: Ewmh.hh,v 1.10 2003/07/28 15:06:33 rathnor Exp $ |
23 | 23 | ||
24 | #include "AtomHandler.hh" | 24 | #include "AtomHandler.hh" |
25 | 25 | ||
@@ -33,7 +33,7 @@ public: | |||
33 | ~Ewmh(); | 33 | ~Ewmh(); |
34 | void initForScreen(BScreen &screen); | 34 | void initForScreen(BScreen &screen); |
35 | void setupFrame(FluxboxWindow &win); | 35 | void setupFrame(FluxboxWindow &win); |
36 | void setupClient(WinClient &winclient) {} | 36 | void setupClient(WinClient &winclient); |
37 | 37 | ||
38 | void updateClientList(BScreen &screen); | 38 | void updateClientList(BScreen &screen); |
39 | void updateWorkspaceNames(BScreen &screen); | 39 | void updateWorkspaceNames(BScreen &screen); |
@@ -47,9 +47,9 @@ public: | |||
47 | 47 | ||
48 | 48 | ||
49 | bool checkClientMessage(const XClientMessageEvent &ce, | 49 | bool checkClientMessage(const XClientMessageEvent &ce, |
50 | BScreen * screen, FluxboxWindow * const win); | 50 | BScreen * screen, WinClient * const winclient); |
51 | 51 | ||
52 | bool propertyNotify(FluxboxWindow &win, Atom the_property); | 52 | bool propertyNotify(WinClient &winclient, Atom the_property); |
53 | //ignore these ones | 53 | //ignore these ones |
54 | void updateFrameClose(FluxboxWindow &win) {} | 54 | void updateFrameClose(FluxboxWindow &win) {} |
55 | void updateClientClose(WinClient &winclient) {} | 55 | void updateClientClose(WinClient &winclient) {} |
@@ -61,7 +61,7 @@ private: | |||
61 | void setState(FluxboxWindow &win, Atom state, bool value) const; | 61 | void setState(FluxboxWindow &win, Atom state, bool value) const; |
62 | void toggleState(FluxboxWindow &win, Atom state) const; | 62 | void toggleState(FluxboxWindow &win, Atom state) const; |
63 | void createAtoms(); | 63 | void createAtoms(); |
64 | void updateStrut(FluxboxWindow &win); | 64 | void updateStrut(WinClient &winclient); |
65 | 65 | ||
66 | // root window properties | 66 | // root window properties |
67 | Atom m_net_supported, m_net_client_list, m_net_client_list_stacking, | 67 | Atom m_net_supported, m_net_client_list, m_net_client_list_stacking, |