]> git.saurik.com Git - wxWidgets.git/blame - include/wx/headerctrl.h
Make storing non-trivial data in wxThreadSpecificInfo possible.
[wxWidgets.git] / include / wx / headerctrl.h
CommitLineData
56873923
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/headerctrl.h
3// Purpose: wxHeaderCtrlBase class: interface of wxHeaderCtrl
4// Author: Vadim Zeitlin
5// Created: 2008-12-01
56873923
VZ
6// Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
7// Licence: wxWindows licence
8///////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_HEADERCTRL_H_
11#define _WX_HEADERCTRL_H_
12
13#include "wx/control.h"
14
e721a2a2
VZ
15#if wxUSE_HEADERCTRL
16
702f5349 17#include "wx/dynarray.h"
e2bfe673
VZ
18#include "wx/vector.h"
19
56873923
VZ
20#include "wx/headercol.h"
21
22// notice that the classes in this header are defined in the core library even
23// although currently they're only used by wxGrid which is in wxAdv because we
24// plan to use it in wxListCtrl which is in core too in the future
3bfaa5a7 25class WXDLLIMPEXP_FWD_CORE wxHeaderCtrlEvent;
56873923
VZ
26
27// ----------------------------------------------------------------------------
28// constants
29// ----------------------------------------------------------------------------
30
31enum
32{
33 // allow column drag and drop
613de0e8
VZ
34 wxHD_ALLOW_REORDER = 0x0001,
35
36 // allow hiding (and showing back) the columns using the menu shown by
37 // right clicking the header
38 wxHD_ALLOW_HIDE = 0x0002,
56873923
VZ
39
40 // style used by default when creating the control
613de0e8 41 wxHD_DEFAULT_STYLE = wxHD_ALLOW_REORDER
56873923
VZ
42};
43
44extern WXDLLIMPEXP_DATA_CORE(const char) wxHeaderCtrlNameStr[];
45
56873923
VZ
46// ----------------------------------------------------------------------------
47// wxHeaderCtrlBase defines the interface of a header control
48// ----------------------------------------------------------------------------
49
50class WXDLLIMPEXP_CORE wxHeaderCtrlBase : public wxControl
51{
52public:
53 /*
54 Derived classes must provide default ctor as well as a ctor and
55 Create() function with the following signatures:
56
57 wxHeaderCtrl(wxWindow *parent,
58 wxWindowID winid = wxID_ANY,
59 const wxPoint& pos = wxDefaultPosition,
60 const wxSize& size = wxDefaultSize,
e2bfe673 61 long style = wxHD_DEFAULT_STYLE,
56873923
VZ
62 const wxString& name = wxHeaderCtrlNameStr);
63
64 bool Create(wxWindow *parent,
65 wxWindowID winid = wxID_ANY,
66 const wxPoint& pos = wxDefaultPosition,
67 const wxSize& size = wxDefaultSize,
e2bfe673 68 long style = wxHD_DEFAULT_STYLE,
56873923
VZ
69 const wxString& name = wxHeaderCtrlNameStr);
70 */
71
e2bfe673
VZ
72 // column-related methods
73 // ----------------------
74
75 // set the number of columns in the control
76 //
77 // this also calls UpdateColumn() for all columns
4635abac 78 void SetColumnCount(unsigned int count);
56873923 79
e2bfe673 80 // return the number of columns in the control as set by SetColumnCount()
56873923
VZ
81 unsigned int GetColumnCount() const { return DoGetCount(); }
82
83 // return whether the control has any columns
e2bfe673
VZ
84 bool IsEmpty() const { return DoGetCount() == 0; }
85
86 // update the column with the given index
87 void UpdateColumn(unsigned int idx)
88 {
89 wxCHECK_RET( idx < GetColumnCount(), "invalid column index" );
90
91 DoUpdate(idx);
92 }
93
e8f25dbb
VZ
94
95 // columns order
96 // -------------
97
702f5349
VZ
98 // set the columns order: the array defines the column index which appears
99 // the given position, it must have GetColumnCount() elements and contain
100 // all indices exactly once
101 void SetColumnsOrder(const wxArrayInt& order);
102 wxArrayInt GetColumnsOrder() const;
103
104 // get the index of the column at the given display position
105 unsigned int GetColumnAt(unsigned int pos) const;
106
107 // get the position at which this column is currently displayed
108 unsigned int GetColumnPos(unsigned int idx) const;
109
da5a641f
VZ
110 // reset the columns order to the natural one
111 void ResetColumnsOrder();
112
1bb74626
VZ
113 // helper function used by the generic version of this control and also
114 // wxGrid: reshuffles the array of column indices indexed by positions
115 // (i.e. using the same convention as for SetColumnsOrder()) so that the
116 // column with the given index is found at the specified position
117 static void MoveColumnInOrderArray(wxArrayInt& order,
118 unsigned int idx,
119 unsigned int pos);
120
e2bfe673 121
e8f25dbb
VZ
122 // UI helpers
123 // ----------
124
8a2e3f80 125#if wxUSE_MENUS
e8f25dbb 126 // show the popup menu containing all columns with check marks for the ones
613de0e8
VZ
127 // which are currently shown and return true if something was done using it
128 // (in this case UpdateColumnVisibility() will have been called) or false
129 // if the menu was cancelled
130 //
131 // this is called from the default right click handler for the controls
132 // with wxHD_ALLOW_HIDE style
133 bool ShowColumnsMenu(const wxPoint& pt, const wxString& title = wxString());
134
ddd0db96
VZ
135 // append the entries for all our columns to the given menu, with the
136 // currently visible columns being checked
137 //
138 // this is used by ShowColumnsMenu() but can also be used if you use your
139 // own custom columns menu but nevertheless want to show all the columns in
140 // it
141 //
142 // the ids of the items corresponding to the columns are consecutive and
143 // start from idColumnsBase
144 void AddColumnsItems(wxMenu& menu, int idColumnsBase = 0);
8a2e3f80 145#endif // wxUSE_MENUS
ddd0db96 146
613de0e8
VZ
147 // show the columns customization dialog and return true if something was
148 // changed using it (in which case UpdateColumnVisibility() and/or
af67f39d 149 // UpdateColumnsOrder() will have been called)
613de0e8
VZ
150 //
151 // this is called by the control itself from ShowColumnsMenu() (which in
152 // turn is only called by the control if wxHD_ALLOW_HIDE style was
153 // specified) and if the control has wxHD_ALLOW_REORDER style as well
154 bool ShowCustomizeDialog();
e8f25dbb 155
53137278
VS
156 // compute column title width
157 int GetColumnTitleWidth(const wxHeaderColumn& col);
e8f25dbb 158
e2bfe673
VZ
159 // implementation only from now on
160 // -------------------------------
161
162 // the user doesn't need to TAB to this control
163 virtual bool AcceptsFocusFromKeyboard() const { return false; }
164
165 // this method is only overridden in order to synchronize the control with
166 // the main window when it is scrolled, the derived class must implement
167 // DoScrollHorz()
168 virtual void ScrollWindow(int dx, int dy, const wxRect *rect = NULL);
169
170protected:
171 // this method must be implemented by the derived classes to return the
172 // information for the given column
482d06f8 173 virtual const wxHeaderColumn& GetColumn(unsigned int idx) const = 0;
e2bfe673 174
3bfaa5a7
VZ
175 // this method is called from the default EVT_HEADER_SEPARATOR_DCLICK
176 // handler to update the fitting column width of the given column, it
177 // should return true if the width was really updated
178 virtual bool UpdateColumnWidthToFit(unsigned int WXUNUSED(idx),
179 int WXUNUSED(widthTitle))
180 {
181 return false;
182 }
183
613de0e8
VZ
184 // this method is called from ShowColumnsMenu() and must be overridden to
185 // update the internal column visibility (there is no need to call
186 // UpdateColumn() from here, this will be done internally)
187 virtual void UpdateColumnVisibility(unsigned int WXUNUSED(idx),
188 bool WXUNUSED(show))
189 {
190 wxFAIL_MSG( "must be overridden if called" );
191 }
192
af67f39d
VZ
193 // this method is called from ShowCustomizeDialog() to reorder all columns
194 // at once and should be implemented for controls using wxHD_ALLOW_REORDER
195 // style (there is no need to call SetColumnsOrder() from here, this is
196 // done by the control itself)
197 virtual void UpdateColumnsOrder(const wxArrayInt& WXUNUSED(order))
198 {
199 wxFAIL_MSG( "must be overridden if called" );
200 }
201
4635abac
VZ
202 // this method can be overridden in the derived classes to do something
203 // (e.g. update/resize some internal data structures) before the number of
204 // columns in the control changes
205 virtual void OnColumnCountChanging(unsigned int WXUNUSED(count)) { }
206
f6655391
VZ
207
208 // helper function for the derived classes: update the array of column
209 // indices after the number of columns changed
210 void DoResizeColumnIndices(wxArrayInt& colIndices, unsigned int count);
211
ba854002
RD
212protected:
213 // this window doesn't look nice with the border so don't use it by default
214 virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
215
e2bfe673
VZ
216private:
217 // methods implementing our public API and defined in platform-specific
218 // implementations
219 virtual void DoSetCount(unsigned int count) = 0;
220 virtual unsigned int DoGetCount() const = 0;
221 virtual void DoUpdate(unsigned int idx) = 0;
222
223 virtual void DoScrollHorz(int dx) = 0;
224
702f5349
VZ
225 virtual void DoSetColumnsOrder(const wxArrayInt& order) = 0;
226 virtual wxArrayInt DoGetColumnsOrder() const = 0;
227
3bfaa5a7
VZ
228
229 // event handlers
230 void OnSeparatorDClick(wxHeaderCtrlEvent& event);
8a2e3f80 231#if wxUSE_MENUS
613de0e8 232 void OnRClick(wxHeaderCtrlEvent& event);
8a2e3f80 233#endif // wxUSE_MENUS
3bfaa5a7
VZ
234
235 DECLARE_EVENT_TABLE()
e2bfe673
VZ
236};
237
238// ----------------------------------------------------------------------------
239// wxHeaderCtrl: port-specific header control implementation, notice that this
240// is still an ABC which is meant to be used as part of another
241// control, see wxHeaderCtrlSimple for a standalone version
242// ----------------------------------------------------------------------------
243
70405f7e 244#if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
e2bfe673
VZ
245 #include "wx/msw/headerctrl.h"
246#else
247 #define wxHAS_GENERIC_HEADERCTRL
248 #include "wx/generic/headerctrlg.h"
249#endif // platform
250
251// ----------------------------------------------------------------------------
252// wxHeaderCtrlSimple: concrete header control which can be used standalone
253// ----------------------------------------------------------------------------
254
255class WXDLLIMPEXP_CORE wxHeaderCtrlSimple : public wxHeaderCtrl
256{
257public:
258 // control creation
259 // ----------------
260
261 wxHeaderCtrlSimple() { Init(); }
262 wxHeaderCtrlSimple(wxWindow *parent,
263 wxWindowID winid = wxID_ANY,
264 const wxPoint& pos = wxDefaultPosition,
265 const wxSize& size = wxDefaultSize,
266 long style = wxHD_DEFAULT_STYLE,
267 const wxString& name = wxHeaderCtrlNameStr)
268 {
269 Init();
270
271 Create(parent, winid, pos, size, style, name);
272 }
273
274 // managing the columns
275 // --------------------
56873923
VZ
276
277 // insert the column at the given position, using GetColumnCount() as
278 // position appends it at the end
e2bfe673 279 void InsertColumn(const wxHeaderColumnSimple& col, unsigned int idx)
56873923
VZ
280 {
281 wxCHECK_RET( idx <= GetColumnCount(), "invalid column index" );
282
283 DoInsert(col, idx);
284 }
285
286 // append the column to the end of the control
e2bfe673 287 void AppendColumn(const wxHeaderColumnSimple& col)
56873923
VZ
288 {
289 DoInsert(col, GetColumnCount());
290 }
291
292 // delete the column at the given index
293 void DeleteColumn(unsigned int idx)
294 {
295 wxCHECK_RET( idx < GetColumnCount(), "invalid column index" );
296
297 DoDelete(idx);
298 }
299
300 // delete all the existing columns
301 void DeleteAllColumns();
302
303
304 // modifying columns
305 // -----------------
306
a0009205
VZ
307 // show or hide the column, notice that even when a column is hidden we
308 // still account for it when using indices
309 void ShowColumn(unsigned int idx, bool show = true)
310 {
311 wxCHECK_RET( idx < GetColumnCount(), "invalid column index" );
312
313 DoShowColumn(idx, show);
314 }
315
316 void HideColumn(unsigned int idx)
317 {
318 ShowColumn(idx, false);
319 }
320
e2bfe673
VZ
321 // indicate that the column is used for sorting
322 void ShowSortIndicator(unsigned int idx, bool ascending = true)
56873923 323 {
a0009205
VZ
324 wxCHECK_RET( idx < GetColumnCount(), "invalid column index" );
325
e2bfe673 326 DoShowSortIndicator(idx, ascending);
56873923
VZ
327 }
328
e2bfe673
VZ
329 // remove the sort indicator completely
330 void RemoveSortIndicator();
56873923 331
e2bfe673 332protected:
e5a16353 333 // implement/override base class methods
482d06f8 334 virtual const wxHeaderColumn& GetColumn(unsigned int idx) const;
e5a16353
VZ
335 virtual bool UpdateColumnWidthToFit(unsigned int idx, int widthTitle);
336
337 // and define another one to be overridden in the derived classes: it
338 // should return the best width for the given column contents or -1 if not
339 // implemented, we use it to implement UpdateColumnWidthToFit()
340 virtual int GetBestFittingWidth(unsigned int WXUNUSED(idx)) const
341 {
342 return -1;
343 }
56873923 344
e2bfe673
VZ
345private:
346 // functions implementing our public API
347 void DoInsert(const wxHeaderColumnSimple& col, unsigned int idx);
348 void DoDelete(unsigned int idx);
349 void DoShowColumn(unsigned int idx, bool show);
350 void DoShowSortIndicator(unsigned int idx, bool ascending);
56873923 351
e2bfe673
VZ
352 // common part of all ctors
353 void Init();
56873923 354
e2bfe673 355 // bring the column count in sync with the number of columns we store
9de49b11
VZ
356 void UpdateColumnCount()
357 {
358 SetColumnCount(static_cast<int>(m_cols.size()));
359 }
d8fc3398 360
a3e0efb6 361
e2bfe673
VZ
362 // all our current columns
363 typedef wxVector<wxHeaderColumnSimple> Columns;
364 Columns m_cols;
56873923 365
e2bfe673
VZ
366 // the column currently used for sorting or -1 if none
367 unsigned int m_sortKey;
368
369
c0c133e1 370 wxDECLARE_NO_COPY_CLASS(wxHeaderCtrlSimple);
e2bfe673 371};
56873923 372
fa3d4aaf
VZ
373// ----------------------------------------------------------------------------
374// wxHeaderCtrl events
375// ----------------------------------------------------------------------------
376
377class WXDLLIMPEXP_CORE wxHeaderCtrlEvent : public wxNotifyEvent
378{
379public:
380 wxHeaderCtrlEvent(wxEventType commandType = wxEVT_NULL, int winid = 0)
aef252d9
VZ
381 : wxNotifyEvent(commandType, winid),
382 m_col(-1),
383 m_width(0),
565804f2 384 m_order(static_cast<unsigned int>(-1))
fa3d4aaf
VZ
385 {
386 }
387
388 wxHeaderCtrlEvent(const wxHeaderCtrlEvent& event)
389 : wxNotifyEvent(event),
aef252d9
VZ
390 m_col(event.m_col),
391 m_width(event.m_width),
565804f2 392 m_order(event.m_order)
fa3d4aaf
VZ
393 {
394 }
395
aef252d9 396 // the column which this event pertains to: valid for all header events
fa3d4aaf
VZ
397 int GetColumn() const { return m_col; }
398 void SetColumn(int col) { m_col = col; }
399
aef252d9
VZ
400 // the width of the column: valid for column resizing/dragging events only
401 int GetWidth() const { return m_width; }
402 void SetWidth(int width) { m_width = width; }
403
702f5349
VZ
404 // the new position of the column: for end reorder events only
405 unsigned int GetNewOrder() const { return m_order; }
406 void SetNewOrder(unsigned int order) { m_order = order; }
407
fa3d4aaf
VZ
408 virtual wxEvent *Clone() const { return new wxHeaderCtrlEvent(*this); }
409
410protected:
411 // the column affected by the event
412 int m_col;
413
aef252d9
VZ
414 // the current width for the dragging events
415 int m_width;
416
702f5349
VZ
417 // the new column position for end reorder event
418 unsigned int m_order;
419
fa3d4aaf
VZ
420private:
421 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxHeaderCtrlEvent)
422};
423
424
ce7fe42e
VZ
425wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_CLICK, wxHeaderCtrlEvent );
426wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_RIGHT_CLICK, wxHeaderCtrlEvent );
427wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_MIDDLE_CLICK, wxHeaderCtrlEvent );
fa3d4aaf 428
ce7fe42e
VZ
429wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_DCLICK, wxHeaderCtrlEvent );
430wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_RIGHT_DCLICK, wxHeaderCtrlEvent );
431wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_MIDDLE_DCLICK, wxHeaderCtrlEvent );
fa3d4aaf 432
ce7fe42e 433wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_SEPARATOR_DCLICK, wxHeaderCtrlEvent );
3bfaa5a7 434
ce7fe42e
VZ
435wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_BEGIN_RESIZE, wxHeaderCtrlEvent );
436wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_RESIZING, wxHeaderCtrlEvent );
437wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_END_RESIZE, wxHeaderCtrlEvent );
aef252d9 438
ce7fe42e
VZ
439wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_BEGIN_REORDER, wxHeaderCtrlEvent );
440wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_END_REORDER, wxHeaderCtrlEvent );
702f5349 441
ce7fe42e 442wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_HEADER_DRAGGING_CANCELLED, wxHeaderCtrlEvent );
565804f2 443
fa3d4aaf
VZ
444typedef void (wxEvtHandler::*wxHeaderCtrlEventFunction)(wxHeaderCtrlEvent&);
445
446#define wxHeaderCtrlEventHandler(func) \
3c778901 447 wxEVENT_HANDLER_CAST(wxHeaderCtrlEventFunction, func)
fa3d4aaf
VZ
448
449#define wx__DECLARE_HEADER_EVT(evt, id, fn) \
ce7fe42e 450 wx__DECLARE_EVT1(wxEVT_HEADER_ ## evt, id, wxHeaderCtrlEventHandler(fn))
fa3d4aaf
VZ
451
452#define EVT_HEADER_CLICK(id, fn) wx__DECLARE_HEADER_EVT(CLICK, id, fn)
453#define EVT_HEADER_RIGHT_CLICK(id, fn) wx__DECLARE_HEADER_EVT(RIGHT_CLICK, id, fn)
454#define EVT_HEADER_MIDDLE_CLICK(id, fn) wx__DECLARE_HEADER_EVT(MIDDLE_CLICK, id, fn)
455
456#define EVT_HEADER_DCLICK(id, fn) wx__DECLARE_HEADER_EVT(DCLICK, id, fn)
457#define EVT_HEADER_RIGHT_DCLICK(id, fn) wx__DECLARE_HEADER_EVT(RIGHT_DCLICK, id, fn)
458#define EVT_HEADER_MIDDLE_DCLICK(id, fn) wx__DECLARE_HEADER_EVT(MIDDLE_DCLICK, id, fn)
459
3bfaa5a7
VZ
460#define EVT_HEADER_SEPARATOR_DCLICK(id, fn) wx__DECLARE_HEADER_EVT(SEPARATOR_DCLICK, id, fn)
461
396825dc
VZ
462#define EVT_HEADER_BEGIN_RESIZE(id, fn) wx__DECLARE_HEADER_EVT(BEGIN_RESIZE, id, fn)
463#define EVT_HEADER_RESIZING(id, fn) wx__DECLARE_HEADER_EVT(RESIZING, id, fn)
464#define EVT_HEADER_END_RESIZE(id, fn) wx__DECLARE_HEADER_EVT(END_RESIZE, id, fn)
aef252d9 465
702f5349
VZ
466#define EVT_HEADER_BEGIN_REORDER(id, fn) wx__DECLARE_HEADER_EVT(BEGIN_REORDER, id, fn)
467#define EVT_HEADER_END_REORDER(id, fn) wx__DECLARE_HEADER_EVT(END_REORDER, id, fn)
468
565804f2
VZ
469#define EVT_HEADER_DRAGGING_CANCELLED(id, fn) wx__DECLARE_HEADER_EVT(DRAGGING_CANCELLED, id, fn)
470
ce7fe42e
VZ
471// old wxEVT_COMMAND_* constants
472#define wxEVT_COMMAND_HEADER_CLICK wxEVT_HEADER_CLICK
473#define wxEVT_COMMAND_HEADER_RIGHT_CLICK wxEVT_HEADER_RIGHT_CLICK
474#define wxEVT_COMMAND_HEADER_MIDDLE_CLICK wxEVT_HEADER_MIDDLE_CLICK
475#define wxEVT_COMMAND_HEADER_DCLICK wxEVT_HEADER_DCLICK
476#define wxEVT_COMMAND_HEADER_RIGHT_DCLICK wxEVT_HEADER_RIGHT_DCLICK
477#define wxEVT_COMMAND_HEADER_MIDDLE_DCLICK wxEVT_HEADER_MIDDLE_DCLICK
478#define wxEVT_COMMAND_HEADER_SEPARATOR_DCLICK wxEVT_HEADER_SEPARATOR_DCLICK
479#define wxEVT_COMMAND_HEADER_BEGIN_RESIZE wxEVT_HEADER_BEGIN_RESIZE
480#define wxEVT_COMMAND_HEADER_RESIZING wxEVT_HEADER_RESIZING
481#define wxEVT_COMMAND_HEADER_END_RESIZE wxEVT_HEADER_END_RESIZE
482#define wxEVT_COMMAND_HEADER_BEGIN_REORDER wxEVT_HEADER_BEGIN_REORDER
483#define wxEVT_COMMAND_HEADER_END_REORDER wxEVT_HEADER_END_REORDER
484#define wxEVT_COMMAND_HEADER_DRAGGING_CANCELLED wxEVT_HEADER_DRAGGING_CANCELLED
485
e721a2a2
VZ
486#endif // wxUSE_HEADERCTRL
487
56873923 488#endif // _WX_HEADERCTRL_H_