]> git.saurik.com Git - wxWidgets.git/blame - include/wx/control.h
use a common m_isInsideYield flag instead of static booleans in all ports; add a...
[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
5c87527c
FM
27enum wxEllipsizeMode
28{
29 wxELLIPSIZE_START,
30 wxELLIPSIZE_MIDDLE,
31 wxELLIPSIZE_END
32};
33
8d99be5f
VZ
34// ----------------------------------------------------------------------------
35// wxControl is the base class for all controls
36// ----------------------------------------------------------------------------
37
53a2db12 38class WXDLLIMPEXP_CORE wxControlBase : public wxWindow
8d99be5f
VZ
39{
40public:
c0e6c051 41 wxControlBase() { }
fc7a2a60 42
799ea011
GD
43 virtual ~wxControlBase();
44
1e6feb95
VZ
45 // Create() function adds the validator parameter
46 bool Create(wxWindow *parent, wxWindowID id,
47 const wxPoint& pos = wxDefaultPosition,
48 const wxSize& size = wxDefaultSize,
49 long style = 0,
50 const wxValidator& validator = wxDefaultValidator,
51 const wxString& name = wxControlNameStr);
52
1e6feb95
VZ
53 // get the control alignment (left/right/centre, top/bottom/centre)
54 int GetAlignment() const { return m_windowStyle & wxALIGN_MASK; }
55
39bc0347
VZ
56 // get just the text of the label, without mnemonic characters ('&')
57 wxString GetLabelText() const { return GetLabelText(GetLabel()); }
58
59 virtual void SetLabel(const wxString& label)
60 {
61 m_labelOrig = label;
62
63 InvalidateBestSize();
64
65 wxWindow::SetLabel(label);
66 }
67
68 virtual wxString GetLabel() const
69 {
70 // return the original string, as it was passed to SetLabel()
71 // (i.e. with wx-style mnemonics)
72 return m_labelOrig;
73 }
74
75 // static utilities:
76
5c87527c
FM
77 // replaces parts of the string with ellipsis if needed
78 static wxString Ellipsize(const wxString& label, const wxDC& dc,
79 wxEllipsizeMode mode, int maxWidth);
80
74639764
VZ
81 // get the string without mnemonic characters ('&')
82 static wxString GetLabelText(const wxString& label);
83
39bc0347
VZ
84 // removes the mnemonics characters
85 static wxString RemoveMnemonics(const wxString& str);
86
916eabe6
VZ
87 // return the accel index in the string or -1 if none and puts the modified
88 // string into second parameter if non NULL
89 static int FindAccelIndex(const wxString& label,
90 wxString *labelOnly = NULL);
91
9f4b4671 92
d4864e97
VZ
93 // controls by default inherit the colours of their parents, if a
94 // particular control class doesn't want to do it, it can override
95 // ShouldInheritColours() to return false
96 virtual bool ShouldInheritColours() const { return true; }
97
9f4b4671
VZ
98
99 // WARNING: this doesn't work for all controls nor all platforms!
100 //
101 // simulates the event of given type (i.e. wxButton::Command() is just as
102 // if the button was clicked)
103 virtual void Command(wxCommandEvent &event);
104
9f884528
RD
105 virtual bool SetFont(const wxFont& font);
106
a3a4105d
VZ
107 // wxControl-specific processing after processing the update event
108 virtual void DoUpdateWindowUI(wxUpdateUIEvent& event);
109
8d99be5f 110protected:
dc797d8e
JS
111 // choose the default border for this window
112 virtual wxBorder GetDefaultBorder() const;
113
3f2711d5
VZ
114 // creates the control (calls wxWindowBase::CreateBase inside) and adds it
115 // to the list of parents children
8d99be5f
VZ
116 bool CreateControl(wxWindowBase *parent,
117 wxWindowID id,
118 const wxPoint& pos,
119 const wxSize& size,
120 long style,
121 const wxValidator& validator,
122 const wxString& name);
123
bfbd6dc1
VZ
124 // initialize the common fields of wxCommandEvent
125 void InitCommandEvent(wxCommandEvent& event) const;
fc7a2a60 126
39bc0347
VZ
127 // this field contains the label in wx format, i.e. with '&' mnemonics
128 wxString m_labelOrig;
129
fc7a2a60 130 DECLARE_NO_COPY_CLASS(wxControlBase)
8d99be5f
VZ
131};
132
133// ----------------------------------------------------------------------------
134// include platform-dependent wxControl declarations
135// ----------------------------------------------------------------------------
f03fc89f 136
1e6feb95
VZ
137#if defined(__WXUNIVERSAL__)
138 #include "wx/univ/control.h"
4055ed82 139#elif defined(__WXPALMOS__)
ffecfa5a 140 #include "wx/palmos/control.h"
1e6feb95 141#elif defined(__WXMSW__)
8d99be5f 142 #include "wx/msw/control.h"
2049ba38 143#elif defined(__WXMOTIF__)
8d99be5f 144 #include "wx/motif/control.h"
1be7a35c 145#elif defined(__WXGTK20__)
8d99be5f 146 #include "wx/gtk/control.h"
1be7a35c
MR
147#elif defined(__WXGTK__)
148 #include "wx/gtk1/control.h"
34138703 149#elif defined(__WXMAC__)
ef0e9220 150 #include "wx/osx/control.h"
e64df9bc
DE
151#elif defined(__WXCOCOA__)
152 #include "wx/cocoa/control.h"
1777b9bb
DW
153#elif defined(__WXPM__)
154 #include "wx/os2/control.h"
c801d85f
KB
155#endif
156
1e6feb95
VZ
157#endif // wxUSE_CONTROLS
158
c801d85f 159#endif
34138703 160 // _WX_CONTROL_H_BASE_