openbox/src/openbox.i

93 lines
1.9 KiB
OpenEdge ABL
Raw Normal View History

2002-12-23 00:04:32 +00:00
// -*- 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"
2002-12-25 02:19:49 +00:00
#include "python.hh"
2002-12-23 00:04:32 +00:00
%}
2002-12-25 02:19:49 +00:00
2002-12-24 19:16:38 +00:00
%include stl.i
//%include std_list.i
//%template(ClientList) std::list<OBClient*>;
%ignore ob::Openbox::instance;
%inline %{
ob::Openbox *Openbox_instance() { return ob::Openbox::instance; }
%};
2002-12-23 00:04:32 +00:00
// stuff for scripting callbacks!
2002-12-25 02:19:49 +00:00
%inline %{
enum ActionType {
Action_ButtonPress,
Action_ButtonRelease,
Action_Click,
Action_DoubleClick,
2002-12-25 02:19:49 +00:00
Action_EnterWindow,
Action_LeaveWindow,
Action_KeyPress,
Action_MouseMotion
};
enum WidgetType {
Type_Frame,
Type_Titlebar,
Type_Handle,
Type_Plate,
Type_Label,
Type_MaximizeButton,
Type_CloseButton,
Type_IconifyButton,
Type_StickyButton,
Type_LeftGrip,
Type_RightGrip,
Type_Client,
Type_Root
};
2002-12-25 02:19:49 +00:00
%}
%ignore ob::python_callback;
%rename(register) ob::python_register;
%rename(preregister) ob::python_preregister;
2002-12-25 02:19:49 +00:00
%rename(unregister) ob::python_unregister;
%rename(unregister_all) ob::python_unregister_all;
%rename(bind_key) ob::python_bind_key;
%rename(unbind_key) ob::python_unbind_key;
%rename(bind_mouse) ob::python_bind_mouse;
%rename(unbind_mouse) ob::python_unbind_mouse;
2002-12-30 06:31:45 +00:00
%rename(unbind_all) ob::python_unbind_all;
2002-12-25 02:19:49 +00:00
%ignore ob::OBScreen::clients;
2002-12-23 00:04:32 +00:00
%{
2002-12-24 19:16:38 +00:00
#include <iterator>
2002-12-23 00:04:32 +00:00
%}
2002-12-24 19:16:38 +00:00
%extend ob::OBScreen {
OBClient *client(int i) {
2002-12-25 00:27:10 +00:00
if (i >= (int)self->clients.size())
return NULL;
2002-12-24 19:16:38 +00:00
ob::OBScreen::ClientList::iterator it = self->clients.begin();
std::advance(it,i);
return *it;
}
int clientCount() const {
return (int) self->clients.size();
}
};
2002-12-25 02:19:49 +00:00
%import "../otk/eventdispatcher.hh"
%import "../otk/eventhandler.hh"
%import "widget.hh"
%include "openbox.hh"
%include "screen.hh"
%include "client.hh"
%include "python.hh"
// for Mod1Mask etc
%include "X11/X.h"