{{+bindTo:partials.standard_nacl_article}}
| Size () | |
| Size (const PP_Size &s) | |
| Size (int w, int h) | |
| ~Size () | |
| operator PP_Size () | |
| const PP_Size & | pp_size () const |
| PP_Size & | pp_size () |
| int | width () const |
| void | set_width (int w) |
| int | height () const |
| void | set_height (int h) |
| int | GetArea () const |
| void | SetSize (int w, int h) |
| void | Enlarge (int w, int h) |
| bool | IsEmpty () const |
A size of an object based on width and height.
| pp::Size::Size | ( | ) | [inline] |
The default constructor. Initializes the width and height to 0.
| pp::Size::Size | ( | const PP_Size & | s | ) | [inline] |
A constructor accepting a pointer to a PP_Size and converting the PP_Size to a Size.
This is an implicit conversion constructor.
| [in] | s | A pointer to a PP_Size. |
| pp::Size::Size | ( | int | w, |
| int | h | ||
| ) | [inline] |
A constructor accepting two int values for width and height and converting them to a Size.
| [in] | w | An int value representing a width. |
| [in] | h | An int value representing a height. |
| pp::Size::~Size | ( | ) | [inline] |
Destructor.
| void pp::Size::Enlarge | ( | int | w, |
| int | h | ||
| ) | [inline] |
Enlarge() enlarges the size of an object.
| [in] | w | A width to add the current width. |
| [in] | h | A height to add to the current height. |
| int pp::Size::GetArea | ( | ) | const [inline] |
GetArea() determines the area (width * height).
| int pp::Size::height | ( | ) | const [inline] |
Getter function for returning the value of height.
Size. | bool pp::Size::IsEmpty | ( | ) | const [inline] |
IsEmpty() determines if the size is zero.
| pp::Size::operator PP_Size | ( | ) | [inline] |
| const PP_Size& pp::Size::pp_size | ( | ) | const [inline] |
Getter function for returning the internal PP_Size struct.
PP_Size struct. | PP_Size& pp::Size::pp_size | ( | ) | [inline] |
Getter function for returning the internal PP_Size struct.
PP_Size struct. | void pp::Size::set_height | ( | int | h | ) | [inline] |
Setter function for setting the value of height.
| [in] | h | A new height value. |
| void pp::Size::set_width | ( | int | w | ) | [inline] |
Setter function for setting the value of width.
| [in] | w | A new width value. |
| void pp::Size::SetSize | ( | int | w, |
| int | h | ||
| ) | [inline] |
SetSize() sets the value of width and height.
| [in] | w | A new width value. |
| [in] | h | A new height value. |
| int pp::Size::width | ( | ) | const [inline] |
Getter function for returning the value of width.
Size.