fluxbox/src/Ewmh.hh

78 lines
2.9 KiB
C++
Raw Normal View History

2002-10-02 16:26:05 +00:00
// Ewmh.hh for fluxbox
2006-02-16 06:53:05 +00:00
// Copyright (c) 2002 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
2002-10-02 16:26:05 +00:00
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
2002-10-02 16:26:05 +00:00
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#include "AtomHandler.hh"
#include "FbTk/FbString.hh"
2002-10-02 16:26:05 +00:00
/// Implementes Extended Window Manager Hints ( http://www.freedesktop.org/Standards/wm-spec )
2002-10-02 16:26:05 +00:00
class Ewmh:public AtomHandler {
public:
2002-12-01 13:42:15 +00:00
Ewmh();
2008-01-02 21:41:50 +00:00
~Ewmh();
2003-03-03 21:51:13 +00:00
void initForScreen(BScreen &screen);
void setupFrame(FluxboxWindow &win);
void setupClient(WinClient &winclient);
void updateFocusedWindow(BScreen &screen, Window win);
2003-03-03 21:51:13 +00:00
void updateClientList(BScreen &screen);
void updateWorkspaceNames(BScreen &screen);
void updateCurrentWorkspace(BScreen &screen);
void updateWorkspaceCount(BScreen &screen);
void updateViewPort(BScreen &screen);
void updateGeometry(BScreen &screen);
void updateWorkarea(BScreen &screen);
2002-10-02 16:26:05 +00:00
2002-12-01 13:42:15 +00:00
void updateState(FluxboxWindow &win);
void updateLayer(FluxboxWindow &win);
2002-12-01 13:42:15 +00:00
void updateHints(FluxboxWindow &win);
void updateWorkspace(FluxboxWindow &win);
2002-10-02 16:26:05 +00:00
bool checkClientMessage(const XClientMessageEvent &ce,
BScreen * screen, WinClient * const winclient);
2003-03-03 21:51:13 +00:00
bool propertyNotify(WinClient &winclient, Atom the_property);
void updateFrameClose(FluxboxWindow &win);
void updateClientClose(WinClient &winclient);
void updateFrameExtents(FluxboxWindow &win);
2002-10-02 16:26:05 +00:00
private:
2002-12-01 13:42:15 +00:00
enum { STATE_REMOVE = 0, STATE_ADD = 1, STATE_TOGGLE = 2};
void setState(FluxboxWindow &win, Atom state, bool value);
void setState(FluxboxWindow &win, Atom state, bool value,
WinClient &client);
void toggleState(FluxboxWindow &win, Atom state);
void toggleState(FluxboxWindow &win, Atom state, WinClient &client);
void updateStrut(WinClient &winclient);
void updateActions(FluxboxWindow &win);
2004-01-21 15:42:35 +00:00
void setupState(FluxboxWindow &win);
2002-10-02 16:26:05 +00:00
FbTk::FbString getUTF8Property(Atom property);
2008-01-02 21:41:50 +00:00
class EwmhAtoms;
EwmhAtoms* m_net;
2002-10-02 16:26:05 +00:00
};