Woopsi 1.0
GUI Framework for Nintendo DS Homebrew
|
#include <checkbox.h>
Public Types | |
enum | CheckBoxState { CHECK_BOX_STATE_OFF = 0, CHECK_BOX_STATE_ON = 1, CHECK_BOX_STATE_MU = 2 } |
Public Member Functions | |
CheckBox (s16 x, s16 y, u16 width, u16 height, GadgetStyle *style=NULL) | |
virtual const CheckBoxState | getState () const |
virtual void | setState (CheckBoxState state) |
Protected Member Functions | |
virtual void | drawContents (GraphicsPort *port) |
virtual void | drawBorder (GraphicsPort *port) |
virtual void | onClick (s16 x, s16 y) |
virtual | ~CheckBox () |
CheckBox (const CheckBox &checkBox) | |
Protected Attributes | |
CheckBoxState | _state |
Class representing a radio button. Like radio buttons, checkboxes are tri-state - off, on and "mu". The mu state cannot be enabled by a user - it can only be set by the developer.
WoopsiUI::CheckBox::CheckBox | ( | s16 | x, |
s16 | y, | ||
u16 | width, | ||
u16 | height, | ||
GadgetStyle * | style = NULL |
||
) |
Constructor.
x | The x co-ordinate of the checkbox, relative to its parent. |
y | The y co-ordinate of the checkbox, relative to its parent. |
width | The width of the checkbox. |
height | The height of the checkbox. |
style | The style that the gadget should use. If this is not specified, the gadget will use the values stored in the global defaultGadgetStyle object. The gadget will copy the properties of the style into its own internal style object. |
virtual WoopsiUI::CheckBox::~CheckBox | ( | ) | [inline, protected, virtual] |
Destructor.
WoopsiUI::CheckBox::CheckBox | ( | const CheckBox & | checkBox | ) | [inline, protected] |
Copy constructor is protected to prevent usage.
virtual void WoopsiUI::CheckBox::drawBorder | ( | GraphicsPort * | port | ) | [protected, virtual] |
Draw the area of this gadget that falls within the clipping region. Called by the redraw() function to draw all visible regions.
port | The GraphicsPort to draw to. |
virtual void WoopsiUI::CheckBox::drawContents | ( | GraphicsPort * | port | ) | [protected, virtual] |
Draw the area of this gadget that falls within the clipping region. Called by the redraw() function to draw all visible regions.
port | The GraphicsPort to draw to. |
virtual const CheckBoxState WoopsiUI::CheckBox::getState | ( | ) | const [inline, virtual] |
Get the current state of the checkbox.
virtual void WoopsiUI::CheckBox::onClick | ( | s16 | x, |
s16 | y | ||
) | [protected, virtual] |
Toggles the state of the checkbox.
x | The x co-ordinate of the click. |
y | The y co-ordinate of the click. |
virtual void WoopsiUI::CheckBox::setState | ( | CheckBoxState | state | ) | [virtual] |
Set the state of the checkbox.
state | The new checkbox state. |
CheckBoxState WoopsiUI::CheckBox::_state [protected] |
The state of the checkbox