]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/gridsizr.tex
added new and improved wxFileCtrl implementation (patch 1763164)
[wxWidgets.git] / docs / latex / wx / gridsizr.tex
1 \section{\class{wxGridSizer}}\label{wxgridsizer}
2
3 A grid sizer is a sizer which lays out its children in a two-dimensional
4 table with all table fields having the same size,
5 i.e. the width of each field is the width of the widest child,
6 the height of each field is the height of the tallest child.
7
8 \wxheading{Derived from}
9
10 \helpref{wxSizer}{wxsizer}\\
11 \helpref{wxObject}{wxobject}
12
13 \wxheading{Include files}
14
15 <wx/sizer.h>
16
17 \wxheading{Library}
18
19 \helpref{wxCore}{librarieslist}
20
21 \wxheading{See also}
22
23 \helpref{wxSizer}{wxsizer}, \helpref{Sizer overview}{sizeroverview}
24
25
26
27 \latexignore{\rtfignore{\wxheading{Members}}}
28
29 \membersection{wxGridSizer::wxGridSizer}\label{wxgridsizerwxgridsizer}
30
31 \func{}{wxGridSizer}{\param{int }{rows}, \param{int }{cols}, \param{int }{vgap}, \param{int }{hgap}}
32
33 \func{}{wxGridSizer}{\param{int }{cols}, \param{int }{vgap = 0}, \param{int }{hgap = 0}}
34
35 Constructor for a wxGridSizer. {\it rows} and {\it cols} determine the number of
36 columns and rows in the sizer - if either of the parameters is zero, it will be
37 calculated to form the total number of children in the sizer, thus making the
38 sizer grow dynamically. {\it vgap} and {\it hgap} define extra space between
39 all children.
40
41 \membersection{wxGridSizer::GetCols}\label{wxgridsizergetcols}
42
43 \func{int}{GetCols}{}
44
45 Returns the number of columns in the sizer.
46
47
48 \membersection{wxGridSizer::GetHGap}\label{wxgridsizergethgap}
49
50 \func{int}{GetHGap}{}
51
52 Returns the horizontal gap (in pixels) between cells in the sizer.
53
54
55 \membersection{wxGridSizer::GetRows}\label{wxgridsizergetrows}
56
57 \func{int}{GetRows}{}
58
59 Returns the number of rows in the sizer.
60
61
62 \membersection{wxGridSizer::GetVGap}\label{wxgridsizergetvgap}
63
64 \func{int}{GetVGap}{}
65
66 Returns the vertical gap (in pixels) between the cells in the sizer.
67
68
69 \membersection{wxGridSizer::SetCols}\label{wxgridsizersetcols}
70
71 \func{void}{SetCols}{\param{int }{cols}}
72
73 Sets the number of columns in the sizer.
74
75
76 \membersection{wxGridSizer::SetHGap}\label{wxgridsizersethgap}
77
78 \func{void}{SetHGap}{\param{int }{gap}}
79
80 Sets the horizontal gap (in pixels) between cells in the sizer.
81
82
83 \membersection{wxGridSizer::SetRows}\label{wxgridsizersetrows}
84
85 \func{void}{SetRows}{\param{int }{rows}}
86
87 Sets the number of rows in the sizer.
88
89
90 \membersection{wxGridSizer::SetVGap}\label{wxgridsizersetvgap}
91
92 \func{void}{SetVGap}{\param{int }{gap}}
93
94 Sets the vertical gap (in pixels) between the cells in the sizer.
95
96
97
98