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"
|
|
|
|
|
|
|
|
#include "FbTk/RefCount.hh"
|
2003-04-26 11:24:55 +00:00
|
|
|
|
2003-04-26 07:57:00 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <map>
|
2003-06-12 15:12:19 +00:00
|
|
|
#include <list>
|
|
|
|
#include <utility>
|
2006-04-23 14:51:04 +00:00
|
|
|
#include <memory>
|
2003-06-12 15:12:19 +00:00
|
|
|
|
|
|
|
class FluxboxWindow;
|
|
|
|
class BScreen;
|
|
|
|
class WinClient;
|
2003-04-26 07:57:00 +00:00
|
|
|
|
|
|
|
class Application {
|
|
|
|
public:
|
2007-10-13 21:51:37 +00:00
|
|
|
Application(bool grouped, ClientPattern *pat = 0);
|
2007-10-23 17:34:30 +00:00
|
|
|
void reset();
|
2007-12-29 21:38:53 +00:00
|
|
|
void forgetWorkspace() { workspace_remember = false; }
|
|
|
|
void forgetHead() { head_remember = false; }
|
|
|
|
void forgetDimensions() { dimensions_remember = false; }
|
|
|
|
void forgetPosition() { position_remember = false; }
|
|
|
|
void forgetShadedstate() { shadedstate_remember = false; }
|
|
|
|
void forgetTabstate() { tabstate_remember = false; }
|
|
|
|
void forgetDecostate() { decostate_remember = false; }
|
|
|
|
void forgetFocusHiddenstate() { focushiddenstate_remember= false; }
|
|
|
|
void forgetIconHiddenstate() { iconhiddenstate_remember= false; }
|
|
|
|
void forgetStuckstate() { stuckstate_remember = false; }
|
|
|
|
void forgetJumpworkspace() { jumpworkspace_remember = false; }
|
|
|
|
void forgetLayer() { layer_remember = false; }
|
|
|
|
void forgetSaveOnClose() { save_on_close_remember = false; }
|
|
|
|
void forgetAlpha() { alpha_remember = false; }
|
|
|
|
void forgetMinimizedstate() { minimizedstate_remember = false; }
|
|
|
|
void forgetMaximizedstate() { maximizedstate_remember = false; }
|
|
|
|
void forgetFullscreenstate() { fullscreenstate_remember = false; }
|
2004-12-21 16:09:36 +00:00
|
|
|
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberWorkspace(int ws)
|
2003-04-26 07:57:00 +00:00
|
|
|
{ workspace = ws; workspace_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberHead(int h)
|
2004-12-21 16:09:36 +00:00
|
|
|
{ head = h; head_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberDimensions(int width, int height)
|
2003-04-26 07:57:00 +00:00
|
|
|
{ w = width; h = height; dimensions_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberFocusHiddenstate(bool state)
|
2004-02-20 09:07:27 +00:00
|
|
|
{ focushiddenstate= state; focushiddenstate_remember= true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberIconHiddenstate(bool state)
|
2004-02-20 09:07:27 +00:00
|
|
|
{ iconhiddenstate= state; iconhiddenstate_remember= true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberPosition(int posx, int posy, unsigned char rfc= 0 )
|
2003-12-11 15:23:14 +00:00
|
|
|
{ x = posx; y = posy; refc = rfc; position_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberShadedstate(bool state)
|
2003-04-26 07:57:00 +00:00
|
|
|
{ shadedstate = state; shadedstate_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberTabstate(bool state)
|
2003-04-26 07:57:00 +00:00
|
|
|
{ tabstate = state; tabstate_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberDecostate(unsigned int state)
|
2003-04-26 07:57:00 +00:00
|
|
|
{ decostate = state; decostate_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberStuckstate(bool state)
|
2003-04-26 07:57:00 +00:00
|
|
|
{ stuckstate = state; stuckstate_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberJumpworkspace(bool state)
|
2003-04-26 07:57:00 +00:00
|
|
|
{ jumpworkspace = state; jumpworkspace_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberLayer(int layernum)
|
2003-04-26 13:47:53 +00:00
|
|
|
{ layer = layernum; layer_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberSaveOnClose(bool state)
|
2003-04-26 07:57:00 +00:00
|
|
|
{ save_on_close = state; save_on_close_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberAlpha(int focused_a, int unfocused_a)
|
2007-01-07 11:55:14 +00:00
|
|
|
{ focused_alpha = focused_a; unfocused_alpha = unfocused_a; alpha_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberMinimizedstate(bool state)
|
2007-10-23 17:34:30 +00:00
|
|
|
{ minimizedstate = state; minimizedstate_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberMaximizedstate(int state)
|
2007-10-23 17:34:30 +00:00
|
|
|
{ maximizedstate = state; maximizedstate_remember = true; }
|
2007-12-29 21:38:53 +00:00
|
|
|
void rememberFullscreenstate(bool state)
|
2007-10-23 17:34:30 +00:00
|
|
|
{ fullscreenstate = state; fullscreenstate_remember = true; }
|
2003-04-26 07:57:00 +00:00
|
|
|
|
|
|
|
bool workspace_remember;
|
|
|
|
unsigned int workspace;
|
|
|
|
|
2004-12-21 16:09:36 +00:00
|
|
|
bool head_remember;
|
|
|
|
int head;
|
|
|
|
|
2003-04-26 07:57:00 +00:00
|
|
|
bool dimensions_remember;
|
|
|
|
int w,h; // width, height
|
|
|
|
|
|
|
|
bool position_remember;
|
|
|
|
int x,y;
|
2003-12-11 15:23:14 +00:00
|
|
|
unsigned char refc; // referenceCorner-> 0 - upperleft
|
|
|
|
// 1 - upperight
|
|
|
|
// 2 - lowerleft
|
|
|
|
// 3 - lowerright
|
2003-04-26 07:57:00 +00:00
|
|
|
|
2007-01-07 11:55:14 +00:00
|
|
|
bool alpha_remember;
|
|
|
|
int focused_alpha;
|
|
|
|
int unfocused_alpha;
|
|
|
|
|
2003-04-26 07:57:00 +00:00
|
|
|
bool shadedstate_remember;
|
|
|
|
bool shadedstate;
|
|
|
|
|
|
|
|
bool tabstate_remember;
|
|
|
|
bool tabstate;
|
|
|
|
|
|
|
|
bool decostate_remember;
|
|
|
|
unsigned int decostate;
|
|
|
|
|
|
|
|
bool stuckstate_remember;
|
|
|
|
bool stuckstate;
|
|
|
|
|
2004-02-20 09:07:27 +00:00
|
|
|
bool focushiddenstate_remember;
|
|
|
|
bool focushiddenstate;
|
|
|
|
|
|
|
|
bool iconhiddenstate_remember;
|
|
|
|
bool iconhiddenstate;
|
2004-02-16 10:26:03 +00:00
|
|
|
|
2003-04-26 07:57:00 +00:00
|
|
|
bool jumpworkspace_remember;
|
|
|
|
bool jumpworkspace;
|
|
|
|
|
2003-04-26 13:47:53 +00:00
|
|
|
bool layer_remember;
|
|
|
|
int layer;
|
|
|
|
|
2003-04-26 07:57:00 +00:00
|
|
|
bool save_on_close_remember;
|
|
|
|
bool save_on_close;
|
|
|
|
|
2007-10-23 17:34:30 +00:00
|
|
|
bool minimizedstate_remember;
|
|
|
|
bool minimizedstate;
|
|
|
|
|
|
|
|
bool maximizedstate_remember;
|
|
|
|
int maximizedstate;
|
|
|
|
|
|
|
|
bool fullscreenstate_remember;
|
|
|
|
bool fullscreenstate;
|
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
bool is_grouped;
|
|
|
|
FbTk::RefCount<ClientPattern> group_pattern;
|
2003-07-04 01:03:41 +00:00
|
|
|
|
2003-06-12 15:12:19 +00:00
|
|
|
};
|
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 {
|
2004-02-16 10:26:03 +00:00
|
|
|
REM_DECOSTATE= 0,
|
2003-04-26 07:57:00 +00:00
|
|
|
REM_DIMENSIONS,
|
2004-02-20 09:07:27 +00:00
|
|
|
REM_FOCUSHIDDENSTATE,
|
|
|
|
REM_ICONHIDDENSTATE,
|
2004-02-16 10:26:03 +00:00
|
|
|
REM_JUMPWORKSPACE,
|
|
|
|
REM_LAYER,
|
2003-04-26 07:57:00 +00:00
|
|
|
REM_POSITION,
|
2004-02-16 10:26:03 +00:00
|
|
|
REM_SAVEONCLOSE,
|
2003-04-26 07:57:00 +00:00
|
|
|
REM_SHADEDSTATE,
|
2004-02-16 10:26:03 +00:00
|
|
|
REM_STUCKSTATE,
|
2003-04-26 07:57:00 +00:00
|
|
|
//REM_TABSTATE, ... external tabs disabled atm
|
2004-02-16 10:26:03 +00:00
|
|
|
REM_WORKSPACE,
|
2004-12-21 16:09:36 +00:00
|
|
|
REM_HEAD,
|
2007-01-07 11:55:14 +00:00
|
|
|
REM_ALPHA,
|
2007-10-23 17:34:30 +00:00
|
|
|
REM_MINIMIZEDSTATE,
|
|
|
|
REM_MAXIMIZEDSTATE,
|
|
|
|
REM_FULLSCREENSTATE,
|
2003-04-26 07:57:00 +00:00
|
|
|
REM_LASTATTRIB // not actually used
|
|
|
|
};
|
|
|
|
|
2003-12-11 15:23:14 +00:00
|
|
|
enum {
|
|
|
|
POS_UPPERLEFT= 0,
|
|
|
|
POS_UPPERRIGHT,
|
|
|
|
POS_LOWERLEFT,
|
|
|
|
POS_LOWERRIGHT,
|
|
|
|
POS_CENTER,
|
|
|
|
POS_WINCENTER
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-06-12 15:12:19 +00:00
|
|
|
// 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;
|
2004-12-21 16:09:36 +00:00
|
|
|
|
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();
|
2003-06-12 15:12:19 +00:00
|
|
|
~Remember();
|
2003-04-26 07:57:00 +00:00
|
|
|
|
|
|
|
Application* find(WinClient &winclient);
|
|
|
|
Application* add(WinClient &winclient);
|
2007-02-05 17:20:01 +00:00
|
|
|
FluxboxWindow* findGroup(Application *, BScreen &screen);
|
2003-04-26 07:57:00 +00:00
|
|
|
|
2006-04-23 14:51:04 +00:00
|
|
|
void reconfigure(); // was load
|
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
|
2004-12-21 16:09:36 +00:00
|
|
|
|
2003-04-26 07:57:00 +00:00
|
|
|
// Functions we actually use
|
2003-07-04 01:03:41 +00:00
|
|
|
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
|
|
|
|
2005-06-23 03:10:26 +00:00
|
|
|
void initForScreen(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) {}
|
2007-02-05 17:20:01 +00:00
|
|
|
void updateFrameClose(FluxboxWindow &win) {}
|
2003-04-26 07:57:00 +00:00
|
|
|
|
|
|
|
bool checkClientMessage(const XClientMessageEvent &ce,
|
2003-07-28 15:06:36 +00:00
|
|
|
BScreen * screen, WinClient * const winclient) { return false; }
|
2003-06-18 13:35:36 +00:00
|
|
|
// ignore this
|
2003-07-28 15:06:36 +00:00
|
|
|
bool propertyNotify(WinClient &winclient, Atom the_property) { return false; }
|
2005-06-23 03:10:26 +00:00
|
|
|
|
|
|
|
static Remember &instance() { return *s_instance; }
|
2006-04-23 14:51:04 +00:00
|
|
|
|
2003-04-26 07:57:00 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
// returns number of lines read
|
2003-07-04 01:03:41 +00:00
|
|
|
// optionally can give a line to read before the first (lookahead line)
|
|
|
|
int parseApp(std::ifstream &file, Application &app, std::string *first_line = 0);
|
2006-04-23 14:51:04 +00:00
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
Application *findMatchingPatterns(ClientPattern *pat, Patterns *patlist,
|
|
|
|
bool is_group, ClientPattern *match_pat = 0);
|
2006-04-23 14:51:04 +00:00
|
|
|
|
|
|
|
std::auto_ptr<Patterns> m_pats;
|
2003-06-12 15:12:19 +00:00
|
|
|
Clients m_clients;
|
2003-04-26 07:57:00 +00:00
|
|
|
|
2003-07-10 13:23:09 +00:00
|
|
|
Startups m_startups;
|
2005-06-23 03:10:26 +00:00
|
|
|
static Remember *s_instance;
|
2006-04-23 14:51:04 +00:00
|
|
|
|
|
|
|
time_t m_last_timestamp;
|
2003-04-26 07:57:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // REMEMBER_HH
|