1 /////////////////////////////////////////////////////////////////////////////
 
   3 // Purpose:     SWIG definitions for the wxWindows Object Graphics Library
 
   7 // Created:     30-June-1999
 
   9 // Copyright:   (c) 1998 by Total Control Software
 
  10 // Licence:     wxWindows license
 
  11 /////////////////////////////////////////////////////////////////////////////
 
  18 #include "oglhelpers.h"
 
  21 //---------------------------------------------------------------------------
 
  24 %include my_typemaps.i
 
  40 %pragma(python) code = "import wx"
 
  42 //---------------------------------------------------------------------------
 
  61     CONTROL_POINT_VERTICAL,
 
  62     CONTROL_POINT_HORIZONTAL,
 
  63     CONTROL_POINT_DIAGONAL,
 
  64     CONTROL_POINT_ENDPOINT_TO,
 
  65     CONTROL_POINT_ENDPOINT_FROM,
 
  70     FORMAT_SIZE_TO_CONTENTS,
 
  73     LINE_ALIGNMENT_TO_NEXT_HANDLE,
 
  84 //      SHAPE_DIVIDED_RECTANGLE,
 
  86 //      SHAPE_CONTROL_POINT,
 
  89 //      SHAPE_LABEL_OBJECT,
 
  91 //      SHAPE_DIVIDED_OBJECT_CONTROL_POINT,
 
 100     ATTACHMENT_MODE_BRANCHING,
 
 101     BRANCHING_ATTACHMENT_NORMAL,
 
 102     BRANCHING_ATTACHMENT_BLOB,
 
 104     gyCONSTRAINT_CENTRED_VERTICALLY,
 
 105     gyCONSTRAINT_CENTRED_HORIZONTALLY,
 
 106     gyCONSTRAINT_CENTRED_BOTH,
 
 107     gyCONSTRAINT_LEFT_OF,
 
 108     gyCONSTRAINT_RIGHT_OF,
 
 111     gyCONSTRAINT_ALIGNED_TOP,
 
 112     gyCONSTRAINT_ALIGNED_BOTTOM,
 
 113     gyCONSTRAINT_ALIGNED_LEFT,
 
 114     gyCONSTRAINT_ALIGNED_RIGHT,
 
 115     gyCONSTRAINT_MIDALIGNED_TOP,
 
 116     gyCONSTRAINT_MIDALIGNED_BOTTOM,
 
 117     gyCONSTRAINT_MIDALIGNED_LEFT,
 
 118     gyCONSTRAINT_MIDALIGNED_RIGHT,
 
 124     DIVISION_SIDE_BOTTOM,
 
 130 //---------------------------------------------------------------------------
 
 132 void wxOGLInitialize();
 
 137 //---------------------------------------------------------------------------
 
 138 // This one will work for any class for the VERY generic cases, but beyond that
 
 139 // the helper needs to know more about the type.
 
 141 wxList* wxPy_wxListHelper(PyObject* pyList, char* className) {
 
 142     bool doSave = wxPyRestoreThread();
 
 143     if (!PyList_Check(pyList)) {
 
 144         PyErr_SetString(PyExc_TypeError, "Expected a list object.");
 
 145         wxPySaveThread(doSave);
 
 148     int count = PyList_Size(pyList);
 
 149     wxList* list = new wxList;
 
 151         PyErr_SetString(PyExc_MemoryError, "Unable to allocate wxList object");
 
 152         wxPySaveThread(doSave);
 
 155     for (int x=0; x<count; x++) {
 
 156         PyObject* pyo = PyList_GetItem(pyList, x);
 
 157         wxObject* wxo = NULL;
 
 159         if (SWIG_GetPtrObj(pyo, (void **)&wxo, className)) {
 
 161             sprintf(errmsg, "Type error, expected list of %s objects", className);
 
 162             PyErr_SetString(PyExc_TypeError, errmsg);
 
 163             wxPySaveThread(doSave);
 
 168     wxPySaveThread(doSave);
 
 172 //---------------------------------------------------------------------------
 
 174 wxList* wxPy_wxRealPoint_ListHelper(PyObject* pyList) {
 
 175     bool doSave = wxPyRestoreThread();
 
 176     if (!PyList_Check(pyList)) {
 
 177         PyErr_SetString(PyExc_TypeError, "Expected a list object.");
 
 178         wxPySaveThread(doSave);
 
 181     int count = PyList_Size(pyList);
 
 182     wxList* list = new wxList;
 
 184         PyErr_SetString(PyExc_MemoryError, "Unable to allocate wxList object");
 
 185         wxPySaveThread(doSave);
 
 188     for (int x=0; x<count; x++) {
 
 189         PyObject* pyo = PyList_GetItem(pyList, x);
 
 191         if (PyTuple_Check(pyo)) {
 
 192             PyObject* o1 = PyNumber_Float(PyTuple_GetItem(pyo, 0));
 
 193             PyObject* o2 = PyNumber_Float(PyTuple_GetItem(pyo, 1));
 
 195             double val1 = (o1 ? PyFloat_AsDouble(o1) : 0.0);
 
 196             double val2 = (o2 ? PyFloat_AsDouble(o2) : 0.0);
 
 198             list->Append((wxObject*) new wxRealPoint(val1, val2));
 
 201             wxRealPoint* wxo = NULL;
 
 202             if (SWIG_GetPtrObj(pyo, (void **)&wxo, "_wxRealPoint_p")) {
 
 203                 PyErr_SetString(PyExc_TypeError, "Type error, expected list of wxRealPoint objects or 2-tuples");
 
 204                 wxPySaveThread(doSave);
 
 207             list->Append((wxObject*) new wxRealPoint(*wxo));
 
 210     wxPySaveThread(doSave);
 
 215 //---------------------------------------------------------------------------
 
 218 extern "C" SWIGEXPORT(void) initoglbasicc();
 
 219 extern "C" SWIGEXPORT(void) initoglshapesc();
 
 220 extern "C" SWIGEXPORT(void) initoglshapes2c();
 
 221 extern "C" SWIGEXPORT(void) initoglcanvasc();
 
 233     wxClassInfo::CleanUpClasses();
 
 234     wxClassInfo::InitializeClasses();
 
 238 //----------------------------------------------------------------------
 
 239 // And this gets appended to the shadow class file.
 
 240 //----------------------------------------------------------------------
 
 242 %pragma(python) include="_oglextras.py";
 
 244 //---------------------------------------------------------------------------
 
 245 //---------------------------------------------------------------------------