00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include <Python.h>
00017 #include <structmember.h>
00018 #include "xynth.h"
00019
00020
00021 void p_event_dealloc (PyObject *obj);
00022 PyObject * p_event_new (PyTypeObject *type, PyObject *args, PyObject *kwds);
00023 PyObject * wrap_event (PyObject *self, PyObject *args);
00024
00025
00026 void p_window_dealloc (PyObject *obj);
00027 PyObject * p_window_new (PyTypeObject *type, PyObject *args, PyObject *kwds);
00028 PyObject * p_window_set_title (PyObject *self, PyObject *args);
00029 PyObject * p_window_show (PyObject *self, PyObject *args);
00030 PyObject * p_window_main (PyObject *self, PyObject *args);
00031 PyObject * p_window_hide (PyObject *self, PyObject *args);
00032 PyObject * p_window_form_draw (PyObject *self, PyObject *args);
00033 PyObject * p_window_set_coor (PyObject *self, PyObject *args);
00034 PyObject * p_window_set_resizeable (PyObject *self, PyObject *args);
00035 PyObject * p_window_set_alwaysontop (PyObject *self, PyObject *args);
00036 PyObject * p_window_atevent (PyObject *self, PyObject *args);
00037 PyObject * p_window_atexit (PyObject *self, PyObject *args);
00038 PyObject * wrap_window (PyObject *self, PyObject *args);
00039
00040
00041 void initxynth (void);