2002-12-02 22:12:26 +00:00
|
|
|
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "../config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "rootwindow.hh"
|
|
|
|
#include "openbox.hh"
|
2002-12-02 23:03:41 +00:00
|
|
|
#include "screen.hh"
|
2002-12-02 22:12:26 +00:00
|
|
|
#include "otk/display.hh"
|
|
|
|
|
|
|
|
namespace ob {
|
|
|
|
|
|
|
|
OBRootWindow::OBRootWindow(int screen)
|
|
|
|
: _info(otk::OBDisplay::screenInfo(screen))
|
|
|
|
{
|
|
|
|
updateDesktopNames();
|
|
|
|
|
|
|
|
Openbox::instance->registerHandler(_info->getRootWindow(), this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
OBRootWindow::~OBRootWindow()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void OBRootWindow::updateDesktopNames()
|
|
|
|
{
|
|
|
|
const int numWorkspaces = 1; // XXX: change this to the number of workspaces!
|
|
|
|
|
|
|
|
const otk::OBProperty *property = Openbox::instance->property();
|
|
|
|
|
|
|
|
unsigned long num = (unsigned) -1;
|
|
|
|
|
|
|
|
if (!property->get(_info->getRootWindow(),
|
|
|
|
otk::OBProperty::net_desktop_names,
|
|
|
|
otk::OBProperty::utf8, &num, &_names))
|
|
|
|
_names.clear();
|
|
|
|
for (int i = 0; i < numWorkspaces; ++i)
|
|
|
|
if (i <= static_cast<int>(_names.size()))
|
|
|
|
_names.push_back("Unnamed workspace");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void OBRootWindow::propertyHandler(const XPropertyEvent &e)
|
|
|
|
{
|
|
|
|
otk::OtkEventHandler::propertyHandler(e);
|
|
|
|
|
|
|
|
const otk::OBProperty *property = Openbox::instance->property();
|
|
|
|
|
2002-12-02 22:40:33 +00:00
|
|
|
// 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))
|
2002-12-02 22:12:26 +00:00
|
|
|
updateDesktopNames();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void OBRootWindow::clientMessageHandler(const XClientMessageEvent &e)
|
|
|
|
{
|
|
|
|
otk::OtkEventHandler::clientMessageHandler(e);
|
|
|
|
|
|
|
|
if (e.format != 32) return;
|
|
|
|
|
|
|
|
//const otk::OBProperty *property = Openbox::instance->property();
|
|
|
|
|
|
|
|
// XXX: so many client messages to handle here!
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void OBRootWindow::setDesktopName(int i, const std::string &name)
|
|
|
|
{
|
|
|
|
const int numWorkspaces = 1; // XXX: change this to the number of workspaces!
|
|
|
|
assert(i >= 0);
|
|
|
|
assert(i < numWorkspaces);
|
|
|
|
|
|
|
|
const otk::OBProperty *property = Openbox::instance->property();
|
|
|
|
|
|
|
|
otk::OBProperty::StringVect newnames = _names;
|
|
|
|
newnames[i] = name;
|
|
|
|
property->set(_info->getRootWindow(), otk::OBProperty::net_desktop_names,
|
|
|
|
otk::OBProperty::utf8, newnames);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-02 23:03:41 +00:00
|
|
|
void OBRootWindow::mapRequestHandler(const XMapRequestEvent &e)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf("MapRequest for 0x%lx\n", e.window);
|
|
|
|
#endif // DEBUG
|
|
|
|
|
|
|
|
OBClient *client = Openbox::instance->findClient(e.window);
|
|
|
|
|
|
|
|
if (client) {
|
|
|
|
// XXX: uniconify and/or unshade the window
|
|
|
|
} else {
|
|
|
|
Openbox::instance->screen(_info->getScreenNumber())->
|
|
|
|
manageWindow(e.window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-04 00:26:45 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
void OBRootWindow::configureRequestHandler(const XConfigureRequestEvent &e)
|
|
|
|
{
|
|
|
|
// when configure requests come to the root window, just pass them on
|
|
|
|
XWindowChanges xwc;
|
|
|
|
|
|
|
|
xwc.x = e.x;
|
|
|
|
xwc.y = e.y;
|
|
|
|
xwc.width = e.width;
|
|
|
|
xwc.height = e.height;
|
|
|
|
xwc.border_width = e.border_width;
|
|
|
|
xwc.sibling = e.above;
|
|
|
|
xwc.stack_mode = e.detail;
|
|
|
|
|
|
|
|
XConfigureWindow(otk::OBDisplay::display, e.window,
|
|
|
|
e.value_mask, &xwc);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-02 22:12:26 +00:00
|
|
|
}
|