openbox/src/screen.cc

789 lines
24 KiB
C++
Raw Normal View History

// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifdef HAVE_CONFIG_H
# include "../config.h"
#endif
extern "C" {
2002-11-10 21:11:53 +00:00
#ifdef HAVE_STDIO_H
# include <stdio.h>
#endif // HAVE_STDIO_H
2003-01-07 00:57:00 +00:00
#ifdef HAVE_STRING_H
# include <string.h>
#endif // HAVE_STRING_H
#ifdef HAVE_UNISTD_H
# include <sys/types.h>
# include <unistd.h>
#endif // HAVE_UNISTD_H
#include "gettext.h"
#define _(str) gettext(str)
}
#include "screen.hh"
#include "client.hh"
#include "openbox.hh"
#include "frame.hh"
#include "bindings.hh"
#include "python.hh"
#include "otk/display.hh"
2003-01-03 18:21:28 +00:00
#include <vector>
#include <algorithm>
2003-01-03 18:21:28 +00:00
static bool running;
static int anotherWMRunning(Display *display, XErrorEvent *) {
printf(_("Another window manager already running on display %s.\n"),
DisplayString(display));
running = true;
return -1;
}
namespace ob {
OBScreen::OBScreen(int screen)
2003-01-07 00:57:00 +00:00
: OBWidget(OBWidget::Type_Root),
_number(screen)
{
assert(screen >= 0); assert(screen < ScreenCount(otk::OBDisplay::display));
_info = otk::OBDisplay::screenInfo(screen);
::running = false;
XErrorHandler old = XSetErrorHandler(::anotherWMRunning);
2002-12-20 15:38:49 +00:00
XSelectInput(otk::OBDisplay::display, _info->rootWindow(),
OBScreen::event_mask);
XSync(otk::OBDisplay::display, false);
XSetErrorHandler(old);
_managed = !::running;
if (! _managed) return; // was unable to manage the screen
printf(_("Managing screen %d: visual 0x%lx, depth %d\n"),
2002-12-20 15:38:49 +00:00
_number, XVisualIDFromVisual(_info->visual()), _info->depth());
2002-12-20 15:38:49 +00:00
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::openbox_pid,
otk::OBProperty::Atom_Cardinal,
(unsigned long) getpid());
// set the mouse cursor for the root window (the default cursor)
2002-12-20 15:38:49 +00:00
XDefineCursor(otk::OBDisplay::display, _info->rootWindow(),
Openbox::instance->cursors().session);
// initialize the shit that is used for all drawing on the screen
_image_control = new otk::BImageControl(Openbox::instance->timerManager(),
_info, true);
_image_control->installRootColormap();
_root_cmap_installed = True;
// initialize the screen's style
_style.setImageControl(_image_control);
std::string stylepath;
python_get_string("theme", &stylepath);
otk::Configuration sconfig(false);
sconfig.setFile(otk::expandTilde(stylepath));
if (!sconfig.load()) {
sconfig.setFile(otk::expandTilde(DEFAULTSTYLE));
if (!sconfig.load()) {
printf(_("Unable to load default style: %s. Aborting.\n"), DEFAULTSTYLE);
::exit(1);
}
}
_style.load(sconfig);
2003-01-03 18:21:28 +00:00
2003-01-04 01:04:22 +00:00
// set up notification of netwm support
2003-01-07 00:57:00 +00:00
changeSupportedAtoms();
2003-01-04 01:04:22 +00:00
2003-01-07 00:57:00 +00:00
// Set the netwm properties for geometry
2002-12-20 15:38:49 +00:00
unsigned long geometry[] = { _info->width(),
_info->height() };
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::net_desktop_geometry,
otk::OBProperty::Atom_Cardinal,
geometry, 2);
2003-01-04 02:03:30 +00:00
// Set the net_desktop_names property
std::vector<std::string> names;
python_get_stringlist("desktop_names", &names);
2003-01-07 00:57:00 +00:00
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::net_desktop_names,
otk::OBProperty::utf8,
names);
// the above set() will cause the updateDesktopNames to fire right away so
// we have a list of desktop names
if (!python_get_long("number_of_desktops", &_num_desktops))
_num_desktops = 4;
changeNumDesktops(_num_desktops); // set the hint
_desktop = 0;
changeDesktop(0); // set the hint
// create the window which gets focus when no clients get it
XSetWindowAttributes attr;
attr.override_redirect = true;
_focuswindow = XCreateWindow(otk::OBDisplay::display, _info->rootWindow(),
-100, -100, 1, 1, 0, 0, InputOnly,
_info->visual(), CWOverrideRedirect, &attr);
XMapWindow(otk::OBDisplay::display, _focuswindow);
// these may be further updated if any pre-existing windows are found in
// the manageExising() function
2003-01-07 00:57:00 +00:00
changeClientList(); // initialize the client lists, which will be empty
calcArea(); // initialize the available working area
2003-01-07 00:57:00 +00:00
// register this class as the event handler for the root window
Openbox::instance->registerHandler(_info->rootWindow(), this);
// call the python Startup callbacks
EventData *data = new_event_data(_number, 0, EventShutdown, 0);
Openbox::instance->bindings()->fireEvent(data);
Py_XDECREF((PyObject*)data);
}
OBScreen::~OBScreen()
{
if (! _managed) return;
2003-01-03 19:36:41 +00:00
XSelectInput(otk::OBDisplay::display, _info->rootWindow(), NoEventMask);
// unmanage all windows
2002-12-24 19:16:38 +00:00
while (!clients.empty())
unmanageWindow(clients.front());
// call the python Shutdown callbacks
EventData *data = new_event_data(_number, 0, EventShutdown, 0);
Openbox::instance->bindings()->fireEvent(data);
Py_XDECREF((PyObject*)data);
2003-01-03 20:10:25 +00:00
XDestroyWindow(otk::OBDisplay::display, _focuswindow);
2003-01-04 01:04:22 +00:00
XDestroyWindow(otk::OBDisplay::display, _supportwindow);
2003-01-03 20:10:25 +00:00
delete _image_control;
}
void OBScreen::manageExisting()
{
unsigned int i, j, nchild;
Window r, p, *children;
2002-12-20 15:38:49 +00:00
XQueryTree(otk::OBDisplay::display, _info->rootWindow(), &r, &p,
&children, &nchild);
// preen the window list of all icon windows... for better dockapp support
for (i = 0; i < nchild; i++) {
if (children[i] == None) continue;
XWMHints *wmhints = XGetWMHints(otk::OBDisplay::display,
children[i]);
if (wmhints) {
if ((wmhints->flags & IconWindowHint) &&
(wmhints->icon_window != children[i])) {
for (j = 0; j < nchild; j++) {
if (children[j] == wmhints->icon_window) {
children[j] = None;
break;
}
}
}
XFree(wmhints);
}
}
// manage shown windows
for (i = 0; i < nchild; ++i) {
if (children[i] == None)
continue;
XWindowAttributes attrib;
if (XGetWindowAttributes(otk::OBDisplay::display, children[i], &attrib)) {
if (attrib.override_redirect) continue;
if (attrib.map_state != IsUnmapped) {
manageWindow(children[i]);
}
}
}
XFree(children);
}
void OBScreen::updateStrut()
{
_strut.left = _strut.right = _strut.top = _strut.bottom = 0;
2003-01-05 01:40:38 +00:00
OBClient::List::iterator it, end = clients.end();
for (it = clients.begin(); it != end; ++it) {
const otk::Strut &s = (*it)->strut();
_strut.left = std::max(_strut.left, s.left);
_strut.right = std::max(_strut.right, s.right);
_strut.top = std::max(_strut.top, s.top);
_strut.bottom = std::max(_strut.bottom, s.bottom);
}
calcArea();
}
void OBScreen::calcArea()
{
otk::Rect old_area = _area;
/*
#ifdef XINERAMA
// reset to the full areas
if (isXineramaActive())
xineramaUsableArea = getXineramaAreas();
#endif // XINERAMA
*/
_area.setRect(_strut.left, _strut.top,
_info->width() - (_strut.left + _strut.right),
_info->height() - (_strut.top + _strut.bottom));
/*
#ifdef XINERAMA
if (isXineramaActive()) {
// keep each of the ximerama-defined areas inside the strut
RectList::iterator xit, xend = xineramaUsableArea.end();
for (xit = xineramaUsableArea.begin(); xit != xend; ++xit) {
if (xit->x() < usableArea.x()) {
xit->setX(usableArea.x());
xit->setWidth(xit->width() - usableArea.x());
}
if (xit->y() < usableArea.y()) {
xit->setY(usableArea.y());
xit->setHeight(xit->height() - usableArea.y());
}
if (xit->x() + xit->width() > usableArea.width())
xit->setWidth(usableArea.width() - xit->x());
if (xit->y() + xit->height() > usableArea.height())
xit->setHeight(usableArea.height() - xit->y());
}
}
#endif // XINERAMA
*/
if (old_area != _area)
// XXX: re-maximize windows
2003-01-07 00:57:00 +00:00
changeWorkArea();
}
2003-01-07 00:57:00 +00:00
void OBScreen::changeSupportedAtoms()
2003-01-04 01:04:22 +00:00
{
// create the netwm support window
_supportwindow = XCreateSimpleWindow(otk::OBDisplay::display,
_info->rootWindow(),
0, 0, 1, 1, 0, 0, 0);
assert(_supportwindow != None);
// set supporting window
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::net_supporting_wm_check,
otk::OBProperty::Atom_Window,
_supportwindow);
//set properties on the supporting window
Openbox::instance->property()->set(_supportwindow,
otk::OBProperty::net_wm_name,
otk::OBProperty::utf8,
"Openbox");
Openbox::instance->property()->set(_supportwindow,
otk::OBProperty::net_supporting_wm_check,
otk::OBProperty::Atom_Window,
_supportwindow);
Atom supported[] = {
otk::OBProperty::net_current_desktop,
otk::OBProperty::net_number_of_desktops,
otk::OBProperty::net_desktop_geometry,
otk::OBProperty::net_desktop_viewport,
otk::OBProperty::net_active_window,
otk::OBProperty::net_workarea,
otk::OBProperty::net_client_list,
otk::OBProperty::net_client_list_stacking,
otk::OBProperty::net_desktop_names,
otk::OBProperty::net_close_window,
otk::OBProperty::net_wm_name,
otk::OBProperty::net_wm_visible_name,
otk::OBProperty::net_wm_icon_name,
otk::OBProperty::net_wm_visible_icon_name,
/*
otk::OBProperty::net_wm_desktop,
*/
otk::OBProperty::net_wm_strut,
otk::OBProperty::net_wm_window_type,
otk::OBProperty::net_wm_window_type_desktop,
otk::OBProperty::net_wm_window_type_dock,
otk::OBProperty::net_wm_window_type_toolbar,
otk::OBProperty::net_wm_window_type_menu,
otk::OBProperty::net_wm_window_type_utility,
otk::OBProperty::net_wm_window_type_splash,
otk::OBProperty::net_wm_window_type_dialog,
otk::OBProperty::net_wm_window_type_normal,
/*
otk::OBProperty::net_wm_moveresize,
otk::OBProperty::net_wm_moveresize_size_topleft,
otk::OBProperty::net_wm_moveresize_size_topright,
otk::OBProperty::net_wm_moveresize_size_bottomleft,
otk::OBProperty::net_wm_moveresize_size_bottomright,
otk::OBProperty::net_wm_moveresize_move,
*/
/*
otk::OBProperty::net_wm_allowed_actions,
otk::OBProperty::net_wm_action_move,
otk::OBProperty::net_wm_action_resize,
otk::OBProperty::net_wm_action_shade,
otk::OBProperty::net_wm_action_maximize_horz,
otk::OBProperty::net_wm_action_maximize_vert,
otk::OBProperty::net_wm_action_change_desktop,
otk::OBProperty::net_wm_action_close,
*/
otk::OBProperty::net_wm_state,
otk::OBProperty::net_wm_state_modal,
otk::OBProperty::net_wm_state_maximized_vert,
otk::OBProperty::net_wm_state_maximized_horz,
otk::OBProperty::net_wm_state_shaded,
otk::OBProperty::net_wm_state_skip_taskbar,
otk::OBProperty::net_wm_state_skip_pager,
otk::OBProperty::net_wm_state_hidden,
otk::OBProperty::net_wm_state_fullscreen,
otk::OBProperty::net_wm_state_above,
otk::OBProperty::net_wm_state_below,
};
const int num_supported = sizeof(supported)/sizeof(Atom);
// convert to the atom values
for (int i = 0; i < num_supported; ++i)
supported[i] =
Openbox::instance->property()->atom((otk::OBProperty::Atoms)supported[i]);
2003-01-04 01:04:22 +00:00
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::net_supported,
otk::OBProperty::Atom_Atom,
supported, num_supported);
}
2003-01-07 00:57:00 +00:00
void OBScreen::changeClientList()
{
Window *windows;
2003-01-04 00:32:30 +00:00
unsigned int size = clients.size();
// create an array of the window ids
2003-01-04 00:32:30 +00:00
if (size > 0) {
Window *win_it;
2003-01-04 00:32:30 +00:00
windows = new Window[size];
win_it = windows;
2003-01-05 01:40:38 +00:00
OBClient::List::const_iterator it = clients.begin();
const OBClient::List::const_iterator end = clients.end();
for (; it != end; ++it, ++win_it)
*win_it = (*it)->window();
} else
windows = (Window*) 0;
2002-12-20 15:38:49 +00:00
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::net_client_list,
otk::OBProperty::Atom_Window,
2003-01-04 00:32:30 +00:00
windows, size);
2003-01-04 00:32:30 +00:00
if (size)
delete [] windows;
2003-01-07 00:57:00 +00:00
changeStackingList();
}
2003-01-07 00:57:00 +00:00
void OBScreen::changeStackingList()
{
2003-01-04 00:32:30 +00:00
Window *windows;
unsigned int size = _stacking.size();
assert(size == clients.size()); // just making sure.. :)
// create an array of the window ids
if (size > 0) {
Window *win_it;
windows = new Window[size];
win_it = windows;
2003-01-05 01:40:38 +00:00
OBClient::List::const_iterator it = _stacking.begin();
const OBClient::List::const_iterator end = _stacking.end();
2003-01-04 00:32:30 +00:00
for (; it != end; ++it, ++win_it)
*win_it = (*it)->window();
} else
windows = (Window*) 0;
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::net_client_list_stacking,
otk::OBProperty::Atom_Window,
2003-01-04 00:32:30 +00:00
windows, size);
if (size)
delete [] windows;
}
2003-01-07 00:57:00 +00:00
void OBScreen::changeWorkArea() {
unsigned long *dims = new unsigned long[4 * _num_desktops];
for (long i = 0; i < _num_desktops; ++i) {
// XXX: this could be different for each workspace
dims[(i * 4) + 0] = _area.x();
dims[(i * 4) + 1] = _area.y();
dims[(i * 4) + 2] = _area.width();
dims[(i * 4) + 3] = _area.height();
}
2002-12-20 15:38:49 +00:00
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::net_workarea,
otk::OBProperty::Atom_Cardinal,
2003-01-07 00:57:00 +00:00
dims, 4 * _num_desktops);
delete [] dims;
}
void OBScreen::manageWindow(Window window)
{
OBClient *client = 0;
XWMHints *wmhint;
XSetWindowAttributes attrib_set;
// is the window a docking app
if ((wmhint = XGetWMHints(otk::OBDisplay::display, window))) {
if ((wmhint->flags & StateHint) &&
wmhint->initial_state == WithdrawnState) {
//slit->addClient(w); // XXX: make dock apps work!
XFree(wmhint);
return;
}
XFree(wmhint);
}
otk::OBDisplay::grab();
// choose the events we want to receive on the CLIENT window
attrib_set.event_mask = OBClient::event_mask;
2002-12-19 07:58:54 +00:00
attrib_set.do_not_propagate_mask = OBClient::no_propagate_mask;
XChangeWindowAttributes(otk::OBDisplay::display, window,
CWEventMask|CWDontPropagate, &attrib_set);
// create the OBClient class, which gets all of the hints on the window
2002-12-18 16:07:44 +00:00
client = new OBClient(_number, window);
2002-12-04 01:04:31 +00:00
// register for events
Openbox::instance->registerHandler(window, client);
2002-12-18 16:07:44 +00:00
// add to the wm's map
Openbox::instance->addClient(window, client);
// we dont want a border on the client
client->toggleClientBorder(false);
// specify that if we exit, the window should not be destroyed and should be
// reparented back to root automatically
XChangeSaveSet(otk::OBDisplay::display, window, SetModeInsert);
if (!client->positionRequested()) {
2003-01-07 06:50:21 +00:00
// position the window intelligenty .. hopefully :)
// call the python PLACEWINDOW binding
EventData *data = new_event_data(_number, window, EventPlaceWindow, 0);
Openbox::instance->bindings()->fireEvent(data);
Py_DECREF((PyObject*)data);
}
// create the decoration frame for the client window
client->frame = new OBFrame(client, &_style);
2002-12-18 16:07:44 +00:00
// add to the wm's map
2002-12-20 15:38:49 +00:00
Openbox::instance->addClient(client->frame->window(), client);
2002-12-18 16:07:44 +00:00
Openbox::instance->addClient(client->frame->plate(), client);
Openbox::instance->addClient(client->frame->titlebar(), client);
Openbox::instance->addClient(client->frame->label(), client);
Openbox::instance->addClient(client->frame->button_max(), client);
Openbox::instance->addClient(client->frame->button_iconify(), client);
Openbox::instance->addClient(client->frame->button_stick(), client);
Openbox::instance->addClient(client->frame->button_close(), client);
Openbox::instance->addClient(client->frame->handle(), client);
Openbox::instance->addClient(client->frame->grip_left(), client);
Openbox::instance->addClient(client->frame->grip_right(), client);
2003-01-07 01:54:26 +00:00
bool shown = false;
2003-01-07 00:59:41 +00:00
// if on the current desktop.. (or all desktops)
2003-01-07 01:54:26 +00:00
if (client->desktop() == _desktop ||
client->desktop() == (signed)0xffffffff) {
shown = true;
2003-01-07 00:59:41 +00:00
client->frame->show();
2003-01-07 01:54:26 +00:00
}
2003-01-04 05:53:55 +00:00
// XXX: handle any requested states such as maximized
otk::OBDisplay::ungrab();
// add to the screen's list
2002-12-24 19:16:38 +00:00
clients.push_back(client);
2003-01-03 18:21:28 +00:00
// this puts into the stacking order, then raises it
_stacking.push_back(client);
restack(true, client);
// update the root properties
2003-01-07 00:57:00 +00:00
changeClientList();
Openbox::instance->bindings()->grabButtons(true, client);
2003-01-04 08:41:42 +00:00
2003-01-04 19:09:52 +00:00
// call the python NEWWINDOW binding
EventData *data = new_event_data(_number, window, EventNewWindow, 0);
2003-01-04 19:09:52 +00:00
Openbox::instance->bindings()->fireEvent(data);
Py_DECREF((PyObject*)data);
printf("Managed window 0x%lx\n", window);
}
void OBScreen::unmanageWindow(OBClient *client)
{
OBFrame *frame = client->frame;
2003-01-04 19:09:52 +00:00
// call the python CLOSEWINDOW binding
EventData *data = new_event_data(_number, client->window(),
EventCloseWindow, 0);
2003-01-04 19:09:52 +00:00
Openbox::instance->bindings()->fireEvent(data);
Py_DECREF((PyObject*)data);
Openbox::instance->bindings()->grabButtons(false, client);
2002-12-04 01:29:01 +00:00
// remove from the wm's map
Openbox::instance->removeClient(client->window());
2002-12-20 15:38:49 +00:00
Openbox::instance->removeClient(frame->window());
2002-12-18 16:07:44 +00:00
Openbox::instance->removeClient(frame->plate());
Openbox::instance->removeClient(frame->titlebar());
Openbox::instance->removeClient(frame->label());
Openbox::instance->removeClient(frame->button_max());
Openbox::instance->removeClient(frame->button_iconify());
Openbox::instance->removeClient(frame->button_stick());
Openbox::instance->removeClient(frame->button_close());
Openbox::instance->removeClient(frame->handle());
Openbox::instance->removeClient(frame->grip_left());
Openbox::instance->removeClient(frame->grip_right());
2002-12-04 01:04:31 +00:00
// unregister for handling events
Openbox::instance->clearHandler(client->window());
// remove the window from our save set
XChangeSaveSet(otk::OBDisplay::display, client->window(), SetModeDelete);
// we dont want events no more
XSelectInput(otk::OBDisplay::display, client->window(), NoEventMask);
frame->hide();
// give the client its border back
client->toggleClientBorder(true);
delete client->frame;
client->frame = 0;
// remove from the stacking order
_stacking.remove(client);
2003-01-03 20:10:25 +00:00
// remove from the screen's list
2002-12-24 19:16:38 +00:00
clients.remove(client);
// unfocus the client (calls the focus callbacks)
client->unfocus();
delete client;
// update the root properties
2003-01-07 00:57:00 +00:00
changeClientList();
}
void OBScreen::restack(bool raise, OBClient *client)
2003-01-03 18:21:28 +00:00
{
const int layer = client->layer();
std::vector<Window> wins;
_stacking.remove(client);
// the stacking list is from highest to lowest
2003-01-05 01:40:38 +00:00
OBClient::List::iterator it = _stacking.begin(), end = _stacking.end();
2003-01-03 18:21:28 +00:00
// insert the windows above this window
for (; it != end; ++it) {
if ((*it)->layer() < layer || (raise && (*it)->layer() == layer))
2003-01-03 18:21:28 +00:00
break;
wins.push_back((*it)->frame->window());
}
// insert our client
wins.push_back(client->frame->window());
_stacking.insert(it, client);
// insert the remaining below this window
for (; it != end; ++it)
wins.push_back((*it)->frame->window());
XRestackWindows(otk::OBDisplay::display, &wins[0], wins.size());
2003-01-07 00:57:00 +00:00
changeStackingList();
}
void OBScreen::changeDesktop(long desktop)
{
assert(desktop >= 0 && desktop < _num_desktops);
if (!(desktop >= 0 && desktop < _num_desktops)) return;
2003-01-07 01:54:26 +00:00
printf("Moving to desktop %ld\n", desktop);
2003-01-07 00:57:00 +00:00
long old = _desktop;
_desktop = desktop;
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::net_current_desktop,
otk::OBProperty::Atom_Cardinal,
_desktop);
if (old == _desktop) return;
2003-01-07 00:57:00 +00:00
OBClient::List::iterator it, end = clients.end();
for (it = clients.begin(); it != end; ++it) {
if ((*it)->desktop() == old) {
2003-01-07 00:59:41 +00:00
(*it)->frame->hide();
2003-01-07 00:57:00 +00:00
} else if ((*it)->desktop() == _desktop) {
2003-01-07 00:59:41 +00:00
(*it)->frame->show();
2003-01-07 00:57:00 +00:00
}
}
// force the callbacks to fire
if (!Openbox::instance->focusedClient())
Openbox::instance->setFocusedClient(0);
2003-01-03 18:21:28 +00:00
}
2003-01-07 00:57:00 +00:00
void OBScreen::changeNumDesktops(long num)
{
assert(num > 0);
if (!(num > 0)) return;
2003-01-07 01:54:26 +00:00
// XXX: move windows on desktops that will no longer exist!
2003-01-07 00:57:00 +00:00
_num_desktops = num;
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::net_number_of_desktops,
otk::OBProperty::Atom_Cardinal,
_num_desktops);
// set the viewport hint
unsigned long *viewport = new unsigned long[_num_desktops * 2];
memset(viewport, 0, sizeof(unsigned long) * _num_desktops * 2);
Openbox::instance->property()->set(_info->rootWindow(),
otk::OBProperty::net_desktop_viewport,
otk::OBProperty::Atom_Cardinal,
viewport, _num_desktops * 2);
delete [] viewport;
// update the work area hint
changeWorkArea();
}
void OBScreen::updateDesktopNames()
{
const otk::OBProperty *property = Openbox::instance->property();
unsigned long num = (unsigned) -1;
if (!property->get(_info->rootWindow(),
otk::OBProperty::net_desktop_names,
otk::OBProperty::utf8, &num, &_desktop_names))
_desktop_names.clear();
while ((long)_desktop_names.size() < _num_desktops)
_desktop_names.push_back("Unnamed");
}
void OBScreen::setDesktopName(long i, const std::string &name)
{
assert(i >= 0);
if (i >= _num_desktops) return;
const otk::OBProperty *property = Openbox::instance->property();
otk::OBProperty::StringVect newnames = _desktop_names;
newnames[i] = name;
property->set(_info->rootWindow(), otk::OBProperty::net_desktop_names,
otk::OBProperty::utf8, newnames);
}
void OBScreen::propertyHandler(const XPropertyEvent &e)
{
otk::OtkEventHandler::propertyHandler(e);
const otk::OBProperty *property = Openbox::instance->property();
// compress changes to a single property into a single change
XEvent ce;
while (XCheckTypedEvent(otk::OBDisplay::display, e.type, &ce)) {
// XXX: it would be nice to compress ALL changes to a property, not just
// changes in a row without other props between.
if (ce.xproperty.atom != e.atom) {
XPutBackEvent(otk::OBDisplay::display, &ce);
break;
}
}
if (e.atom == property->atom(otk::OBProperty::net_desktop_names))
updateDesktopNames();
}
void OBScreen::clientMessageHandler(const XClientMessageEvent &e)
{
otk::OtkEventHandler::clientMessageHandler(e);
if (e.format != 32) return;
const otk::OBProperty *property = Openbox::instance->property();
if (e.message_type == property->atom(otk::OBProperty::net_current_desktop)) {
changeDesktop(e.data.l[0]);
} else if (e.message_type ==
property->atom(otk::OBProperty::net_number_of_desktops)) {
changeNumDesktops(e.data.l[0]);
}
// XXX: so many client messages to handle here! ..or not.. they go to clients
}
void OBScreen::mapRequestHandler(const XMapRequestEvent &e)
{
otk::OtkEventHandler::mapRequestHandler(e);
#ifdef DEBUG
printf("MapRequest for 0x%lx\n", e.window);
#endif // DEBUG
/*
MapRequest events come here even after the window exists instead of going
right to the client window, because of how they are sent and their struct
layout.
*/
OBClient *c = Openbox::instance->findClient(e.window);
if (c) {
if (c->shaded())
c->shade(false);
// XXX: uniconify the window
c->focus();
} else
manageWindow(e.window);
}
}