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,
|
2004-01-19 18:21:51 +00:00
|
|
|
// 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"
|
2006-05-07 10:08:25 +00:00
|
|
|
#include "FbTk/FbString.hh"
|
2002-10-02 16:26:05 +00:00
|
|
|
|
2004-01-21 09:37:10 +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);
|
2003-07-04 01:03:41 +00:00
|
|
|
void setupFrame(FluxboxWindow &win);
|
2003-07-28 15:06:36 +00:00
|
|
|
void setupClient(WinClient &winclient);
|
2004-12-21 16:17:14 +00:00
|
|
|
|
2004-01-19 18:21:51 +00:00
|
|
|
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);
|
2004-01-19 18:21:51 +00:00
|
|
|
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);
|
2003-02-02 16:32:41 +00:00
|
|
|
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
|
|
|
|
2004-12-21 16:17:14 +00:00
|
|
|
bool checkClientMessage(const XClientMessageEvent &ce,
|
2003-07-28 15:06:36 +00:00
|
|
|
BScreen * screen, WinClient * const winclient);
|
2003-03-03 21:51:13 +00:00
|
|
|
|
2003-07-28 15:06:36 +00:00
|
|
|
bool propertyNotify(WinClient &winclient, Atom the_property);
|
2003-09-23 13:52:05 +00:00
|
|
|
void updateFrameClose(FluxboxWindow &win);
|
|
|
|
|
2005-05-14 01:55:31 +00:00
|
|
|
void updateClientClose(WinClient &winclient);
|
2003-09-23 13:52:05 +00:00
|
|
|
|
2006-06-18 21:23:24 +00:00
|
|
|
void updateFrameExtents(FluxboxWindow &win);
|
2002-10-02 16:26:05 +00:00
|
|
|
private:
|
2004-12-21 16:17:14 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
enum { STATE_REMOVE = 0, STATE_ADD = 1, STATE_TOGGLE = 2};
|
2003-09-23 13:52:05 +00:00
|
|
|
|
|
|
|
void setState(FluxboxWindow &win, Atom state, bool value);
|
2007-06-30 01:28:54 +00:00
|
|
|
void setState(FluxboxWindow &win, Atom state, bool value,
|
|
|
|
WinClient &client);
|
2003-09-23 13:52:05 +00:00
|
|
|
void toggleState(FluxboxWindow &win, Atom state);
|
2007-06-30 16:54:05 +00:00
|
|
|
void toggleState(FluxboxWindow &win, Atom state, WinClient &client);
|
2003-07-28 15:06:36 +00:00
|
|
|
void updateStrut(WinClient &winclient);
|
2006-04-23 17:00:33 +00:00
|
|
|
void updateActions(FluxboxWindow &win);
|
|
|
|
|
2004-01-21 15:42:35 +00:00
|
|
|
void setupState(FluxboxWindow &win);
|
2002-10-02 16:26:05 +00:00
|
|
|
|
2006-05-07 10:08:25 +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
|
|
|
};
|