openbox/wrap/ob_screen.i
Dana Jansens c217a73090 split the ob module into separate .i's
cleanly define the interface, add functions for modifying the objects (via client messages)
2003-02-17 15:42:31 +00:00

80 lines
2.2 KiB
OpenEdge ABL

// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
%module ob_screen
%{
#include "config.h"
#include "screen.hh"
#include "otk/display.hh"
#include "otk/property.hh"
%}
%include "ob_client.i"
%include "otk.i" // XXX otk_rect.i!!!
%include "ustring.i"
%typemap(python,out) std::list<ob::Client*> {
unsigned int s = $1.size();
PyObject *l = PyList_New(s);
std::list<ob::Client*>::const_iterator it = $1.begin(), end = $1.end();
for (unsigned int i = 0; i < s; ++i, ++it) {
PyObject *pdata = SWIG_NewPointerObj((void*)*it,SWIGTYPE_p_ob__Client,0);
PyList_SET_ITEM(l, i, pdata);
}
$result = l;
}
%typemap(python,out) const otk::Property::StringVect& {
otk::Property::StringVect *v = $1;
unsigned int s = v->size();
PyObject *l = PyList_New(s);
otk::Property::StringVect::const_iterator it = v->begin(), end = v->end();
for (unsigned int i = 0; i < s; ++i, ++it) {
PyObject *pdata = PyString_FromString(it->c_str());
PyList_SET_ITEM(l, i, pdata);
}
$result = l;
}
namespace ob {
%extend Screen {
void showDesktop(bool show) {
Window root = RootWindow(**otk::display, self->number());
send_client_msg(root, otk::Property::atoms.net_showing_desktop,
root, show);
}
void changeDesktop(unsigned int desktop) {
Window root = RootWindow(**otk::display, self->number());
send_client_msg(root, otk::Property::atoms.net_current_desktop,
root, desktop);
}
}
%immutable Screen::clients;
%ignore Screen::event_mask;
%ignore Screen::Screen(int);
%ignore Screen::~Screen();
%ignore Screen::focuswindow() const;
%ignore Screen::managed() const;
%ignore Screen::config();
%rename(ignored_showDesktop) Screen::showDesktop(bool show);
%ignore Screen::ignored_showDesktop(bool show);
%ignore Screen::updateStruts();
%ignore Screen::manageExisting();
%ignore Screen::manageWindow(Window);
%ignore Screen::unmanageWindow(Client*);
%ignore Screen::raiseWindow(Client*);
%ignore Screen::lowerWindow(Client*);
%ignore Screen::installColormap(bool) const;
%ignore Screen::propertyHandler(const XPropertyEvent &);
%ignore Screen::clientMessageHandler(const XClientMessageEvent &);
%ignore Screen::mapRequestHandler(const XMapRequestEvent &);
}
%include "screen.hh"