Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class panel

boost::ui::panel — Widget that hosts other widgets.

Synopsis

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


class panel : public boost::ui::widget {
public:
  // construct/copy/destruct
  explicit panel(panel &);
  explicit panel(widget &);
  panel();
};

Description

See Also:

Panel (Wikipedia)

panel public construct/copy/destruct

  1. explicit panel(panel & other);
    Creates panel widget.
  2. explicit panel(widget & parent);
    Creates panel widget.
  3. panel();

PrevUpHomeNext