Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class group_box

boost::ui::group_box — Widget that groups other widgets using a frame and a title.

Synopsis

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


class group_box : public boost::ui::widget {
public:
  // construct/copy/destruct
  explicit group_box(widget &, const uistring & = uistring());
  group_box();

  // private member functions
  detail_impl * get_impl();
  const detail_impl * get_impl() const;
};

Description

See Also:

Frame (Wikipedia)

group_box public construct/copy/destruct

  1. explicit group_box(widget & parent, const uistring & title = uistring());
    Creates group box widget.
  2. group_box();

group_box private member functions

  1. detail_impl * get_impl();
  2. const detail_impl * get_impl() const;

PrevUpHomeNext