]>
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 | ||
16cba29d | 29 | extern WXDLLEXPORT_DATA(const wxChar*) wxControlNameStr; |
1e6feb95 | 30 | |
8d99be5f VZ |
31 | // ---------------------------------------------------------------------------- |
32 | // wxControl is the base class for all controls | |
33 | // ---------------------------------------------------------------------------- | |
34 | ||
35 | class WXDLLEXPORT wxControlBase : public wxWindow | |
36 | { | |
37 | public: | |
c0e6c051 | 38 | wxControlBase() { } |
fc7a2a60 | 39 | |
799ea011 GD |
40 | virtual ~wxControlBase(); |
41 | ||
1e6feb95 VZ |
42 | // Create() function adds the validator parameter |
43 | bool Create(wxWindow *parent, wxWindowID id, | |
44 | const wxPoint& pos = wxDefaultPosition, | |
45 | const wxSize& size = wxDefaultSize, | |
46 | long style = 0, | |
47 | const wxValidator& validator = wxDefaultValidator, | |
48 | const wxString& name = wxControlNameStr); | |
49 | ||
1e6feb95 VZ |
50 | // get the control alignment (left/right/centre, top/bottom/centre) |
51 | int GetAlignment() const { return m_windowStyle & wxALIGN_MASK; } | |
52 | ||
9f4b4671 | 53 | |
d4864e97 VZ |
54 | // controls by default inherit the colours of their parents, if a |
55 | // particular control class doesn't want to do it, it can override | |
56 | // ShouldInheritColours() to return false | |
57 | virtual bool ShouldInheritColours() const { return true; } | |
58 | ||
9f4b4671 VZ |
59 | |
60 | // WARNING: this doesn't work for all controls nor all platforms! | |
61 | // | |
62 | // simulates the event of given type (i.e. wxButton::Command() is just as | |
63 | // if the button was clicked) | |
64 | virtual void Command(wxCommandEvent &event); | |
65 | ||
9f884528 RD |
66 | virtual void SetLabel( const wxString &label ); |
67 | virtual bool SetFont(const wxFont& font); | |
68 | ||
8d99be5f | 69 | protected: |
3f2711d5 VZ |
70 | // creates the control (calls wxWindowBase::CreateBase inside) and adds it |
71 | // to the list of parents children | |
8d99be5f VZ |
72 | bool CreateControl(wxWindowBase *parent, |
73 | wxWindowID id, | |
74 | const wxPoint& pos, | |
75 | const wxSize& size, | |
76 | long style, | |
77 | const wxValidator& validator, | |
78 | const wxString& name); | |
79 | ||
bfbd6dc1 VZ |
80 | // initialize the common fields of wxCommandEvent |
81 | void InitCommandEvent(wxCommandEvent& event) const; | |
fc7a2a60 | 82 | |
085dd1e9 VZ |
83 | // set the initial window size if none is given (i.e. at least one of the |
84 | // components of the size passed to ctor/Create() is -1) | |
85 | // | |
86 | // normally just calls SetBestSize() but can be overridden not to do it for | |
87 | // the controls which have to do some additional initialization (e.g. add | |
88 | // strings to list box) before their best size can be accurately calculated | |
89 | virtual void SetInitialBestSize(const wxSize& size) | |
90 | { | |
91 | SetBestSize(size); | |
92 | } | |
93 | ||
fc7a2a60 | 94 | DECLARE_NO_COPY_CLASS(wxControlBase) |
8d99be5f VZ |
95 | }; |
96 | ||
97 | // ---------------------------------------------------------------------------- | |
98 | // include platform-dependent wxControl declarations | |
99 | // ---------------------------------------------------------------------------- | |
f03fc89f | 100 | |
1e6feb95 VZ |
101 | #if defined(__WXUNIVERSAL__) |
102 | #include "wx/univ/control.h" | |
4055ed82 | 103 | #elif defined(__WXPALMOS__) |
ffecfa5a | 104 | #include "wx/palmos/control.h" |
1e6feb95 | 105 | #elif defined(__WXMSW__) |
8d99be5f | 106 | #include "wx/msw/control.h" |
2049ba38 | 107 | #elif defined(__WXMOTIF__) |
8d99be5f | 108 | #include "wx/motif/control.h" |
2049ba38 | 109 | #elif defined(__WXGTK__) |
8d99be5f | 110 | #include "wx/gtk/control.h" |
34138703 | 111 | #elif defined(__WXMAC__) |
8d99be5f | 112 | #include "wx/mac/control.h" |
e64df9bc DE |
113 | #elif defined(__WXCOCOA__) |
114 | #include "wx/cocoa/control.h" | |
1777b9bb DW |
115 | #elif defined(__WXPM__) |
116 | #include "wx/os2/control.h" | |
c801d85f KB |
117 | #endif |
118 | ||
1e6feb95 VZ |
119 | #endif // wxUSE_CONTROLS |
120 | ||
c801d85f | 121 | #endif |
34138703 | 122 | // _WX_CONTROL_H_BASE_ |