Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class canvas

boost::ui::canvas — Widget for drawing.

Synopsis

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


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

  // public member functions
  ui::painter painter();

  // private member functions
  unspecified get_impl();
};

Description

See Also:

boost::ui::painter

See Also:

Canvas (Wikipedia)

canvas public construct/copy/destruct

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

canvas public member functions

  1. ui::painter painter();
    Returns painter based on this canvas to work in the retained mode

canvas private member functions

  1. unspecified get_impl();

PrevUpHomeNext