]> git.saurik.com Git - wxWidgets.git/blame - include/wx/control.h
add wxPosixPermissions enumeration; it provides more readable synonims for wxS_I...
[wxWidgets.git] / include / wx / control.h
CommitLineData
8d99be5f
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/control.h
3// Purpose: wxControl common interface
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 26.07.99
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) wxWidgets team
65571936 9// Licence: wxWindows licence
8d99be5f
VZ
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_CONTROL_H_BASE_
13#define _WX_CONTROL_H_BASE_
c801d85f 14
8d99be5f
VZ
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
997176a3
VZ
19#include "wx/defs.h"
20
1e6feb95
VZ
21#if wxUSE_CONTROLS
22
8d99be5f
VZ
23#include "wx/window.h" // base class
24
53a2db12 25extern WXDLLIMPEXP_DATA_CORE(const char) wxControlNameStr[];
1e6feb95 26
8d99be5f
VZ
27// ----------------------------------------------------------------------------
28// wxControl is the base class for all controls
29// ----------------------------------------------------------------------------
30
53a2db12 31class WXDLLIMPEXP_CORE wxControlBase : public wxWindow
8d99be5f
VZ
32{
33public:
c0e6c051 34 wxControlBase() { }
fc7a2a60 35
799ea011
GD
36 virtual ~wxControlBase();
37
1e6feb95
VZ
38 // Create() function adds the validator parameter
39 bool Create(wxWindow *parent, wxWindowID id,
40 const wxPoint& pos = wxDefaultPosition,
41 const wxSize& size = wxDefaultSize,
42 long style = 0,
43 const wxValidator& validator = wxDefaultValidator,
44 const wxString& name = wxControlNameStr);
45
1e6feb95
VZ
46 // get the control alignment (left/right/centre, top/bottom/centre)
47 int GetAlignment() const { return m_windowStyle & wxALIGN_MASK; }
48
39bc0347
VZ
49 // get just the text of the label, without mnemonic characters ('&')
50 wxString GetLabelText() const { return GetLabelText(GetLabel()); }
51
52 virtual void SetLabel(const wxString& label)
53 {
54 m_labelOrig = label;
55
56 InvalidateBestSize();
57
58 wxWindow::SetLabel(label);
59 }
60
61 virtual wxString GetLabel() const
62 {
63 // return the original string, as it was passed to SetLabel()
64 // (i.e. with wx-style mnemonics)
65 return m_labelOrig;
66 }
67
68 // static utilities:
69
74639764
VZ
70 // get the string without mnemonic characters ('&')
71 static wxString GetLabelText(const wxString& label);
72
39bc0347
VZ
73 // removes the mnemonics characters
74 static wxString RemoveMnemonics(const wxString& str);
75
9f4b4671 76
d4864e97
VZ
77 // controls by default inherit the colours of their parents, if a
78 // particular control class doesn't want to do it, it can override
79 // ShouldInheritColours() to return false
80 virtual bool ShouldInheritColours() const { return true; }
81
9f4b4671
VZ
82
83 // WARNING: this doesn't work for all controls nor all platforms!
84 //
85 // simulates the event of given type (i.e. wxButton::Command() is just as
86 // if the button was clicked)
87 virtual void Command(wxCommandEvent &event);
88
9f884528
RD
89 virtual bool SetFont(const wxFont& font);
90
a3a4105d
VZ
91 // wxControl-specific processing after processing the update event
92 virtual void DoUpdateWindowUI(wxUpdateUIEvent& event);
93
8d99be5f 94protected:
dc797d8e
JS
95 // choose the default border for this window
96 virtual wxBorder GetDefaultBorder() const;
97
3f2711d5
VZ
98 // creates the control (calls wxWindowBase::CreateBase inside) and adds it
99 // to the list of parents children
8d99be5f
VZ
100 bool CreateControl(wxWindowBase *parent,
101 wxWindowID id,
102 const wxPoint& pos,
103 const wxSize& size,
104 long style,
105 const wxValidator& validator,
106 const wxString& name);
107
bfbd6dc1
VZ
108 // initialize the common fields of wxCommandEvent
109 void InitCommandEvent(wxCommandEvent& event) const;
fc7a2a60 110
39bc0347
VZ
111 // this field contains the label in wx format, i.e. with '&' mnemonics
112 wxString m_labelOrig;
113
fc7a2a60 114 DECLARE_NO_COPY_CLASS(wxControlBase)
8d99be5f
VZ
115};
116
117// ----------------------------------------------------------------------------
118// include platform-dependent wxControl declarations
119// ----------------------------------------------------------------------------
f03fc89f 120
1e6feb95
VZ
121#if defined(__WXUNIVERSAL__)
122 #include "wx/univ/control.h"
4055ed82 123#elif defined(__WXPALMOS__)
ffecfa5a 124 #include "wx/palmos/control.h"
1e6feb95 125#elif defined(__WXMSW__)
8d99be5f 126 #include "wx/msw/control.h"
2049ba38 127#elif defined(__WXMOTIF__)
8d99be5f 128 #include "wx/motif/control.h"
1be7a35c 129#elif defined(__WXGTK20__)
8d99be5f 130 #include "wx/gtk/control.h"
1be7a35c
MR
131#elif defined(__WXGTK__)
132 #include "wx/gtk1/control.h"
34138703 133#elif defined(__WXMAC__)
ef0e9220 134 #include "wx/osx/control.h"
e64df9bc
DE
135#elif defined(__WXCOCOA__)
136 #include "wx/cocoa/control.h"
1777b9bb
DW
137#elif defined(__WXPM__)
138 #include "wx/os2/control.h"
c801d85f
KB
139#endif
140
1e6feb95
VZ
141#endif // wxUSE_CONTROLS
142
c801d85f 143#endif
34138703 144 // _WX_CONTROL_H_BASE_