2008-03-08 08:52:38 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: statline.h
|
2008-03-10 11:24:38 -04:00
|
|
|
// Purpose: interface of wxStaticLine
|
2008-03-08 08:52:38 -05:00
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
@class wxStaticLine
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
A static line is just a line which may be used in a dialog to separate the
|
2008-07-28 07:56:16 -04:00
|
|
|
groups of controls.
|
|
|
|
|
|
|
|
The line may be only vertical or horizontal. Moreover, not all ports
|
|
|
|
(notably not wxGTK) support specifying the transversal direction of the
|
|
|
|
line (e.g. height for a horizontal line) so for maximial portability you
|
|
|
|
should specify it as wxDefaultCoord.
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
@beginStyleTable
|
2008-04-06 10:43:04 -04:00
|
|
|
@style{wxLI_HORIZONTAL}
|
2008-03-08 08:52:38 -05:00
|
|
|
Creates a horizontal line.
|
2008-04-06 10:43:04 -04:00
|
|
|
@style{wxLI_VERTICAL}
|
2008-03-08 08:52:38 -05:00
|
|
|
Creates a vertical line.
|
|
|
|
@endStyleTable
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
@library{wxcore}
|
2008-10-07 12:57:34 -04:00
|
|
|
@category{ctrl}
|
2008-03-08 09:43:31 -05:00
|
|
|
|
2008-03-10 11:24:38 -04:00
|
|
|
@see wxStaticBox
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
|
|
|
class wxStaticLine : public wxControl
|
|
|
|
{
|
|
|
|
public:
|
2008-05-29 10:10:52 -04:00
|
|
|
/**
|
|
|
|
Default constructor
|
|
|
|
*/
|
|
|
|
wxStaticLine();
|
2008-10-07 12:57:34 -04:00
|
|
|
|
2008-03-08 08:52:38 -05:00
|
|
|
/**
|
|
|
|
Constructor, creating and showing a static line.
|
2008-03-20 09:45:17 -04:00
|
|
|
|
2008-03-08 09:43:31 -05:00
|
|
|
@param parent
|
2008-03-09 08:33:59 -04:00
|
|
|
Parent window. Must not be @NULL.
|
2008-03-08 09:43:31 -05:00
|
|
|
@param id
|
2008-03-09 08:33:59 -04:00
|
|
|
Window identifier. The value wxID_ANY indicates a default value.
|
2008-03-08 09:43:31 -05:00
|
|
|
@param pos
|
2008-10-07 12:57:34 -04:00
|
|
|
Window position.
|
2009-04-21 07:21:36 -04:00
|
|
|
If ::wxDefaultPosition is specified then a default position is chosen.
|
2008-03-08 09:43:31 -05:00
|
|
|
@param size
|
2008-03-09 08:33:59 -04:00
|
|
|
Size. Note that either the height or the width (depending on
|
|
|
|
whether the line if horizontal or vertical) is ignored.
|
2008-03-08 09:43:31 -05:00
|
|
|
@param style
|
2008-03-09 08:33:59 -04:00
|
|
|
Window style (either wxLI_HORIZONTAL or wxLI_VERTICAL).
|
2008-03-08 09:43:31 -05:00
|
|
|
@param name
|
2008-03-09 08:33:59 -04:00
|
|
|
Window name.
|
2008-03-20 09:45:17 -04:00
|
|
|
|
2008-03-09 08:33:59 -04:00
|
|
|
@see Create()
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
2008-03-08 09:43:31 -05:00
|
|
|
wxStaticLine(wxWindow* parent, wxWindowID id = wxID_ANY,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxLI_HORIZONTAL,
|
2008-11-13 16:32:53 -05:00
|
|
|
const wxString& name = wxStaticLineNameStr);
|
2008-03-08 08:52:38 -05:00
|
|
|
|
|
|
|
/**
|
2008-10-07 12:57:34 -04:00
|
|
|
Creates the static line for two-step construction.
|
|
|
|
See wxStaticLine() for further details.
|
2008-03-08 08:52:38 -05:00
|
|
|
*/
|
|
|
|
bool Create(wxWindow* parent, wxWindowID id = wxID_ANY,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
2008-10-29 11:34:31 -04:00
|
|
|
const wxSize& size = wxDefaultSize, long style = wxLI_HORIZONTAL,
|
|
|
|
const wxString& name = wxStaticLineNameStr);
|
2008-03-08 08:52:38 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
This static function returns the size which will be given to the smaller
|
|
|
|
dimension of the static line, i.e. its height for a horizontal line or its
|
|
|
|
width for a vertical one.
|
|
|
|
*/
|
2008-09-27 07:21:10 -04:00
|
|
|
static int GetDefaultSize();
|
2008-03-08 08:52:38 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns @true if the line is vertical, @false if horizontal.
|
|
|
|
*/
|
2008-03-09 12:24:26 -04:00
|
|
|
bool IsVertical() const;
|
2008-03-08 08:52:38 -05:00
|
|
|
};
|
2008-03-10 11:24:38 -04:00
|
|
|
|