Boost.UI
User Interface Boost library
|
Go to the documentation of this file.
8 #ifndef BOOST_UI_LINE_HPP
9 #define BOOST_UI_LINE_HPP
13 #ifdef BOOST_HAS_PRAGMA_ONCE
31 void detail_create(
widget& parent,
bool horizontal);
50 { detail_create(parent,
true);
return *
this; }
67 { detail_create(parent,
false);
return *
this; }
74 #endif // BOOST_UI_LINE_HPP
Vertical line widget.
Definition: line.hpp:58
vline & create(widget &parent)
Creates vertical line widget.
Definition: line.hpp:66
Boost C++ libraries namespace.
Definition: window.hpp:19
hline & create(widget &parent)
Creates horizontal line widget.
Definition: line.hpp:49
hline(widget &parent)
Creates horizontal line widget.
Definition: line.hpp:47
Horizontal line widget.
Definition: line.hpp:41
vline(widget &parent)
Creates vertical line widget.
Definition: line.hpp:64