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_
16 #pragma interface "control.h"
19 #include "wx/dynarray.h"
22 class WXDLLEXPORT wxControl
: public wxControlBase
24 DECLARE_ABSTRACT_CLASS(wxControl
)
28 wxControl(wxWindow
*parent
, wxWindowID id
,
29 const wxPoint
& pos
= wxDefaultPosition
,
30 const wxSize
& size
= wxDefaultSize
, long style
= 0,
31 const wxValidator
& validator
= wxDefaultValidator
,
32 const wxString
& name
= wxControlNameStr
)
34 Create(parent
, id
, pos
, size
, style
, validator
, name
);
37 bool Create(wxWindow
*parent
, wxWindowID id
,
38 const wxPoint
& pos
= wxDefaultPosition
,
39 const wxSize
& size
= wxDefaultSize
, long style
= 0,
40 const wxValidator
& validator
= wxDefaultValidator
,
41 const wxString
& name
= wxControlNameStr
);
46 virtual void Command(wxCommandEvent
& event
) { ProcessCommand(event
); }
48 // implementation from now on
49 // --------------------------
51 // Calls the callback and appropriate event handlers
52 bool ProcessCommand(wxCommandEvent
& event
);
56 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
59 // For ownerdraw items
60 virtual bool MSWOnDraw(WXDRAWITEMSTRUCT
*WXUNUSED(item
)) { return FALSE
; };
61 virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT
*WXUNUSED(item
)) { return FALSE
; };
63 wxArrayLong
GetSubcontrols() { return m_subControls
; }
65 void OnEraseBackground(wxEraseEvent
& event
);
67 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
68 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
70 #if WXWIN_COMPATIBILITY
71 virtual void SetButtonColour(const wxColour
& WXUNUSED(col
)) { }
72 wxColour
* GetButtonColour() const { return NULL
; }
74 virtual void SetLabelFont(const wxFont
& font
);
75 virtual void SetButtonFont(const wxFont
& font
);
76 wxFont
& GetLabelFont() const;
77 wxFont
& GetButtonFont() const;
78 #endif // WXWIN_COMPATIBILITY
81 // for controls like radiobuttons which are really composite this array
82 // holds the ids (not HWNDs!) of the sub controls
83 wxArrayLong m_subControls
;
85 virtual wxSize
DoGetBestSize() const;
87 // create the control of the given Windows class: this is typically called
88 // from Create() method of the derived class passing its label, pos and
89 // size parameter (style parameter is not needed because m_windowStyle is
90 // supposed to had been already set and so is used instead when this
91 // function is called)
92 bool MSWCreateControl(const wxChar
*classname
,
93 const wxString
& label
,
97 // NB: the method below is deprecated now, with MSWGetStyle() the method
98 // above should be used instead! Once all the controls are updated to
99 // implement MSWGetStyle() this version will disappear.
101 // create the control of the given class with the given style (combination
102 // of WS_XXX flags, i.e. Windows style, not wxWindows one), returns
103 // FALSE if creation failed
105 // All parameters except classname and style are optional, if the
106 // size/position are not given, they should be set later with SetSize()
107 // and, label (the title of the window), of course, is left empty. The
108 // extended style is determined from the style and the app 3D settings
109 // automatically if it's not specified explicitly.
110 bool MSWCreateControl(const wxChar
*classname
,
112 const wxPoint
& pos
= wxDefaultPosition
,
113 const wxSize
& size
= wxDefaultSize
,
114 const wxString
& label
= wxEmptyString
,
115 WXDWORD exstyle
= (WXDWORD
)-1);
117 // default style for the control include WS_TABSTOP if it AcceptsFocus()
118 virtual WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
121 DECLARE_EVENT_TABLE()
125 #if WXWIN_COMPATIBILITY
126 inline wxFont
& wxControl::GetLabelFont() const { return (wxFont
&)GetFont(); }
127 inline wxFont
& wxControl::GetButtonFont() const { return (wxFont
&)GetFont(); }
128 inline void wxControl::SetLabelFont(const wxFont
& font
) { SetFont(font
); }
129 inline void wxControl::SetButtonFont(const wxFont
& font
) { SetFont(font
); }
130 #endif // WXWIN_COMPATIBILITY