#include <OgreGuiContainer.h>
Inheritance diagram for Ogre::GuiContainer:
Public Types | |
typedef std::map< String, GuiElement * > | ChildMap |
typedef MapIterator< ChildMap > | ChildIterator |
typedef std::map< String, GuiContainer * > | ChildContainerMap |
typedef MapIterator< ChildContainerMap > | ChildContainerIterator |
Public Methods | |
GuiContainer (const String &name) | |
Constructor: do not call direct, use GuiManager::createContainer. | |
virtual | ~GuiContainer () |
virtual void | addChild (GuiElement *elem) |
Adds another GuiElement to this container. | |
virtual void | addChildImpl (GuiElement *elem) |
Adds another GuiElement to this container. | |
virtual void | addChildImpl (GuiContainer *cont) |
Add a nested container to this container. | |
virtual void | removeChild (const String &name) |
Removes a named element from this container. | |
virtual GuiElement * | getChild (const String &name) |
Gets the named child of this container. | |
virtual ChildIterator | getChildIterator (void) |
Gets an object for iterating over all the children of this object. | |
virtual ChildContainerIterator | getChildContainerIterator (void) |
Gets an iterator for just the container children of this object. | |
virtual void | _positionsOutOfDate (void) |
Tell the object and its children to recalculate. | |
virtual void | _update (void) |
Overridden from GuiElement. | |
virtual void | _notifyZOrder (ushort newZOrder) |
Overridden from GuiElement. | |
virtual void | _notifyParent (GuiContainer *parent, Overlay *overlay) |
Overridden from GuiElement. | |
virtual void | _updateRenderQueue (RenderQueue *queue) |
Overridden from GuiElement. | |
bool | isContainer () const |
Overridden from GuiElement. | |
virtual bool | isChildrenProcessEvents () const |
Should this container pass events to their children. | |
virtual void | setChildrenProcessEvents (bool val) |
Should this container pass events to their children. | |
virtual GuiElement * | findElementAt (Real x, Real y) |
This returns a GuiElement at position x,y. | |
void | copyFromTemplate (GuiElement *templateGui) |
virtual void | initialise (void)=0 |
Initialise gui element. | |
const String & | getName (void) const |
Gets the name of this overlay. | |
virtual void | show (void) |
Shows this element if it was hidden. | |
virtual void | hide (void) |
Hides this element if it was visible. | |
bool | isVisible (void) const |
Returns whether or not the element is visible. | |
bool | isEnabled () const |
virtual void | setEnabled (bool b) |
void | setDimensions (Real width, Real height) |
Sets the dimensions of this element in relation to the screen (1.0 = screen width/height). | |
void | setPosition (Real left, Real top) |
Sets the position of the top-left corner of the element, relative to the screen size (1.0 = screen width / height). | |
void | setWidth (Real width) |
Sets the width of this element in relation to the screen (where 1.0 = screen width). | |
Real | getWidth (void) const |
Gets the width of this element in relation to the screen (where 1.0 = screen width). | |
void | setHeight (Real height) |
Sets the height of this element in relation to the screen (where 1.0 = screen height). | |
Real | getHeight (void) const |
Gets the height of this element in relation to the screen (where 1.0 = screen height). | |
void | setLeft (Real left) |
Sets the left of this element in relation to the screen (where 0 = far left, 1.0 = far right). | |
Real | getLeft (void) const |
Gets the left of this element in relation to the screen (where 0 = far left, 1.0 = far right). | |
void | setTop (Real Top) |
Sets the top of this element in relation to the screen (where 0 = top, 1.0 = bottom). | |
Real | getTop (void) const |
Gets the top of this element in relation to the screen (where 0 = top, 1.0 = bottom). | |
virtual const String & | getMaterialName (void) const |
Gets the name of the material this element uses. | |
virtual void | setMaterialName (const String &matName) |
Sets the name of the material this element will use. | |
Material * | getMaterial (void) const |
See Renderable. | |
void | getWorldTransforms (Matrix4 *xform) const |
See Renderable. | |
const Quaternion & | getWorldOrientation (void) const |
@copydoc Renderable::getWorldOrientation | |
const Vector3 & | getWorldPosition (void) const |
@copydoc Renderable::getWorldPosition | |
bool | useIdentityProjection (void) const |
See Renderable. | |
bool | useIdentityView (void) const |
See Renderable. | |
virtual void | _updateFromParent (void) |
Updates this elements transform based on it's parent. | |
virtual Real | _getDerivedLeft (void) |
Gets the 'left' position as derived from own left and that of parents. | |
virtual Real | _getDerivedTop (void) |
Gets the 'top' position as derived from own left and that of parents. | |
virtual const String & | getTypeName (void) const=0 |
Gets the type name of the element. | |
virtual void | setCaption (const String &text) |
Sets the caption on elements that support it. | |
virtual const String & | getCaption (void) const |
Gets the caption for this element. | |
virtual void | setColour (const ColourValue &col) |
Sets the colour on elements that support it. | |
virtual const ColourValue & | getColour (void) const |
Gets the colour for this element. | |
virtual void | setMetricsMode (GuiMetricsMode gmm) |
Tells this element how to interpret the position and dimension values it is given. | |
virtual GuiMetricsMode | getMetricsMode (void) const |
Retrieves the current settings of how the element metrics are interpreted. | |
virtual void | setHorizontalAlignment (GuiHorizontalAlignment gha) |
Sets the horizontal origin for this element. | |
virtual GuiHorizontalAlignment | getHorizontalAlignment (void) const |
Gets the horizontal alignment for this element. | |
virtual void | setVerticalAlignment (GuiVerticalAlignment gva) |
Sets the vertical origin for this element. | |
virtual GuiVerticalAlignment | getVerticalAlignment (void) const |
Gets the vertical alignment for this element. | |
virtual bool | contains (Real x, Real y) const |
Returns true if xy is within the constraints of the component. | |
virtual void | processEvent (InputEvent *e) |
Processes events occurring on this component. | |
virtual bool | isKeyEnabled () const |
virtual bool | isCloneable () const |
virtual void | setCloneable (bool c) |
PositionTarget * | getPositionTargetParent () |
Returns the parent container. | |
GuiContainer * | getParent () |
Returns the parent container. | |
ushort | getZOrder () const |
Returns the zOrder of the element. | |
Real | getSquaredViewDepth (const Camera *cam) const |
Overridden from Renderable. | |
const LightList & | getLights (void) const |
@copydoc Renderable::getLights | |
ParamDictionary * | getParamDictionary (void) |
Retrieves the parameter dictionary for this class. | |
const ParamDictionary * | getParamDictionary (void) const |
const ParameterList & | getParameters (void) const |
Retrieves a list of parameters valid for this object. | |
virtual bool | setParameter (const String &name, const String &value) |
Generic parameter setting method. | |
virtual String | getParameter (const String &name) const |
Generic parameter retrieval method. | |
virtual void | copyParametersTo (StringInterface *dest) const |
Method for copying this object's parameters to another object. | |
virtual Technique * | getTechnique (void) const |
Retrieves a pointer to the Material Technique this renderable object uses. | |
virtual void | getRenderOperation (RenderOperation &op)=0 |
Gets the render operation required to send this object to the frame buffer. | |
virtual unsigned short | getNumWorldTransforms (void) const |
Returns the number of world transform matrices this renderable requires. | |
virtual SceneDetailLevel | getRenderDetail () const |
Returns the preferred rasterisation mode of this renderable. | |
virtual bool | getNormaliseNormals (void) const |
Returns whether or not this Renderable wishes the hardware to normalise normals. | |
void | processMouseEvent (MouseEvent *e) |
void | addMouseListener (MouseListener *l) |
void | removeMouseListener (MouseListener *l) |
bool | isMouseWithin () const |
void | processMouseMotionEvent (MouseEvent *e) |
void | addMouseMotionListener (MouseMotionListener *l) |
void | removeMouseMotionListener (MouseMotionListener *l) |
void | processActionEvent (ActionEvent *e) |
void | addActionListener (ActionListener *l) |
void | removeActionListener (ActionListener *l) |
Protected Methods | |
virtual void | updatePositionGeometry (void)=0 |
Internal method which is triggered when the positions of the element get updated, meaning the element should be rebuilding it's mesh positions. | |
virtual void | addBaseParameters (void) |
Internal method for setting up the basic parameter definitions for a subclass. | |
bool | createParamDictionary (const String &className) |
Internal method for creating a parameter dictionary for the class, if it does not already exist. | |
Protected Attributes | |
ChildMap | mChildren |
ChildContainerMap | mChildContainers |
bool | mChildrenProcessEvents |
String | mName |
bool | mVisible |
bool | mCloneable |
Real | mLeft |
Real | mTop |
Real | mWidth |
Real | mHeight |
String | mMaterialName |
Material * | mpMaterial |
String | mCaption |
ColourValue | mColour |
GuiMetricsMode | mMetricsMode |
GuiHorizontalAlignment | mHorzAlign |
GuiVerticalAlignment | mVertAlign |
short | mPixelTop |
short | mPixelLeft |
short | mPixelWidth |
short | mPixelHeight |
GuiContainer * | mParent |
Overlay * | mOverlay |
Real | mDerivedLeft |
Real | mDerivedTop |
bool | mDerivedOutOfDate |
bool | mGeomPositionsOutOfDate |
Falg indicating if the vertex positons need recalculating. | |
ushort | mZOrder |
bool | mEnabled |
String | mParamDictName |
Class name for this instance to be used as a lookup (must be initialised by subclasses). | |
MouseListener * | mMouseListener |
bool | mMouseWithin |
MouseMotionListener * | mMouseMotionListener |
ActionListener * | mActionListener |
Static Protected Attributes | |
GuiElementCommands::CmdLeft | msLeftCmd |
GuiElementCommands::CmdTop | msTopCmd |
GuiElementCommands::CmdWidth | msWidthCmd |
GuiElementCommands::CmdHeight | msHeightCmd |
GuiElementCommands::CmdMaterial | msMaterialCmd |
GuiElementCommands::CmdCaption | msCaptionCmd |
GuiElementCommands::CmdMetricsMode | msMetricsModeCmd |
GuiElementCommands::CmdHorizontalAlign | msHorizontalAlignCmd |
GuiElementCommands::CmdVerticalAlign | msVerticalAlignCmd |
GuiElementCommands::CmdVisible | msVisibleCmd |
ParamDictionaryMap | msDictionary |
Dictionary of parameters. |
Definition at line 47 of file OgreGuiContainer.h.
|
Definition at line 53 of file OgreGuiContainer.h. Referenced by getChildContainerIterator(). |
|
Definition at line 52 of file OgreGuiContainer.h. |
|
Definition at line 51 of file OgreGuiContainer.h. Referenced by _notifyParent(), _notifyZOrder(), _positionsOutOfDate(), _update(), Ogre::PanelGuiElement::_updateRenderQueue(), _updateRenderQueue(), addChildImpl(), getChildIterator(), Ogre::PopupMenuGuiElement::layoutItems(), Ogre::ListGuiElement::layoutItems(), Ogre::ListGuiElement::setSelectedIndex(), Ogre::ButtonGuiElement::updateMaterials(), and Ogre::BorderButtonGuiElement::updateMaterials(). |
|
Definition at line 50 of file OgreGuiContainer.h. |
|
Constructor: do not call direct, use GuiManager::createContainer.
Definition at line 36 of file OgreGuiContainer.cpp. |
|
Definition at line 42 of file OgreGuiContainer.cpp. |
|
Gets the 'left' position as derived from own left and that of parents.
Definition at line 387 of file OgreGuiElement.cpp. References Ogre::GuiElement::_updateFromParent(), Ogre::GuiElement::mDerivedLeft, and Ogre::Real. Referenced by Ogre::GuiElement::_updateFromParent(), Ogre::TextAreaGuiElement::updateGeometry(), Ogre::PanelGuiElement::updatePositionGeometry(), Ogre::BorderPanelGuiElement::updatePositionGeometry(), and Ogre::TTYGuiElement::updateWindowGeometry(). |
|
Gets the 'top' position as derived from own left and that of parents.
Definition at line 396 of file OgreGuiElement.cpp. References Ogre::GuiElement::_updateFromParent(), Ogre::GuiElement::mDerivedTop, and Ogre::Real. Referenced by Ogre::GuiElement::_updateFromParent(), Ogre::ListGuiElement::mouseDragged(), Ogre::TextAreaGuiElement::updateGeometry(), Ogre::PanelGuiElement::updatePositionGeometry(), Ogre::BorderPanelGuiElement::updatePositionGeometry(), and Ogre::TTYGuiElement::updateWindowGeometry(). |
|
Overridden from GuiElement.
Reimplemented from Ogre::GuiElement. Definition at line 176 of file OgreGuiContainer.cpp. References ChildIterator, and getChildIterator(). Referenced by Ogre::Overlay::add2D(). |
|
Overridden from GuiElement.
Reimplemented from Ogre::GuiElement. Definition at line 162 of file OgreGuiContainer.cpp. References ChildIterator, getChildIterator(), and Ogre::ushort. Referenced by Ogre::Overlay::add2D(). |
|
Tell the object and its children to recalculate.
Reimplemented from Ogre::GuiElement. Definition at line 135 of file OgreGuiContainer.cpp. References ChildIterator, and getChildIterator(). |
|
Overridden from GuiElement.
Reimplemented from Ogre::GuiElement. Reimplemented in Ogre::BorderPanelGuiElement. Definition at line 147 of file OgreGuiContainer.cpp. References ChildIterator, and getChildIterator(). Referenced by Ogre::PopupMenuGuiElement::layoutItems(). |
|
Updates this elements transform based on it's parent.
Definition at line 323 of file OgreGuiElement.cpp. References Ogre::GuiElement::_getDerivedLeft(), Ogre::GuiElement::_getDerivedTop(), Ogre::GuiElement::getHeight(), Ogre::GuiElement::getWidth(), Ogre::GHA_CENTER, Ogre::GHA_LEFT, Ogre::GHA_RIGHT, Ogre::GVA_BOTTOM, Ogre::GVA_CENTER, Ogre::GVA_TOP, Ogre::GuiElement::mDerivedLeft, Ogre::GuiElement::mDerivedOutOfDate, Ogre::GuiElement::mDerivedTop, Ogre::GuiElement::mHorzAlign, Ogre::GuiElement::mLeft, Ogre::GuiElement::mParent, Ogre::GuiElement::mTop, Ogre::GuiElement::mVertAlign, and Ogre::Real. Referenced by Ogre::GuiElement::_getDerivedLeft(), Ogre::GuiElement::_getDerivedTop(), and Ogre::GuiElement::_update(). |
|
Overridden from GuiElement.
Reimplemented from Ogre::GuiElement. Reimplemented in Ogre::BorderPanelGuiElement, and Ogre::PanelGuiElement. Definition at line 190 of file OgreGuiContainer.cpp. References ChildIterator, and getChildIterator(). |
|
Definition at line 61 of file OgreActionTarget.cpp. References Ogre::ActionTarget::mActionListener. Referenced by Ogre::ScrollBarGuiElement::setDownButtonName(), and Ogre::ScrollBarGuiElement::setUpButtonName(). |
|
|
Adds another GuiElement to this container.
Definition at line 46 of file OgreGuiContainer.cpp. References addChildImpl(), and Ogre::GuiElement::isContainer(). Referenced by Ogre::ListGuiElement::addListItem(), Ogre::PopupMenuGuiElement::addMenuItem(), copyFromTemplate(), Ogre::Profiler::initialize(), Ogre::OverlayManager::parseNewElement(), Ogre::TextBoxGuiElement::setBackPanel(), Ogre::ButtonGuiElement::setButtonCaption(), Ogre::BorderButtonGuiElement::setButtonCaption(), Ogre::ScrollBarGuiElement::setDownButtonName(), Ogre::ListGuiElement::setScrollBarName(), Ogre::ScrollBarGuiElement::setScrollBitName(), Ogre::TextBoxGuiElement::setTextArea(), and Ogre::ScrollBarGuiElement::setUpButtonName(). |
|
Add a nested container to this container.
Definition at line 76 of file OgreGuiContainer.cpp. References Ogre::GuiElement::_notifyParent(), Ogre::GuiElement::_notifyZOrder(), addChildImpl(), ChildIterator, Ogre::GuiElement::getName(), Ogre::GuiElement::getZOrder(), mChildContainers, Ogre::GuiElement::mOverlay, and Ogre::GuiElement::mZOrder. |
|
Adds another GuiElement to this container.
Definition at line 59 of file OgreGuiContainer.cpp. References Ogre::GuiElement::_notifyParent(), Ogre::GuiElement::_notifyZOrder(), Except, Ogre::GuiElement::getName(), mChildren, Ogre::GuiElement::mOverlay, and Ogre::GuiElement::mZOrder. Referenced by addChild(), and addChildImpl(). |
|
Definition at line 86 of file OgreMouseTarget.cpp. References Ogre::MouseTarget::mMouseListener. Referenced by Ogre::ListGuiElement::addListItem(), Ogre::ScrollBarGuiElement::setScrollBitName(), and Ogre::GuiPressable::setSource(). |
|
Definition at line 65 of file OgreMouseMotionTarget.cpp. References Ogre::MouseMotionTarget::mMouseMotionListener. Referenced by Ogre::InputReader::addCursorMoveListener(), Ogre::ListGuiElement::addListItem(), Ogre::PopupMenuGuiElement::PopupMenuGuiElement(), and Ogre::ScrollBarGuiElement::setScrollBitName(). |
|
Returns true if xy is within the constraints of the component.
Definition at line 532 of file OgreGuiElement.cpp. References Ogre::GuiElement::mDerivedLeft, Ogre::GuiElement::mDerivedTop, Ogre::GuiElement::mHeight, and Ogre::Real. |
|
Reimplemented from Ogre::GuiElement. Definition at line 244 of file OgreGuiContainer.cpp. References addChild(), Ogre::StringInterface::copyParametersTo(), Ogre::GuiElement::getName(), Ogre::GuiElement::getTypeName(), Ogre::GuiElement::isCloneable(), isContainer(), Ogre::GuiElement::isContainer(), and Ogre::GuiElement::mName. |
|
Method for copying this object's parameters to another object.
Definition at line 293 of file OgreStringInterface.h. References Ogre::ParamDictionary::mParamDefs, and Ogre::StringInterface::setParameter(). Referenced by Ogre::GuiElement::copyFromTemplate(), copyFromTemplate(), and Ogre::ParticleSystem::operator=(). |
|
|
This returns a GuiElement at position x,y.
Reimplemented from Ogre::GuiElement. Reimplemented in Ogre::CursorGuiElement. Definition at line 209 of file OgreGuiContainer.cpp. References Ogre::GuiElement::findElementAt(), Ogre::GuiElement::getZOrder(), Ogre::GuiElement::isEnabled(), Ogre::GuiElement::isVisible(), and Ogre::Real. Referenced by Ogre::ListGuiElement::mouseDragged(). |
|
Gets the caption for this element.
Reimplemented in Ogre::TextAreaGuiElement, Ogre::TextBoxGuiElement, and Ogre::TTYGuiElement. Definition at line 471 of file OgreGuiElement.cpp. References Ogre::GuiElement::mCaption. Referenced by Ogre::ButtonGuiElement::getButtonCaption(), Ogre::BorderButtonGuiElement::getButtonCaption(), Ogre::ListGuiElement::getSelectedIndex(), Ogre::ListGuiElement::getSelectedItem(), and Ogre::PopupMenuGuiElement::mouseReleased(). |
|
Gets the named child of this container.
Definition at line 112 of file OgreGuiContainer.cpp. References Except, and mChildren. Referenced by Ogre::ListGuiElement::removeListItem(), Ogre::PopupMenuGuiElement::removeMenuItem(), and Ogre::ListGuiElement::setSelectedItem(). |
|
Gets an iterator for just the container children of this object.
Definition at line 129 of file OgreGuiContainer.cpp. References ChildContainerIterator, and mChildContainers. |
|
Gets an object for iterating over all the children of this object.
Definition at line 124 of file OgreGuiContainer.cpp. References ChildIterator, and mChildren. Referenced by _notifyParent(), _notifyZOrder(), _positionsOutOfDate(), _update(), Ogre::PanelGuiElement::_updateRenderQueue(), _updateRenderQueue(), Ogre::PopupMenuGuiElement::layoutItems(), Ogre::ListGuiElement::layoutItems(), Ogre::ListGuiElement::mouseDragged(), Ogre::ListGuiElement::mousePressed(), Ogre::ListGuiElement::setSelectedIndex(), Ogre::ButtonGuiElement::updateMaterials(), and Ogre::BorderButtonGuiElement::updateMaterials(). |
|
Gets the colour for this element.
Reimplemented in Ogre::TextAreaGuiElement, and Ogre::TTYGuiElement. Definition at line 481 of file OgreGuiElement.cpp. References Ogre::GuiElement::mColour. |
|
Gets the height of this element in relation to the screen (where 1.0 = screen height).
Definition at line 173 of file OgreGuiElement.cpp. References Ogre::GMM_PIXELS, Ogre::GuiElement::mHeight, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelHeight, and Ogre::Real. Referenced by Ogre::GuiElement::_updateFromParent(), Ogre::ListGuiElement::addListItem(), Ogre::PopupMenuGuiElement::addMenuItem(), Ogre::ButtonGuiElement::changeChild(), Ogre::BorderButtonGuiElement::changeChild(), Ogre::ScrollBarGuiElement::layoutItems(), Ogre::PopupMenuGuiElement::layoutItems(), Ogre::ListGuiElement::layoutItems(), Ogre::ListGuiElement::mouseDragged(), Ogre::ScrollBarGuiElement::mousePressed(), Ogre::ScrollBarGuiElement::moveScrollBitTo(), Ogre::TextBoxGuiElement::setBackPanel(), Ogre::ListGuiElement::setScrollBarName(), and Ogre::ScrollBarGuiElement::updateScrollBit(). |
|
Gets the horizontal alignment for this element.
Definition at line 513 of file OgreGuiElement.cpp. References Ogre::GuiHorizontalAlignment, and Ogre::GuiElement::mHorzAlign. |
|
Gets the left of this element in relation to the screen (where 0 = far left, 1.0 = far right).
Implements Ogre::PositionTarget. Definition at line 199 of file OgreGuiElement.cpp. References Ogre::GMM_PIXELS, Ogre::GuiElement::mLeft, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelLeft, and Ogre::Real. Referenced by Ogre::ButtonGuiElement::changeChild(), and Ogre::BorderButtonGuiElement::changeChild(). |
|
@copydoc Renderable::getLights
Implements Ogre::Renderable. Definition at line 419 of file OgreGuiElement.h. References Ogre::LightList. |
|
See Renderable.
Implements Ogre::Renderable. Definition at line 258 of file OgreGuiElement.cpp. References Ogre::GuiElement::mpMaterial. |
|
Gets the name of the material this element uses.
Definition at line 238 of file OgreGuiElement.cpp. References Ogre::GuiElement::mMaterialName. |
|
Retrieves the current settings of how the element metrics are interpreted.
Definition at line 502 of file OgreGuiElement.cpp. References Ogre::GuiMetricsMode, and Ogre::GuiElement::mMetricsMode. |
|
Gets the name of this overlay.
Definition at line 82 of file OgreGuiElement.cpp. References Ogre::GuiElement::mName. Referenced by Ogre::ScrollBarGuiElement::actionPerformed(), addChildImpl(), copyFromTemplate(), Ogre::GuiManager::destroyGuiElement(), Ogre::TTYGuiElement::CmdScrollBar::doGet(), Ogre::ListGuiElement::getScrollBarName(), Ogre::ListGuiElement::layoutItems(), Ogre::PopupMenuGuiElement::mouseReleased(), Ogre::OverlayManager::parseChildren(), Ogre::OverlayManager::parseElementAttrib(), Ogre::TextBoxGuiElement::setBackPanel(), Ogre::ButtonGuiElement::setButtonCaption(), Ogre::BorderButtonGuiElement::setButtonCaption(), Ogre::ListGuiElement::setScrollBarName(), Ogre::ListGuiElement::setSelectedIndex(), and Ogre::TextBoxGuiElement::setTextArea(). |
|
Returns whether or not this Renderable wishes the hardware to normalise normals.
Reimplemented in Ogre::SubEntity. Definition at line 132 of file OgreRenderable.h. Referenced by Ogre::SceneManager::renderSingleObject(). |
|
Returns the number of world transform matrices this renderable requires.
Reimplemented in Ogre::SubEntity, and Ogre::BorderRenderable. Definition at line 98 of file OgreRenderable.h. Referenced by Ogre::SceneManager::renderSingleObject(). |
|
Definition at line 206 of file OgreStringInterface.h. |
|
Retrieves the parameter dictionary for this class.
Definition at line 193 of file OgreStringInterface.h. Referenced by Ogre::TTYGuiElement::addBaseParameters(), Ogre::TextBoxGuiElement::addBaseParameters(), Ogre::TextAreaGuiElement::addBaseParameters(), Ogre::ScrollBarGuiElement::addBaseParameters(), Ogre::PopupMenuGuiElement::addBaseParameters(), Ogre::ParticleEmitter::addBaseParameters(), Ogre::PanelGuiElement::addBaseParameters(), Ogre::ListGuiElement::addBaseParameters(), Ogre::GuiElement::addBaseParameters(), Ogre::CursorGuiElement::addBaseParameters(), Ogre::ButtonGuiElement::addBaseParameters(), Ogre::BorderPanelGuiElement::addBaseParameters(), Ogre::BorderButtonGuiElement::addBaseParameters(), Ogre::CgProgram::CgProgram(), Ogre::ColourFaderAffector::ColourFaderAffector(), Ogre::ColourFaderAffector2::ColourFaderAffector2(), Ogre::ColourImageAffector::ColourImageAffector(), Ogre::ColourInterpolatorAffector::ColourInterpolatorAffector(), Ogre::D3D9HLSLProgram::D3D9HLSLProgram(), Ogre::HollowEllipsoidEmitter::HollowEllipsoidEmitter(), Ogre::AreaEmitter::initDefaults(), Ogre::ParticleSystem::initParameters(), Ogre::LinearForceAffector::LinearForceAffector(), Ogre::RingEmitter::RingEmitter(), Ogre::RotationAffector::RotationAffector(), Ogre::ScaleAffector::ScaleAffector(), and Ogre::StringInterface::setParameter(). |
|
Generic parameter retrieval method.
Definition at line 262 of file OgreStringInterface.h. References Ogre::ParamCommand::doGet(), and Ogre::ParamDictionary::getParamCommand(). |
|
Retrieves a list of parameters valid for this object.
Definition at line 224 of file OgreStringInterface.h. References Ogre::ParamDictionary::getParameters(), and Ogre::ParameterList. |
|
Returns the parent container.
Definition at line 585 of file OgreGuiElement.cpp. References Ogre::GuiElement::mParent. Referenced by Ogre::ListGuiElement::mouseDragged(), Ogre::PopupMenuGuiElement::setSelectedItem(), and Ogre::ListGuiElement::setSelectedItem(). |
|
Returns the parent container.
Implements Ogre::PositionTarget. Definition at line 580 of file OgreGuiElement.cpp. |
|
Returns the preferred rasterisation mode of this renderable.
Reimplemented in Ogre::SubEntity. Definition at line 129 of file OgreRenderable.h. References Ogre::SceneDetailLevel, and Ogre::SDL_SOLID. Referenced by Ogre::SceneManager::renderSingleObject(). |
|
Gets the render operation required to send this object to the frame buffer.
Implemented in Ogre::BillboardSet, Ogre::Frustum, Ogre::Node, Ogre::SimpleRenderable, Ogre::SubEntity, Ogre::BorderRenderable, Ogre::PanelGuiElement, Ogre::TextAreaGuiElement, Ogre::TTYGuiElement, Ogre::OctreeCamera, Ogre::OctreeNode, and Ogre::TerrainRenderable. Referenced by Ogre::SceneManager::renderSingleObject(). |
|
Overridden from Renderable.
Implements Ogre::Renderable. Definition at line 413 of file OgreGuiElement.h. References Ogre::Real. Referenced by Ogre::BorderRenderable::getSquaredViewDepth(). |
|
Retrieves a pointer to the Material Technique this renderable object uses.
Reimplemented in Ogre::SubEntity. Definition at line 63 of file OgreRenderable.h. References Ogre::Material::getBestTechnique(). Referenced by Ogre::RenderPriorityGroup::addRenderable(). |
|
Gets the top of this element in relation to the screen (where 0 = top, 1.0 = bottom).
Implements Ogre::PositionTarget. Definition at line 226 of file OgreGuiElement.cpp. References Ogre::GMM_PIXELS, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelTop, Ogre::GuiElement::mTop, and Ogre::Real. Referenced by Ogre::ButtonGuiElement::changeChild(), Ogre::BorderButtonGuiElement::changeChild(), Ogre::ScrollBarGuiElement::mouseDragged(), Ogre::ScrollBarGuiElement::mousePressed(), and Ogre::ScrollBarGuiElement::moveScrollBitTo(). |
|
Gets the type name of the element. All concrete subclasses must implement this. Implemented in Ogre::BorderButtonGuiElement, Ogre::BorderPanelGuiElement, Ogre::ButtonGuiElement, Ogre::CursorGuiElement, Ogre::ListGuiElement, Ogre::PanelGuiElement, Ogre::ScrollBarGuiElement, Ogre::TextAreaGuiElement, Ogre::TextBoxGuiElement, and Ogre::TTYGuiElement. Referenced by copyFromTemplate(), Ogre::GuiManager::createGuiElementFromTemplate(), and Ogre::OverlayManager::parseChildren(). |
|
Gets the vertical alignment for this element.
Definition at line 524 of file OgreGuiElement.cpp. References Ogre::GuiVerticalAlignment, and Ogre::GuiElement::mVertAlign. |
|
Gets the width of this element in relation to the screen (where 1.0 = screen width).
Definition at line 148 of file OgreGuiElement.cpp. References Ogre::GMM_PIXELS, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelWidth, Ogre::GuiElement::mWidth, and Ogre::Real. Referenced by Ogre::GuiElement::_updateFromParent(), Ogre::ListGuiElement::addListItem(), Ogre::PopupMenuGuiElement::addMenuItem(), Ogre::ButtonGuiElement::changeChild(), Ogre::BorderButtonGuiElement::changeChild(), Ogre::ScrollBarGuiElement::layoutItems(), Ogre::ScrollBarGuiElement::mousePressed(), Ogre::ScrollBarGuiElement::moveScrollBitTo(), Ogre::TextBoxGuiElement::processEvent(), Ogre::TextBoxGuiElement::setBackPanel(), Ogre::ScrollBarGuiElement::setDownButtonName(), Ogre::ListGuiElement::setScrollBarName(), Ogre::ScrollBarGuiElement::setScrollBitName(), Ogre::ScrollBarGuiElement::setUpButtonName(), Ogre::TextAreaGuiElement::updateGeometry(), and Ogre::ScrollBarGuiElement::updateScrollBit(). |
|
@copydoc Renderable::getWorldOrientation
Implements Ogre::Renderable. Definition at line 268 of file OgreGuiElement.cpp. References Ogre::Overlay::getWorldOrientation(), and Ogre::GuiElement::mOverlay. |
|
@copydoc Renderable::getWorldPosition
Implements Ogre::Renderable. Definition at line 273 of file OgreGuiElement.cpp. References Ogre::Overlay::getWorldPosition(), and Ogre::GuiElement::mOverlay. |
|
See Renderable.
Implements Ogre::Renderable. Definition at line 263 of file OgreGuiElement.cpp. References Ogre::Overlay::_getWorldTransforms(), and Ogre::GuiElement::mOverlay. Referenced by Ogre::BorderRenderable::getWorldTransforms(). |
|
Returns the zOrder of the element.
Definition at line 409 of file OgreGuiElement.h. References Ogre::ushort. Referenced by addChildImpl(), Ogre::Overlay::findElementAt(), and findElementAt(). |
|
Hides this element if it was visible.
Reimplemented in Ogre::CursorGuiElement. Definition at line 92 of file OgreGuiElement.cpp. References Ogre::GuiElement::mVisible. Referenced by Ogre::Profiler::createPanel(), Ogre::Profiler::createTextArea(), Ogre::ListGuiElement::layoutItems(), and Ogre::OverlayManager::setCursorGui(). |
|
Initialise gui element.
Implemented in Ogre::BorderPanelGuiElement, Ogre::PanelGuiElement, Ogre::TextAreaGuiElement, and Ogre::TTYGuiElement. Referenced by Ogre::GuiManager::createGuiElementImpl(), and Ogre::OverlayManager::getCursorGui(). |
|
Should this container pass events to their children.
Definition at line 107 of file OgreGuiContainer.h. |
|
Definition at line 390 of file OgreGuiElement.h. Referenced by copyFromTemplate(). |
|
Overridden from GuiElement.
Reimplemented from Ogre::GuiElement. Definition at line 103 of file OgreGuiContainer.h. Referenced by copyFromTemplate(). |
|
Definition at line 597 of file OgreGuiElement.cpp. References Ogre::GuiElement::mEnabled. Referenced by findElementAt(), and Ogre::ButtonGuiElement::updateMaterials(). |
|
Implements Ogre::PositionTarget. Reimplemented in Ogre::TextBoxGuiElement. Definition at line 387 of file OgreGuiElement.h. |
|
Definition at line 105 of file OgreMouseTarget.cpp. References Ogre::MouseTarget::mMouseWithin. Referenced by Ogre::ButtonGuiElement::updateMaterials(), and Ogre::BorderButtonGuiElement::updateMaterials(). |
|
Returns whether or not the element is visible.
Definition at line 97 of file OgreGuiElement.cpp. References Ogre::GuiElement::mVisible. Referenced by findElementAt(). |
|
Definition at line 45 of file OgreActionTarget.cpp. References Ogre::ActionListener::actionPerformed(), Ogre::InputEvent::getID(), and Ogre::ActionTarget::mActionListener. Referenced by Ogre::GuiElement::processEvent(), and Ogre::GuiControl::processEvent(). |
|
Processes events occurring on this component. By default this method calls the appropriate process event method Implements Ogre::EventTarget. Reimplemented in Ogre::BorderButtonGuiElement, Ogre::ButtonGuiElement, Ogre::ScrollBarGuiElement, and Ogre::TextBoxGuiElement. Definition at line 549 of file OgreGuiElement.cpp. References Ogre::InputEvent::getID(), Ogre::InputEvent::isConsumed(), Ogre::GuiElement::mEnabled, Ogre::ActionTarget::processActionEvent(), Ogre::MouseTarget::processMouseEvent(), and Ogre::MouseMotionTarget::processMouseMotionEvent(). Referenced by Ogre::GuiPressable::fireActionPerformed(). |
|
Definition at line 46 of file OgreMouseTarget.cpp. References Ogre::InputEvent::getID(), Ogre::MouseTarget::mMouseListener, Ogre::MouseTarget::mMouseWithin, Ogre::MouseListener::mouseClicked(), Ogre::MouseListener::mouseDragDropped(), Ogre::MouseListener::mouseDragEntered(), Ogre::MouseListener::mouseDragExited(), Ogre::MouseListener::mouseEntered(), Ogre::MouseListener::mouseExited(), Ogre::MouseListener::mousePressed(), and Ogre::MouseListener::mouseReleased(). Referenced by Ogre::GuiElement::processEvent(), Ogre::EventProcessor::processEvent(), and Ogre::Cursor::processEvent(). |
|
Definition at line 44 of file OgreMouseMotionTarget.cpp. References Ogre::InputEvent::getID(), Ogre::MouseMotionTarget::mMouseMotionListener, Ogre::MouseMotionListener::mouseDragged(), Ogre::MouseMotionListener::mouseDragMoved(), and Ogre::MouseMotionListener::mouseMoved(). Referenced by Ogre::GuiElement::processEvent(), Ogre::EventProcessor::processEvent(), and Ogre::Cursor::processEvent(). |
|
Definition at line 71 of file OgreActionTarget.cpp. References Ogre::ActionTarget::mActionListener. |
|
Removes a named element from this container.
Definition at line 99 of file OgreGuiContainer.cpp. References Except, and mChildren. Referenced by Ogre::ListGuiElement::removeListItem(), Ogre::PopupMenuGuiElement::removeMenuItem(), Ogre::TextBoxGuiElement::setBackPanel(), Ogre::ButtonGuiElement::setButtonCaption(), Ogre::BorderButtonGuiElement::setButtonCaption(), Ogre::ListGuiElement::setScrollBarName(), and Ogre::TextBoxGuiElement::setTextArea(). |
|
Definition at line 95 of file OgreMouseTarget.cpp. References Ogre::MouseTarget::mMouseListener. |
|
Definition at line 74 of file OgreMouseMotionTarget.cpp. References Ogre::MouseMotionTarget::mMouseMotionListener. Referenced by Ogre::InputReader::removeCursorMoveListener(). |
|
Sets the caption on elements that support it.
Reimplemented in Ogre::TextAreaGuiElement, Ogre::TextBoxGuiElement, and Ogre::TTYGuiElement. Definition at line 465 of file OgreGuiElement.cpp. References Ogre::GuiElement::_positionsOutOfDate(), and Ogre::GuiElement::mCaption. Referenced by Ogre::ListGuiElement::addListItem(), Ogre::PopupMenuGuiElement::addMenuItem(), Ogre::Profiler::createTextArea(), Ogre::Profiler::displayResults(), Ogre::ButtonGuiElement::setButtonCaption(), and Ogre::BorderButtonGuiElement::setButtonCaption(). |
|
Should this container pass events to their children.
Definition at line 111 of file OgreGuiContainer.h. Referenced by Ogre::ListGuiElement::addListItem(). |
|
Definition at line 393 of file OgreGuiElement.h. Referenced by Ogre::TextBoxGuiElement::setBackPanel(), Ogre::ButtonGuiElement::setButtonCaption(), Ogre::BorderButtonGuiElement::setButtonCaption(), Ogre::ScrollBarGuiElement::setDownButtonName(), Ogre::ScrollBarGuiElement::setScrollBitName(), Ogre::TextBoxGuiElement::setTextArea(), and Ogre::ScrollBarGuiElement::setUpButtonName(). |
|
Sets the colour on elements that support it.
Reimplemented in Ogre::TextAreaGuiElement, and Ogre::TTYGuiElement. Definition at line 476 of file OgreGuiElement.cpp. References Ogre::GuiElement::mColour. Referenced by Ogre::ButtonGuiElement::updateMaterials(). |
|
Sets the dimensions of this element in relation to the screen (1.0 = screen width/height).
Definition at line 102 of file OgreGuiElement.cpp. References Ogre::GuiElement::_positionsOutOfDate(), Ogre::GMM_PIXELS, Ogre::GuiElement::mDerivedOutOfDate, Ogre::GuiElement::mHeight, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelHeight, Ogre::GuiElement::mPixelWidth, Ogre::GuiElement::mWidth, and Ogre::Real. Referenced by Ogre::TextBoxGuiElement::setBackPanel(). |
|
Definition at line 603 of file OgreGuiElement.cpp. References Ogre::GuiElement::mEnabled. |
|
Sets the height of this element in relation to the screen (where 1.0 = screen height).
Definition at line 160 of file OgreGuiElement.cpp. References Ogre::GuiElement::_positionsOutOfDate(), Ogre::GMM_PIXELS, Ogre::GuiElement::mHeight, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelHeight, and Ogre::Real. Referenced by Ogre::ListGuiElement::addListItem(), Ogre::PopupMenuGuiElement::addMenuItem(), Ogre::ButtonGuiElement::changeChild(), Ogre::BorderButtonGuiElement::changeChild(), Ogre::Profiler::createContainer(), Ogre::Profiler::createPanel(), Ogre::Profiler::createTextArea(), Ogre::CursorGuiElement::CursorGuiElement(), Ogre::Profiler::displayResults(), Ogre::ScrollBarGuiElement::layoutItems(), Ogre::PopupMenuGuiElement::layoutItems(), and Ogre::ListGuiElement::setScrollBarName(). |
|
Sets the horizontal origin for this element.
Definition at line 507 of file OgreGuiElement.cpp. References Ogre::GuiElement::_positionsOutOfDate(), Ogre::GuiHorizontalAlignment, and Ogre::GuiElement::mHorzAlign. |
|
Sets the left of this element in relation to the screen (where 0 = far left, 1.0 = far right).
Definition at line 185 of file OgreGuiElement.cpp. References Ogre::GuiElement::_positionsOutOfDate(), Ogre::GMM_PIXELS, Ogre::GuiElement::mDerivedOutOfDate, Ogre::GuiElement::mLeft, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelLeft, and Ogre::Real. Referenced by Ogre::ListGuiElement::addListItem(), Ogre::PopupMenuGuiElement::addMenuItem(), Ogre::ButtonGuiElement::changeChild(), Ogre::BorderButtonGuiElement::changeChild(), Ogre::Profiler::createContainer(), Ogre::Profiler::createPanel(), Ogre::Profiler::createTextArea(), Ogre::Profiler::displayResults(), Ogre::ScrollBarGuiElement::layoutItems(), Ogre::CursorGuiElement::mouseMoved(), Ogre::TextBoxGuiElement::setBackPanel(), Ogre::CursorGuiElement::setOffsetX(), Ogre::ListGuiElement::setScrollBarName(), Ogre::TextBoxGuiElement::setTextArea(), and Ogre::CursorGuiElement::show(). |
|
Sets the name of the material this element will use.
Reimplemented in Ogre::PanelGuiElement, Ogre::TextAreaGuiElement, and Ogre::TTYGuiElement. Definition at line 244 of file OgreGuiElement.cpp. References Except, Ogre::Material::load(), Ogre::GuiElement::mMaterialName, Ogre::GuiElement::mpMaterial, Ogre::Material::setDepthCheckEnabled(), and Ogre::Material::setLightingEnabled(). Referenced by Ogre::Profiler::createContainer(), Ogre::Profiler::createPanel(), Ogre::PopupMenuGuiElement::setSelectedItem(), and Ogre::ListGuiElement::setSelectedItem(). |
|
Tells this element how to interpret the position and dimension values it is given.
Reimplemented in Ogre::BorderPanelGuiElement, Ogre::TextAreaGuiElement, and Ogre::TTYGuiElement. Definition at line 486 of file OgreGuiElement.cpp. References Ogre::GuiElement::_positionsOutOfDate(), Ogre::GMM_PIXELS, Ogre::GuiMetricsMode, Ogre::GuiElement::mDerivedOutOfDate, Ogre::GuiElement::mHeight, Ogre::GuiElement::mLeft, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelHeight, Ogre::GuiElement::mPixelLeft, Ogre::GuiElement::mPixelTop, Ogre::GuiElement::mPixelWidth, Ogre::GuiElement::mTop, and Ogre::GuiElement::mWidth. Referenced by Ogre::Profiler::createContainer(), Ogre::Profiler::createPanel(), Ogre::Profiler::createTextArea(), and Ogre::Profiler::displayResults(). |
|
Generic parameter setting method.
Definition at line 33 of file OgreStringInterface.cpp. References Ogre::ParamCommand::doSet(), Ogre::ParamDictionary::getParamCommand(), and Ogre::StringInterface::getParamDictionary(). Referenced by Ogre::StringInterface::copyParametersTo(), Ogre::Profiler::createContainer(), Ogre::Profiler::createTextArea(), Ogre::MaterialSerializer::finishProgramDefinition(), Ogre::ParticleSystemManager::parseAffectorAttrib(), Ogre::ParticleSystemManager::parseAttrib(), Ogre::OverlayManager::parseElementAttrib(), and Ogre::ParticleSystemManager::parseEmitterAttrib(). |
|
Sets the position of the top-left corner of the element, relative to the screen size (1.0 = screen width / height).
Definition at line 118 of file OgreGuiElement.cpp. References Ogre::GuiElement::_positionsOutOfDate(), Ogre::GMM_PIXELS, Ogre::GuiElement::mDerivedOutOfDate, Ogre::GuiElement::mLeft, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelLeft, Ogre::GuiElement::mPixelTop, Ogre::GuiElement::mTop, and Ogre::Real. |
|
Sets the top of this element in relation to the screen (where 0 = top, 1.0 = bottom).
Definition at line 211 of file OgreGuiElement.cpp. References Ogre::GuiElement::_positionsOutOfDate(), Ogre::GMM_PIXELS, Ogre::GuiElement::mDerivedOutOfDate, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelTop, Ogre::GuiElement::mTop, and Ogre::Real. Referenced by Ogre::ListGuiElement::addListItem(), Ogre::PopupMenuGuiElement::addMenuItem(), Ogre::ButtonGuiElement::changeChild(), Ogre::BorderButtonGuiElement::changeChild(), Ogre::Profiler::createContainer(), Ogre::Profiler::createPanel(), Ogre::Profiler::createTextArea(), Ogre::Profiler::displayResults(), Ogre::ScrollBarGuiElement::layoutItems(), Ogre::PopupMenuGuiElement::layoutItems(), Ogre::ListGuiElement::layoutItems(), Ogre::CursorGuiElement::mouseMoved(), Ogre::ScrollBarGuiElement::moveScrollBitTo(), Ogre::TextBoxGuiElement::setBackPanel(), Ogre::CursorGuiElement::setOffsetY(), Ogre::ListGuiElement::setScrollBarName(), Ogre::TextBoxGuiElement::setTextArea(), Ogre::CursorGuiElement::show(), and Ogre::ScrollBarGuiElement::updateScrollBit(). |
|
Sets the vertical origin for this element.
Definition at line 518 of file OgreGuiElement.cpp. References Ogre::GuiElement::_positionsOutOfDate(), Ogre::GuiVerticalAlignment, and Ogre::GuiElement::mVertAlign. |
|
Sets the width of this element in relation to the screen (where 1.0 = screen width).
Definition at line 135 of file OgreGuiElement.cpp. References Ogre::GuiElement::_positionsOutOfDate(), Ogre::GMM_PIXELS, Ogre::GuiElement::mMetricsMode, Ogre::GuiElement::mPixelWidth, Ogre::GuiElement::mWidth, and Ogre::Real. Referenced by Ogre::ListGuiElement::addListItem(), Ogre::PopupMenuGuiElement::addMenuItem(), Ogre::ButtonGuiElement::changeChild(), Ogre::BorderButtonGuiElement::changeChild(), Ogre::Profiler::createContainer(), Ogre::Profiler::createPanel(), Ogre::Profiler::createTextArea(), Ogre::CursorGuiElement::CursorGuiElement(), Ogre::Profiler::displayResults(), Ogre::ScrollBarGuiElement::layoutItems(), Ogre::TextBoxGuiElement::setBackPanel(), and Ogre::TextAreaGuiElement::updateGeometry(). |
|
Shows this element if it was hidden.
Reimplemented in Ogre::CursorGuiElement. Definition at line 87 of file OgreGuiElement.cpp. References Ogre::GuiElement::mVisible. Referenced by Ogre::OverlayManager::createCursorOverlay(), Ogre::Profiler::createPanel(), Ogre::Profiler::createTextArea(), Ogre::Profiler::displayResults(), Ogre::ListGuiElement::layoutItems(), and Ogre::OverlayManager::setCursorGui(). |
|
Internal method which is triggered when the positions of the element get updated, meaning the element should be rebuilding it's mesh positions. Abstract since subclasses must implement this. Implemented in Ogre::BorderPanelGuiElement, Ogre::PanelGuiElement, Ogre::TextAreaGuiElement, and Ogre::TTYGuiElement. Referenced by Ogre::GuiElement::_update(). |
|
See Renderable.
Reimplemented from Ogre::Renderable. Definition at line 278 of file OgreGuiElement.cpp. |
|
See Renderable.
Reimplemented from Ogre::Renderable. Definition at line 283 of file OgreGuiElement.cpp. |
|
Definition at line 58 of file OgreActionTarget.h. Referenced by Ogre::ActionTarget::ActionTarget(), Ogre::ActionTarget::addActionListener(), Ogre::ActionTarget::processActionEvent(), and Ogre::ActionTarget::removeActionListener(). |
|
Definition at line 120 of file OgreGuiElement.h. Referenced by Ogre::TTYGuiElement::getCaption(), Ogre::TextBoxGuiElement::getCaption(), Ogre::TextAreaGuiElement::getCaption(), Ogre::GuiElement::getCaption(), Ogre::TextBoxGuiElement::getTextAreaName(), Ogre::TextBoxGuiElement::processEvent(), Ogre::TextBoxGuiElement::setCaption(), Ogre::TextAreaGuiElement::setCaption(), Ogre::GuiElement::setCaption(), Ogre::TextBoxGuiElement::setCaptionToTextArea(), Ogre::TextBoxGuiElement::setTextArea(), and Ogre::TextAreaGuiElement::updateGeometry(). |
|
Definition at line 58 of file OgreGuiContainer.h. Referenced by addChildImpl(), and getChildContainerIterator(). |
|
Definition at line 56 of file OgreGuiContainer.h. Referenced by addChildImpl(), getChild(), getChildIterator(), Ogre::ListGuiElement::layoutItems(), and removeChild(). |
|
Definition at line 60 of file OgreGuiContainer.h. Referenced by Ogre::BorderButtonGuiElement::BorderButtonGuiElement(), Ogre::ButtonGuiElement::ButtonGuiElement(), Ogre::PopupMenuGuiElement::PopupMenuGuiElement(), and Ogre::TextBoxGuiElement::TextBoxGuiElement(). |
|
Definition at line 113 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::GuiElement(). |
|
Definition at line 121 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::getColour(), and Ogre::GuiElement::setColour(). |
|
Definition at line 139 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_getDerivedLeft(), Ogre::GuiElement::_updateFromParent(), and Ogre::GuiElement::contains(). |
|
Definition at line 141 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_notifyParent(), Ogre::GuiElement::_updateFromParent(), Ogre::GuiElement::GuiElement(), Ogre::GuiElement::setDimensions(), Ogre::GuiElement::setLeft(), Ogre::GuiElement::setMetricsMode(), Ogre::GuiElement::setPosition(), and Ogre::GuiElement::setTop(). |
|
Definition at line 140 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_getDerivedTop(), Ogre::GuiElement::_updateFromParent(), Ogre::GuiElement::contains(), and Ogre::ScrollBarGuiElement::mousePressed(). |
|
Definition at line 152 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::GuiElement(), Ogre::GuiElement::isEnabled(), Ogre::GuiElement::processEvent(), and Ogre::GuiElement::setEnabled(). |
|
Falg indicating if the vertex positons need recalculating.
Definition at line 144 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_positionsOutOfDate(), Ogre::TTYGuiElement::_update(), Ogre::TextAreaGuiElement::_update(), Ogre::GuiElement::_update(), Ogre::BorderPanelGuiElement::_update(), Ogre::GuiElement::GuiElement(), Ogre::BorderPanelGuiElement::setBorderSize(), Ogre::TTYGuiElement::setCharHeight(), Ogre::TextAreaGuiElement::setCharHeight(), Ogre::TTYGuiElement::setSpaceWidth(), and Ogre::TextAreaGuiElement::setSpaceWidth(). |
|
Definition at line 117 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_update(), Ogre::TTYGuiElement::checkAndSetUpdateGeometry(), Ogre::GuiElement::contains(), Ogre::GuiElement::getHeight(), Ogre::GuiElement::GuiElement(), Ogre::ListGuiElement::layoutItems(), Ogre::GuiElement::setDimensions(), Ogre::GuiElement::setHeight(), Ogre::GuiElement::setMetricsMode(), Ogre::TTYGuiElement::TTYGuiElement(), Ogre::TTYGuiElement::updatePositionGeometry(), Ogre::PanelGuiElement::updatePositionGeometry(), and Ogre::BorderPanelGuiElement::updatePositionGeometry(). |
|
Definition at line 124 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_updateFromParent(), Ogre::GuiElement::getHorizontalAlignment(), Ogre::GuiElement::GuiElement(), and Ogre::GuiElement::setHorizontalAlignment(). |
|
Definition at line 114 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_update(), Ogre::GuiElement::_updateFromParent(), Ogre::GuiElement::getLeft(), Ogre::GuiElement::GuiElement(), Ogre::GuiElement::setLeft(), Ogre::GuiElement::setMetricsMode(), Ogre::CursorGuiElement::setOffsetX(), and Ogre::GuiElement::setPosition(). |
|
Definition at line 118 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::getMaterialName(), Ogre::GuiElement::setMaterialName(), Ogre::PopupMenuGuiElement::setSelectedItem(), and Ogre::ListGuiElement::setSelectedItem(). |
|
Definition at line 123 of file OgreGuiElement.h. Referenced by Ogre::TTYGuiElement::_update(), Ogre::TextAreaGuiElement::_update(), Ogre::GuiElement::_update(), Ogre::BorderPanelGuiElement::_update(), Ogre::BorderPanelGuiElement::getBottomBorderSize(), Ogre::TTYGuiElement::getCharHeight(), Ogre::TextAreaGuiElement::getCharHeight(), Ogre::GuiElement::getHeight(), Ogre::GuiElement::getLeft(), Ogre::BorderPanelGuiElement::getLeftBorderSize(), Ogre::GuiElement::getMetricsMode(), Ogre::BorderPanelGuiElement::getRightBorderSize(), Ogre::TTYGuiElement::getSpaceWidth(), Ogre::TextAreaGuiElement::getSpaceWidth(), Ogre::GuiElement::getTop(), Ogre::BorderPanelGuiElement::getTopBorderSize(), Ogre::GuiElement::getWidth(), Ogre::GuiElement::GuiElement(), Ogre::BorderPanelGuiElement::setBorderSize(), Ogre::TTYGuiElement::setCharHeight(), Ogre::TextAreaGuiElement::setCharHeight(), Ogre::GuiElement::setDimensions(), Ogre::GuiElement::setHeight(), Ogre::GuiElement::setLeft(), Ogre::GuiElement::setMetricsMode(), Ogre::GuiElement::setPosition(), Ogre::TTYGuiElement::setSpaceWidth(), Ogre::TextAreaGuiElement::setSpaceWidth(), Ogre::GuiElement::setTop(), Ogre::GuiElement::setWidth(), Ogre::TextAreaGuiElement::updateGeometry(), Ogre::ButtonGuiElement::updateMaterials(), and Ogre::BorderButtonGuiElement::updateMaterials(). |
|
Definition at line 60 of file OgreMouseTarget.h. Referenced by Ogre::MouseTarget::addMouseListener(), Ogre::GuiElement::GuiElement(), Ogre::MouseTarget::MouseTarget(), Ogre::MouseTarget::processMouseEvent(), and Ogre::MouseTarget::removeMouseListener(). |
|
Definition at line 59 of file OgreMouseMotionTarget.h. Referenced by Ogre::MouseMotionTarget::addMouseMotionListener(), Ogre::MouseMotionTarget::MouseMotionTarget(), Ogre::MouseMotionTarget::processMouseMotionEvent(), and Ogre::MouseMotionTarget::removeMouseMotionListener(). |
|
Definition at line 63 of file OgreMouseTarget.h. Referenced by Ogre::MouseTarget::isMouseWithin(), Ogre::MouseTarget::MouseTarget(), and Ogre::MouseTarget::processMouseEvent(). |
|
Definition at line 111 of file OgreGuiElement.h. Referenced by copyFromTemplate(), Ogre::PopupMenuGuiElement::getListItemName(), Ogre::ListGuiElement::getListItemName(), Ogre::GuiElement::getName(), Ogre::ListGuiElement::layoutItems(), Ogre::TextBoxGuiElement::setBackPanel(), Ogre::ButtonGuiElement::setButtonCaption(), Ogre::BorderButtonGuiElement::setButtonCaption(), Ogre::ScrollBarGuiElement::setDownButtonName(), Ogre::ListGuiElement::setScrollBarName(), Ogre::ScrollBarGuiElement::setScrollBitName(), Ogre::ListGuiElement::setSelectedIndex(), Ogre::TextBoxGuiElement::setTextArea(), and Ogre::ScrollBarGuiElement::setUpButtonName(). |
|
Definition at line 136 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_notifyParent(), addChildImpl(), Ogre::GuiElement::getWorldOrientation(), Ogre::GuiElement::getWorldPosition(), and Ogre::GuiElement::getWorldTransforms(). |
|
Class name for this instance to be used as a lookup (must be initialised by subclasses).
Definition at line 157 of file OgreStringInterface.h. |
|
Definition at line 134 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_notifyParent(), Ogre::GuiElement::_updateFromParent(), Ogre::GuiElement::getParent(), and Ogre::GuiElement::GuiElement(). |
|
Definition at line 131 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_update(), Ogre::GuiElement::getHeight(), Ogre::GuiElement::setDimensions(), Ogre::GuiElement::setHeight(), and Ogre::GuiElement::setMetricsMode(). |
|
Definition at line 129 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_update(), Ogre::GuiElement::getLeft(), Ogre::GuiElement::setLeft(), Ogre::GuiElement::setMetricsMode(), and Ogre::GuiElement::setPosition(). |
|
Definition at line 128 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_update(), Ogre::GuiElement::getTop(), Ogre::GuiElement::setMetricsMode(), Ogre::GuiElement::setPosition(), and Ogre::GuiElement::setTop(). |
|
Definition at line 130 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_update(), Ogre::GuiElement::getWidth(), Ogre::GuiElement::setDimensions(), Ogre::GuiElement::setMetricsMode(), and Ogre::GuiElement::setWidth(). |
|
Definition at line 119 of file OgreGuiElement.h. Referenced by Ogre::PanelGuiElement::_updateRenderQueue(), Ogre::GuiElement::getMaterial(), Ogre::GuiElement::GuiElement(), Ogre::TTYGuiElement::setFontName(), Ogre::TextAreaGuiElement::setFontName(), Ogre::GuiElement::setMaterialName(), and Ogre::PanelGuiElement::updateTextureGeometry(). |
|
Definition at line 49 of file OgreGuiElement.cpp. Referenced by Ogre::GuiElement::addBaseParameters(). |
|
Dictionary of parameters.
Definition at line 30 of file OgreStringInterface.cpp. |
|
Definition at line 47 of file OgreGuiElement.cpp. Referenced by Ogre::GuiElement::addBaseParameters(). |
|
Definition at line 51 of file OgreGuiElement.cpp. Referenced by Ogre::GuiElement::addBaseParameters(). |
|
Definition at line 44 of file OgreGuiElement.cpp. Referenced by Ogre::GuiElement::addBaseParameters(). |
|
Definition at line 48 of file OgreGuiElement.cpp. Referenced by Ogre::GuiElement::addBaseParameters(). |
|
Definition at line 50 of file OgreGuiElement.cpp. Referenced by Ogre::GuiElement::addBaseParameters(). |
|
Definition at line 45 of file OgreGuiElement.cpp. Referenced by Ogre::GuiElement::addBaseParameters(). |
|
Definition at line 52 of file OgreGuiElement.cpp. Referenced by Ogre::GuiElement::addBaseParameters(). |
|
Definition at line 53 of file OgreGuiElement.cpp. Referenced by Ogre::GuiElement::addBaseParameters(). |
|
Definition at line 46 of file OgreGuiElement.cpp. Referenced by Ogre::GuiElement::addBaseParameters(). |
|
Definition at line 115 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_update(), Ogre::GuiElement::_updateFromParent(), Ogre::GuiElement::getTop(), Ogre::GuiElement::GuiElement(), Ogre::GuiElement::setMetricsMode(), Ogre::CursorGuiElement::setOffsetY(), Ogre::GuiElement::setPosition(), and Ogre::GuiElement::setTop(). |
|
Definition at line 125 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_updateFromParent(), Ogre::GuiElement::getVerticalAlignment(), Ogre::GuiElement::GuiElement(), and Ogre::GuiElement::setVerticalAlignment(). |
|
Definition at line 112 of file OgreGuiElement.h. Referenced by Ogre::CursorGuiElement::CursorGuiElement(), Ogre::GuiElement::GuiElement(), Ogre::GuiElement::hide(), Ogre::GuiElement::isVisible(), Ogre::GuiElement::show(), and Ogre::CursorGuiElement::show(). |
|
Definition at line 116 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_update(), Ogre::TTYGuiElement::checkAndSetUpdateGeometry(), Ogre::GuiElement::getWidth(), Ogre::GuiElement::GuiElement(), Ogre::GuiElement::setDimensions(), Ogre::GuiElement::setMetricsMode(), Ogre::GuiElement::setWidth(), Ogre::PanelGuiElement::updatePositionGeometry(), Ogre::BorderPanelGuiElement::updatePositionGeometry(), Ogre::TTYGuiElement::updateTextGeometry(), and Ogre::TTYGuiElement::updateWindowGeometry(). |
|
Definition at line 148 of file OgreGuiElement.h. Referenced by Ogre::GuiElement::_notifyZOrder(), Ogre::GuiElement::_updateRenderQueue(), Ogre::BorderPanelGuiElement::_updateRenderQueue(), addChildImpl(), and Ogre::GuiElement::GuiElement(). |
Copyright © 2002-2003 by The OGRE Team
Last modified Wed Jan 21 00:17:32 2004