]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/dataviewcolumn.tex
Let various AppendXXXColumn helplers return the column created within
[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
44\func{}{wxDataViewColumn}{\param{const wxString\& }{title}, \param{wxDataViewRenderer* }{renderer}, \param{unsigned int }{model\_column}, \param{int }{width = 80}, \param{int }{flags = wxDATAVIEW\_COL\_RESIZABLE}}
45
46
47\func{}{wxDataViewColumn}{\param{const wxBitmap\& }{bitmap}, \param{wxDataViewRenderer* }{renderer}, \param{unsigned int }{model\_column}, \param{int }{width = 80}, \param{int }{flags = wxDATAVIEW\_COL\_RESIZABLE}}
48
49Constructors.
50
51
52\membersection{wxDataViewColumn::\destruct{wxDataViewColumn}}\label{wxdataviewcolumndtor}
53
54\func{}{\destruct{wxDataViewColumn}}{\void}
55
56Destructor.
57
58\membersection{wxDataViewColumn::GetBitmap}\label{wxdataviewcolumngetbitmap}
59
60\func{const wxBitmap\&}{GetBitmap}{\void}
61
62Returns the bitmap in the header of the column, if any.
63
64\membersection{wxDataViewColumn::GetModelColumn}\label{wxdataviewcolumngetmodelcolumn}
65
66\func{unsigned int}{GetModelColumn}{\void}
67
68Returns the index of the column of the model, which this
69wxDataViewColumn is displaying.
70
71\membersection{wxDataViewColumn::GetOwner}\label{wxdataviewcolumngetowner}
72
73\func{wxDataViewCtrl*}{GetOwner}{\void}
74
75Returns the owning \helpref{wxDataViewCtrl}{wxdataviewctrl}.
76
77\membersection{wxDataViewColumn::GetRenderer}\label{wxdataviewcolumngetrenderer}
78
79\func{wxDataViewRenderer*}{GetRenderer}{\void}
80
81Returns the renderer of this wxDataViewColumn.
82
83See also \helpref{wxDataViewRenderer}{wxdataviewrenderer}.
84
85\membersection{wxDataViewColumn::GetSortable}\label{wxdataviewcolumngetsortable}
86
87\func{bool}{GetSortable}{\void}
88
89Returns true if the column is sortable.
90
91See \helpref{SetSortable}{wxdataviewcolumnsetsortable}
92
93\membersection{wxDataViewColumn::GetWidth}\label{wxdataviewcolumngetwidth}
94
95\func{int}{GetWidth}{\void}
96
97Returns the width of the column.
98
99\membersection{wxDataViewColumn::IsSortOrderAscending}\label{wxdataviewcolumnissortorderascending}
100
101\func{bool}{IsSortOrderAscending}{\void}
102
103Returns true, if the sort order is ascending.
104
105See also \helpref{SetSortOrder}{wxdataviewcolumnsetsortorder}
106
107\membersection{wxDataViewColumn::SetAlignment}\label{wxdataviewcolumnsetalignment}
108
109\func{void}{SetAlignment}{\param{wxAlignment }{align}}
110
111Set the alignment of the column header.
112
113\membersection{wxDataViewColumn::SetBitmap}\label{wxdataviewcolumnsetbitmap}
114
115\func{void}{SetBitmap}{\param{const wxBitmap\& }{bitmap}}
116
117Set the bitmap of the column header.
118
119\membersection{wxDataViewColumn::SetSortOrder}\label{wxdataviewcolumnsetsortorder}
120
121\func{void}{SetSortOrder}{\param{bool }{ascending}}
122
123Indicate the sort order if the implementation of the
124wxDataViewCtrl supports it, most commonly by showing
c7074d44 125a little arrow.
b6b9d556
RR
126
127\membersection{wxDataViewColumn::SetSortable}\label{wxdataviewcolumnsetsortable}
128
129\func{void}{SetSortable}{\param{bool }{sortable}}
130
131Indicate that the column is sortable. This is only to provide a
132visual hint in the column (such as a sort order indicator). It
c7074d44 133will not actually sort the data.
b6b9d556
RR
134
135\membersection{wxDataViewColumn::SetTitle}\label{wxdataviewcolumnsettitle}
136
137\func{void}{SetTitle}{\param{const wxString\& }{title}}
138
139Set the title of the column header to {\it title}.
140