]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/helpers.h
Additions for wxTreeCtrl
[wxWidgets.git] / utils / wxPython / src / helpers.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: helpers.h
3 // Purpose: Helper functions/classes for the wxPython extenaion module
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 7/1/97
8 // RCS-ID: $Id$
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13 #ifndef __wxp_helpers__
14 #define __wxp_helpers__
15
16 #include <wx/wx.h>
17
18
19 //----------------------------------------------------------------------
20
21 class wxPyApp: public wxApp
22 {
23 public:
24 int MainLoop(void);
25 bool OnInit(void);
26 void AfterMainLoop(void);
27 };
28
29 extern wxPyApp *wxPythonApp;
30
31 //----------------------------------------------------------------------
32
33 void __wxPreStart();
34 PyObject* __wxStart(PyObject*, PyObject* args);
35
36 extern PyObject* wxPython_dict;
37 PyObject* __wxSetDictionary(PyObject*, PyObject* args);
38
39 extern wxHashTable* wxPyWindows; // keep track of all windows so we
40 // don't accidentally delete them twice.
41
42 void wxPyEventThunker(wxObject*, wxEvent& event);
43
44 //----------------------------------------------------------------------
45
46
47 #ifndef SWIGCODE
48 extern "C" void SWIG_MakePtr(char *, void *, char *);
49 extern "C" char *SWIG_GetPtr(char *, void **, char *);
50 #endif
51
52
53 #ifdef _MSC_VER
54 # pragma warning(disable:4800)
55 #endif
56
57
58 // Non-const versions to keep SWIG happy.
59 extern wxPoint wxPyDefaultPosition;
60 extern wxSize wxPyDefaultSize;
61 extern wxString wxPyEmptyStr;
62
63 //----------------------------------------------------------------------
64
65 class wxPyCallback : public wxObject {
66 public:
67 wxPyCallback(PyObject* func) { m_func = func; Py_INCREF(m_func); }
68 ~wxPyCallback() { Py_DECREF(m_func); }
69
70 void EventThunker(wxEvent& event);
71
72 PyObject* m_func;
73 };
74
75 //---------------------------------------------------------------------------
76
77 class wxPyMenu : public wxMenu {
78 public:
79 wxPyMenu(const wxString& title = "", PyObject* func=NULL);
80 ~wxPyMenu();
81
82 private:
83 static void MenuCallback(wxMenu& menu, wxCommandEvent& evt);
84 PyObject* func;
85 };
86
87
88 //---------------------------------------------------------------------------
89
90 class wxPyTimer : public wxTimer {
91 public:
92 wxPyTimer(PyObject* callback);
93 ~wxPyTimer();
94
95 void Notify();
96
97 private:
98 PyObject* func;
99 };
100
101 //---------------------------------------------------------------------------
102 /////////////////////////////////////////////////////////////////////////////
103 //
104 // $Log$
105 // Revision 1.5 1998/10/02 06:40:40 RD
106 // Version 0.4 of wxPython for MSW.
107 //
108 // Revision 1.4 1998/08/27 21:59:09 RD
109 // Some chicken-and-egg problems solved for wxPython on wxGTK
110 //
111 // Revision 1.3 1998/08/16 04:31:09 RD
112 // More wxGTK work.
113 //
114 // Revision 1.2 1998/08/14 23:36:37 RD
115 // Beginings of wxGTK compatibility
116 //
117 // Revision 1.1 1998/08/09 08:25:51 RD
118 // Initial version
119 //
120 //
121
122 #endif
123