]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/statusbr.h | |
3 | // Purpose: wxStatusBar class interface | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 05.02.00 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_STATUSBR_H_BASE_ | |
13 | #define _WX_STATUSBR_H_BASE_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
17 | #if wxUSE_STATUSBAR | |
18 | ||
19 | #include "wx/control.h" | |
20 | #include "wx/list.h" | |
21 | #include "wx/dynarray.h" | |
22 | ||
23 | extern WXDLLIMPEXP_DATA_CORE(const char) wxStatusBarNameStr[]; | |
24 | ||
25 | // ---------------------------------------------------------------------------- | |
26 | // wxStatusBar constants | |
27 | // ---------------------------------------------------------------------------- | |
28 | ||
29 | // wxStatusBar styles | |
30 | #define wxSTB_SIZEGRIP 0x0010 | |
31 | #define wxSTB_SHOW_TIPS 0x0020 | |
32 | ||
33 | #define wxSTB_ELLIPSIZE_START 0x0040 | |
34 | #define wxSTB_ELLIPSIZE_MIDDLE 0x0080 | |
35 | #define wxSTB_ELLIPSIZE_END 0x0100 | |
36 | ||
37 | #define wxSTB_DEFAULT_STYLE (wxSTB_SIZEGRIP|wxSTB_ELLIPSIZE_END|wxSTB_SHOW_TIPS|wxFULL_REPAINT_ON_RESIZE) | |
38 | ||
39 | ||
40 | // old compat style name: | |
41 | #define wxST_SIZEGRIP wxSTB_SIZEGRIP | |
42 | ||
43 | ||
44 | // style flags for wxStatusBar fields | |
45 | #define wxSB_NORMAL 0x0000 | |
46 | #define wxSB_FLAT 0x0001 | |
47 | #define wxSB_RAISED 0x0002 | |
48 | ||
49 | // ---------------------------------------------------------------------------- | |
50 | // wxStatusBarPane: an helper for wxStatusBar | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
53 | class WXDLLIMPEXP_CORE wxStatusBarPane | |
54 | { | |
55 | public: | |
56 | wxStatusBarPane(int style = wxSB_NORMAL, size_t width = 0) | |
57 | : m_nStyle(style), m_nWidth(width) | |
58 | { m_bEllipsized = false; } | |
59 | ||
60 | int GetWidth() const { return m_nWidth; } | |
61 | int GetStyle() const { return m_nStyle; } | |
62 | wxString GetText() const { return m_text; } | |
63 | ||
64 | ||
65 | // implementation-only from now on | |
66 | // ------------------------------- | |
67 | ||
68 | bool IsEllipsized() const | |
69 | { return m_bEllipsized; } | |
70 | void SetIsEllipsized(bool isEllipsized) { m_bEllipsized = isEllipsized; } | |
71 | ||
72 | void SetWidth(int width) { m_nWidth = width; } | |
73 | void SetStyle(int style) { m_nStyle = style; } | |
74 | ||
75 | // set text, return true if it changed or false if it was already set to | |
76 | // this value | |
77 | bool SetText(const wxString& text); | |
78 | ||
79 | // save the existing text on top of our stack and make the new text | |
80 | // current; return true if the text really changed | |
81 | bool PushText(const wxString& text); | |
82 | ||
83 | // restore the message saved by the last call to Push() (unless it was | |
84 | // changed by an intervening call to SetText()) and return true if we | |
85 | // really restored anything | |
86 | bool PopText(); | |
87 | ||
88 | private: | |
89 | int m_nStyle; | |
90 | int m_nWidth; // may be negative, indicating a variable-width field | |
91 | wxString m_text; | |
92 | ||
93 | // the array used to keep the previous values of this pane after a | |
94 | // PushStatusText() call, its top element is the value to restore after the | |
95 | // next PopStatusText() call while the currently shown value is always in | |
96 | // m_text | |
97 | wxArrayString m_arrStack; | |
98 | ||
99 | // is the currently shown value shown with ellipsis in the status bar? | |
100 | bool m_bEllipsized; | |
101 | }; | |
102 | ||
103 | WX_DECLARE_EXPORTED_OBJARRAY(wxStatusBarPane, wxStatusBarPaneArray); | |
104 | ||
105 | // ---------------------------------------------------------------------------- | |
106 | // wxStatusBar: a window near the bottom of the frame used for status info | |
107 | // ---------------------------------------------------------------------------- | |
108 | ||
109 | class WXDLLIMPEXP_CORE wxStatusBarBase : public wxControl | |
110 | { | |
111 | public: | |
112 | wxStatusBarBase(); | |
113 | ||
114 | virtual ~wxStatusBarBase(); | |
115 | ||
116 | // field count | |
117 | // ----------- | |
118 | ||
119 | // set the number of fields and call SetStatusWidths(widths) if widths are | |
120 | // given | |
121 | virtual void SetFieldsCount(int number = 1, const int *widths = NULL); | |
122 | int GetFieldsCount() const { return m_panes.GetCount(); } | |
123 | ||
124 | // field text | |
125 | // ---------- | |
126 | ||
127 | // just change or get the currently shown text | |
128 | void SetStatusText(const wxString& text, int number = 0); | |
129 | wxString GetStatusText(int number = 0) const; | |
130 | ||
131 | // change the currently shown text to the new one and save the current | |
132 | // value to be restored by the next call to PopStatusText() | |
133 | void PushStatusText(const wxString& text, int number = 0); | |
134 | void PopStatusText(int number = 0); | |
135 | ||
136 | // fields widths | |
137 | // ------------- | |
138 | ||
139 | // set status field widths as absolute numbers: positive widths mean that | |
140 | // the field has the specified absolute width, negative widths are | |
141 | // interpreted as the sizer options, i.e. the extra space (total space | |
142 | // minus the sum of fixed width fields) is divided between the fields with | |
143 | // negative width according to the abs value of the width (field with width | |
144 | // -2 grows twice as much as one with width -1 &c) | |
145 | virtual void SetStatusWidths(int n, const int widths[]); | |
146 | ||
147 | int GetStatusWidth(int n) const | |
148 | { return m_panes[n].GetWidth(); } | |
149 | ||
150 | // field styles | |
151 | // ------------ | |
152 | ||
153 | // Set the field style. Use either wxSB_NORMAL (default) for a standard 3D | |
154 | // border around a field, wxSB_FLAT for no border around a field, so that it | |
155 | // appears flat or wxSB_POPOUT to make the field appear raised. | |
156 | // Setting field styles only works on wxMSW | |
157 | virtual void SetStatusStyles(int n, const int styles[]); | |
158 | ||
159 | int GetStatusStyle(int n) const | |
160 | { return m_panes[n].GetStyle(); } | |
161 | ||
162 | // geometry | |
163 | // -------- | |
164 | ||
165 | // Get the position and size of the field's internal bounding rectangle | |
166 | virtual bool GetFieldRect(int i, wxRect& rect) const = 0; | |
167 | ||
168 | // sets the minimal vertical size of the status bar | |
169 | virtual void SetMinHeight(int height) = 0; | |
170 | ||
171 | // get the dimensions of the horizontal and vertical borders | |
172 | virtual int GetBorderX() const = 0; | |
173 | virtual int GetBorderY() const = 0; | |
174 | ||
175 | wxSize GetBorders() const | |
176 | { return wxSize(GetBorderX(), GetBorderY()); } | |
177 | ||
178 | // miscellaneous | |
179 | // ------------- | |
180 | ||
181 | const wxStatusBarPane& GetField(int n) const | |
182 | { return m_panes[n]; } | |
183 | ||
184 | // wxWindow overrides: | |
185 | ||
186 | // don't want status bars to accept the focus at all | |
187 | virtual bool AcceptsFocus() const { return false; } | |
188 | ||
189 | // the client size of a toplevel window doesn't include the status bar | |
190 | virtual bool CanBeOutsideClientArea() const { return true; } | |
191 | ||
192 | protected: | |
193 | // called after the status bar pane text changed and should update its | |
194 | // display | |
195 | virtual void DoUpdateStatusText(int number) = 0; | |
196 | ||
197 | ||
198 | // wxWindow overrides: | |
199 | ||
200 | #if wxUSE_TOOLTIPS | |
201 | virtual void DoSetToolTip( wxToolTip *tip ) | |
202 | { | |
203 | wxASSERT_MSG(!HasFlag(wxSTB_SHOW_TIPS), | |
204 | "Do not set tooltip(s) manually when using wxSTB_SHOW_TIPS!"); | |
205 | wxWindow::DoSetToolTip(tip); | |
206 | } | |
207 | #endif // wxUSE_TOOLTIPS | |
208 | virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } | |
209 | ||
210 | ||
211 | // internal helpers & data: | |
212 | ||
213 | // calculate the real field widths for the given total available size | |
214 | wxArrayInt CalculateAbsWidths(wxCoord widthTotal) const; | |
215 | ||
216 | // should be called to remember if the pane text is currently being show | |
217 | // ellipsized or not | |
218 | void SetEllipsizedFlag(int n, bool isEllipsized); | |
219 | ||
220 | ||
221 | // the array with the pane infos: | |
222 | wxStatusBarPaneArray m_panes; | |
223 | ||
224 | // if true overrides the width info of the wxStatusBarPanes | |
225 | bool m_bSameWidthForAllPanes; | |
226 | ||
227 | wxDECLARE_NO_COPY_CLASS(wxStatusBarBase); | |
228 | }; | |
229 | ||
230 | // ---------------------------------------------------------------------------- | |
231 | // include the actual wxStatusBar class declaration | |
232 | // ---------------------------------------------------------------------------- | |
233 | ||
234 | #if defined(__WXUNIVERSAL__) | |
235 | #define wxStatusBarUniv wxStatusBar | |
236 | #include "wx/univ/statusbr.h" | |
237 | #elif defined(__WIN32__) && wxUSE_NATIVE_STATUSBAR | |
238 | #include "wx/msw/statusbar.h" | |
239 | #elif defined(__WXMAC__) | |
240 | #define wxStatusBarMac wxStatusBar | |
241 | #include "wx/generic/statusbr.h" | |
242 | #include "wx/osx/statusbr.h" | |
243 | #else | |
244 | #define wxStatusBarGeneric wxStatusBar | |
245 | #include "wx/generic/statusbr.h" | |
246 | #endif | |
247 | ||
248 | #endif // wxUSE_STATUSBAR | |
249 | ||
250 | #endif | |
251 | // _WX_STATUSBR_H_BASE_ |