]>
Commit | Line | Data |
---|---|---|
8d99be5f VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/control.h | |
3 | // Purpose: wxControl common interface | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 26.07.99 | |
7 | // RCS-ID: $Id$ | |
77ffb593 | 8 | // Copyright: (c) wxWidgets team |
65571936 | 9 | // Licence: wxWindows licence |
8d99be5f VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_CONTROL_H_BASE_ |
13 | #define _WX_CONTROL_H_BASE_ | |
c801d85f | 14 | |
8d99be5f VZ |
15 | // ---------------------------------------------------------------------------- |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
12028905 | 19 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
1b68e0b5 | 20 | #pragma interface "controlbase.h" |
8d99be5f VZ |
21 | #endif |
22 | ||
997176a3 VZ |
23 | #include "wx/defs.h" |
24 | ||
1e6feb95 VZ |
25 | #if wxUSE_CONTROLS |
26 | ||
8d99be5f VZ |
27 | #include "wx/window.h" // base class |
28 | ||
403aced8 | 29 | WXDLLEXPORT_DATA(extern const wxChar*) wxControlNameStr; |
1e6feb95 | 30 | |
8d99be5f VZ |
31 | // ---------------------------------------------------------------------------- |
32 | // wxControl is the base class for all controls | |
33 | // ---------------------------------------------------------------------------- | |
34 | ||
fe161a26 | 35 | |
8d99be5f VZ |
36 | class WXDLLEXPORT wxControlBase : public wxWindow |
37 | { | |
38 | public: | |
fe161a26 | 39 | wxControlBase() { Init(); } |
fc7a2a60 | 40 | |
799ea011 GD |
41 | virtual ~wxControlBase(); |
42 | ||
1e6feb95 VZ |
43 | // Create() function adds the validator parameter |
44 | bool Create(wxWindow *parent, wxWindowID id, | |
45 | const wxPoint& pos = wxDefaultPosition, | |
46 | const wxSize& size = wxDefaultSize, | |
47 | long style = 0, | |
48 | const wxValidator& validator = wxDefaultValidator, | |
49 | const wxString& name = wxControlNameStr); | |
50 | ||
1e6feb95 VZ |
51 | // get the control alignment (left/right/centre, top/bottom/centre) |
52 | int GetAlignment() const { return m_windowStyle & wxALIGN_MASK; } | |
53 | ||
9f4b4671 | 54 | |
d4864e97 VZ |
55 | // controls by default inherit the colours of their parents, if a |
56 | // particular control class doesn't want to do it, it can override | |
57 | // ShouldInheritColours() to return false | |
58 | virtual bool ShouldInheritColours() const { return true; } | |
59 | ||
9f4b4671 VZ |
60 | |
61 | // WARNING: this doesn't work for all controls nor all platforms! | |
62 | // | |
63 | // simulates the event of given type (i.e. wxButton::Command() is just as | |
64 | // if the button was clicked) | |
65 | virtual void Command(wxCommandEvent &event); | |
66 | ||
fe161a26 RD |
67 | |
68 | virtual void SetLabel(const wxString& label); | |
69 | virtual bool SetFont(const wxFont& font); | |
70 | virtual bool GetAdjustMinSizeFlag() const { return m_adjustMinSize; } | |
71 | void SetAdjustMinSizeFlag(bool adjust) { m_adjustMinSize = adjust; } | |
72 | ||
73 | ||
8d99be5f | 74 | protected: |
fe161a26 RD |
75 | void Init(); |
76 | ||
3f2711d5 VZ |
77 | // creates the control (calls wxWindowBase::CreateBase inside) and adds it |
78 | // to the list of parents children | |
8d99be5f VZ |
79 | bool CreateControl(wxWindowBase *parent, |
80 | wxWindowID id, | |
81 | const wxPoint& pos, | |
82 | const wxSize& size, | |
83 | long style, | |
84 | const wxValidator& validator, | |
85 | const wxString& name); | |
86 | ||
bfbd6dc1 VZ |
87 | // initialize the common fields of wxCommandEvent |
88 | void InitCommandEvent(wxCommandEvent& event) const; | |
fc7a2a60 | 89 | |
085dd1e9 VZ |
90 | // set the initial window size if none is given (i.e. at least one of the |
91 | // components of the size passed to ctor/Create() is -1) | |
92 | // | |
93 | // normally just calls SetBestSize() but can be overridden not to do it for | |
94 | // the controls which have to do some additional initialization (e.g. add | |
95 | // strings to list box) before their best size can be accurately calculated | |
96 | virtual void SetInitialBestSize(const wxSize& size) | |
97 | { | |
98 | SetBestSize(size); | |
99 | } | |
100 | ||
fe161a26 RD |
101 | // should minsize and size be adjusted when font or label change? |
102 | bool m_adjustMinSize; | |
103 | ||
fc7a2a60 | 104 | DECLARE_NO_COPY_CLASS(wxControlBase) |
8d99be5f VZ |
105 | }; |
106 | ||
107 | // ---------------------------------------------------------------------------- | |
108 | // include platform-dependent wxControl declarations | |
109 | // ---------------------------------------------------------------------------- | |
f03fc89f | 110 | |
1e6feb95 VZ |
111 | #if defined(__WXUNIVERSAL__) |
112 | #include "wx/univ/control.h" | |
113 | #elif defined(__WXMSW__) | |
8d99be5f | 114 | #include "wx/msw/control.h" |
2049ba38 | 115 | #elif defined(__WXMOTIF__) |
8d99be5f | 116 | #include "wx/motif/control.h" |
2049ba38 | 117 | #elif defined(__WXGTK__) |
8d99be5f | 118 | #include "wx/gtk/control.h" |
34138703 | 119 | #elif defined(__WXMAC__) |
8d99be5f | 120 | #include "wx/mac/control.h" |
e64df9bc DE |
121 | #elif defined(__WXCOCOA__) |
122 | #include "wx/cocoa/control.h" | |
1777b9bb DW |
123 | #elif defined(__WXPM__) |
124 | #include "wx/os2/control.h" | |
c801d85f KB |
125 | #endif |
126 | ||
1e6feb95 VZ |
127 | #endif // wxUSE_CONTROLS |
128 | ||
c801d85f | 129 | #endif |
34138703 | 130 | // _WX_CONTROL_H_BASE_ |