1. wxMSW seems to work (please test and send your bug reports!)
[wxWidgets.git] / include / wx / msw / control.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: control.h
3 // Purpose: wxControl class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_CONTROL_H_
13 #define _WX_CONTROL_H_
14
15 #ifdef __GNUG__
16 #pragma interface "control.h"
17 #endif
18
19 #include "wx/window.h"
20 #include "wx/list.h"
21
22 // General item class
23 class WXDLLEXPORT wxControl : public wxWindow
24 {
25 DECLARE_ABSTRACT_CLASS(wxControl)
26
27 public:
28 wxControl();
29 virtual ~wxControl();
30
31 // Simulates an event
32 bool Command(wxCommandEvent& event) { return ProcessCommand(event); }
33
34 // Calls the callback and appropriate event handlers
35 bool ProcessCommand(wxCommandEvent& event);
36
37 // Places item in centre of panel - so can't be used BEFORE panel->Fit()
38 void Centre(int direction = wxHORIZONTAL);
39
40 // MSW-specific
41 #ifdef __WIN95__
42 virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
43 #endif // Win95
44
45 // For ownerdraw items
46 virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *WXUNUSED(item)) { return FALSE; };
47 virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT *WXUNUSED(item)) { return FALSE; };
48
49 wxList& GetSubcontrols() { return m_subControls; }
50
51 void OnEraseBackground(wxEraseEvent& event);
52
53 #if WXWIN_COMPATIBILITY
54 virtual void SetButtonColour(const wxColour& WXUNUSED(col)) { }
55 wxColour* GetButtonColour() const { return NULL; }
56
57 inline virtual void SetLabelFont(const wxFont& font);
58 inline virtual void SetButtonFont(const wxFont& font);
59 inline wxFont& GetLabelFont() const;
60 inline wxFont& GetButtonFont() const;
61
62 // Adds callback
63 inline void Callback(const wxFunction function);
64
65 wxFunction GetCallback() { return m_callback; }
66
67 protected:
68 wxFunction m_callback; // Callback associated with the window
69 #endif // WXWIN_COMPATIBILITY
70
71 protected:
72 // For controls like radiobuttons which are really composite
73 wxList m_subControls;
74
75 private:
76 DECLARE_EVENT_TABLE()
77 };
78
79
80 #if WXWIN_COMPATIBILITY
81 inline void wxControl::Callback(const wxFunction f) { m_callback = f; };
82 inline wxFont& wxControl::GetLabelFont() const { return GetFont() ; }
83 inline wxFont& wxControl::GetButtonFont() const { return GetFont() ; }
84 inline void wxControl::SetLabelFont(const wxFont& font) { SetFont(font); }
85 inline void wxControl::SetButtonFont(const wxFont& font) { SetFont(font); }
86 #endif // WXWIN_COMPATIBILITY
87
88 #endif
89 // _WX_CONTROL_H_