]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
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$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
42e69d6b | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_CONTROL_H_ |
13 | #define _WX_CONTROL_H_ | |
2bda0e17 | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
341c92a8 | 16 | #pragma interface "control.h" |
2bda0e17 KB |
17 | #endif |
18 | ||
10a0bdb1 VZ |
19 | #include "wx/dynarray.h" |
20 | ||
2bda0e17 | 21 | // General item class |
8d99be5f | 22 | class WXDLLEXPORT wxControl : public wxControlBase |
2bda0e17 | 23 | { |
2bda0e17 | 24 | public: |
fc7a2a60 VZ |
25 | wxControl(); |
26 | wxControl(wxWindow *parent, wxWindowID id, | |
27 | const wxPoint& pos = wxDefaultPosition, | |
28 | const wxSize& size = wxDefaultSize, long style = 0, | |
29 | const wxValidator& validator = wxDefaultValidator, | |
30 | const wxString& name = wxControlNameStr) | |
8d772832 RD |
31 | { |
32 | Create(parent, id, pos, size, style, validator, name); | |
33 | } | |
34 | ||
35 | bool Create(wxWindow *parent, wxWindowID id, | |
36 | const wxPoint& pos = wxDefaultPosition, | |
37 | const wxSize& size = wxDefaultSize, long style = 0, | |
8d772832 | 38 | const wxValidator& validator = wxDefaultValidator, |
8d772832 RD |
39 | const wxString& name = wxControlNameStr); |
40 | ||
41 | virtual ~wxControl(); | |
341c92a8 | 42 | |
479cd5de VZ |
43 | // Simulates an event |
44 | virtual void Command(wxCommandEvent& event) { ProcessCommand(event); } | |
8d99be5f | 45 | |
479cd5de VZ |
46 | // implementation from now on |
47 | // -------------------------- | |
2bda0e17 | 48 | |
479cd5de VZ |
49 | // Calls the callback and appropriate event handlers |
50 | bool ProcessCommand(wxCommandEvent& event); | |
2bda0e17 | 51 | |
479cd5de | 52 | // MSW-specific |
a23fd0e1 | 53 | #ifdef __WIN95__ |
479cd5de | 54 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); |
a23fd0e1 | 55 | #endif // Win95 |
2bda0e17 | 56 | |
479cd5de VZ |
57 | // For ownerdraw items |
58 | virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *WXUNUSED(item)) { return FALSE; }; | |
59 | virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT *WXUNUSED(item)) { return FALSE; }; | |
2bda0e17 | 60 | |
bf25c88b | 61 | const wxArrayLong& GetSubcontrols() const { return m_subControls; } |
341c92a8 | 62 | |
479cd5de | 63 | void OnEraseBackground(wxEraseEvent& event); |
a23fd0e1 | 64 | |
479cd5de VZ |
65 | virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, |
66 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
f048e32f | 67 | |
42e69d6b | 68 | protected: |
65bc172c VZ |
69 | // choose the default border for this window |
70 | virtual wxBorder GetDefaultBorder() const; | |
479cd5de | 71 | |
d41f7b20 | 72 | // return default best size (doesn't really make any sense, override this) |
479cd5de VZ |
73 | virtual wxSize DoGetBestSize() const; |
74 | ||
6dd16e4f VZ |
75 | // create the control of the given Windows class: this is typically called |
76 | // from Create() method of the derived class passing its label, pos and | |
77 | // size parameter (style parameter is not needed because m_windowStyle is | |
78 | // supposed to had been already set and so is used instead when this | |
79 | // function is called) | |
5b2f31eb VZ |
80 | bool MSWCreateControl(const wxChar *classname, |
81 | const wxString& label, | |
82 | const wxPoint& pos, | |
6dd16e4f | 83 | const wxSize& size); |
5b2f31eb VZ |
84 | |
85 | // NB: the method below is deprecated now, with MSWGetStyle() the method | |
86 | // above should be used instead! Once all the controls are updated to | |
87 | // implement MSWGetStyle() this version will disappear. | |
88 | // | |
b225f659 VZ |
89 | // create the control of the given class with the given style (combination |
90 | // of WS_XXX flags, i.e. Windows style, not wxWindows one), returns | |
91 | // FALSE if creation failed | |
479cd5de VZ |
92 | // |
93 | // All parameters except classname and style are optional, if the | |
b225f659 VZ |
94 | // size/position are not given, they should be set later with SetSize() |
95 | // and, label (the title of the window), of course, is left empty. The | |
96 | // extended style is determined from the style and the app 3D settings | |
97 | // automatically if it's not specified explicitly. | |
479cd5de | 98 | bool MSWCreateControl(const wxChar *classname, |
b225f659 VZ |
99 | WXDWORD style, |
100 | const wxPoint& pos = wxDefaultPosition, | |
101 | const wxSize& size = wxDefaultSize, | |
102 | const wxString& label = wxEmptyString, | |
2eb4c3aa | 103 | WXDWORD exstyle = (WXDWORD)-1); |
479cd5de | 104 | |
5b2f31eb VZ |
105 | // default style for the control include WS_TABSTOP if it AcceptsFocus() |
106 | virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; | |
4438caf4 | 107 | |
65bc172c VZ |
108 | // for controls like radiobuttons which are really composite this array |
109 | // holds the ids (not HWNDs!) of the sub controls | |
110 | wxArrayLong m_subControls; | |
111 | ||
341c92a8 | 112 | private: |
fc7a2a60 | 113 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxControl) |
479cd5de | 114 | DECLARE_EVENT_TABLE() |
2bda0e17 KB |
115 | }; |
116 | ||
2bda0e17 | 117 | #endif |
bbcdf8bc | 118 | // _WX_CONTROL_H_ |