2002-05-28 14:32:42 +00:00
|
|
|
// XAtom.h for Openbox
|
|
|
|
// Copyright (c) 2002 - 2002 Ben Janens (ben at orodu.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 __XAtom_h
|
|
|
|
#define __XAtom_h
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
2002-06-21 20:40:14 +00:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
2002-05-28 14:32:42 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class Blackbox;
|
|
|
|
class ScreenInfo;
|
|
|
|
|
|
|
|
class XAtom {
|
|
|
|
public:
|
2002-05-30 06:51:43 +00:00
|
|
|
enum Atoms {
|
|
|
|
// types
|
|
|
|
cardinal,
|
|
|
|
window,
|
|
|
|
pixmap,
|
|
|
|
atom,
|
|
|
|
string,
|
2002-05-28 14:32:42 +00:00
|
|
|
utf8_string,
|
|
|
|
|
|
|
|
#ifdef HAVE_GETPID
|
|
|
|
blackbox_pid,
|
|
|
|
#endif // HAVE_GETPID
|
|
|
|
|
|
|
|
// window hints
|
|
|
|
wm_colormap_windows,
|
|
|
|
wm_protocols,
|
|
|
|
wm_state,
|
|
|
|
wm_delete_window,
|
|
|
|
wm_take_focus,
|
|
|
|
wm_change_state,
|
2002-06-21 20:40:14 +00:00
|
|
|
wm_name,
|
|
|
|
wm_icon_name,
|
2002-05-28 14:32:42 +00:00
|
|
|
motif_wm_hints,
|
|
|
|
blackbox_attributes,
|
|
|
|
blackbox_change_attributes,
|
|
|
|
blackbox_hints,
|
|
|
|
|
|
|
|
// blackbox-protocol atoms (wm -> client)
|
|
|
|
blackbox_structure_messages,
|
|
|
|
blackbox_notify_startup,
|
|
|
|
blackbox_notify_window_add,
|
|
|
|
blackbox_notify_window_del,
|
|
|
|
blackbox_notify_window_focus,
|
|
|
|
blackbox_notify_current_workspace,
|
|
|
|
blackbox_notify_workspace_count,
|
|
|
|
blackbox_notify_window_raise,
|
|
|
|
blackbox_notify_window_lower,
|
|
|
|
// blackbox-protocol atoms (client -> wm)
|
|
|
|
blackbox_change_workspace,
|
|
|
|
blackbox_change_window_focus,
|
|
|
|
blackbox_cycle_window_focus,
|
|
|
|
|
|
|
|
// NETWM atoms
|
|
|
|
// root window properties
|
|
|
|
net_supported,
|
|
|
|
net_client_list,
|
|
|
|
net_client_list_stacking,
|
|
|
|
net_number_of_desktops,
|
|
|
|
net_desktop_geometry,
|
|
|
|
net_desktop_viewport,
|
|
|
|
net_current_desktop,
|
|
|
|
net_desktop_names,
|
|
|
|
net_active_window,
|
|
|
|
net_workarea,
|
|
|
|
net_supporting_wm_check,
|
2002-06-21 20:40:14 +00:00
|
|
|
// net_virtual_roots,
|
2002-05-28 14:32:42 +00:00
|
|
|
// root window messages
|
|
|
|
net_close_window,
|
|
|
|
net_wm_moveresize,
|
|
|
|
// application window properties
|
2002-06-21 20:40:14 +00:00
|
|
|
// net_properties,
|
2002-05-28 14:32:42 +00:00
|
|
|
net_wm_name,
|
2002-06-21 20:40:14 +00:00
|
|
|
net_wm_visible_name,
|
|
|
|
net_wm_icon_name,
|
|
|
|
net_wm_visible_icon_name,
|
2002-05-28 14:32:42 +00:00
|
|
|
net_wm_desktop,
|
|
|
|
net_wm_window_type,
|
|
|
|
net_wm_state,
|
|
|
|
net_wm_strut,
|
2002-06-21 20:40:14 +00:00
|
|
|
// net_wm_icon_geometry,
|
|
|
|
// net_wm_icon,
|
|
|
|
// net_wm_pid,
|
|
|
|
// net_wm_handled_icons,
|
|
|
|
net_wm_allowed_actions,
|
2002-05-28 14:32:42 +00:00
|
|
|
// application protocols
|
2002-06-21 20:40:14 +00:00
|
|
|
// net_wm_ping,
|
|
|
|
|
|
|
|
net_wm_window_type_desktop,
|
|
|
|
net_wm_window_type_dock,
|
|
|
|
net_wm_window_type_toolbar,
|
|
|
|
net_wm_window_type_menu,
|
|
|
|
net_wm_window_type_utility,
|
|
|
|
net_wm_window_type_splash,
|
|
|
|
net_wm_window_type_dialog,
|
|
|
|
net_wm_window_type_normal,
|
|
|
|
|
|
|
|
net_wm_moveresize_size_topleft,
|
|
|
|
net_wm_moveresize_size_topright,
|
|
|
|
net_wm_moveresize_size_bottomleft,
|
|
|
|
net_wm_moveresize_size_bottomright,
|
|
|
|
net_wm_moveresize_move,
|
|
|
|
|
|
|
|
net_wm_action_move,
|
|
|
|
net_wm_action_resize,
|
|
|
|
net_wm_action_shade,
|
|
|
|
net_wm_action_maximize_horz,
|
|
|
|
net_wm_action_maximize_vert,
|
|
|
|
net_wm_action_change_desktop,
|
|
|
|
net_wm_action_close,
|
|
|
|
|
|
|
|
net_wm_state_modal,
|
|
|
|
net_wm_state_maximized_vert,
|
|
|
|
net_wm_state_maximized_horz,
|
|
|
|
net_wm_state_shaded,
|
|
|
|
net_wm_state_skip_taskbar,
|
|
|
|
net_wm_state_skip_pager,
|
|
|
|
net_wm_state_hidden,
|
|
|
|
net_wm_state_fullscreen,
|
|
|
|
|
|
|
|
kde_net_system_tray_windows,
|
|
|
|
kde_net_wm_system_tray_window_for,
|
|
|
|
|
2002-05-28 14:32:42 +00:00
|
|
|
// constant for how many atoms exist in the enumerator
|
|
|
|
NUM_ATOMS
|
|
|
|
};
|
|
|
|
|
|
|
|
enum StringType {
|
2002-05-30 06:51:43 +00:00
|
|
|
ansi,
|
|
|
|
utf8,
|
|
|
|
NUM_STRING_TYPE
|
2002-05-28 14:32:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef std::vector<Window> SupportWindows;
|
|
|
|
|
|
|
|
Display *_display;
|
|
|
|
// windows used to specify support for NETWM
|
|
|
|
SupportWindows _support_windows;
|
|
|
|
Atom _atoms[NUM_ATOMS];
|
|
|
|
|
|
|
|
Atom create(const char *name) const;
|
|
|
|
|
2002-05-30 06:51:43 +00:00
|
|
|
void setValue(Window win, Atom atom, Atom type, unsigned char *data,
|
2002-05-28 14:32:42 +00:00
|
|
|
int size, int nelements, bool append) const;
|
2002-05-30 06:51:43 +00:00
|
|
|
bool getValue(Window win, Atom atom, Atom type,
|
|
|
|
unsigned long &nelements, unsigned char **value,
|
2002-05-28 14:32:42 +00:00
|
|
|
int size) const;
|
|
|
|
|
|
|
|
// no copying!!
|
|
|
|
XAtom(const XAtom &);
|
|
|
|
XAtom& operator=(const XAtom&);
|
|
|
|
|
|
|
|
public:
|
2002-06-21 20:40:14 +00:00
|
|
|
typedef std::vector<std::string> StringVect;
|
|
|
|
|
|
|
|
XAtom(Display *d);
|
2002-05-28 14:32:42 +00:00
|
|
|
virtual ~XAtom();
|
|
|
|
|
|
|
|
// setup support on a screen, each screen should call this once in its
|
|
|
|
// constructor.
|
|
|
|
void setSupported(const ScreenInfo *screen);
|
|
|
|
|
2002-05-30 06:51:43 +00:00
|
|
|
void setValue(Window win, Atoms atom, Atoms type, unsigned long value) const;
|
|
|
|
void setValue(Window win, Atoms atom, Atoms type,
|
|
|
|
unsigned long value[], int elements) const;
|
|
|
|
void setValue(Window win, Atoms atom, StringType type,
|
2002-05-28 14:32:42 +00:00
|
|
|
const std::string &value) const;
|
2002-06-21 20:40:14 +00:00
|
|
|
void setValue(Window win, Atoms atom, StringType type,
|
|
|
|
const StringVect &strings) const;
|
2002-05-28 14:32:42 +00:00
|
|
|
|
|
|
|
// the 'value' is allocated inside the function and
|
|
|
|
// delete [] value needs to be called when you are done with it.
|
|
|
|
// the 'value' array returned is null terminated, and has 'nelements'
|
|
|
|
// elements in it plus the null.
|
2002-06-21 20:40:14 +00:00
|
|
|
// nelements must be set to the maximum number of elements to read from
|
|
|
|
// the property.
|
2002-05-30 06:51:43 +00:00
|
|
|
bool getValue(Window win, Atoms atom, Atoms type,
|
|
|
|
unsigned long &nelements, unsigned long **value) const;
|
2002-06-21 20:40:14 +00:00
|
|
|
bool getValue(Window win, Atoms atom, Atoms type, unsigned long &value) const;
|
2002-05-30 06:51:43 +00:00
|
|
|
bool getValue(Window win, Atoms atom, StringType type,
|
2002-05-28 14:32:42 +00:00
|
|
|
std::string &value) const;
|
2002-06-21 20:40:14 +00:00
|
|
|
bool getValue(Window win, Atoms atom, StringType type,
|
|
|
|
int &nelements, StringVect &strings) const;
|
2002-05-28 14:32:42 +00:00
|
|
|
|
2002-05-30 06:51:43 +00:00
|
|
|
void eraseValue(Window win, Atoms atom) const;
|
2002-05-28 14:32:42 +00:00
|
|
|
|
|
|
|
// temporary function!! remove when not used in blackbox.hh anymore!!
|
2002-05-30 06:51:43 +00:00
|
|
|
inline Atom getAtom(Atoms a)
|
2002-06-21 20:40:14 +00:00
|
|
|
{ assert(a >= 0 && a < NUM_ATOMS); Atom ret = _atoms[a];
|
|
|
|
assert(ret != 0); return ret; }
|
2002-05-28 14:32:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __XAtom_h
|