]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/headerctrl.h
cca13106383d3444e2e7a5f05de9780a12dc130c
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/headerctrl.h
3 // Purpose: interface of wxHeaderCtrl
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows license
9 /////////////////////////////////////////////////////////////////////////////
14 wxHeaderCtrl is the control containing the column headings which is usually
15 used for display of tabular data.
17 It is used as part of wxGrid and (will be used in the near future) in
18 in wxDataViewCtrl and report view of wxListCtrl but can be also used
19 independently. In general this class is meant to be used as part of another
20 control which already stores the column information somewhere as it can't
21 be used directly: instead you need to inherit from it and implement the
22 GetColumn() method to provide column information. See wxHeaderCtrlSimple
23 for a concrete control class which can be used directly.
25 In addition to labeling the columns, the control has the following
27 - Column reordering support, either by explicitly configuring the
28 columns order and calling SetColumnsOrder() or by dragging the
29 columns interactively (if enabled).
30 - Display of the icons in the header: this is often used to display a
31 sort or reverse sort indicator when the column header is clicked.
33 Notice that this control itself doesn't do anything other than displaying
34 the column headers. In particular column reordering and sorting must still
35 be supported by the associated control displaying the real data under the
36 header. Also remember to call ScrollWindow() method of the control if the
37 associated data display window has a horizontal scrollbar, otherwise the
38 headers wouldn't align with the data when the window is scrolled.
40 This control is implemented using the native header control under MSW
41 systems and a generic implementation elsewhere.
45 If this style is specified (it is by default), the user can reorder
46 the control columns by dragging them.
47 @style{wxHD_DEFAULT_STYLE}
48 Symbolic name for the default control style, currently equal to @c
52 @beginEventTable{wxHeaderCtrlEvent}
53 @event{EVT_HEADER_CLICK(id, func)}
54 A column heading was clicked.
55 @event{EVT_HEADER_RIGHT_CLICK(id, func)}
56 A column heading was right clicked.
57 @event{EVT_HEADER_MIDDLE_CLICK(id, func)}
58 A column heading was clicked with the middle mouse button.
60 @event{EVT_HEADER_DCLICK(id, func)}
61 A column heading was double clicked.
62 @event{EVT_HEADER_RIGHT_DCLICK(id, func)}
63 A column heading was right double clicked.
64 @event{EVT_HEADER_MIDDLE_DCLICK(id, func)}
65 A column heading was double clicked with the middle mouse button.
67 @event{EVT_HEADER_SEPARATOR_DCLICK(id, func)}
68 Separator to the right of the specified column was double clicked
69 (this action is commonly used to resize the column to fit its
70 contents width and the control provides UpdateColumnWidthToFit() method
71 to make implementing this easier).
77 @see wxGrid, wxListCtrl, wxDataViewCtrl
80 @section headerctrl_improvements Future Improvements
82 Some features are supported by the native MSW control and so could be
83 easily implemented in this version of wxHeaderCtrl but need to be
84 implemented in the generic version as well to be really useful. Please let
85 us know if you need or, better, plan to work on implementing, any of them:
86 - Displaying bitmaps instead of or together with the text
87 - Custom drawn headers
88 - Filters associated with a column.
94 Default constructor not creating the underlying window.
96 You must use Create() after creating the object using this constructor.
101 Constructor creating the window.
103 Please see Create() for the parameters documentation.
105 wxHeaderCtrl(wxWindow
*parent
,
106 wxWindowID winid
= wxID_ANY
,
107 const wxPoint
& pos
= wxDefaultPosition
,
108 const wxSize
& size
= wxDefaultSize
,
109 long style
= wxHD_DEFAULT_STYLE
,
110 const wxString
& name
= wxHeaderCtrlNameStr
);
113 Create the header control window.
116 The parent window. The header control should be typically
117 positioned along the top edge of this window.
119 Id of the control or @c wxID_ANY if you don't care.
121 The initial position of the control.
123 The initial size of the control (usually not very useful as this
124 control will typically be resized to have the same width as the
125 associated data display control).
127 The control style, @c wxHD_DEFAULT_STYLE by default. Notice that
128 the default style allows the user to reorder the columns by
129 dragging them and you need to explicitly turn this feature off by
130 using @code wxHD_DEFAULT_STYLE & ~wxHD_DRAGDROP @endcode if this is
133 The name of the control.
135 bool Create(wxWindow
*parent
,
136 wxWindowID winid
= wxID_ANY
,
137 const wxPoint
& pos
= wxDefaultPosition
,
138 const wxSize
& size
= wxDefaultSize
,
139 long style
= wxHD_DEFAULT_STYLE
,
140 const wxString
& name
= wxHeaderCtrlNameStr
);
143 Set the number of columns in the control.
145 The control will use GetColumn() to get information about all the
146 new columns and refresh itself, i.e. this method also has the same
147 effect as calling UpdateColumn() for all columns but it should only be
148 used if the number of columns really changed.
150 void SetColumnCount(unsigned int count
);
153 Return the number of columns in the control.
156 Number of columns as previously set by SetColumnCount().
160 unsigned int GetColumnCount() const;
163 Return whether the control has any columns.
165 @see GetColumnCount()
167 bool IsEmpty() const;
171 Method to be implemented by the derived classes to return the
172 information for the given column.
175 The column index, between 0 and the value last passed to
178 virtual wxHeaderColumnBase
& GetColumn(unsigned int idx
) = 0;
181 Method which may be implemented by the derived classes to allow double
182 clicking the column separator to resize the column to fit its contents.
184 When a separator is double clicked, the default handler of
185 EVT_HEADER_SEPARATOR_DCLICK event calls this function and refreshes the
186 column if it returns @true so to implement the resizing of the column
187 to fit its width on header double click you need to implement this
188 method using logic similar to this example:
190 class MyHeaderCtrl : public wxHeaderColumnBase
195 void SetWidth(int width) { m_width = width; }
196 virtual int GetWidth() const { return m_width; }
202 class MyHeaderCtrl : public wxHeaderCtrl
206 virtual wxHeaderColumnBase& GetColumn(unsigned int idx)
211 virtual bool UpdateColumnWidthToFit(unsigned int idx, int widthTitle)
213 int widthContents = ... compute minimal width for column idx ...
214 m_cols[idx].SetWidth(wxMax(widthContents, widthTitle));
218 wxVector<MyHeaderColumn> m_cols;
222 Base class version simply returns @false.
225 Contains minimal width needed to display the column header itself
226 and will usually be used as a starting point for the fitting width
229 @true to indicate that the column was resized, i.e. GetColumn() now
230 returns the new width value, and so must be refreshed or @false
231 meaning that the control didn't reach to the separator double click.
233 virtual bool UpdateColumnWidthToFit(unsigned int idx
, int widthTitle
);
238 @class wxHeaderCtrlSimple
240 wxHeaderCtrlSimple is a concrete header control which can be used directly,
241 without inheriting from it as you need to do when using wxHeaderCtrl
244 When using it, you need to use simple AppendColumn(), InsertColumn() and
245 DeleteColumn() methods instead of setting the number of columns with
246 SetColumnCount() and returning the information about them from the
247 overridden GetColumn().
254 class wxHeaderCtrlSimple
: public wxHeaderCtrl
258 Default constructor not creating the underlying window.
260 You must use Create() after creating the object using this constructor.
262 wxHeaderCtrlSimple();
265 Constructor creating the window.
267 Please see the base class wxHeaderCtrl::Create() method for the
268 parameters description.
270 wxHeaderCtrlSimple(wxWindow
*parent
,
271 wxWindowID winid
= wxID_ANY
,
272 const wxPoint
& pos
= wxDefaultPosition
,
273 const wxSize
& size
= wxDefaultSize
,
274 long style
= wxHD_DEFAULT_STYLE
,
275 const wxString
& name
= wxHeaderCtrlNameStr
);
278 Insert the column at the given position.
281 The column to insert. Notice that because of the existence of
282 implicit conversion from wxString to wxHeaderColumn a string
283 can be passed directly here.
285 The position of the new column, from 0 to GetColumnCount(). Using
286 GetColumnCount() means to append the column to the end.
290 void InsertColumn(const wxHeaderColumn
& col
, unsigned int idx
);
293 Append the column to the end of the control.
297 void AppendColumn(const wxHeaderColumn
& col
);
300 Delete the column at the given position.
302 @see InsertColumn(), AppendColumn()
304 void DeleteColumn(unsigned int idx
);
307 Show or hide the column.
309 Initially the column is shown by default or hidden if it was added with
310 wxCOL_HIDDEN flag set.
312 When a column is hidden, it doesn't appear at all on the screen but its
313 index is still taken into account when working with other columns. E.g.
314 if there are three columns 0, 1 and 2 and the column 1 is hidden you
315 still need to use index 2 to refer to the last visible column.
318 The index of the column to show or hide, from 0 to GetColumnCount().
320 Indicates whether the column should be shown (default) or hidden.
322 void ShowColumn(unsigned int idx
, bool show
= true);
325 Hide the column with the given index.
327 This is the same as calling @code ShowColumn(idx, false) @endcode.
330 The index of the column to show or hide, from 0 to GetColumnCount().
332 void HideColumn(unsigned int idx
);
335 Update the column sort indicator.
337 The sort indicator, if shown, is typically an arrow pointing upwards or
338 downwards depending on whether the control contents is sorted in
339 ascending or descending order.
342 The column to set the sort indicator for.
344 If @true or @false show the sort indicator corresponding to
345 ascending or descending sort order respectively, if @c -1 remove
346 the currently shown sort indicator.
348 virtual void ShowSortIndicator(unsigned int idx
, int sortOrder
);
351 Remove the sort indicator from the given column.
353 This is the same as calling ShowSortIndicator() with @c -1 argument.
356 The column to remove sort indicator for.
358 void RemoveSortIndicator(unsigned int idx
);
362 This function can be overridden in the classes deriving from this
363 control instead of overriding UpdateColumnWidthToFit().
365 To implement automatic column resizing to fit its contents width when
366 the column divider is double clicked, you need to simply return the
367 fitting width for the given column @a idx from this method, the control
368 will automatically use the biggest value between the one returned from
369 here and the one needed for the display of the column title itself.
371 The base class version returns -1 indicating that this function is not
374 virtual int GetBestFittingWidth(unsigned int idx
) const;
378 @class wxHeaderCtrlEvent
380 Event class representing the events generated by wxHeaderCtrl.
387 class wxHeaderCtrlEvent
: public wxNotifyEvent
391 Return the index of the column affected by this event.
393 int GetColumn() const;