]>
git.saurik.com Git - wxWidgets.git/blob - interface/statline.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxStaticLine
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 A static line is just a line which may be used in a dialog to separate the
14 groups of controls. The line may be only vertical or horizontal.
17 @style{wxLI_HORIZONTAL}:
18 Creates a horizontal line.
19 @style{wxLI_VERTICAL}:
20 Creates a vertical line.
28 class wxStaticLine
: public wxControl
33 Constructor, creating and showing a static line.
36 Parent window. Must not be @NULL.
38 Window identifier. The value wxID_ANY indicates a default value.
40 Window position. If wxDefaultPosition is specified then a default
43 Size. Note that either the height or the width (depending on
44 whether the line if horizontal or vertical) is ignored.
46 Window style (either wxLI_HORIZONTAL or wxLI_VERTICAL).
53 wxStaticLine(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
54 const wxPoint
& pos
= wxDefaultPosition
,
55 const wxSize
& size
= wxDefaultSize
,
56 long style
= wxLI_HORIZONTAL
,
57 const wxString
& name
= "staticLine");
61 Creates the static line for two-step construction. See wxStaticLine()
64 bool Create(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
65 const wxPoint
& pos
= wxDefaultPosition
,
66 const wxSize
& size
= wxDefaultSize
,
68 const wxString
& name
= "staticLine");
71 This static function returns the size which will be given to the smaller
72 dimension of the static line, i.e. its height for a horizontal line or its
73 width for a vertical one.
78 Returns @true if the line is vertical, @false if horizontal.
80 bool IsVertical() const;