]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/statline.tex
sorting support for generic version (patch 1765087 from Bo)
[wxWidgets.git] / docs / latex / wx / statline.tex
CommitLineData
c89165a8
VZ
1\section{\class{wxStaticLine}}\label{wxstaticline}
2
3A static line is just a line which may be used in a dialog to separate the
4groups of controls. The line may be only vertical or horizontal.
5
6\wxheading{Derived from}
7
8\helpref{wxControl}{wxcontrol}\\
9\helpref{wxWindow}{wxwindow}\\
10\helpref{wxEvtHandler}{wxevthandler}\\
11\helpref{wxObject}{wxobject}
12
13\wxheading{Include files}
14
15<wx/statline.h>
16
a7af285d
VZ
17\wxheading{Library}
18
19\helpref{wxCore}{librarieslist}
20
c89165a8
VZ
21\wxheading{Window styles}
22
23\twocolwidtha{5cm}
24\begin{twocollist}\itemsep=0pt
25\twocolitem{\windowstyle{wxLI\_HORIZONTAL}}{Creates a horizontal line.}
26\twocolitem{\windowstyle{wxLI\_VERTICAL}}{Creates a vertical line.}
27\end{twocollist}
28
29\wxheading{See also}
30
31\helpref{wxStaticBox}{wxstaticbox}
32
33\latexignore{\rtfignore{\wxheading{Members}}}
34
35\membersection{wxStaticLine::wxStaticLine}\label{wxstaticlinector}
36
37\func{}{wxStaticLine}{\void}
38
39Default constructor.
40
1de1196a 41\func{}{wxStaticLine}{\param{wxWindow* }{parent}, \param{wxWindowID }{id = wxID\_ANY},\rtfsp
c89165a8
VZ
42\param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
43\param{long}{ style = wxLI\_HORIZONTAL}, \param{const wxString\& }{name = ``staticLine"}}
44
45Constructor, creating and showing a static line.
46
47\wxheading{Parameters}
48
49\docparam{parent}{Parent window. Must not be NULL.}
50
51\docparam{id}{Window identifier. A value of -1 indicates a default value.}
52
53\docparam{pos}{Window position. If the position (-1, -1) is specified then a default position is chosen.}
54
55\docparam{size}{Size. Note that either the height or the width (depending on
56whether the line if horizontal or vertical) is ignored.}
57
58\docparam{style}{Window style (either wxLI\_HORIZONTAL or wxLI\_VERTICAL).}
59
60\docparam{name}{Window name.}
61
62\wxheading{See also}
63
64\helpref{wxStaticLine::Create}{wxstaticlinecreate}
65
66\membersection{wxStaticLine::Create}\label{wxstaticlinecreate}
67
1de1196a 68\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id = wxID\_ANY},\rtfsp
c89165a8
VZ
69\param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
70\param{long}{ style = 0}, \param{const wxString\& }{name = ``staticLine"}}
71
72Creates the static line for two-step construction. See \helpref{wxStaticLine::wxStaticLine}{wxstaticlinector}\rtfsp
73for further details.
74
75\membersection{wxStaticLine::IsVertical}\label{wxstaticlineisvertical}
76
77\constfunc{bool}{IsVertical}{\void}
78
cc81d32f 79Returns true if the line is vertical, false if horizontal.
c89165a8
VZ
80
81\membersection{wxStaticLine::GetDefaultSize}\label{wxstaticlinegetdefaultsize}
82
83\func{int}{GetDefaultSize}{\void}
84
154f22b3 85This static function returns the size which will be given to the smaller
c89165a8
VZ
86dimension of the static line, i.e. its height for a horizontal line or its
87width for a vertical one.
22d6efa8 88