Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class check_box

boost::ui::check_box — Labelled widget that that permits the user to make a binary choice.

Synopsis

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


class check_box : public boost::ui::check_box_base {
public:
  // construct/copy/destruct
  explicit check_box(widget &, const uistring &);
  check_box();
};

Description

See Also:

Checkbox (Wikipedia)

check_box public construct/copy/destruct

  1. explicit check_box(widget & parent, const uistring & text);
    Creates check box widget with text.
  2. check_box();

PrevUpHomeNext