]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/include/wx/wxPython/pyclasses.h
1 ////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxPython python-aware classes for redirecting virtual method
4 // calls for classes located in the core but that need to be
5 // visible to multiple modules
9 // Created: 11-Oct-2003
11 // Copyright: (c) 2003 by Total Control Software
12 // Licence: wxWindows license
13 /////////////////////////////////////////////////////////////////////////////
15 #ifndef __pyclasses_h__
16 #define __pyclasses_h__
20 //---------------------------------------------------------------------------
22 class wxPySizer
: public wxSizer
{
23 DECLARE_DYNAMIC_CLASS(wxPySizer
)
25 wxPySizer() : wxSizer() {};
27 DEC_PYCALLBACK___pure(RecalcSizes
);
28 DEC_PYCALLBACK_wxSize__pure(CalcMin
);
33 //---------------------------------------------------------------------------
35 class wxPyValidator
: public wxValidator
{
36 DECLARE_DYNAMIC_CLASS(wxPyValidator
)
44 wxObject
* Clone() const {
45 wxPyValidator
* ptr
= NULL
;
46 wxPyValidator
* self
= (wxPyValidator
*)this;
48 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
49 if (wxPyCBH_findCallback(self
->m_myInst
, "Clone")) {
51 ro
= wxPyCBH_callCallbackObj(self
->m_myInst
, Py_BuildValue("()"));
53 wxPyConvertSwigPtr(ro
, (void **)&ptr
, wxT("wxPyValidator"));
57 wxPyEndBlockThreads(blocked
);
59 // This is very dangerous!!! But is the only way I could find
60 // to squash a memory leak. Currently it is okay, but if the
61 // validator architecture in wxWindows ever changes, problems
68 DEC_PYCALLBACK_BOOL_WXWIN(Validate
);
69 DEC_PYCALLBACK_BOOL_(TransferToWindow
);
70 DEC_PYCALLBACK_BOOL_(TransferFromWindow
);
76 //---------------------------------------------------------------------------
79 class wxPyTimer
: public wxTimer
82 wxPyTimer(wxEvtHandler
*owner
=NULL
, int id
= -1);
84 DEC_PYCALLBACK__(Notify
);
86 DECLARE_ABSTRACT_CLASS(wxPyTimer
)
90 //---------------------------------------------------------------------------
93 class wxPyProcess
: public wxProcess
{
95 wxPyProcess(wxEvtHandler
*parent
= NULL
, int id
= -1)
96 : wxProcess(parent
, id
)
99 DEC_PYCALLBACK_VOID_INTINT(OnTerminate
);
105 //---------------------------------------------------------------------------
108 class wxPyDropSource
: public wxDropSource
{
111 wxPyDropSource(wxWindow
*win
= NULL
,
112 const wxCursor
©
= wxNullCursor
,
113 const wxCursor
&move
= wxNullCursor
,
114 const wxCursor
&none
= wxNullCursor
)
115 : wxDropSource(win
, copy
, move
, none
) {}
117 wxPyDropSource(wxWindow
*win
= NULL
,
118 const wxIcon
& copy
= wxNullIcon
,
119 const wxIcon
& move
= wxNullIcon
,
120 const wxIcon
& none
= wxNullIcon
)
121 : wxDropSource(win
, copy
, move
, none
) {}
123 ~wxPyDropSource() { }
125 DEC_PYCALLBACK_BOOL_DR(GiveFeedback
);
130 class wxPyDropTarget
: public wxDropTarget
{
132 wxPyDropTarget(wxDataObject
*dataObject
= NULL
)
133 : wxDropTarget(dataObject
) {}
135 // called when mouse leaves the window: might be used to remove the
136 // feedback which was given in OnEnter()
137 DEC_PYCALLBACK__(OnLeave
);
139 // called when the mouse enters the window (only once until OnLeave())
140 DEC_PYCALLBACK_DR_2WXCDR(OnEnter
);
142 // called when the mouse moves in the window - shouldn't take long to
143 // execute or otherwise mouse movement would be too slow
144 DEC_PYCALLBACK_DR_2WXCDR(OnDragOver
);
146 // called after OnDrop() returns True: you will usually just call
147 // GetData() from here and, probably, also refresh something to update the
148 // new data and, finally, return the code indicating how did the operation
149 // complete (returning default value in case of success and wxDragError on
150 // failure is usually ok)
151 DEC_PYCALLBACK_DR_2WXCDR_pure(OnData
);
153 // this function is called when data is dropped at position (x, y) - if it
154 // returns True, OnData() will be called immediately afterwards which will
155 // allow to retrieve the data dropped.
156 DEC_PYCALLBACK_BOOL_INTINT(OnDrop
);
164 //---------------------------------------------------------------------------
166 class wxPyVScrolledWindow
;
168 class wxPyHtmlListBox
;
170 class wxPyScrolledWindow
;
171 class wxPyPopupTransientWindow
;
172 class wxPyPreviewFrame
;
174 class wxPyPreviewControlBar
;
175 class wxPyPrintPreview
;
179 class wxGenericDragImage
;
180 class wxPyTaskBarIcon
;
185 class wxTaskBarIconEvent
;
187 class wxToggleButton
;
190 //---------------------------------------------------------------------------
192 //---------------------------------------------------------------------------
193 //---------------------------------------------------------------------------