Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class tri_state_check_box

boost::ui::tri_state_check_box — Labelled widget that that permits the user to make a ternary choice.

Synopsis

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


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

Description

See Also:

Checkbox (Wikipedia)

tri_state_check_box public construct/copy/destruct

  1. explicit tri_state_check_box(widget & parent, const uistring & text);
    Creates tri-state check box widget with text.
  2. tri_state_check_box();

PrevUpHomeNext