Home | Libraries | People | FAQ | More |
boost::ui::progress_bar — Progress bar widget base class.
// In header: <boost/ui/progress_bar.hpp> class progress_bar : public boost::ui::widget { public: // types typedef int value_type; // Progress bar value type. // construct/copy/destruct progress_bar(); // public member functions progress_bar & value(value_type); value_type value() const; value_type max() const; // private member functions void check_range(value_type) const; detail_impl * get_impl(); const detail_impl * get_impl() const; // private static functions static void check_range(value_type, value_type); };
See Also:
progress_bar
public member functionsprogress_bar & value(value_type value);Sets value position.
Throws: |
std::out_of_range If value is out of range |
value_type value() const;Returns value position.
value_type max() const;Returns maximum value position.