]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/statline.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxStaticLine
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
12 A static line is just a line which may be used in a dialog to separate the
15 The line may be only vertical or horizontal. Moreover, not all ports
16 (notably not wxGTK) support specifying the transversal direction of the
17 line (e.g. height for a horizontal line) so for maximal portability you
18 should specify it as wxDefaultCoord.
21 @style{wxLI_HORIZONTAL}
22 Creates a horizontal line.
24 Creates a vertical line.
32 class wxStaticLine
: public wxControl
41 Constructor, creating and showing a static line.
44 Parent window. Must not be @NULL.
46 Window identifier. The value wxID_ANY indicates a default value.
49 If ::wxDefaultPosition is specified then a default position is chosen.
51 Size. Note that either the height or the width (depending on
52 whether the line if horizontal or vertical) is ignored.
54 Window style (either wxLI_HORIZONTAL or wxLI_VERTICAL).
60 wxStaticLine(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
61 const wxPoint
& pos
= wxDefaultPosition
,
62 const wxSize
& size
= wxDefaultSize
,
63 long style
= wxLI_HORIZONTAL
,
64 const wxString
& name
= wxStaticLineNameStr
);
67 Creates the static line for two-step construction.
68 See wxStaticLine() for further details.
70 bool Create(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
71 const wxPoint
& pos
= wxDefaultPosition
,
72 const wxSize
& size
= wxDefaultSize
, long style
= wxLI_HORIZONTAL
,
73 const wxString
& name
= wxStaticLineNameStr
);
76 This static function returns the size which will be given to the smaller
77 dimension of the static line, i.e. its height for a horizontal line or its
78 width for a vertical one.
80 static int GetDefaultSize();
83 Returns @true if the line is vertical, @false if horizontal.
85 bool IsVertical() const;