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
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
)
32 Create(parent
, id
, pos
, size
, style
, validator
, name
);
35 bool Create(wxWindow
*parent
, wxWindowID id
,
36 const wxPoint
& pos
= wxDefaultPosition
,
37 const wxSize
& size
= wxDefaultSize
, long style
= 0,
38 const wxValidator
& validator
= wxDefaultValidator
,
39 const wxString
& name
= wxControlNameStr
);
44 virtual void Command(wxCommandEvent
& event
) { ProcessCommand(event
); }
46 // implementation from now on
47 // --------------------------
49 // Calls the callback and appropriate event handlers
50 bool ProcessCommand(wxCommandEvent
& event
);
54 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
57 // For ownerdraw items
58 virtual bool MSWOnDraw(WXDRAWITEMSTRUCT
*WXUNUSED(item
)) { return FALSE
; };
59 virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT
*WXUNUSED(item
)) { return FALSE
; };
61 wxArrayLong
GetSubcontrols() { return m_subControls
; }
63 void OnEraseBackground(wxEraseEvent
& event
);
65 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
66 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
69 // choose the default border for this window
70 virtual wxBorder
GetDefaultBorder() const;
72 virtual wxSize
DoGetBestSize() const;
74 // create the control of the given Windows class: this is typically called
75 // from Create() method of the derived class passing its label, pos and
76 // size parameter (style parameter is not needed because m_windowStyle is
77 // supposed to had been already set and so is used instead when this
78 // function is called)
79 bool MSWCreateControl(const wxChar
*classname
,
80 const wxString
& label
,
84 // NB: the method below is deprecated now, with MSWGetStyle() the method
85 // above should be used instead! Once all the controls are updated to
86 // implement MSWGetStyle() this version will disappear.
88 // create the control of the given class with the given style (combination
89 // of WS_XXX flags, i.e. Windows style, not wxWindows one), returns
90 // FALSE if creation failed
92 // All parameters except classname and style are optional, if the
93 // size/position are not given, they should be set later with SetSize()
94 // and, label (the title of the window), of course, is left empty. The
95 // extended style is determined from the style and the app 3D settings
96 // automatically if it's not specified explicitly.
97 bool MSWCreateControl(const wxChar
*classname
,
99 const wxPoint
& pos
= wxDefaultPosition
,
100 const wxSize
& size
= wxDefaultSize
,
101 const wxString
& label
= wxEmptyString
,
102 WXDWORD exstyle
= (WXDWORD
)-1);
104 // default style for the control include WS_TABSTOP if it AcceptsFocus()
105 virtual WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
107 // for controls like radiobuttons which are really composite this array
108 // holds the ids (not HWNDs!) of the sub controls
109 wxArrayLong m_subControls
;
112 DECLARE_DYNAMIC_CLASS_NO_COPY(wxControl
)
113 DECLARE_EVENT_TABLE()