Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class hslider

boost::ui::hslider — Horizontal slider widget.

Synopsis

// In header: <boost/ui/slider.hpp>


class hslider : public boost::ui::slider {
public:
  // construct/copy/destruct
  explicit hslider(widget &, value_type, value_type, value_type);
  explicit hslider(widget &, value_type = 0);
  hslider();
};

Description

hslider public construct/copy/destruct

  1. explicit hslider(widget & parent, value_type initial, value_type min, 
                     value_type max);
    Creates horizontal slider.

    Throws:

    std::out_of_range
  2. explicit hslider(widget & parent, value_type initial = 0);
    Creates horizontal slider.

    Throws:

    std::out_of_range
  3. hslider();

PrevUpHomeNext