1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Helper functions/classes for the wxPython extension module
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
19 #include "gdk_imlib/gdk_imlib.h"
23 //---------------------------------------------------------------------------
25 //wxHashTable* wxPyWindows = NULL;
28 wxPoint wxPyDefaultPosition
; //wxDefaultPosition);
29 wxSize wxPyDefaultSize
; //wxDefaultSize);
30 wxString
wxPyEmptyStr("");
34 //----------------------------------------------------------------------
35 // Class for implementing the wxp main application shell.
36 //----------------------------------------------------------------------
38 wxPyApp
*wxPythonApp
= NULL
; // Global instance of application object
41 // This one isn't acutally called... See __wxStart()
42 bool wxPyApp::OnInit(void) {
46 int wxPyApp::MainLoop(void) {
47 int retval
= wxApp::MainLoop();
52 void wxPyApp::AfterMainLoop(void) {
53 // more stuff from wxEntry...
54 if (wxPythonApp
->GetTopWindow()) {
55 // Forcibly delete the window.
56 if (wxPythonApp
->GetTopWindow()->IsKindOf(CLASSINFO(wxFrame
)) ||
57 wxPythonApp
->GetTopWindow()->IsKindOf(CLASSINFO(wxDialog
))) {
59 wxPythonApp
->GetTopWindow()->Close(TRUE
);
60 wxPythonApp
->DeletePendingObjects();
63 delete wxPythonApp
->GetTopWindow();
64 wxPythonApp
->SetTopWindow(NULL
);
68 wxPythonApp
->OnExit();
73 wxApp::CommonCleanUp();
79 //----------------------------------------------------------------------
80 // a few native methods to add to the module
81 //----------------------------------------------------------------------
84 // Start the user application, user App's OnInit method is a parameter here
85 PyObject
* __wxStart(PyObject
* /* self */, PyObject
* args
)
87 PyObject
* onInitFunc
= NULL
;
92 if (!PyArg_ParseTuple(args
, "O", &onInitFunc
))
95 // This is where we pick up one part of the wxEntry functionality...
96 // the rest is in AfterMainLoop.
98 wxPythonApp
->argc
= 0;
99 wxPythonApp
->argv
= NULL
;
100 wxPythonApp
->OnInitGui();
104 wxTheApp
->argv
= NULL
;
106 gtk_init( &wxTheApp
->argc
, &wxTheApp
->argv
);
112 gtk_widget_push_visual(gdk_imlib_get_visual());
114 gtk_widget_push_colormap(gdk_imlib_get_colormap());
120 wxTheApp
->OnInitGui();
125 // Call the Python App's OnInit function
126 arglist
= PyTuple_New(0);
127 result
= PyEval_CallObject(onInitFunc
, arglist
);
133 if (! PyInt_Check(result
)) {
134 PyErr_SetString(PyExc_TypeError
, "OnInit should return a boolean value");
137 bResult
= PyInt_AS_LONG(result
);
139 wxPythonApp
->DeletePendingObjects();
140 wxPythonApp
->OnExit();
145 wxApp::CommonCleanUp();
147 PyErr_SetString(PyExc_SystemExit
, "OnInit returned false, exiting...");
156 //PyObject* __wxMainLoop(PyObject* /* self */, PyObject* /* args */)
158 // wxPythonApp->MainLoop();
159 // if (wxPythonApp->wx_frame) {
160 // wxPythonApp->wx_frame->GetEventHandler()->OnClose();
161 // delete wxPythonApp->wx_frame;
165 // Py_INCREF(Py_None);
170 //PyObject* __wxExitMainLoop(PyObject* /* self */, PyObject* /* args */)
172 // wxPythonApp->ExitMainLoop();
173 // Py_INCREF(Py_None);
179 //PyObject* __wxAddCallback(PyObject* /* self */, PyObject* args)
183 // PyObject* callback;
185 // wxPyEvtHandlers* evtHdlr;
187 // if (!PyArg_ParseTuple(args, "ssO", &swigPtr, &name, &callback))
190 // if (!PyCallable_Check(callback)) {
191 // PyErr_SetString(PyExc_TypeError, "Expected a callable object.");
195 // if (SWIG_GetPtr(swigPtr, (void **)&win, "_wxWindow_p")) {
196 // PyErr_SetString(PyExc_TypeError, "Expected class derived from wxWindow.");
200 // evtHdlr = (wxPyEvtHandlers*)win->GetClientData();
201 // if (! evtHdlr->addCallback(name, callback)) {
202 // PyErr_SetString(PyExc_TypeError, "Unknown callback name.");
206 // Py_INCREF(Py_None);
212 //PyObject* __wxSetWinEvtHdlr(PyObject* /* self */, PyObject* args)
216 // wxPyEvtHandlers* evtHdlr;
218 // if (!PyArg_ParseTuple(args, "s", &swigPtr))
221 // if (SWIG_GetPtr(swigPtr, (void **)&win, "_wxWindow_p")) {
222 // PyErr_SetString(PyExc_TypeError, "Expected class derived from wxWindow.");
226 // evtHdlr = new wxPyEvtHandlers;
227 // win->SetClientData((char*)evtHdlr);
229 // Py_INCREF(Py_None);
235 //PyObject* __wxDelWinEvtHdlr(PyObject* /* self */, PyObject* args)
239 // wxPyEvtHandlers* evtHdlr;
241 // if (!PyArg_ParseTuple(args, "s", &swigPtr))
244 // if (SWIG_GetPtr(swigPtr, (void **)&win, "_wxWindow_p")) {
245 // PyErr_SetString(PyExc_TypeError, "Expected class derived from wxWindow.");
249 // evtHdlr = (wxPyEvtHandlers*)win->GetClientData();
250 // printf("__wxDelWinEvtHdlr: %p\n", evtHdlr);
253 // Py_INCREF(Py_None);
259 PyObject
* wxPython_dict
;
260 PyObject
* __wxSetDictionary(PyObject
* /* self */, PyObject
* args
)
263 if (!PyArg_ParseTuple(args
, "O", &wxPython_dict
))
266 if (!PyDict_Check(wxPython_dict
)) {
267 PyErr_SetString(PyExc_TypeError
, "_wxSetDictionary must have dictionary object!");
271 #define wxPlatform "__MOTIF__"
274 #define wxPlatform "__GTK__"
276 #if defined(__WIN32__) || defined(__WXMSW__)
277 #define wxPlatform "__WIN32__"
280 #define wxPlatform "__MAC__"
283 PyDict_SetItemString(wxPython_dict
, "wxPlatform", PyString_FromString(wxPlatform
));
290 //---------------------------------------------------------------------------
294 PyObject
* wxPyConstructObject(void* ptr
, char* className
)
296 char buff
[64]; // should be big enough...
299 sprintf(buff
, "_%s_p", className
);
300 SWIG_MakePtr(swigptr
, ptr
, buff
);
302 sprintf(buff
, "%sPtr", className
);
303 PyObject
* classobj
= PyDict_GetItemString(wxPython_dict
, buff
);
309 PyObject
* arg
= Py_BuildValue("(s)", swigptr
);
310 PyObject
* obj
= PyInstance_New(classobj
, arg
, NULL
);
317 // This function is used for all events destined for Python event handlers.
318 void wxPyCallback::EventThunker(wxEvent
& event
) {
319 wxPyCallback
* cb
= (wxPyCallback
*)event
.m_callbackUserData
;
320 PyObject
* func
= cb
->m_func
;
325 arg
= wxPyConstructObject((void*)&event
, event
.GetClassInfo()->GetClassName());
327 tuple
= PyTuple_New(1);
328 PyTuple_SET_ITEM(tuple
, 0, arg
);
329 result
= PyEval_CallObject(func
, tuple
);
341 //---------------------------------------------------------------------------
343 wxPyMenu::wxPyMenu(const wxString
& title
, PyObject
* _func
)
344 : wxMenu(title
, (wxFunction
)(func
? MenuCallback
: NULL
)), func(0) {
352 wxPyMenu::~wxPyMenu() {
358 void wxPyMenu::MenuCallback(wxMenu
& menu
, wxCommandEvent
& evt
) {
359 PyObject
* evtobj
= wxPyConstructObject((void*)&evt
, "wxCommandEvent");
360 PyObject
* menuobj
= wxPyConstructObject((void*)&menu
, "wxMenu");
361 if (PyErr_Occurred()) {
362 // bail out if a problem
366 // Now call the callback...
367 PyObject
* func
= ((wxPyMenu
*)&menu
)->func
;
368 PyObject
* args
= Py_BuildValue("(OO)", menuobj
, evtobj
);
369 PyObject
* res
= PyEval_CallObject(func
, args
);
377 //---------------------------------------------------------------------------
379 wxPyTimer::wxPyTimer(PyObject
* callback
) {
384 wxPyTimer::~wxPyTimer() {
388 void wxPyTimer::Notify() {
390 PyObject
* args
= Py_BuildValue("()");
392 result
= PyEval_CallObject(func
, args
);
404 //----------------------------------------------------------------------
405 // wxPyEvtHandlers class
406 //----------------------------------------------------------------------
408 //wxPyEvtHandlers::wxPyEvtHandlers()
409 // : pyOnActivate(0),
415 // pyOnDefaultAction(0),
417 // pyOnInitMenuPopup(0),
419 // pyOnMenuCommand(0),
420 // pyOnMenuSelect(0),
426 // pyOnSysColourChange(0),
428 // pyOnMouseEnter(0),
429 // pyOnRightClick(0),
430 // pyOnDoubleClickSash(0),
436 //wxPyEvtHandlers::~wxPyEvtHandlers()
438 // Py_XDECREF(pyOnActivate);
439 // Py_XDECREF(pyOnChar);
440 // Py_XDECREF(pyOnCharHook);
441 // Py_XDECREF(pyOnClose);
442 // Py_XDECREF(pyOnCommand);
443 // Py_XDECREF(pyOnDropFiles);
444 // Py_XDECREF(pyOnDefaultAction);
445 // Py_XDECREF(pyOnEvent);
446 // Py_XDECREF(pyOnInitMenuPopup);
447 // Py_XDECREF(pyOnKillFocus);
448 // Py_XDECREF(pyOnMenuCommand);
449 // Py_XDECREF(pyOnMenuSelect);
450 // Py_XDECREF(pyOnMove);
451 // Py_XDECREF(pyOnPaint);
452 // Py_XDECREF(pyOnScroll);
453 // Py_XDECREF(pyOnSetFocus);
454 // Py_XDECREF(pyOnSize);
455 // Py_XDECREF(pyOnSysColourChange);
456 // Py_XDECREF(pyOnLeftClick);
457 // Py_XDECREF(pyOnMouseEnter);
458 // Py_XDECREF(pyOnRightClick);
459 // Py_XDECREF(pyOnDoubleClickSash);
460 // Py_XDECREF(pyOnUnsplit);
462 // wxNode* node = cleanupList.First();
464 // delete (wxPyEvtHandlers*)node->Data();
466 // node = cleanupList.First();
469 // node = decrefList.First();
471 // PyObject* obj = (PyObject*)node->Data();
474 // node = decrefList.First();
476 //// printf("~wxPyEvtHandlers: %p\n", this);
479 ////----------------------------------------------------------------------
481 //Bool wxPyEvtHandlers::addCallback(char* name, PyObject* callback)
483 // Py_INCREF(callback);
485 // if (strcmp(name, "OnActivate") == 0) {
486 // pyOnActivate = callback;
489 // if (strcmp(name, "OnChar") == 0) {
490 // pyOnChar = callback;
493 // if (strcmp(name, "OnCharHook") == 0) {
494 // pyOnCharHook = callback;
497 // if (strcmp(name, "OnClose") == 0) {
498 // pyOnClose = callback;
501 // if (strcmp(name, "OnCommand") == 0) {
502 // pyOnCommand = callback;
505 // if (strcmp(name, "OnDropFiles") == 0) {
506 // pyOnDropFiles = callback;
509 // if (strcmp(name, "OnDefaultAction") == 0) {
510 // pyOnDefaultAction = callback;
513 // if (strcmp(name, "OnEvent") == 0) {
514 // pyOnEvent = callback;
517 // if (strcmp(name, "OnInitMenuPopup") == 0) {
518 // pyOnInitMenuPopup = callback;
521 // if (strcmp(name, "OnKillFocus") == 0) {
522 // pyOnKillFocus = callback;
525 // if (strcmp(name, "OnMenuCommand") == 0) {
526 // pyOnMenuCommand = callback;
529 // if (strcmp(name, "OnMenuSelect") == 0) {
530 // pyOnMenuSelect = callback;
533 // if (strcmp(name, "OnMove") == 0) {
534 // pyOnMove = callback;
537 // if (strcmp(name, "OnPaint") == 0) {
538 // pyOnPaint = callback;
541 // if (strcmp(name, "OnScroll") == 0) {
542 // pyOnScroll = callback;
545 // if (strcmp(name, "OnSetFocus") == 0) {
546 // pyOnSetFocus = callback;
549 // if (strcmp(name, "OnSize") == 0) {
550 // pyOnSize = callback;
553 // if (strcmp(name, "OnSysColourChange") == 0) {
554 // pyOnSysColourChange = callback;
557 // if (strcmp(name, "OnLeftClick") == 0) {
558 // pyOnLeftClick = callback;
561 // if (strcmp(name, "OnMouseEnter") == 0) {
562 // pyOnMouseEnter = callback;
565 // if (strcmp(name, "OnRightClick") == 0) {
566 // pyOnRightClick = callback;
569 // if (strcmp(name, "OnDoubleClickSash") == 0) {
570 // pyOnDoubleClickSash = callback;
573 // if (strcmp(name, "OnUnsplit") == 0) {
574 // pyOnUnsplit = callback;
578 // // If we get here, there was no match.
579 // Py_DECREF(callback);
584 ////----------------------------------------------------------------------
585 //// Helpers to assist in calling the python callable objects
586 ////----------------------------------------------------------------------
588 //PyObject* wxPyEvtHandlers::constructObject(void* ptr, char* className)
590 // char buff[64]; // should be big enough...
593 // sprintf(buff, "_%s_p", className);
594 // SWIG_MakePtr(swigptr, ptr, buff);
596 // sprintf(buff, "%sPtr", className);
597 // PyObject* classobj = PyDict_GetItemString(wxPython_dict, buff);
598 // PyObject* arg = Py_BuildValue("(s)", swigptr);
599 // PyObject* obj = PyInstance_New(classobj, arg, NULL);
607 //int wxPyEvtHandlers::callFunc(PyObject* func, PyObject* arglist)
610 // int retval = FALSE;
612 // result = PyEval_CallObject(func, arglist);
613 // Py_DECREF(arglist);
614 // if (result) { // Assumes an integer return type...
615 // retval = PyInt_AsLong(result);
616 // Py_DECREF(result);
617 // PyErr_Clear(); // forget about it if it's not...
624 ////---------------------------------------------------------------------------
625 //// Methods and helpers of the wxPy* classes
626 ////---------------------------------------------------------------------------
628 //IMP_OnActivate(wxFrame, wxPyFrame);
629 //IMP_OnCharHook(wxFrame, wxPyFrame);
630 //IMP_OnClose(wxFrame, wxPyFrame);
631 //IMP_OnMenuCommand(wxFrame, wxPyFrame);
632 //IMP_OnMenuSelect(wxFrame, wxPyFrame);
633 //IMP_OnSize(wxFrame, wxPyFrame);
634 //IMP_OnDropFiles(wxFrame, wxPyFrame);
636 //IMP_OnChar(wxCanvas, wxPyCanvas);
637 //IMP_OnEvent(wxCanvas, wxPyCanvas);
638 //IMP_OnPaint(wxCanvas, wxPyCanvas);
639 //IMP_OnScroll(wxCanvas, wxPyCanvas);
640 //IMP_OnDropFiles(wxCanvas, wxPyCanvas);
642 //IMP_OnChar(wxPanel, wxPyPanel);
643 //IMP_OnEvent(wxPanel, wxPyPanel);
644 //IMP_OnPaint(wxPanel, wxPyPanel);
645 //IMP_OnScroll(wxPanel, wxPyPanel);
646 //IMP_OnCommand(wxPanel, wxPyPanel);
647 //IMP_OnDefaultAction(wxPanel, wxPyPanel);
648 //IMP_OnDropFiles(wxPanel, wxPyPanel);
650 //IMP_OnChar(wxTextWindow, wxPyTextWindow);
651 //IMP_OnDropFiles(wxTextWindow, wxPyTextWindow);
653 //IMP_OnCharHook(wxDialogBox, wxPyDialogBox);
654 //IMP_OnClose(wxDialogBox, wxPyDialogBox);
655 //IMP_OnSize(wxDialogBox, wxPyDialogBox);
656 //IMP_OnDropFiles(wxDialogBox, wxPyDialogBox);
657 //IMP_OnChar(wxDialogBox, wxPyDialogBox);
658 //IMP_OnEvent(wxDialogBox, wxPyDialogBox);
659 //IMP_OnPaint(wxDialogBox, wxPyDialogBox);
660 //IMP_OnScroll(wxDialogBox, wxPyDialogBox);
661 //IMP_OnCommand(wxDialogBox, wxPyDialogBox);
662 //IMP_OnDefaultAction(wxDialogBox, wxPyDialogBox);
664 //IMP_OnChar(wxToolBar, wxPyToolBar);
665 //IMP_OnEvent(wxToolBar, wxPyToolBar);
666 //IMP_OnPaint(wxToolBar, wxPyToolBar);
667 //IMP_OnScroll(wxToolBar, wxPyToolBar);
668 //IMP_OnCommand(wxToolBar, wxPyToolBar);
669 //IMP_OnDefaultAction(wxToolBar, wxPyToolBar);
670 //IMP_OnDropFiles(wxToolBar, wxPyToolBar);
671 //IMP_OnMouseEnter(wxToolBar, wxPyToolBar);
672 //IMP_OnRightClick(wxToolBar, wxPyToolBar);
674 //IMP_OnChar(wxButtonBar, wxPyButtonBar);
675 //IMP_OnEvent(wxButtonBar, wxPyButtonBar);
676 //IMP_OnPaint(wxButtonBar, wxPyButtonBar);
677 //IMP_OnScroll(wxButtonBar, wxPyButtonBar);
678 //IMP_OnCommand(wxButtonBar, wxPyButtonBar);
679 //IMP_OnDefaultAction(wxButtonBar, wxPyButtonBar);
680 //IMP_OnDropFiles(wxButtonBar, wxPyButtonBar);
681 //IMP_OnMouseEnter(wxButtonBar, wxPyButtonBar);
682 //IMP_OnRightClick(wxButtonBar, wxPyButtonBar);
684 //IMP_OnDoubleClickSash(wxSplitterWindow, wxPySplitterWindow);
685 //IMP_OnUnsplit(wxSplitterWindow, wxPySplitterWindow);
689 //Bool wxPyToolBar::OnLeftClick(int a, int b) {
690 // wxPyEvtHandlers* peh=(wxPyEvtHandlers*)GetClientData();
691 // if (peh->pyOnLeftClick)
692 // return peh->callFunc(peh->pyOnLeftClick, Py_BuildValue("(ii)",a,b));
694 // // If there is no Python callback, redirect the request to
695 // // the OnMenuCommand of the parent frame.
696 // wxFrame* frame = (wxFrame*)GetParent();
697 // frame->OnMenuCommand(a);
701 //// return wxToolBar::OnLeftClick(a,b);
703 //Bool wxPyToolBar::baseclass_OnLeftClick(int a, int b) {
704 // return wxToolBar::OnLeftClick(a,b);
708 //Bool wxPyButtonBar::OnLeftClick(int a, int b) {
709 // wxPyEvtHandlers* peh=(wxPyEvtHandlers*)GetClientData();
710 // if (peh->pyOnLeftClick)
711 // return peh->callFunc(peh->pyOnLeftClick, Py_BuildValue("(ii)",a,b));
713 // // If there is no Python callback, redirect the request to
714 // // the OnMenuCommand of the parent frame.
715 // wxFrame* frame = (wxFrame*)GetParent();
716 // frame->OnMenuCommand(a);
720 //Bool wxPyButtonBar::baseclass_OnLeftClick(int a, int b) {
721 // return wxButtonBar::OnLeftClick(a,b);
726 //wxPyMenu::wxPyMenu(PyObject* _func)
727 // : wxMenu(NULL, (wxFunction)(func ? MenuCallback : NULL)), func(0) {
735 //wxPyMenu::~wxPyMenu() {
741 //void wxPyMenu::MenuCallback(wxWindow& win, wxCommandEvent& evt) {
742 // wxPyEvtHandlers* peh= new wxPyEvtHandlers; // Used for the helper methods
743 // PyObject* evtobj = peh->constructObject((void*)&evt, "wxCommandEvent");
744 // PyObject* winobj = peh->constructObject((void*)&win, "wxWindow");
745 // if (PyErr_Occurred()) {
746 // // bail out if a problem
751 // // Now call the callback...
752 // PyObject* func = ((wxPyMenu*)&win)->func;
753 // peh->callFunc(func, Py_BuildValue("(OO)", winobj, evtobj));
754 // Py_DECREF(evtobj);
755 // Py_DECREF(winobj);
761 //wxPyTimer::wxPyTimer(PyObject* callback) {
766 //wxPyTimer::~wxPyTimer() {
770 //void wxPyTimer::Notify() {
771 // wxPyEvtHandlers* peh= new wxPyEvtHandlers; // just for the helper methods
772 // peh->callFunc(func, Py_BuildValue("()"));
776 //----------------------------------------------------------------------
777 //----------------------------------------------------------------------
778 // Some helper functions for typemaps in my_typemaps.i, so they won't be
779 // imcluded in every file...
782 int* int_LIST_helper(PyObject
* source
) {
783 if (!PyList_Check(source
)) {
784 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
787 int count
= PyList_Size(source
);
788 int* temp
= new int[count
];
790 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
793 for (int x
=0; x
<count
; x
++) {
794 PyObject
* o
= PyList_GetItem(source
, x
);
795 if (! PyInt_Check(o
)) {
796 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
799 temp
[x
] = PyInt_AsLong(o
);
805 long* long_LIST_helper(PyObject
* source
) {
806 if (!PyList_Check(source
)) {
807 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
810 int count
= PyList_Size(source
);
811 long* temp
= new long[count
];
813 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
816 for (int x
=0; x
<count
; x
++) {
817 PyObject
* o
= PyList_GetItem(source
, x
);
818 if (! PyInt_Check(o
)) {
819 PyErr_SetString(PyExc_TypeError
, "Expected a list of integers.");
822 temp
[x
] = PyInt_AsLong(o
);
828 char** string_LIST_helper(PyObject
* source
) {
829 if (!PyList_Check(source
)) {
830 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
833 int count
= PyList_Size(source
);
834 char** temp
= new char*[count
];
836 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
839 for (int x
=0; x
<count
; x
++) {
840 PyObject
* o
= PyList_GetItem(source
, x
);
841 if (! PyString_Check(o
)) {
842 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
845 temp
[x
] = PyString_AsString(o
);
852 wxPoint
* wxPoint_LIST_helper(PyObject
* source
) {
853 if (!PyList_Check(source
)) {
854 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
857 int count
= PyList_Size(source
);
858 wxPoint
* temp
= new wxPoint
[count
];
860 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
863 for (int x
=0; x
<count
; x
++) {
864 PyObject
* o
= PyList_GetItem(source
, x
);
865 if (PyString_Check(o
)) {
866 char* st
= PyString_AsString(o
);
868 if (SWIG_GetPtr(st
,(void **) &pt
,"_wxPoint_p")) {
869 PyErr_SetString(PyExc_TypeError
,"Expected _wxPoint_p.");
874 else if (PyTuple_Check(o
)) {
875 PyObject
* o1
= PyTuple_GetItem(o
, 0);
876 PyObject
* o2
= PyTuple_GetItem(o
, 1);
878 temp
[x
].x
= PyInt_AsLong(o1
);
879 temp
[x
].y
= PyInt_AsLong(o2
);
882 PyErr_SetString(PyExc_TypeError
, "Expected a list of 2-tuples or wxPoints.");
890 wxBitmap
** wxBitmap_LIST_helper(PyObject
* source
) {
891 if (!PyList_Check(source
)) {
892 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
895 int count
= PyList_Size(source
);
896 wxBitmap
** temp
= new wxBitmap
*[count
];
898 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
901 for (int x
=0; x
<count
; x
++) {
902 PyObject
* o
= PyList_GetItem(source
, x
);
903 if (PyString_Check(o
)) {
904 char* st
= PyString_AsString(o
);
906 if (SWIG_GetPtr(st
,(void **) &pt
,"_wxBitmap_p")) {
907 PyErr_SetString(PyExc_TypeError
,"Expected _wxBitmap_p.");
913 PyErr_SetString(PyExc_TypeError
, "Expected a list of wxBitmaps.");
922 wxString
* wxString_LIST_helper(PyObject
* source
) {
923 if (!PyList_Check(source
)) {
924 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
927 int count
= PyList_Size(source
);
928 wxString
* temp
= new wxString
[count
];
930 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
933 for (int x
=0; x
<count
; x
++) {
934 PyObject
* o
= PyList_GetItem(source
, x
);
935 if (! PyString_Check(o
)) {
936 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
939 temp
[x
] = PyString_AsString(o
);
946 wxAcceleratorEntry
* wxAcceleratorEntry_LIST_helper(PyObject
* source
) {
947 if (!PyList_Check(source
)) {
948 PyErr_SetString(PyExc_TypeError
, "Expected a list object.");
951 int count
= PyList_Size(source
);
952 wxAcceleratorEntry
* temp
= new wxAcceleratorEntry
[count
];
954 PyErr_SetString(PyExc_MemoryError
, "Unable to allocate temporary array");
957 for (int x
=0; x
<count
; x
++) {
958 PyObject
* o
= PyList_GetItem(source
, x
);
959 if (PyString_Check(o
)) {
960 char* st
= PyString_AsString(o
);
961 wxAcceleratorEntry
* ae
;
962 if (SWIG_GetPtr(st
,(void **) &ae
,"_wxAcceleratorEntry_p")) {
963 PyErr_SetString(PyExc_TypeError
,"Expected _wxAcceleratorEntry_p.");
968 else if (PyTuple_Check(o
)) {
969 PyObject
* o1
= PyTuple_GetItem(o
, 0);
970 PyObject
* o2
= PyTuple_GetItem(o
, 1);
971 PyObject
* o3
= PyTuple_GetItem(o
, 2);
973 temp
[x
].m_flags
= PyInt_AsLong(o1
);
974 temp
[x
].m_keyCode
= PyInt_AsLong(o2
);
975 temp
[x
].m_command
= PyInt_AsLong(o3
);
978 PyErr_SetString(PyExc_TypeError
, "Expected a list of 3-tuples or wxAcceleratorEntry objects.");
987 //----------------------------------------------------------------------
988 // A WinMain for when wxWindows and Python are linked together in a single
989 // application, instead of as a dynamic module
992 //#if !defined(WIN_PYD) && defined(WIN32)
994 //extern "C" int Py_Main(int argc, char** argv);
996 //int APIENTRY WinMain(HANDLE hInstance, HANDLE hPrevInstance, LPSTR m_lpCmdLine,
1002 // // Initialize wxWindows, but don't start the main loop
1003 // wxEntry(hInstance, hPrevInstance, m_lpCmdLine, nCmdShow, FALSE);
1006 // PyObject *argvList = PyList_New(0);
1008 // char* stderrfilename = "wxpstderr.log";
1010 // char* script = NULL;
1011 // int argc = wxPythonApp->argc;
1012 // char** argv = wxPythonApp->argv;
1014 // for (int i = 1; i < argc; i++) {
1015 // if (strncmp(argv[i], "wxpstderr=", 10) == 0)
1016 // stderrfilename = argv[i]+10;
1018 // PyList_Append(argvList, PyString_FromString(argv[i]));
1020 // script = argv[i];
1025 // PySys_SetObject("argv", argvList);
1029 //// //PyRun_SimpleString("import sys; sys.stdout=open('wxpstdout.log','w')");
1030 // sprintf(buf, "import sys; sys.stdout=sys.stderr=open('%s','w')", stderrfilename);
1031 // PyRun_SimpleString(buf);
1037 // FILE *fp = fopen(script, "r");
1039 // PyRun_SimpleFile(fp, script);// This returns after wxpApp constructor
1044 // sprintf(msg, "Cannot open %s", script);
1045 // wxMessageBox(msg);
1049 // PyRun_SimpleString("import wxpide");
1057 //----------------------------------------------------------------------
1059 /////////////////////////////////////////////////////////////////////////////
1062 // Revision 1.4 1998/08/16 04:31:06 RD
1065 // Revision 1.3 1998/08/15 07:36:36 RD
1066 // - Moved the header in the .i files out of the code that gets put into
1067 // the .cpp files. It caused CVS conflicts because of the RCS ID being
1068 // different each time.
1070 // - A few minor fixes.
1072 // Revision 1.2 1998/08/14 23:36:36 RD
1073 // Beginings of wxGTK compatibility
1075 // Revision 1.1 1998/08/09 08:25:51 RD