Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class web_widget

boost::ui::web_widget — Widget that renders HTML.

Synopsis

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


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

  // public member functions
  web_widget & html(const uistring &);
  web_widget & load(const uistring &);

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

Description

See Also:

Web browser engine (Wikipedia)

See Also:

iframe (W3C)

web_widget public construct/copy/destruct

  1. explicit web_widget(widget & parent);
    Creates web_widget widget.
  2. web_widget();

web_widget public member functions

  1. web_widget & html(const uistring & html);
    Sets HTML content.

    See Also:

    HTML (Wikipedia)

  2. web_widget & load(const uistring & url);
    Loads content from the URL.

    See Also:

    Uniform resource locator (Wikipedia)

web_widget private member functions

  1. detail_impl * get_impl();

PrevUpHomeNext