2002-05-25 00:29:44 +00:00
|
|
|
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
|
|
|
// blackbox.hh for Blackbox - an X11 Window manager
|
|
|
|
// Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh@debian.org>
|
|
|
|
// Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
#ifndef __blackbox_hh
|
|
|
|
#define __blackbox_hh
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_STDIO_H
|
|
|
|
# include <stdio.h>
|
|
|
|
#endif // HAVE_STDIO_H
|
|
|
|
|
|
|
|
#ifdef TIME_WITH_SYS_TIME
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <time.h>
|
|
|
|
#else // !TIME_WITH_SYS_TIME
|
|
|
|
# ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
# else // !HAVE_SYS_TIME_H
|
|
|
|
# include <time.h>
|
|
|
|
# endif // HAVE_SYS_TIME_H
|
|
|
|
#endif // TIME_WITH_SYS_TIME
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
2002-10-31 06:54:56 +00:00
|
|
|
#include "basedisplay.hh"
|
|
|
|
#include "configuration.hh"
|
|
|
|
#include "timer.hh"
|
|
|
|
#include "xatom.hh"
|
2002-05-25 00:29:44 +00:00
|
|
|
|
|
|
|
#define AttribShaded (1l << 0)
|
|
|
|
#define AttribMaxHoriz (1l << 1)
|
|
|
|
#define AttribMaxVert (1l << 2)
|
|
|
|
#define AttribOmnipresent (1l << 3)
|
|
|
|
#define AttribWorkspace (1l << 4)
|
|
|
|
#define AttribStack (1l << 5)
|
|
|
|
#define AttribDecoration (1l << 6)
|
|
|
|
|
|
|
|
#define StackTop (0)
|
|
|
|
#define StackNormal (1)
|
|
|
|
#define StackBottom (2)
|
|
|
|
|
|
|
|
#define DecorNone (0)
|
|
|
|
#define DecorNormal (1)
|
|
|
|
#define DecorTiny (2)
|
|
|
|
#define DecorTool (3)
|
|
|
|
|
|
|
|
struct BlackboxHints {
|
|
|
|
unsigned long flags, attrib, workspace, stack, decoration;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BlackboxAttributes {
|
|
|
|
unsigned long flags, attrib, workspace, stack, decoration;
|
|
|
|
int premax_x, premax_y;
|
|
|
|
unsigned int premax_w, premax_h;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PropBlackboxHintsElements (5)
|
|
|
|
#define PropBlackboxAttributesElements (9)
|
|
|
|
|
|
|
|
|
|
|
|
//forward declaration
|
|
|
|
class BScreen;
|
|
|
|
class Blackbox;
|
|
|
|
class BlackboxWindow;
|
|
|
|
class BWindowGroup;
|
|
|
|
class Basemenu;
|
|
|
|
class Toolbar;
|
|
|
|
class Slit;
|
|
|
|
|
|
|
|
extern I18n i18n;
|
|
|
|
|
|
|
|
class Blackbox : public BaseDisplay, public TimeoutHandler {
|
|
|
|
private:
|
|
|
|
struct BCursor {
|
2002-06-21 20:40:14 +00:00
|
|
|
Cursor session, move, ll_angle, lr_angle, ul_angle, ur_angle;
|
2002-05-25 00:29:44 +00:00
|
|
|
};
|
|
|
|
BCursor cursor;
|
|
|
|
|
|
|
|
struct MenuTimestamp {
|
|
|
|
std::string filename;
|
|
|
|
time_t timestamp;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BResource {
|
|
|
|
Time double_click_interval;
|
|
|
|
|
2002-05-25 02:24:30 +00:00
|
|
|
std::string style_file;
|
2002-05-25 00:29:44 +00:00
|
|
|
int colors_per_channel;
|
|
|
|
timeval auto_raise_delay;
|
|
|
|
unsigned long cache_life, cache_max;
|
2002-05-27 03:12:21 +00:00
|
|
|
std::string titlebar_layout;
|
2002-08-10 18:21:10 +00:00
|
|
|
unsigned int mod_mask; // modifier mask used for window-mouse interaction
|
|
|
|
|
2002-07-22 04:29:40 +00:00
|
|
|
|
|
|
|
#ifdef XINERAMA
|
|
|
|
bool xinerama_placement, xinerama_maximize, xinerama_snap;
|
|
|
|
#endif // XINERAMA
|
2002-05-25 00:29:44 +00:00
|
|
|
} resource;
|
|
|
|
|
|
|
|
typedef std::map<Window, BlackboxWindow*> WindowLookup;
|
|
|
|
typedef WindowLookup::value_type WindowLookupPair;
|
|
|
|
WindowLookup windowSearchList;
|
|
|
|
|
2002-06-21 20:40:14 +00:00
|
|
|
typedef std::map<Window, BScreen*> WindowScreenLookup;
|
|
|
|
typedef WindowScreenLookup::value_type WindowScreenLookupPair;
|
2002-07-16 08:00:59 +00:00
|
|
|
WindowScreenLookup systraySearchList;
|
2002-06-21 20:40:14 +00:00
|
|
|
|
2002-05-25 00:29:44 +00:00
|
|
|
typedef std::map<Window, BWindowGroup*> GroupLookup;
|
|
|
|
typedef GroupLookup::value_type GroupLookupPair;
|
|
|
|
GroupLookup groupSearchList;
|
|
|
|
|
|
|
|
typedef std::map<Window, Basemenu*> MenuLookup;
|
|
|
|
typedef MenuLookup::value_type MenuLookupPair;
|
|
|
|
MenuLookup menuSearchList;
|
|
|
|
|
|
|
|
typedef std::map<Window, Toolbar*> ToolbarLookup;
|
|
|
|
typedef ToolbarLookup::value_type ToolbarLookupPair;
|
|
|
|
ToolbarLookup toolbarSearchList;
|
|
|
|
|
|
|
|
typedef std::map<Window, Slit*> SlitLookup;
|
|
|
|
typedef SlitLookup::value_type SlitLookupPair;
|
|
|
|
SlitLookup slitSearchList;
|
|
|
|
|
|
|
|
typedef std::list<MenuTimestamp*> MenuTimestampList;
|
|
|
|
MenuTimestampList menuTimestamps;
|
|
|
|
|
|
|
|
typedef std::list<BScreen*> ScreenList;
|
|
|
|
ScreenList screenList;
|
|
|
|
|
|
|
|
BScreen *active_screen;
|
2002-06-21 20:40:14 +00:00
|
|
|
BlackboxWindow *focused_window, *changing_window;
|
2002-05-25 00:29:44 +00:00
|
|
|
BTimer *timer;
|
2002-05-26 20:25:38 +00:00
|
|
|
Configuration config;
|
2002-05-28 14:32:42 +00:00
|
|
|
XAtom *xatom;
|
2002-05-25 00:29:44 +00:00
|
|
|
|
|
|
|
bool no_focus, reconfigure_wait, reread_menu_wait;
|
|
|
|
Time last_time;
|
|
|
|
char **argv;
|
2002-05-25 02:24:30 +00:00
|
|
|
std::string menu_file, rc_file;
|
2002-05-25 00:29:44 +00:00
|
|
|
|
|
|
|
Blackbox(const Blackbox&);
|
|
|
|
Blackbox& operator=(const Blackbox&);
|
|
|
|
|
|
|
|
void load_rc(void);
|
|
|
|
void save_rc(void);
|
|
|
|
void real_rereadMenu(void);
|
|
|
|
void real_reconfigure(void);
|
|
|
|
|
|
|
|
virtual void process_event(XEvent *);
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
2002-05-25 02:24:30 +00:00
|
|
|
Blackbox(char **m_argv, char *dpy_name = 0, char *rc = 0, char *menu = 0);
|
2002-05-25 00:29:44 +00:00
|
|
|
virtual ~Blackbox(void);
|
|
|
|
|
|
|
|
Basemenu *searchMenu(Window window);
|
|
|
|
BWindowGroup *searchGroup(Window window);
|
2002-06-21 20:40:14 +00:00
|
|
|
BScreen *searchSystrayWindow(Window window);
|
2002-05-25 00:29:44 +00:00
|
|
|
BlackboxWindow *searchWindow(Window window);
|
|
|
|
BScreen *searchScreen(Window window);
|
|
|
|
Toolbar *searchToolbar(Window);
|
|
|
|
Slit *searchSlit(Window);
|
|
|
|
|
2002-07-22 04:29:40 +00:00
|
|
|
#ifdef XINERAMA
|
|
|
|
inline bool doXineramaPlacement(void) const
|
|
|
|
{ return resource.xinerama_placement; }
|
|
|
|
inline bool doXineramaMaximizing(void) const
|
|
|
|
{ return resource.xinerama_maximize; }
|
|
|
|
inline bool doXineramaSnapping(void) const
|
|
|
|
{ return resource.xinerama_snap; }
|
|
|
|
|
|
|
|
void saveXineramaPlacement(bool x);
|
|
|
|
void saveXineramaMaximizing(bool x);
|
|
|
|
void saveXineramaSnapping(bool x);
|
|
|
|
#endif // XINERAMA
|
|
|
|
|
2002-05-25 00:29:44 +00:00
|
|
|
void saveMenuSearch(Window window, Basemenu *data);
|
2002-06-21 20:40:14 +00:00
|
|
|
void saveSystrayWindowSearch(Window window, BScreen *screen);
|
2002-05-25 00:29:44 +00:00
|
|
|
void saveWindowSearch(Window window, BlackboxWindow *data);
|
|
|
|
void saveGroupSearch(Window window, BWindowGroup *data);
|
|
|
|
void saveToolbarSearch(Window window, Toolbar *data);
|
|
|
|
void saveSlitSearch(Window window, Slit *data);
|
|
|
|
void removeMenuSearch(Window window);
|
2002-06-21 20:40:14 +00:00
|
|
|
void removeSystrayWindowSearch(Window window);
|
2002-05-25 00:29:44 +00:00
|
|
|
void removeWindowSearch(Window window);
|
|
|
|
void removeGroupSearch(Window window);
|
|
|
|
void removeToolbarSearch(Window window);
|
|
|
|
void removeSlitSearch(Window window);
|
|
|
|
|
2002-05-28 14:32:42 +00:00
|
|
|
inline XAtom *getXAtom(void) { return xatom; }
|
2002-07-02 14:57:02 +00:00
|
|
|
|
2002-05-25 00:29:44 +00:00
|
|
|
inline BlackboxWindow *getFocusedWindow(void) { return focused_window; }
|
2002-06-21 20:40:14 +00:00
|
|
|
inline BlackboxWindow *getChangingWindow(void) { return changing_window; }
|
2002-05-25 00:29:44 +00:00
|
|
|
|
2002-05-26 20:25:38 +00:00
|
|
|
inline Configuration *getConfig() { return &config; }
|
2002-05-25 00:29:44 +00:00
|
|
|
inline const Time &getDoubleClickInterval(void) const
|
|
|
|
{ return resource.double_click_interval; }
|
|
|
|
inline const Time &getLastTime(void) const { return last_time; }
|
|
|
|
|
|
|
|
inline const char *getStyleFilename(void) const
|
|
|
|
{ return resource.style_file.c_str(); }
|
|
|
|
inline const char *getMenuFilename(void) const
|
2002-05-25 02:24:30 +00:00
|
|
|
{ return menu_file.c_str(); }
|
2002-05-25 00:29:44 +00:00
|
|
|
|
|
|
|
inline int getColorsPerChannel(void) const
|
|
|
|
{ return resource.colors_per_channel; }
|
|
|
|
|
2002-05-27 03:12:21 +00:00
|
|
|
inline std::string getTitlebarLayout(void) const
|
|
|
|
{ return resource.titlebar_layout; }
|
|
|
|
|
2002-05-25 00:29:44 +00:00
|
|
|
inline const timeval &getAutoRaiseDelay(void) const
|
|
|
|
{ return resource.auto_raise_delay; }
|
|
|
|
|
|
|
|
inline unsigned long getCacheLife(void) const
|
|
|
|
{ return resource.cache_life; }
|
|
|
|
inline unsigned long getCacheMax(void) const
|
|
|
|
{ return resource.cache_max; }
|
|
|
|
|
|
|
|
inline void setNoFocus(bool f) { no_focus = f; }
|
|
|
|
|
|
|
|
inline Cursor getSessionCursor(void) const
|
|
|
|
{ return cursor.session; }
|
|
|
|
inline Cursor getMoveCursor(void) const
|
|
|
|
{ return cursor.move; }
|
|
|
|
inline Cursor getLowerLeftAngleCursor(void) const
|
|
|
|
{ return cursor.ll_angle; }
|
|
|
|
inline Cursor getLowerRightAngleCursor(void) const
|
|
|
|
{ return cursor.lr_angle; }
|
2002-06-21 20:40:14 +00:00
|
|
|
inline Cursor getUpperLeftAngleCursor(void) const
|
|
|
|
{ return cursor.ul_angle; }
|
|
|
|
inline Cursor getUpperRightAngleCursor(void) const
|
|
|
|
{ return cursor.ur_angle; }
|
2002-08-10 18:21:10 +00:00
|
|
|
|
|
|
|
inline unsigned int getMouseModMask(void) const
|
|
|
|
{ return resource.mod_mask; }
|
2002-05-25 00:29:44 +00:00
|
|
|
|
2002-06-21 20:40:14 +00:00
|
|
|
void setFocusedWindow(BlackboxWindow *win);
|
|
|
|
void setChangingWindow(BlackboxWindow *win);
|
2002-05-25 00:29:44 +00:00
|
|
|
void shutdown(void);
|
|
|
|
void saveStyleFilename(const std::string& filename);
|
2002-05-25 02:24:30 +00:00
|
|
|
void addMenuTimestamp(const std::string& filename);
|
2002-05-25 00:29:44 +00:00
|
|
|
void restart(const char *prog = 0);
|
|
|
|
void reconfigure(void);
|
|
|
|
void rereadMenu(void);
|
|
|
|
void checkMenu(void);
|
|
|
|
|
|
|
|
bool validateWindow(Window window);
|
|
|
|
|
|
|
|
virtual bool handleSignal(int sig);
|
|
|
|
|
|
|
|
virtual void timeout(void);
|
|
|
|
|
|
|
|
#ifndef HAVE_STRFTIME
|
|
|
|
enum { B_AmericanDate = 1, B_EuropeanDate };
|
|
|
|
#endif // HAVE_STRFTIME
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __blackbox_hh
|