Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class native_widget

boost::ui::native_widget — Widget that wraps previously created native widget.

Synopsis

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


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

Description

native_widget public construct/copy/destruct

  1. explicit native_widget(native_handle_type handle);
    Creates widget from native widget handle.

PrevUpHomeNext