1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/headercol.h
3 // Purpose: declaration of wxHeaderColumn class
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_HEADERCOL_H_
12 #define _WX_HEADERCOL_H_
14 #include "wx/bitmap.h"
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
22 // special value for column width meaning unspecified/default
23 wxCOL_WIDTH_DEFAULT
= -1
26 // bit masks for the various column attributes
29 // column can be resized (included in default flags)
32 // column can be clicked to toggle the sort order by its contents
35 // column can be dragged to change its order (included in default)
36 wxCOL_REORDERABLE
= 4,
38 // column is not shown at all
41 // default flags for wxHeaderColumn ctor
42 wxCOL_DEFAULT_FLAGS
= wxCOL_RESIZABLE
| wxCOL_REORDERABLE
45 // ----------------------------------------------------------------------------
46 // wxHeaderColumn: interface for a column in a header of controls such as
47 // wxListCtrl, wxDataViewCtrl or wxGrid
48 // ----------------------------------------------------------------------------
50 class WXDLLIMPEXP_CORE wxHeaderColumn
57 Derived classes must provide ctors with the following signatures
58 (notice that they shouldn't be explicit to allow passing strings/bitmaps
59 directly to methods such wxHeaderCtrl::AppendColumn()):
60 wxHeaderColumn(const wxString& title,
61 int width = wxCOL_WIDTH_DEFAULT,
62 wxAlignment align = wxALIGN_NOT,
63 int flags = wxCOL_DEFAULT_FLAGS);
64 wxHeaderColumn(const wxBitmap &bitmap,
65 int width = wxDVC_DEFAULT_WIDTH,
66 wxAlignment align = wxALIGN_CENTER,
67 int flags = wxCOL_DEFAULT_FLAGS);
70 // virtual dtor for the base class to avoid gcc warnings even though we
71 // don't normally delete the objects of this class via a pointer to
72 // wxHeaderColumn so it's not necessary, strictly speaking
73 virtual ~wxHeaderColumn() { }
75 // getters for various attributes
76 // ------------------------------
78 // notice that wxHeaderColumn only provides getters as this is all the
79 // wxHeaderCtrl needs, various derived class must also provide some way to
80 // change these attributes but this can be done either at the column level
81 // (in which case they should inherit from wxSettableHeaderColumn) or via
82 // the methods of the main control in which case you don't need setters in
83 // the column class at all
85 // title is the string shown for this column
86 virtual wxString
GetTitle() const = 0;
88 // bitmap shown (instead of text) in the column header
89 virtual wxBitmap
GetBitmap() const = 0; \
91 // width of the column in pixels, can be set to wxCOL_WIDTH_DEFAULT meaning
92 // unspecified/default
93 virtual int GetWidth() const = 0;
95 // minimal width can be set for resizeable columns to forbid resizing them
96 // below the specified size (set to 0 to remove)
97 virtual int GetMinWidth() const = 0;
99 // alignment of the text: wxALIGN_CENTRE, wxALIGN_LEFT or wxALIGN_RIGHT
100 virtual wxAlignment
GetAlignment() const = 0;
103 // flags manipulations:
104 // --------------------
106 // notice that while we make GetFlags() pure virtual here and implement the
107 // individual flags access in terms of it, for some derived classes it is
108 // more natural to implement access to each flag individually, in which
109 // case they can use our GetFromIndividualFlags() helper below to implement
112 // retrieve all column flags at once: combination of wxCOL_XXX values above
113 virtual int GetFlags() const = 0;
115 bool HasFlag(int flag
) const { return (GetFlags() & flag
) != 0; }
119 virtual bool IsResizeable() const
120 { return HasFlag(wxCOL_RESIZABLE
); }
123 virtual bool IsSortable() const
124 { return HasFlag(wxCOL_SORTABLE
); }
127 virtual bool IsReorderable() const
128 { return HasFlag(wxCOL_REORDERABLE
); }
131 virtual bool IsHidden() const
132 { return HasFlag(wxCOL_HIDDEN
); }
134 { return !IsHidden(); }
140 // return true if the column is the one currently used for sorting
141 virtual bool IsSortKey() const = 0;
143 // for sortable columns indicate whether we should sort in ascending or
144 // descending order (this should only be taken into account if IsSortKey())
145 virtual bool IsSortOrderAscending() const = 0;
148 // helper for the class overriding IsXXX()
149 int GetFromIndividualFlags() const;
152 // ----------------------------------------------------------------------------
153 // wxSettableHeaderColumn: column which allows to change its fields too
154 // ----------------------------------------------------------------------------
156 class WXDLLIMPEXP_CORE wxSettableHeaderColumn
: public wxHeaderColumn
159 virtual void SetTitle(const wxString
& title
) = 0;
160 virtual void SetBitmap(const wxBitmap
& bitmap
) = 0;
161 virtual void SetWidth(int width
) = 0;
162 virtual void SetMinWidth(int minWidth
) = 0;
163 virtual void SetAlignment(wxAlignment align
) = 0;
165 // see comment for wxHeaderColumn::GetFlags() about the relationship
166 // between SetFlags() and Set{Sortable,Reorderable,...}
168 // change, set, clear, toggle or test for any individual flag
169 virtual void SetFlags(int flags
) = 0;
170 void ChangeFlag(int flag
, bool set
);
171 void SetFlag(int flag
);
172 void ClearFlag(int flag
);
173 void ToggleFlag(int flag
);
175 virtual void SetResizeable(bool resizeable
)
176 { ChangeFlag(wxCOL_RESIZABLE
, resizeable
); }
177 virtual void SetSortable(bool sortable
)
178 { ChangeFlag(wxCOL_SORTABLE
, sortable
); }
179 virtual void SetReorderable(bool reorderable
)
180 { ChangeFlag(wxCOL_REORDERABLE
, reorderable
); }
181 virtual void SetHidden(bool hidden
)
182 { ChangeFlag(wxCOL_HIDDEN
, hidden
); }
184 virtual void SetAsSortKey(bool sort
= true) = 0;
185 void UnsetAsSortKey() { SetAsSortKey(false); }
187 virtual void SetSortOrder(bool ascending
) = 0;
188 void ToggleSortOrder() { SetSortOrder(!IsSortOrderAscending()); }
191 // helper for the class overriding individual SetXXX() methods instead of
192 // overriding SetFlags()
193 void SetIndividualFlags(int flags
);
196 // ----------------------------------------------------------------------------
197 // wxHeaderColumnSimple: trivial generic implementation of wxHeaderColumn
198 // ----------------------------------------------------------------------------
200 class wxHeaderColumnSimple
: public wxSettableHeaderColumn
204 wxHeaderColumnSimple(const wxString
& title
,
205 int width
= wxCOL_WIDTH_DEFAULT
,
206 wxAlignment align
= wxALIGN_NOT
,
207 int flags
= wxCOL_DEFAULT_FLAGS
)
216 wxHeaderColumnSimple(const wxBitmap
& bitmap
,
217 int width
= wxCOL_WIDTH_DEFAULT
,
218 wxAlignment align
= wxALIGN_CENTER
,
219 int flags
= wxCOL_DEFAULT_FLAGS
)
228 // implement base class pure virtuals
229 virtual void SetTitle(const wxString
& title
) { m_title
= title
; }
230 virtual wxString
GetTitle() const { return m_title
; }
232 virtual void SetBitmap(const wxBitmap
& bitmap
) { m_bitmap
= bitmap
; }
233 wxBitmap
GetBitmap() const { return m_bitmap
; }
235 virtual void SetWidth(int width
) { m_width
= width
; }
236 virtual int GetWidth() const { return m_width
; }
238 virtual void SetMinWidth(int minWidth
) { m_minWidth
= minWidth
; }
239 virtual int GetMinWidth() const { return m_minWidth
; }
241 virtual void SetAlignment(wxAlignment align
) { m_align
= align
; }
242 virtual wxAlignment
GetAlignment() const { return m_align
; }
244 virtual void SetFlags(int flags
) { m_flags
= flags
; }
245 virtual int GetFlags() const { return m_flags
; }
247 virtual void SetAsSortKey(bool sort
= true) { m_sort
= sort
; }
248 virtual bool IsSortKey() const { return m_sort
; }
250 virtual void SetSortOrder(bool ascending
) { m_sortAscending
= ascending
; }
251 virtual bool IsSortOrderAscending() const { return m_sortAscending
; }
254 // common part of all ctors
259 m_sortAscending
= true;
271 #endif // _WX_HEADERCOL_H_