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_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "control.h"
19 #include "wx/dynarray.h"
22 class WXDLLEXPORT wxControl
: public wxControlBase
27 wxControl(wxWindow
*parent
, wxWindowID id
,
28 const wxPoint
& pos
= wxDefaultPosition
,
29 const wxSize
& size
= wxDefaultSize
, long style
= 0,
30 const wxValidator
& validator
= wxDefaultValidator
,
31 const wxString
& name
= wxControlNameStr
)
33 Create(parent
, id
, pos
, size
, style
, validator
, name
);
36 bool Create(wxWindow
*parent
, wxWindowID id
,
37 const wxPoint
& pos
= wxDefaultPosition
,
38 const wxSize
& size
= wxDefaultSize
, long style
= 0,
39 const wxValidator
& validator
= wxDefaultValidator
,
40 const wxString
& name
= wxControlNameStr
);
45 virtual void Command(wxCommandEvent
& event
) { ProcessCommand(event
); }
48 // implementation from now on
49 // --------------------------
51 virtual wxVisualAttributes
GetDefaultAttributes() const
53 return GetClassDefaultAttributes(GetWindowVariant());
56 static wxVisualAttributes
57 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
59 // Calls the callback and appropriate event handlers
60 bool ProcessCommand(wxCommandEvent
& event
);
64 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
67 // For ownerdraw items
68 virtual bool MSWOnDraw(WXDRAWITEMSTRUCT
*WXUNUSED(item
)) { return false; };
69 virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT
*WXUNUSED(item
)) { return false; };
71 const wxArrayLong
& GetSubcontrols() const { return m_subControls
; }
73 virtual WXHBRUSH
MSWControlColor(WXHDC pDC
);
76 // choose the default border for this window
77 virtual wxBorder
GetDefaultBorder() const;
79 // return default best size (doesn't really make any sense, override this)
80 virtual wxSize
DoGetBestSize() const;
82 // This is a helper for all wxControls made with UPDOWN native control.
83 // In wxMSW it was only wxSpinCtrl derived from wxSpinButton but in
84 // WinCE of Smartphones this happens also for native wxTextCtrl,
85 // wxChoice and others.
86 virtual wxSize
GetBestSpinerSize(const bool is_vertical
) const;
88 // create the control of the given Windows class: this is typically called
89 // from Create() method of the derived class passing its label, pos and
90 // size parameter (style parameter is not needed because m_windowStyle is
91 // supposed to had been already set and so is used instead when this
92 // function is called)
93 bool MSWCreateControl(const wxChar
*classname
,
94 const wxString
& label
,
98 // NB: the method below is deprecated now, with MSWGetStyle() the method
99 // above should be used instead! Once all the controls are updated to
100 // implement MSWGetStyle() this version will disappear.
102 // create the control of the given class with the given style (combination
103 // of WS_XXX flags, i.e. Windows style, not wxWidgets one), returns
104 // false if creation failed
106 // All parameters except classname and style are optional, if the
107 // size/position are not given, they should be set later with SetSize()
108 // and, label (the title of the window), of course, is left empty. The
109 // extended style is determined from the style and the app 3D settings
110 // automatically if it's not specified explicitly.
111 bool MSWCreateControl(const wxChar
*classname
,
113 const wxPoint
& pos
= wxDefaultPosition
,
114 const wxSize
& size
= wxDefaultSize
,
115 const wxString
& label
= wxEmptyString
,
116 WXDWORD exstyle
= (WXDWORD
)-1);
118 // default style for the control include WS_TABSTOP if it AcceptsFocus()
119 virtual WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
121 // this is a helper for the derived class GetClassDefaultAttributes()
122 // implementation: it returns the right colours for the classes which
123 // contain something else (e.g. wxListBox, wxTextCtrl, ...) instead of
124 // being simple controls (such as wxButton, wxCheckBox, ...)
125 static wxVisualAttributes
126 GetCompositeControlsDefaultAttributes(wxWindowVariant variant
);
128 // for controls like radiobuttons which are really composite this array
129 // holds the ids (not HWNDs!) of the sub controls
130 wxArrayLong m_subControls
;
133 DECLARE_DYNAMIC_CLASS_NO_COPY(wxControl
)
136 #endif // _WX_CONTROL_H_