all repos — fluxbox @ 46087c7e08f96864bc14a9eaa06067f7672997a0

custom fork of the fluxbox windowmanager

const pointer
fluxgen fluxgen
commit

46087c7e08f96864bc14a9eaa06067f7672997a0

parent

dfaed0cecae85324fc72b968ebe28f74067aaeba

4 files changed, 10 insertions(+), 9 deletions(-)

jump to
M src/AtomHandler.hhsrc/AtomHandler.hh

@@ -19,7 +19,7 @@ // 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. -// $Id: AtomHandler.hh,v 1.2 2002/09/08 11:02:08 fluxgen Exp $ +// $Id: AtomHandler.hh,v 1.3 2002/10/16 19:01:41 fluxgen Exp $ #ifndef ATOMHANDLER_HH #define ATOMHANDLER_HH

@@ -45,7 +45,8 @@ virtual void updateWorkspace(FluxboxWindow &win) = 0;

virtual void updateState(FluxboxWindow &win) = 0; virtual void updateHints(FluxboxWindow &win) = 0; - virtual bool checkClientMessage(const XClientMessageEvent &ce, BScreen *screen, FluxboxWindow *win) = 0; + virtual bool checkClientMessage(const XClientMessageEvent &ce, + BScreen * const screen, FluxboxWindow * const win) = 0; /// should this object be updated or not? bool update() const { return m_update; }
M src/Ewmh.hhsrc/Ewmh.hh

@@ -19,7 +19,7 @@ // 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. -// $Id: Ewmh.hh,v 1.2 2002/10/11 10:20:33 fluxgen Exp $ +// $Id: Ewmh.hh,v 1.3 2002/10/16 19:02:25 fluxgen Exp $ #include "AtomHandler.hh"

@@ -45,7 +45,7 @@ void updateWorkspace(FluxboxWindow &win);

bool checkClientMessage(const XClientMessageEvent &ce, - BScreen *screen, FluxboxWindow *win); + BScreen * const screen, FluxboxWindow * const win); private: enum { STATE_REMOVE = 0, STATE_ADD = 1, STATE_TOGGLE = 2};

@@ -58,7 +58,7 @@ // root window properties

Atom m_net_supported, m_net_client_list, m_net_client_list_stacking, m_net_number_of_desktops, m_net_desktop_geometry, m_net_desktop_viewport, m_net_current_desktop, m_net_desktop_names, m_net_active_window, m_net_workarea, - m_net_supporting_wm_check, m_net_virtual_roots; + m_net_supporting_wm_check, m_net_virtual_roots, m_net_moveresize_window; // root window messages Atom m_net_close_window, m_net_wm_moveresize;
M src/Gnome.ccsrc/Gnome.cc

@@ -19,7 +19,7 @@ // 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. -// $Id: Gnome.cc,v 1.3 2002/09/10 12:23:03 fluxgen Exp $ +// $Id: Gnome.cc,v 1.4 2002/10/16 19:06:51 fluxgen Exp $ #include "Gnome.hh"

@@ -213,7 +213,7 @@ //TODO

} -bool Gnome::checkClientMessage(const XClientMessageEvent &ce, BScreen *screen, FluxboxWindow *win) { +bool Gnome::checkClientMessage(const XClientMessageEvent &ce, BScreen * const screen, FluxboxWindow * const win) { if (ce.message_type == m_gnome_wm_win_workspace) { #ifdef DEBUG cerr<<__FILE__<<"("<<__LINE__<<"): Got workspace atom="<<ce.data.l[0]<<endl;
M src/Gnome.hhsrc/Gnome.hh

@@ -19,7 +19,7 @@ // 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. -// $Id: Gnome.hh,v 1.2 2002/09/08 10:57:34 fluxgen Exp $ +// $Id: Gnome.hh,v 1.3 2002/10/16 19:01:58 fluxgen Exp $ #ifndef GNOME_HH #define GNOME_HH

@@ -77,7 +77,7 @@ void updateHints(FluxboxWindow &win);

void updateWorkspace(FluxboxWindow &win); - bool checkClientMessage(const XClientMessageEvent &ce, BScreen *screen, FluxboxWindow *win); + bool checkClientMessage(const XClientMessageEvent &ce, BScreen * const screen, FluxboxWindow * const win); private: void setLayer(GnomeLayer layer);