Home | Libraries | People | FAQ | More |
boost::ui::notebook — Widget that is an array of tabbed widgets.
// In header: <boost/ui/notebook.hpp> class notebook : public boost::ui::widget { public: // types typedef index_type size_type; // Unsigned integral type. // construct/copy/destruct explicit notebook(widget &); notebook(); // public member functions void append_page(widget &, const uistring &); void current_page(size_type); size_type current_page_index() const; // private member functions detail_impl * get_impl(); const detail_impl * get_impl() const; // public data members static const size_type npos; // Invalid page index. };
See Also:
notebook
public
construct/copy/destructexplicit notebook(widget & parent);Creates notebook widget.
notebook();