qskinny/doc/classes/QskSeparator.dox

69 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-12-08 11:02:57 +01:00
/*!
2021-01-25 11:06:01 +01:00
\class QskSeparator QskSeparator.h
2020-12-08 11:02:57 +01:00
2021-01-25 11:06:01 +01:00
\brief Separates a group of items from adjacent items.
2020-12-08 11:02:57 +01:00
2021-01-25 11:06:01 +01:00
QskSeparator is used to visually distinguish between groups of items.
It can be used in horizontal or vertical direction by setting the
2020-12-08 11:02:57 +01:00
orientation property to Qt::Vertical or Qt::Horizontal, respectively.
2021-01-25 11:06:01 +01:00
\subcontrols QskSeparator::Panel
\skinlet QskSeparatorSkinlet
2020-12-08 11:02:57 +01:00
*/
/*!
2021-01-25 11:06:01 +01:00
\property Qt::Orientation QskSeparator::orientation
2020-12-08 11:02:57 +01:00
2021-01-25 11:06:01 +01:00
\brief Orientation of the separator - Qt::Horizontal (the default) or Qt::Vertical.
2020-12-08 11:02:57 +01:00
2021-01-25 11:06:01 +01:00
A separator is often represented by some line - for a
2020-12-08 11:02:57 +01:00
orientation of Qt::Horizontal it might be a vertical line.
2021-01-25 11:06:01 +01:00
\accessors orientation(), setOrientation(), orientationChanged()
2020-12-08 11:02:57 +01:00
*/
2020-12-12 14:05:09 +01:00
/*!
2021-01-25 11:06:01 +01:00
\var QskSeparator::Panel
\sa QskSeparatorSkinlet
2020-12-12 14:05:09 +01:00
*/
2020-12-08 11:02:57 +01:00
/*!
2021-01-25 11:06:01 +01:00
\fn QskSeparator::QskSeparator( QQuickItem* )
2020-12-08 11:02:57 +01:00
2021-01-25 11:06:01 +01:00
Constructs a horizontal separator with the given parent.
2020-12-08 11:02:57 +01:00
*/
/*!
2021-01-25 11:06:01 +01:00
\fn QskSeparator::QskSeparator( Qt::Orientation, QQuickItem* )
2020-12-08 11:02:57 +01:00
2021-01-25 11:06:01 +01:00
Constructs a separator with the given parent. The orientation parameter
determines whether the separator is horizontal or vertical.
2020-12-08 11:02:57 +01:00
2021-01-25 11:06:01 +01:00
\sa orientation
2020-12-08 11:02:57 +01:00
*/
/*!
2021-01-25 11:06:01 +01:00
\fn QskSeparator::~QskSeparator();
Destroys this separator.
2020-12-08 11:02:57 +01:00
*/
/*!
2021-01-25 11:06:01 +01:00
\fn void QskSeparator::setOrientation( Qt::Orientation );
2020-12-08 11:02:57 +01:00
2021-01-25 11:06:01 +01:00
Set the orientation of the separator
\param orientation Qt::Vertical or Qt::Horizontal
\sa orientation
2020-12-08 11:02:57 +01:00
*/
/*!
2021-01-25 11:06:01 +01:00
\fn Qt::Orientation QskSeparator::orientation() const;
\return Value of the \ref orientation property
2020-12-08 11:02:57 +01:00
*/
/*!
2021-01-25 11:06:01 +01:00
\fn void QskSeparator::orientationChanged()
2020-12-08 11:02:57 +01:00
2021-01-25 11:06:01 +01:00
The orientation of the layout has changed
\sa orientation
2020-12-08 11:02:57 +01:00
*/