1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/control.h
3 // Purpose: universal wxControl: adds handling of mnemonics
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_UNIV_CONTROL_H_
13 #define _WX_UNIV_CONTROL_H_
15 class WXDLLEXPORT wxControlRenderer
;
16 class WXDLLEXPORT wxInputHandler
;
17 class WXDLLEXPORT wxRenderer
;
19 // we must include it as most/all control classes derive their handlers from
21 #include "wx/univ/inphand.h"
23 #include "wx/univ/inpcons.h"
25 // ----------------------------------------------------------------------------
26 // wxControlAction: the action is currently just a string which identifies it,
27 // later it might become an atom (i.e. an opaque handler to string).
28 // ----------------------------------------------------------------------------
30 typedef wxString wxControlAction
;
32 // the list of actions which apply to all controls (other actions are defined
33 // in the controls headers)
35 #define wxACTION_NONE _T("") // no action to perform
37 // ----------------------------------------------------------------------------
38 // wxControl: the base class for all GUI controls
39 // ----------------------------------------------------------------------------
41 class WXDLLEXPORT wxControl
: public wxControlBase
, public wxInputConsumer
44 wxControl() { Init(); }
46 wxControl(wxWindow
*parent
,
48 const wxPoint
& pos
= wxDefaultPosition
,
49 const wxSize
& size
= wxDefaultSize
, long style
= 0,
50 const wxValidator
& validator
= wxDefaultValidator
,
51 const wxString
& name
= wxControlNameStr
)
55 Create(parent
, id
, pos
, size
, style
, validator
, name
);
58 bool Create(wxWindow
*parent
,
60 const wxPoint
& pos
= wxDefaultPosition
,
61 const wxSize
& size
= wxDefaultSize
, long style
= 0,
62 const wxValidator
& validator
= wxDefaultValidator
,
63 const wxString
& name
= wxControlNameStr
);
65 // this function will filter out '&' characters and will put the
66 // accelerator char (the one immediately after '&') into m_chAccel
67 virtual void SetLabel(const wxString
&label
);
68 virtual wxString
GetLabel() const;
70 // wxUniversal-specific methods
72 // return the accel index in the string or -1 if none and puts the modified
73 // string intosecond parameter if non NULL
74 static int FindAccelIndex(const wxString
& label
,
75 wxString
*labelOnly
= NULL
);
77 // return the index of the accel char in the label or -1 if none
78 int GetAccelIndex() const { return m_indexAccel
; }
80 // return the accel char itself or 0 if none
81 wxChar
GetAccelChar() const
83 return m_indexAccel
== -1 ? _T('\0') : m_label
[m_indexAccel
];
86 virtual wxWindow
*GetInputWindow() const { return (wxWindow
*)this; }
89 // common part of all ctors
93 // label and accel info
97 DECLARE_DYNAMIC_CLASS(wxControl
)
99 WX_DECLARE_INPUT_CONSUMER()
102 #endif // _WX_UNIV_CONTROL_H_