]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/dataviewcolumn.tex
added wxWindow::AlwaysShowScrollbars() and its wxMac implementation
[wxWidgets.git] / docs / latex / wx / dataviewcolumn.tex
CommitLineData
b6b9d556
RR
1
2\section{\class{wxDataViewColumn}}\label{wxdataviewcolumn}
3
4
5This class represents a column in a \helpref{wxDataViewCtrl}{wxdataviewctrl}.
6One wxDataViewColumn is bound to one column in the data model,
7to which the wxDataViewCtrl has been associated.
8
9An instance of \helpref{wxDataViewRenderer}{wxdataviewrenderer} is used by
10this class to render its data.
11
12\wxheading{Constants}
13
c7074d44 14These flags define behaviour of the column:
b6b9d556
RR
15
16{\small
17\begin{verbatim}
18enum wxDataViewColumnFlags
19{
20 wxDATAVIEW_COL_RESIZABLE = 1, // the user can resize the column
21 wxDATAVIEW_COL_SORTABLE = 2, // same as SetSortable()
22 wxDATAVIEW_COL_HIDDEN = 4 // column is hidden
23};
24\end{verbatim}
25}
26
27\wxheading{Derived from}
28
29\helpref{wxObject}{wxobject}
30
31\wxheading{Include files}
32
33<wx/dataview.h>
34
a7af285d
VZ
35\wxheading{Library}
36
37\helpref{wxAdv}{librarieslist}
38
b6b9d556 39
809e21b5
FM
40\latexignore{\rtfignore{\wxheading{Members}}}
41
b6b9d556
RR
42\membersection{wxDataViewColumn::wxDataViewColumn}\label{wxdataviewcolumnwxdataviewcolumn}
43
ef974c00 44\func{}{wxDataViewColumn}{\param{const wxString\& }{title}, \param{wxDataViewRenderer* }{renderer}, \param{unsigned int }{model\_column}, \param{int }{width = wxDVC\_DEFAULT\_WIDTH}, \param{wxAlignment }{align = wxALIGN\_CENTRE}, \param{int }{flags = wxDATAVIEW\_COL\_RESIZABLE}}
b6b9d556 45
ef974c00 46\func{}{wxDataViewColumn}{\param{const wxBitmap\& }{bitmap}, \param{wxDataViewRenderer* }{renderer}, \param{unsigned int }{model\_column}, \param{int }{width = wxDVC\_DEFAULT\_WIDTH}, \param{wxAlignment }{align = wxALIGN\_CENTRE}, \param{int }{flags = wxDATAVIEW\_COL\_RESIZABLE}}
b6b9d556
RR
47
48Constructors.
49
50
51\membersection{wxDataViewColumn::\destruct{wxDataViewColumn}}\label{wxdataviewcolumndtor}
52
53\func{}{\destruct{wxDataViewColumn}}{\void}
54
55Destructor.
56
57\membersection{wxDataViewColumn::GetBitmap}\label{wxdataviewcolumngetbitmap}
58
59\func{const wxBitmap\&}{GetBitmap}{\void}
60
61Returns the bitmap in the header of the column, if any.
62
63\membersection{wxDataViewColumn::GetModelColumn}\label{wxdataviewcolumngetmodelcolumn}
64
65\func{unsigned int}{GetModelColumn}{\void}
66
67Returns the index of the column of the model, which this
68wxDataViewColumn is displaying.
69
70\membersection{wxDataViewColumn::GetOwner}\label{wxdataviewcolumngetowner}
71
72\func{wxDataViewCtrl*}{GetOwner}{\void}
73
74Returns the owning \helpref{wxDataViewCtrl}{wxdataviewctrl}.
75
76\membersection{wxDataViewColumn::GetRenderer}\label{wxdataviewcolumngetrenderer}
77
78\func{wxDataViewRenderer*}{GetRenderer}{\void}
79
80Returns the renderer of this wxDataViewColumn.
81
82See also \helpref{wxDataViewRenderer}{wxdataviewrenderer}.
83
84\membersection{wxDataViewColumn::GetSortable}\label{wxdataviewcolumngetsortable}
85
86\func{bool}{GetSortable}{\void}
87
88Returns true if the column is sortable.
89
90See \helpref{SetSortable}{wxdataviewcolumnsetsortable}
91
92\membersection{wxDataViewColumn::GetWidth}\label{wxdataviewcolumngetwidth}
93
94\func{int}{GetWidth}{\void}
95
96Returns the width of the column.
97
98\membersection{wxDataViewColumn::IsSortOrderAscending}\label{wxdataviewcolumnissortorderascending}
99
100\func{bool}{IsSortOrderAscending}{\void}
101
102Returns true, if the sort order is ascending.
103
104See also \helpref{SetSortOrder}{wxdataviewcolumnsetsortorder}
105
106\membersection{wxDataViewColumn::SetAlignment}\label{wxdataviewcolumnsetalignment}
107
108\func{void}{SetAlignment}{\param{wxAlignment }{align}}
109
110Set the alignment of the column header.
111
112\membersection{wxDataViewColumn::SetBitmap}\label{wxdataviewcolumnsetbitmap}
113
114\func{void}{SetBitmap}{\param{const wxBitmap\& }{bitmap}}
115
116Set the bitmap of the column header.
117
118\membersection{wxDataViewColumn::SetSortOrder}\label{wxdataviewcolumnsetsortorder}
119
120\func{void}{SetSortOrder}{\param{bool }{ascending}}
121
122Indicate the sort order if the implementation of the
123wxDataViewCtrl supports it, most commonly by showing
c7074d44 124a little arrow.
b6b9d556
RR
125
126\membersection{wxDataViewColumn::SetSortable}\label{wxdataviewcolumnsetsortable}
127
128\func{void}{SetSortable}{\param{bool }{sortable}}
129
0bd26819
RR
130Indicate that the column is sortable. This does
131not show any sorting indicate yet, but it does
132make the column header clickable. Call
133\helpref{SetSortOrder}{wxdataviewcolumnsetsortorder}
134afterwards to actually make the sort indicator appear.
135If {\it sortable} is false, the column header is
136no longer clickable and the sort indicator (little
137arrow) will disappear.
b6b9d556
RR
138
139\membersection{wxDataViewColumn::SetTitle}\label{wxdataviewcolumnsettitle}
140
141\func{void}{SetTitle}{\param{const wxString\& }{title}}
142
143Set the title of the column header to {\it title}.
144