|
| | WidgetFrame (::Engines::GUI &gui, const Common::UString &tag, const Common::UString &model) |
| |
| | ~WidgetFrame () |
| |
| | ModelWidget (::Engines::GUI &gui, const Common::UString &tag, const Common::UString &model) |
| |
| | ~ModelWidget () |
| |
| void | show () |
| | Show the widget. More...
|
| |
| void | hide () |
| | Hide the widget. More...
|
| |
| void | setPosition (float x, float y, float z) |
| | Set the widget's position. More...
|
| |
| float | getWidth () const |
| | Get the widget's width. More...
|
| |
| float | getHeight () const |
| | Get the widget's height. More...
|
| |
| void | setTag (const Common::UString &tag) |
| | Set the widget's tag. More...
|
| |
| Graphics::Aurora::ModelNode * | getNode (const Common::UString &nodeName) const |
| |
| | NWNWidgetWithCaption (::Engines::GUI &gui, const Common::UString &tag) |
| |
| | ~NWNWidgetWithCaption () |
| |
| void | show () |
| | Show the widget. More...
|
| |
| void | hide () |
| | Hide the widget. More...
|
| |
| virtual void | initCaption (const Common::UString &font, const Common::UString &text, float r=1.0f, float g=1.0f, float b=1.0f, float a=1.0f, float halign=Graphics::Aurora::kHAlignLeft, float valign=Graphics::Aurora::kVAlignTop) |
| |
| void | setPosition (float x, float y, float z) |
| | Set the widget's position. More...
|
| |
| void | setColor (float r, float g, float b, float a) |
| |
| void | setText (const Common::UString &text) |
| |
| const Common::UString | getText () const |
| |
| float | getWidth () const |
| | Get the widget's width. More...
|
| |
| float | getHeight () const |
| | Get the widget's height. More...
|
| |
| float | getHorizontalAlign () const |
| |
| float | getVerticalAlign () const |
| |
| void | setDisabled (bool disabled) |
| | Disable/Enable the widget. More...
|
| |
| | NWNWidget (::Engines::GUI &gui, const Common::UString &tag) |
| |
| | ~NWNWidget () |
| |
| void | enter () |
| | The mouse entered the widget. More...
|
| |
| void | leave () |
| | The mouse left the widget. More...
|
| |
| void | setTooltip (const Common::UString &text) |
| |
| void | setTooltipPosition (float x, float y, float z) |
| |
| | Widget (GUI &gui, const Common::UString &tag) |
| |
| virtual | ~Widget () |
| |
| const Common::UString & | getTag () const |
| | Get the widget's tag. More...
|
| |
| bool | isActive () const |
| | Was the widget activated? More...
|
| |
| bool | isVisible () const |
| | Is the widget visible? More...
|
| |
| bool | isDisabled () const |
| | Is the widget disabled? More...
|
| |
| bool | isInvisible () const |
| | Is the widget invisible (never visible)? More...
|
| |
| Widget * | getParent () |
| |
| const Widget * | getParent () const |
| |
| Widget * | getChild (const Common::UString &childTag) |
| | Get the widget's child by tag. More...
|
| |
| virtual void | movePosition (float x, float y, float z) |
| | Move the widget, relative to its current position. More...
|
| |
| virtual void | getPosition (float &x, float &y, float &z) const |
| | Get the widget's position. More...
|
| |
| virtual void | setInvisible (bool invisible) |
| | Make the widget invisible. More...
|
| |
| virtual void | mouseMove (uint8 state, float x, float y) |
| | The mouse was moved over the widget. More...
|
| |
| virtual void | mouseDown (uint8 state, float x, float y) |
| | A mouse button was pressed on the widget. More...
|
| |
| virtual void | mouseUp (uint8 state, float x, float y) |
| | A mouse button was released on the widget. More...
|
| |
| virtual void | mouseWheel (uint8 state, int x, int y) |
| | A mouse wheel was used on the widget. More...
|
| |
| virtual void | mouseDblClick (uint8 state, float x, float y) |
| | A mouse button was double-clicked on the widget. More...
|
| |
| virtual void | subActive (Widget &widget) |
| | A sub-widget was activated. More...
|
| |
| void | remove () |
| | Remove the widget from the GUI. More...
|
| |
| virtual void | addSub (Widget &widget) |
| | Add a sub-widget to the widget. More...
|
| |
| virtual void | addChild (Widget &widget) |
| | Add a child to the widget. More...
|
| |
| virtual void | addGroupMember (Widget &widget) |
| | Add a fellow group member to the widget. More...
|
| |
| virtual void | removeSub (Widget &widget) |
| | Remove a sub-widget from the widget. More...
|
| |
| virtual void | removeChild (Widget &widget) |
| | Remove a child from the widget. More...
|
| |
| virtual void | removeGroupMember (Widget &widget) |
| | Remove fellow group member from the widget. More...
|
| |
A NWN frame widget.
Definition at line 41 of file frame.h.