openbox/src/openbox.i
2002-12-25 00:27:10 +00:00

49 lines
917 B
OpenEdge ABL

// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
%module openbox
%{
#ifdef HAVE_CONFIG_H
# include "../config.h"
#endif
#include "openbox.hh"
#include "screen.hh"
#include "client.hh"
%}
%include stl.i
//%include std_list.i
//%template(ClientList) std::list<OBClient*>;
%ignore ob::Openbox::instance;
%ignore ob::OBScreen::clients;
%import "../otk/eventdispatcher.hh"
%import "../otk/eventhandler.hh"
%import "widget.hh"
%include "openbox.hh"
%include "screen.hh"
%include "client.hh"
%inline %{
ob::Openbox *Openbox_instance() { return ob::Openbox::instance; }
%};
%{
#include <iterator>
%}
%extend ob::OBScreen {
OBClient *client(int i) {
if (i >= (int)self->clients.size())
return NULL;
ob::OBScreen::ClientList::iterator it = self->clients.begin();
std::advance(it,i);
return *it;
}
int clientCount() const {
return (int) self->clients.size();
}
};