]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/control.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxControl class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CONTROL_H_
13 #define _WX_CONTROL_H_
16 #pragma interface "control.h"
19 #include "wx/window.h"
21 #include "wx/validate.h"
23 #define wxControlNameStr _T("control")
26 class WXDLLEXPORT wxControl
: public wxControlBase
28 DECLARE_ABSTRACT_CLASS(wxControl
)
32 wxControl( wxWindow
*parent
,
34 const wxPoint
&pos
= wxDefaultPosition
,
35 const wxSize
&size
= wxDefaultSize
,
37 const wxValidator
& validator
= wxDefaultValidator
,
38 const wxString
&name
= wxControlNameStr
)
40 Create(parent
, id
, pos
, size
, style
, validator
, name
);
43 bool Create(wxWindow
*parent
, wxWindowID id
,
44 const wxPoint
& pos
= wxDefaultPosition
,
45 const wxSize
& size
= wxDefaultSize
, long style
= 0,
46 const wxValidator
& validator
= wxDefaultValidator
,
47 const wxString
& name
= wxControlNameStr
);
51 // simulates the event, returns TRUE if the event was processed
52 virtual void Command(wxCommandEvent
& WXUNUSED(event
)) { }
54 // calls the callback and appropriate event handlers, returns TRUE if
55 // event was processed
56 virtual bool ProcessCommand(wxCommandEvent
& event
);
58 virtual void SetLabel(const wxString
& label
);
59 virtual wxString
GetLabel() const ;
61 #if WXWIN_COMPATIBILITY
62 void Callback(const wxFunction function
) { m_callback
= function
; }; // Adds callback
64 wxFunction
GetCallback() { return m_callback
; }
65 #endif // WXWIN_COMPATIBILITY
67 bool InSetValue() const { return m_inSetValue
; }
70 #if WXWIN_COMPATIBILITY
71 wxFunction m_callback
; // Callback associated with the window
72 #endif // WXWIN_COMPATIBILITY
74 bool m_inSetValue
; // Motif: prevent callbacks being called while