fluxbox/src/Remember.hh

168 lines
5.2 KiB
C++
Raw Normal View History

2003-04-26 07:57:00 +00:00
// Remember.hh for Fluxbox Window Manager
2006-02-16 06:53:05 +00:00
// Copyright (c) 2003 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
2004-01-19 18:26:25 +00:00
// and Simon Bowden (rathnor at users.sourceforge.net)
2005-01-24 18:34:57 +00:00
// Copyright (c) 2002 Xavier Brouckaert
2003-04-26 07:57:00 +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
// 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.
/* Based on the original "Remember patch" by Xavier Brouckaert */
#ifndef REMEMBER_HH
#define REMEMBER_HH
#include "AtomHandler.hh"
2007-10-13 21:51:37 +00:00
#include "ClientPattern.hh"
2003-04-26 11:24:55 +00:00
2003-04-26 07:57:00 +00:00
#include <map>
#include <list>
2006-04-23 14:51:04 +00:00
#include <memory>
class FluxboxWindow;
class BScreen;
class WinClient;
2008-08-14 05:53:38 +00:00
class Application;
2003-04-26 07:57:00 +00:00
2008-08-14 05:53:38 +00:00
namespace FbTk {
class AutoReloadHelper;
class Menu;
}
2003-04-26 12:44:53 +00:00
/**
2003-04-26 07:57:00 +00:00
* Class Remember is an atomhandler to avoid interfering with
* the main code as much as possible, since we hope that one day
* things like this (and maybe toolbar/slit) can become some sort
* of modular plugin. Doing this should help give an idea of what
* sort of interface abilities we'll need...
*/
class Remember : public AtomHandler {
public:
2003-06-05 13:33:27 +00:00
/**
* holds which attributes to remember
*/
2003-04-26 07:57:00 +00:00
enum Attribute {
REM_DECOSTATE= 0,
2003-04-26 07:57:00 +00:00
REM_DIMENSIONS,
REM_FOCUSHIDDENSTATE,
REM_ICONHIDDENSTATE,
REM_JUMPWORKSPACE,
REM_LAYER,
2003-04-26 07:57:00 +00:00
REM_POSITION,
REM_SAVEONCLOSE,
2003-04-26 07:57:00 +00:00
REM_SHADEDSTATE,
REM_STUCKSTATE,
2003-04-26 07:57:00 +00:00
//REM_TABSTATE, ... external tabs disabled atm
REM_WORKSPACE,
REM_HEAD,
REM_ALPHA,
REM_MINIMIZEDSTATE,
REM_MAXIMIZEDSTATE,
REM_FULLSCREENSTATE,
REM_FOCUSPROTECTION,
REM_IGNORE_SIZEHINTS,
2003-04-26 07:57:00 +00:00
REM_LASTATTRIB // not actually used
};
enum {
POS_UPPERLEFT= 0,
POS_UPPERRIGHT,
POS_LOWERLEFT,
POS_LOWERRIGHT,
POS_CENTER
};
// a "pattern" to the relevant app
// each app exists ONLY for that pattern.
// And we need to keep a list of pairs as we want to keep the
// applications in the same order as they will be in the apps file
typedef std::list< std::pair<ClientPattern *, Application *> > Patterns;
// We keep track of which app is assigned to a winclient
// particularly useful to update counters etc on windowclose
typedef std::map<WinClient *, Application *> Clients;
2003-07-10 13:23:09 +00:00
// we have to remember any startups we did so that they are saved again
typedef std::list<std::string> Startups;
2003-04-26 07:57:00 +00:00
Remember();
~Remember();
2003-04-26 07:57:00 +00:00
Application* find(WinClient &winclient);
Application* add(WinClient &winclient);
FluxboxWindow* findGroup(Application *, BScreen &screen);
2003-04-26 07:57:00 +00:00
void reconfigure();
2008-05-12 16:30:13 +00:00
void checkReload();
void reload();
2003-04-26 07:57:00 +00:00
void save();
bool isRemembered(WinClient &win, Attribute attrib);
void rememberAttrib(WinClient &win, Attribute attrib);
void forgetAttrib(WinClient &win, Attribute attrib);
// Functions relating to AtomHandler
2003-04-26 07:57:00 +00:00
// Functions we actually use
void setupFrame(FluxboxWindow &win);
void setupClient(WinClient &winclient);
2003-07-04 14:06:20 +00:00
void updateClientClose(WinClient &winclient);
2003-04-26 07:57:00 +00:00
void initForScreen(BScreen &screen);
static FbTk::Menu* createMenu(BScreen& screen);
2003-04-26 07:57:00 +00:00
// Functions we ignore (zero from AtomHandler)
// Leaving here in case they might be useful later
2004-01-19 18:26:25 +00:00
void updateFocusedWindow(BScreen &, Window) { }
2003-04-26 07:57:00 +00:00
void updateClientList(BScreen &screen) {}
void updateWorkspaceNames(BScreen &screen) {}
void updateCurrentWorkspace(BScreen &screen) {}
void updateWorkspaceCount(BScreen &screen) {}
2004-01-19 18:26:25 +00:00
void updateWorkarea(BScreen &) { }
2003-04-26 07:57:00 +00:00
void updateWorkspace(FluxboxWindow &win) {}
void updateState(FluxboxWindow &win) {}
void updateHints(FluxboxWindow &win) {}
void updateLayer(FluxboxWindow &win) {}
void updateFrameClose(FluxboxWindow &win) {}
2003-04-26 07:57:00 +00:00
2008-08-14 05:53:38 +00:00
void updateDecoStateFromClient(WinClient& client);
2003-04-26 07:57:00 +00:00
bool checkClientMessage(const XClientMessageEvent &ce,
BScreen * screen, WinClient * const winclient) { return false; }
2003-06-18 13:35:36 +00:00
// ignore this
bool propertyNotify(WinClient &winclient, Atom the_property) { return false; }
static Remember &instance() { return *s_instance; }
2006-04-23 14:51:04 +00:00
2003-04-26 07:57:00 +00:00
private:
std::unique_ptr<Patterns> m_pats;
Clients m_clients;
2003-04-26 07:57:00 +00:00
2003-07-10 13:23:09 +00:00
Startups m_startups;
static Remember *s_instance;
2006-04-23 14:51:04 +00:00
2008-08-14 05:53:38 +00:00
FbTk::AutoReloadHelper* m_reloader;
2003-04-26 07:57:00 +00:00
};
#endif // REMEMBER_HH