Crazy Eddies GUI System
0.7.9
|
An abstract base class providing common functionality and specifying the required interface for derived classes. More...
Inherits CEGUI::PropertySet, and CEGUI::EventSet.
Inherited by CEGUI::ButtonBase, CEGUI::ClippedContainer, CEGUI::Combobox, CEGUI::DragContainer, CEGUI::Editbox, CEGUI::FrameWindow, CEGUI::GroupBox, CEGUI::GUISheet, CEGUI::ItemEntry, CEGUI::ItemListBase, CEGUI::LayoutContainer, CEGUI::Listbox, CEGUI::ListHeader, CEGUI::ListHeaderSegment, CEGUI::MultiColumnList, CEGUI::MultiLineEditbox, CEGUI::ProgressBar, CEGUI::ScrollablePane, CEGUI::Scrollbar, CEGUI::ScrolledContainer, CEGUI::Slider, CEGUI::Spinner, CEGUI::TabControl, CEGUI::Titlebar, CEGUI::Tooltip, and CEGUI::Tree.
Public Member Functions | |
Window (const String &type, const String &name) | |
Constructor for Window base class. More... | |
virtual | ~Window (void) |
Destructor for Window base class. | |
const String & | getType (void) const |
return a String object holding the type name for this Window. More... | |
const String & | getName (void) const |
return a String object holding the name of this Window. More... | |
bool | isDestroyedByParent (void) const |
returns whether or not this Window is set to be destroyed when its parent window is destroyed. More... | |
bool | isAlwaysOnTop (void) const |
returns whether or not this Window is an always on top Window. Also known as a top-most window. More... | |
bool | isDisabled (bool localOnly=false) const |
return whether the Window is currently disabled More... | |
bool | isVisible (bool localOnly=false) const |
return true if the Window is currently visible. More... | |
bool | isActive (void) const |
return true if this is the active Window. An active window is a window that may receive user inputs. More... | |
bool | isClippedByParent (void) const |
return true if this Window is clipped so that its rendering will not pass outside of its parent Window area. More... | |
uint | getID (void) const |
return the ID code currently assigned to this Window by client code. More... | |
size_t | getChildCount (void) const |
return the number of child Window objects currently attached to this Window. More... | |
bool | isChild (const String &name) const |
returns whether a Window with the specified name is currently attached to this Window as a child. More... | |
bool | isChild (uint ID) const |
returns whether at least one window with the given ID code is attached to this Window as a child. More... | |
bool | isChildRecursive (uint ID) const |
returns whether at least one window with the given ID code is attached to this Window or any of it's children as a child. More... | |
bool | isChild (const Window *window) const |
return true if the given Window is a child of this window. More... | |
Window * | getChild (const String &name) const |
return a pointer to the child window with the specified name. More... | |
Window * | getChild (uint ID) const |
return a pointer to the first attached child window with the specified ID value. More... | |
Window * | getChildRecursive (const String &name) const |
return a pointer to the first attached child window with the specified name. Children are traversed recursively. More... | |
Window * | getChildRecursive (uint ID) const |
return a pointer to the first attached child window with the specified ID value. Children are traversed recursively. More... | |
Window * | getChildAtIdx (size_t idx) const |
return a pointer to the child window that is attached to 'this' at the given index. More... | |
Window * | getActiveChild (void) |
return a pointer to the Window that currently has input focus starting with this Window. More... | |
const Window * | getActiveChild (void) const |
bool | isAncestor (const String &name) const |
return true if the specified Window is some ancestor of this Window More... | |
bool | isAncestor (uint ID) const |
return true if any Window with the given ID is some ancestor of this Window. More... | |
bool | isAncestor (const Window *window) const |
return true if the specified Window is some ancestor of this Window. More... | |
Font * | getFont (bool useDefault=true) const |
return the active Font object for the Window. More... | |
const String & | getText (void) const |
return the current text for the Window More... | |
const String & | getTextVisual () const |
return text string with visual ordering of glyphs. | |
bool | inheritsAlpha (void) const |
return true if the Window inherits alpha from its parent(s). More... | |
float | getAlpha (void) const |
return the current alpha value set for this Window More... | |
float | getEffectiveAlpha (void) const |
return the effective alpha value that will be used when rendering this window, taking into account inheritance of parent window(s) alpha. More... | |
Rect | getUnclippedOuterRect () const |
Return a Rect that describes the unclipped outer rect area of the Window in screen pixels. | |
Rect | getUnclippedInnerRect () const |
Return a Rect that describes the unclipped inner rect area of the Window in screen pixels. | |
Rect | getUnclippedRect (const bool inner) const |
Return a Rect that describes the unclipped area covered by the Window. More... | |
Rect | getOuterRectClipper () const |
Return a Rect that describes the rendering clipping rect based upon the outer rect area of the window. More... | |
Rect | getInnerRectClipper () const |
Return a Rect that describes the rendering clipping rect based upon the inner rect area of the window. More... | |
Rect | getClipRect (const bool non_client=false) const |
Return a Rect that describes the rendering clipping rect for the Window. More... | |
Rect | getHitTestRect () const |
Return the Rect that descibes the clipped screen area that is used for determining whether this window has been hit by a certain point. More... | |
Rect | getChildWindowContentArea (const bool non_client=false) const |
Return a Rect that describes the area that is used to position and - for scale values - size child content attached to this Window. More... | |
virtual Rect | getUnclippedInnerRect_impl (void) const |
Return a Rect object that describes, unclipped, the inner rectangle for this window. The inner rectangle is typically an area that excludes some frame or other rendering that should not be touched by subsequent rendering. More... | |
bool | isCapturedByThis (void) const |
return true if this Window has input captured. More... | |
bool | isCapturedByAncestor (void) const |
return true if an ancestor window has captured inputs. More... | |
bool | isCapturedByChild (void) const |
return true if a child window has captured inputs. More... | |
virtual bool | isHit (const Vector2 &position, const bool allow_disabled=false) const |
check if the given pixel position would hit this window. More... | |
Window * | getChildAtPosition (const Vector2 &position) const |
return the child Window that is hit by the given pixel position More... | |
Window * | getTargetChildAtPosition (const Vector2 &position, const bool allow_disabled=false) const |
return the child Window that is 'hit' by the given position, and is allowed to handle mouse events. More... | |
Window * | getParent (void) const |
return the parent of this Window. More... | |
const Image * | getMouseCursor (bool useDefault=true) const |
Return a pointer to the mouse cursor image to use when the mouse cursor is within this window's area. More... | |
Size | getPixelSize (void) const |
Return the window size in pixels. More... | |
void * | getUserData (void) const |
Return the user data set for this Window. More... | |
bool | restoresOldCapture (void) const |
Return whether this window is set to restore old input capture when it loses input capture. More... | |
bool | isZOrderingEnabled (void) const |
Return whether z-order changes are enabled or disabled for this Window. More... | |
bool | wantsMultiClickEvents (void) const |
Return whether this window will receive multi-click events or multiple 'down' events instead. More... | |
bool | isMouseAutoRepeatEnabled (void) const |
Return whether mouse button down event autorepeat is enabled for this window. More... | |
float | getAutoRepeatDelay (void) const |
Return the current auto-repeat delay setting for this window. More... | |
float | getAutoRepeatRate (void) const |
Return the current auto-repeat rate setting for this window. More... | |
bool | distributesCapturedInputs (void) const |
Return whether the window wants inputs passed to its attached child windows when the window has inputs captured. More... | |
bool | isUsingDefaultTooltip (void) const |
Return whether this Window is using the system default Tooltip for its Tooltip window. More... | |
Tooltip * | getTooltip (void) const |
Return a pointer to the Tooltip object used by this Window. The value returned may point to the system default Tooltip, a custom Window specific Tooltip, or be NULL. More... | |
String | getTooltipType (void) const |
Return the custom tooltip type. More... | |
const String & | getTooltipText (void) const |
Return the current tooltip text set for this Window. More... | |
bool | inheritsTooltipText (void) const |
Return whether this window inherits Tooltip text from its parent when its own tooltip text is not set. More... | |
bool | isRiseOnClickEnabled (void) const |
Return whether this window will rise to the top of the z-order when clicked with the left mouse button. More... | |
bool | testClassName (const String &class_name) const |
Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. More... | |
VerticalAlignment | getVerticalAlignment () const |
Get the vertical alignment. More... | |
HorizontalAlignment | getHorizontalAlignment () const |
Get the horizontal alignment. More... | |
GeometryBuffer & | getGeometryBuffer () |
Return the GeometryBuffer object for this Window. More... | |
const String & | getLookNFeel () const |
Get the name of the LookNFeel assigned to this window. More... | |
bool | getModalState (void) const |
Get whether or not this Window is the modal target. More... | |
const String & | getUserString (const String &name) const |
Returns a named user string. More... | |
bool | isUserStringDefined (const String &name) const |
Return whether a user string with the specified name exists. More... | |
Window * | getActiveSibling () |
Returns the active sibling window. More... | |
Size | getParentPixelSize (void) const |
Return the pixel size of the parent element. This always returns a valid object. More... | |
float | getParentPixelWidth (void) const |
Return the pixel Width of the parent element. This always returns a valid number. More... | |
float | getParentPixelHeight (void) const |
Return the pixel Height of the parent element. This always returns a valid number. More... | |
bool | isMousePassThroughEnabled (void) const |
Returns whether this window should ignore mouse event and pass them through to and other windows behind it. In effect making the window transparent to the mouse. More... | |
bool | isAutoWindow (void) const |
Returns whether this window is an auto-child window. All auto-child windows have "__auto_" in their name, but this is faster. | |
bool | isWritingXMLAllowed (void) const |
Returns whether this window is allowed to write XML. | |
EventSet::Iterator | getEventIterator () const |
Helper method that returns an EventSet::Iterator object that can be used to iterate over the events currently added to the EventSet of this Window. More... | |
PropertySet::Iterator | getPropertyIterator () const |
Helper method that returns a PropertySet::Iterator object that can be used to iterate over the events currently added to the PropertySet of this Window. More... | |
bool | isDragDropTarget () const |
Returns whether this Window object will receive events generated by the drag and drop support in the system. More... | |
void | getRenderingContext (RenderingContext &ctx) const |
Fill in the RenderingContext ctx with details of the RenderingSurface where this Window object should normally do it's rendering. | |
virtual void | getRenderingContext_impl (RenderingContext &ctx) const |
implementation of the default getRenderingContext logic. | |
RenderingSurface * | getRenderingSurface () const |
return the RenderingSurface currently set for this window. May return 0. | |
RenderingSurface & | getTargetRenderingSurface () const |
return the RenderingSurface that will be used by this window as the target for rendering. | |
bool | isUsingAutoRenderingSurface () const |
Returns whether automatic use of an imagery caching RenderingSurface (i.e. a RenderingWindow) is enabled for this window. The reason we emphasise 'automatic' is because the client may manually set a RenderingSurface that does exactly the same job. More... | |
const Window * | getRootWindow () const |
Returns the window at the root of the hierarchy starting at this Window. The root window is defined as the first window back up the hierarchy that has no parent window. More... | |
Window * | getRootWindow () |
const Vector3 & | getRotation () const |
return the rotations set for this window. | |
bool | isNonClientWindow () const |
Return whether the Window is a non-client window. More... | |
void | rename (const String &new_name) |
Renames the window. More... | |
virtual void | initialiseComponents (void) |
Initialises the Window based object ready for use. More... | |
void | setDestroyedByParent (bool setting) |
Set whether or not this Window will automatically be destroyed when its parent Window is destroyed. More... | |
void | setAlwaysOnTop (bool setting) |
Set whether this window is always on top, or not. More... | |
void | setEnabled (bool setting) |
Set whether this window is enabled or disabled. A disabled window normally can not be interacted with, and may have different rendering. More... | |
void | enable (void) |
enable the Window to allow interaction. More... | |
void | disable (void) |
disable the Window to prevent interaction. More... | |
void | setVisible (bool setting) |
Set whether the Window is visible or hidden. More... | |
void | show (void) |
show the Window. More... | |
void | hide (void) |
hide the Window. More... | |
void | activate (void) |
Activate the Window giving it input focus and bringing it to the top of all windows with the same always-on-top settig as this Window. More... | |
void | deactivate (void) |
Deactivate the window. No further inputs will be received by the window until it is re-activated either programmatically or by the user interacting with the gui. More... | |
void | setClippedByParent (bool setting) |
Set whether this Window will be clipped by its parent window(s). More... | |
void | setID (uint ID) |
Set the current ID for the Window. More... | |
void | setText (const String &text) |
Set the current text string for the Window. More... | |
void | insertText (const String &text, const String::size_type position) |
Insert the text string text into the current text string for the Window object at the position specified by position. More... | |
void | appendText (const String &text) |
Append the string text to the currect text string for the Window object. More... | |
void | setFont (Font *font) |
Set the font used by this Window. More... | |
void | setFont (const String &name) |
Set the font used by this Window. More... | |
void | addChildWindow (const String &name) |
Add the named Window as a child of this Window. If the Window name is already attached to a Window, it is detached before being added to this Window. More... | |
void | addChildWindow (Window *window) |
Add the specified Window as a child of this Window. If the Window window is already attached to a Window, it is detached before being added to this Window. More... | |
void | removeChildWindow (const String &name) |
Remove the named Window from this windows child list. More... | |
void | removeChildWindow (Window *window) |
Remove the specified Window form this windows child list. More... | |
void | removeChildWindow (uint ID) |
Remove the first child Window with the specified ID. If there is more than one attached Window objects with the specified ID, only the fist one encountered will be removed. More... | |
void | moveToFront () |
Move the Window to the top of the z order. More... | |
void | moveToBack () |
Move the Window to the bottom of the Z order. More... | |
void | moveInFront (const Window *const window) |
Move this window immediately above it's sibling window in the z order. More... | |
void | moveBehind (const Window *const window) |
Move this window immediately behind it's sibling window in the z order. More... | |
bool | captureInput (void) |
Captures input to this window. More... | |
void | releaseInput (void) |
Releases input capture from this Window. If this Window does not have inputs captured, nothing happens. More... | |
void | setRestoreCapture (bool setting) |
Set whether this window will remember and restore the previous window that had inputs captured. More... | |
void | setAlpha (float alpha) |
Set the current alpha value for this window. More... | |
void | setInheritsAlpha (bool setting) |
Sets whether this Window will inherit alpha from its parent windows. More... | |
void | invalidate (void) |
Invalidate this window causing at least this window to be redrawn during the next rendering pass. More... | |
void | invalidate (const bool recursive) |
Invalidate this window and - dependant upon recursive - all child content, causing affected windows to be redrawn during the next rendering pass. More... | |
void | setMouseCursor (const Image *image) |
Set the mouse cursor image to be used when the mouse enters this window. More... | |
void | setMouseCursor (MouseCursorImage image) |
Set the mouse cursor image to be used when the mouse enters this window. More... | |
void | setMouseCursor (const String &imageset, const String &image_name) |
Set the mouse cursor image to be used when the mouse enters this window. More... | |
void | setUserData (void *user_data) |
Set the user data set for this Window. More... | |
void | setZOrderingEnabled (bool setting) |
Set whether z-order changes are enabled or disabled for this Window. More... | |
void | setWantsMultiClickEvents (bool setting) |
Set whether this window will receive multi-click events or multiple 'down' events instead. More... | |
void | setMouseAutoRepeatEnabled (bool setting) |
Set whether mouse button down event autorepeat is enabled for this window. More... | |
void | setAutoRepeatDelay (float delay) |
Set the current auto-repeat delay setting for this window. More... | |
void | setAutoRepeatRate (float rate) |
Set the current auto-repeat rate setting for this window. More... | |
void | setDistributesCapturedInputs (bool setting) |
Set whether the window wants inputs passed to its attached child windows when the window has inputs captured. More... | |
void | notifyDragDropItemEnters (DragContainer *item) |
Internal support method for drag & drop. You do not normally call this directly from client code. See the DragContainer class. | |
void | notifyDragDropItemLeaves (DragContainer *item) |
Internal support method for drag & drop. You do not normally call this directly from client code. See the DragContainer class. | |
void | notifyDragDropItemDropped (DragContainer *item) |
Internal support method for drag & drop. You do not normally call this directly from client code. See the DragContainer class. | |
virtual void | destroy (void) |
Internal destroy method which actually just adds the window and any parent destructed child windows to the dead pool. More... | |
void | setTooltip (Tooltip *tooltip) |
Set the custom Tooltip object for this Window. This value may be 0 to indicate that the Window should use the system default Tooltip object. More... | |
void | setTooltipType (const String &tooltipType) |
Set the custom Tooltip to be used by this Window by specifying a Window type. More... | |
void | setTooltipText (const String &tip) |
Set the tooltip text for this window. More... | |
void | setInheritsTooltipText (bool setting) |
Set whether this window inherits Tooltip text from its parent when its own tooltip text is not set. More... | |
void | setRiseOnClickEnabled (bool setting) |
Set whether this window will rise to the top of the z-order when clicked with the left mouse button. More... | |
void | setVerticalAlignment (const VerticalAlignment alignment) |
Set the vertical alignment. More... | |
void | setHorizontalAlignment (const HorizontalAlignment alignment) |
Set the horizontal alignment. More... | |
virtual void | setLookNFeel (const String &look) |
Set the LookNFeel that shoule be used for this window. More... | |
void | setModalState (bool state) |
Set the modal state for this Window. More... | |
virtual void | performChildWindowLayout () |
method called to perform extended laying out of attached child windows. More... | |
void | setUserString (const String &name, const String &value) |
Sets the value a named user string, creating it as required. More... | |
void | setArea (const UDim &xpos, const UDim &ypos, const UDim &width, const UDim &height) |
Set the window area. More... | |
void | setArea (const UVector2 &pos, const UVector2 &size) |
Set the window area. More... | |
void | setArea (const URect &area) |
Set the window area. More... | |
void | setPosition (const UVector2 &pos) |
Set the window's position. More... | |
void | setXPosition (const UDim &x) |
Set the window's X position. More... | |
void | setYPosition (const UDim &y) |
Set the window's Y position. More... | |
void | setSize (const UVector2 &size) |
Set the window's size. More... | |
void | setWidth (const UDim &width) |
Set the window's width. More... | |
void | setHeight (const UDim &height) |
Set the window's height. More... | |
void | setMaxSize (const UVector2 &size) |
Set the window's maximum size. More... | |
void | setMinSize (const UVector2 &size) |
Set the window's minimum size. More... | |
const URect & | getArea () const |
Return the windows area. More... | |
const UVector2 & | getPosition () const |
Get the window's position. More... | |
const UDim & | getXPosition () const |
Get the window's X position. More... | |
const UDim & | getYPosition () const |
Get the window's Y position. More... | |
UVector2 | getSize () const |
Get the window's size. More... | |
UDim | getWidth () const |
Get the window's width. More... | |
UDim | getHeight () const |
Get the window's height. More... | |
const UVector2 & | getMaxSize () const |
Get the window's maximum size. More... | |
const UVector2 & | getMinSize () const |
Get the window's minimum size. More... | |
void | render () |
Causes the Window object to render itself and all of it's attached children. More... | |
virtual void | update (float elapsed) |
Cause window to update itself and any attached children. Client code does not need to call this method; to ensure full, and proper updates, call the injectTimePulse methodname method provided by the System class. More... | |
virtual void | writeXMLToStream (XMLSerializer &xml_stream) const |
Writes an xml representation of this window object to out_stream. More... | |
virtual void | beginInitialisation (void) |
Sets the internal 'initialising' flag to true. This can be use to optimize initialisation of some widgets, and is called automatically by the layout XML handler when it has created a window. That is just after the window has been created, but before any children or properties are read. | |
virtual void | endInitialisation (void) |
Sets the internal 'initialising' flag to false. This is called automatically by the layout XML handler when it is done creating a window. That is after all properties and children have been loaded and just before the next sibling gets created. | |
void | setMousePassThroughEnabled (bool setting) |
Sets whether this window should ignore mouse events and pass them through to any windows behind it. In effect making the window transparent to the mouse. More... | |
void | setWindowRenderer (const String &name) |
Assign the WindowRenderer to specify the Look'N'Feel specification to be used. More... | |
WindowRenderer * | getWindowRenderer (void) const |
Get the currently assigned WindowRenderer. (Look'N'Feel specification). More... | |
String | getWindowRendererName (void) const |
Get the factory name of the currently assigned WindowRenderer. (Look'N'Feel specification). More... | |
void | setWritingXMLAllowed (bool allow) |
Sets whether this window is allowed to write XML. | |
void | notifyScreenAreaChanged (bool recursive=true) |
Inform the window, and optionally all children, that screen area rectangles have changed. More... | |
void | setFalagardType (const String &type, const String &rendererType="") |
Changes the widget's falagard type, thus changing its look'n'feel and optionally its renderer in the process. More... | |
void | setDragDropTarget (bool setting) |
Specifies whether this Window object will receive events generated by the drag and drop support in the system. More... | |
void | setRenderingSurface (RenderingSurface *surface) |
Set the RenderingSurface to be associated with this Window, or 0 if none is required. More... | |
void | invalidateRenderingSurface () |
Invalidate the chain of rendering surfaces from this window backwards to ensure they get properly redrawn - but doing the minimum amount of work possibe - next render. | |
void | setUsingAutoRenderingSurface (bool setting) |
Sets whether automatic use of an imagery caching RenderingSurface (i.e. a RenderingWindow) is enabled for this window. The reason we emphasise 'atutomatic' is because the client may manually set a RenderingSurface that does exactlythe same job. More... | |
void | setRotation (const Vector3 &rotation) |
set the rotations for this window. | |
void | setNonClientWindow (const bool setting) |
Set whether the Window is a non-client window. More... | |
const RenderedString & | getRenderedString () const |
Return the parsed RenderedString object for this window. | |
RenderedStringParser * | getCustomRenderedStringParser () const |
Return a pointer to any custom RenderedStringParser set, or 0 if none. | |
void | setCustomRenderedStringParser (RenderedStringParser *parser) |
Set a custom RenderedStringParser, or 0 to remove an existing one. | |
virtual RenderedStringParser & | getRenderedStringParser () const |
return the active RenderedStringParser to be used | |
bool | isTextParsingEnabled () const |
return whether text parsing is enabled for this window. | |
void | setTextParsingEnabled (const bool setting) |
set whether text parsing is enabled for this window. | |
virtual void | setMargin (const UBox &margin) |
set margin | |
const UBox & | getMargin () const |
retrieves currently set margin | |
Vector2 | getUnprojectedPosition (const Vector2 &pos) const |
return Vector2 pos after being fully unprojected for this Window. | |
const BiDiVisualMapping * | getBiDiVisualMapping () const |
return the pointer to the BiDiVisualMapping for this window, if any. | |
void | banPropertyFromXML (const String &property_name) |
Add the named property to the XML ban list for this window. | |
void | unbanPropertyFromXML (const String &property_name) |
Remove the named property from the XML ban list for this window. | |
bool | isPropertyBannedFromXML (const String &property_name) const |
Return whether the named property is banned from XML. | |
void | banPropertyFromXML (const Property *property) |
Add the given property to the XML ban list for this window. | |
void | unbanPropertyFromXML (const Property *property) |
Remove the given property from the XML ban list for this window. | |
bool | isPropertyBannedFromXML (const Property *property) const |
Return whether the given property is banned from XML. | |
void | setUpdateMode (const WindowUpdateMode mode) |
Set the window update mode. This mode controls the behaviour of the Window::update member function such that updates are processed for this window (and therefore it's child content) according to the set mode. More... | |
WindowUpdateMode | getUpdateMode () const |
Return the current window update mode that is set for this Window. This mode controls the behaviour of the Window::update member function such that updates are processed for this window (and therefore it's child content) according to the set mode. More... | |
void | setMouseInputPropagationEnabled (const bool enabled) |
Set whether mouse input that is not directly handled by this Window (including it's event subscribers) should be propagated back to the Window's parent. More... | |
bool | isMouseInputPropagationEnabled () const |
Return whether mouse input that is not directly handled by this Window (including it's event subscribers) should be propagated back to the Window's parent. More... | |
Window * | clone (const String &newName, const bool deepCopy=true) const |
Clones this Window and returns the result. More... | |
virtual void | clonePropertiesTo (Window &target) const |
copies this widget's properties to given target widget | |
virtual void | cloneChildWidgetsTo (Window &target) const |
copies this widget's child widgets to given target widget | |
size_t | getZIndex () const |
Return the (visual) z index of the window on it's parent. More... | |
bool | isInFront (const Window &wnd) const |
Return whether /a this Window is in front of the given window. More... | |
bool | isBehind (const Window &wnd) const |
Return whether /a this Window is behind the given window. More... | |
Public Member Functions inherited from CEGUI::PropertySet | |
PropertySet (void) | |
Constructs a new PropertySet object. | |
virtual | ~PropertySet (void) |
Destructor for PropertySet objects. | |
void | addProperty (Property *property) |
Adds a new Property to the PropertySet. More... | |
void | removeProperty (const String &name) |
Removes a Property from the PropertySet. More... | |
void | clearProperties (void) |
Removes all Property objects from the PropertySet. More... | |
bool | isPropertyPresent (const String &name) const |
Checks to see if a Property with the given name is in the PropertySet. More... | |
const String & | getPropertyHelp (const String &name) const |
Return the help text for the specified Property. More... | |
String | getProperty (const String &name) const |
Gets the current value of the specified Property. More... | |
void | setProperty (const String &name, const String &value) |
Sets the current value of a Property. More... | |
bool | isPropertyDefault (const String &name) const |
Returns whether a Property is at it's default value. More... | |
String | getPropertyDefault (const String &name) const |
Returns the default value of a Property as a String. More... | |
Iterator | getIterator (void) const |
Return a PropertySet::Iterator object to iterate over the available Properties. | |
Public Member Functions inherited from CEGUI::EventSet | |
EventSet () | |
Constructor for EventSet objects. | |
virtual | ~EventSet (void) |
Destructor for EventSet objects. | |
void | addEvent (const String &name) |
Add a new Event to the EventSet with the given name. More... | |
void | removeEvent (const String &name) |
Removes the Event with the given name. All connections to the event are disconnected. More... | |
void | removeAllEvents (void) |
Remove all Event objects from the EventSet. More... | |
bool | isEventPresent (const String &name) |
Checks to see if an Event with the given name is present in the EventSet. More... | |
virtual Event::Connection | subscribeEvent (const String &name, Event::Subscriber subscriber) |
Subscribes a handler to the named Event. If the named Event is not yet present in the EventSet, it is created and added. More... | |
virtual Event::Connection | subscribeEvent (const String &name, Event::Group group, Event::Subscriber subscriber) |
Subscribes a handler to the specified group of the named Event. If the named Event is not yet present in the EventSet, it is created and added. More... | |
virtual Event::Connection | subscribeScriptedEvent (const String &name, const String &subscriber_name) |
Subscribes the named Event to a scripted funtion. More... | |
virtual Event::Connection | subscribeScriptedEvent (const String &name, Event::Group group, const String &subscriber_name) |
Subscribes the specified group of the named Event to a scripted funtion. More... | |
virtual void | fireEvent (const String &name, EventArgs &args, const String &eventNamespace="") |
Fires the named event passing the given EventArgs object. More... | |
bool | isMuted (void) const |
Return whether the EventSet is muted or not. More... | |
void | setMutedState (bool setting) |
Set the mute state for this EventSet. More... | |
Iterator | getIterator (void) const |
Return a EventSet::Iterator object to iterate over the events currently added to the EventSet. | |
Static Public Member Functions | |
static Window * | getCaptureWindow (void) |
return the Window that currently has inputs captured. More... | |
Protected Types | |
typedef std::vector< Window * > | ChildList |
definition of type used for the list of attached child windows. | |
typedef std::map< String, String, String::FastLessCompare > | UserStringMap |
definition of type used for the UserString dictionary. | |
typedef std::set< String, String::FastLessCompare > | BannedXMLPropertySet |
definition of type used to track properties banned from writing XML. | |
Protected Types inherited from CEGUI::EventSet | |
typedef std::map< String, Event *, String::FastLessCompare > | EventMap |
Protected Member Functions | |
virtual void | onSized (WindowEventArgs &e) |
Handler called when the window's size changes. More... | |
virtual void | onMoved (WindowEventArgs &e) |
Handler called when the window's position changes. More... | |
virtual void | onTextChanged (WindowEventArgs &e) |
Handler called when the window's text is changed. More... | |
virtual void | onFontChanged (WindowEventArgs &e) |
Handler called when the window's font is changed. More... | |
virtual void | onAlphaChanged (WindowEventArgs &e) |
Handler called when the window's alpha blend value is changed. More... | |
virtual void | onIDChanged (WindowEventArgs &e) |
Handler called when the window's client assigned ID is changed. More... | |
virtual void | onShown (WindowEventArgs &e) |
Handler called when the window is shown (made visible). More... | |
virtual void | onHidden (WindowEventArgs &e) |
Handler called when the window is hidden. More... | |
virtual void | onEnabled (WindowEventArgs &e) |
Handler called when the window is enabled. More... | |
virtual void | onDisabled (WindowEventArgs &e) |
Handler called when the window is disabled. More... | |
virtual void | onClippingChanged (WindowEventArgs &e) |
Handler called when the window's setting for being clipped by it's parent is changed. More... | |
virtual void | onParentDestroyChanged (WindowEventArgs &e) |
Handler called when the window's setting for being destroyed automatically be it's parent is changed. More... | |
virtual void | onInheritsAlphaChanged (WindowEventArgs &e) |
Handler called when the window's setting for inheriting alpha-blending is changed. More... | |
virtual void | onAlwaysOnTopChanged (WindowEventArgs &e) |
Handler called when the window's always-on-top setting is changed. More... | |
virtual void | onCaptureGained (WindowEventArgs &e) |
Handler called when this window gains capture of mouse inputs. More... | |
virtual void | onCaptureLost (WindowEventArgs &e) |
Handler called when this window loses capture of mouse inputs. More... | |
virtual void | onRenderingStarted (WindowEventArgs &e) |
Handler called when rendering for this window has started. More... | |
virtual void | onRenderingEnded (WindowEventArgs &e) |
Handler called when rendering for this window has ended. More... | |
virtual void | onZChanged (WindowEventArgs &e) |
Handler called when the z-order position of this window has changed. More... | |
virtual void | onDestructionStarted (WindowEventArgs &e) |
Handler called when this window's destruction sequence has begun. More... | |
virtual void | onActivated (ActivationEventArgs &e) |
Handler called when this window has become the active window. More... | |
virtual void | onDeactivated (ActivationEventArgs &e) |
Handler called when this window has lost input focus and has been deactivated. More... | |
virtual void | onParentSized (WindowEventArgs &e) |
Handler called when this window's parent window has been resized. If this window is the root / GUI Sheet window, this call will be made when the display size changes. More... | |
virtual void | onChildAdded (WindowEventArgs &e) |
Handler called when a child window is added to this window. More... | |
virtual void | onChildRemoved (WindowEventArgs &e) |
Handler called when a child window is removed from this window. More... | |
virtual void | onMouseEntersArea (MouseEventArgs &e) |
Handler called when the mouse cursor has entered this window's area. More... | |
virtual void | onMouseLeavesArea (MouseEventArgs &e) |
Handler called when the mouse cursor has left this window's area. More... | |
virtual void | onMouseEnters (MouseEventArgs &e) |
Handler called when the mouse cursor has entered this window's area and is actually over some part of this windows surface and not, for instance over a child window - even though technically in those cases the mouse is also within this Window's area, the handler will not be called. More... | |
virtual void | onMouseLeaves (MouseEventArgs &e) |
Handler called when the mouse cursor is no longer over this window's surface area. This will be called when the mouse is not over a part of this Window's actual surface - even though technically the mouse is still within the Window's area, for example if the mouse moves over a child window. More... | |
virtual void | onMouseMove (MouseEventArgs &e) |
Handler called when the mouse cursor has been moved within this window's area. More... | |
virtual void | onMouseWheel (MouseEventArgs &e) |
Handler called when the mouse wheel (z-axis) position changes within this window's area. More... | |
virtual void | onMouseButtonDown (MouseEventArgs &e) |
Handler called when a mouse button has been depressed within this window's area. More... | |
virtual void | onMouseButtonUp (MouseEventArgs &e) |
Handler called when a mouse button has been released within this window's area. More... | |
virtual void | onMouseClicked (MouseEventArgs &e) |
Handler called when a mouse button has been clicked (that is depressed and then released, within a specified time) within this window's area. More... | |
virtual void | onMouseDoubleClicked (MouseEventArgs &e) |
Handler called when a mouse button has been double-clicked within this window's area. More... | |
virtual void | onMouseTripleClicked (MouseEventArgs &e) |
Handler called when a mouse button has been triple-clicked within this window's area. More... | |
virtual void | onKeyDown (KeyEventArgs &e) |
Handler called when a key as been depressed while this window has input focus. More... | |
virtual void | onKeyUp (KeyEventArgs &e) |
Handler called when a key as been released while this window has input focus. More... | |
virtual void | onCharacter (KeyEventArgs &e) |
Handler called when a character-key has been pressed while this window has input focus. More... | |
virtual void | onDragDropItemEnters (DragDropEventArgs &e) |
Handler called when a DragContainer is dragged over this window. More... | |
virtual void | onDragDropItemLeaves (DragDropEventArgs &e) |
Handler called when a DragContainer is dragged over this window. More... | |
virtual void | onDragDropItemDropped (DragDropEventArgs &e) |
Handler called when a DragContainer is dragged over this window. More... | |
virtual void | onVerticalAlignmentChanged (WindowEventArgs &e) |
Handler called when the vertical alignment setting for the window is changed. More... | |
virtual void | onHorizontalAlignmentChanged (WindowEventArgs &e) |
Handler called when the horizontal alignment setting for the window is changed. More... | |
virtual void | onWindowRendererAttached (WindowEventArgs &e) |
Handler called when a new window renderer object is attached. More... | |
virtual void | onWindowRendererDetached (WindowEventArgs &e) |
Handler called when the currently attached window renderer object is detached. More... | |
virtual void | onRotated (WindowEventArgs &e) |
Handler called when the window's rotation factor is changed. More... | |
virtual void | onNonClientChanged (WindowEventArgs &e) |
Handler called when the window's non-client setting, affecting it's position and size relative to it's parent is changed. More... | |
virtual void | onTextParsingChanged (WindowEventArgs &e) |
Handler called when the window's setting for whether text parsing is enabled is changed. More... | |
virtual void | onMarginChanged (WindowEventArgs &e) |
virtual void | updateSelf (float elapsed) |
Perform actual update processing for this Window. More... | |
virtual void | drawSelf (const RenderingContext &ctx) |
Perform the actual rendering for this Window. More... | |
void | bufferGeometry (const RenderingContext &ctx) |
Perform drawing operations concerned with generating and buffering window geometry. More... | |
void | queueGeometry (const RenderingContext &ctx) |
Perform drawing operations concerned with positioning, clipping and queueing of window geometry to RenderingSurfaces. More... | |
virtual void | populateGeometryBuffer () |
Update the rendering cache. More... | |
virtual bool | testClassName_impl (const String &class_name) const |
Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. More... | |
void | setParent (Window *parent) |
Set the parent window for this window object. More... | |
Size | getSize_impl (const Window *window) const |
void | generateAutoRepeatEvent (MouseButton button) |
Fires off a repeated mouse button down event for this window. | |
virtual bool | validateWindowRenderer (const String &name) const |
Function used in checking if a WindowRenderer is valid for this window. More... | |
bool | isPropertyAtDefault (const Property *property) const |
Returns whether a property is at it's default value. This function is different from Property::isDefatult as it takes the assigned look'n'feel (if the is one) into account. | |
void | notifyClippingChanged (void) |
Recursively inform all children that the clipping has changed and screen rects needs to be recached. | |
void | allocateRenderingWindow () |
helper to create and setup the auto RenderingWindow surface | |
void | releaseRenderingWindow () |
helper to clean up the auto RenderingWindow surface | |
void | initialiseClippers (const RenderingContext &ctx) |
Helper to intialise the needed clipping for geometry and render surface. | |
virtual void | cleanupChildren (void) |
Cleanup child windows. | |
virtual void | addChild_impl (Window *wnd) |
Add given window to child list at an appropriate position. | |
virtual void | removeChild_impl (Window *wnd) |
Remove given window from child list. | |
virtual void | onZChange_impl (void) |
Notify 'this' and all siblings of a ZOrder change event. | |
void | addStandardProperties (void) |
Add standard CEGUI::Window properties. | |
virtual bool | moveToFront_impl (bool wasClicked) |
Implements move to front behavior. More... | |
void | setArea_impl (const UVector2 &pos, const UVector2 &size, bool topLeftSizing=false, bool fireEvents=true) |
Implementation method to modify window area while correctly applying min / max size processing, and firing any appropriate events. More... | |
void | addWindowToDrawList (Window &wnd, bool at_back=false) |
Add the given window to the drawing list at an appropriate position for it's settings and the required direction. Basically, when at_back is false, the window will appear in front of all other windows with the same 'always on top' setting. When at_back is true, the window will appear behind all other windows wih the same 'always on top' setting. More... | |
void | removeWindowFromDrawList (const Window &wnd) |
Removes the window from the drawing list. If the window is not attached to the drawing list then nothing happens. More... | |
bool | isTopOfZOrder () const |
Return whether the window is at the top of the Z-Order. This will correctly take into account 'Always on top' windows as needed. More... | |
void | updateGeometryRenderSettings () |
Update position and clip region on this Windows geometry / rendering surface. | |
void | transferChildSurfaces () |
transfer RenderingSurfaces to be owned by our target RenderingSurface. | |
Rect | getParentElementClipIntersection (const Rect &unclipped_area) const |
helper function for calculating clipping rectangles. | |
void | invalidate_impl (const bool recursive) |
helper function to invalidate window and optionally child windows. | |
bool | isInnerRectSizeChanged () const |
helper to return whether the inner rect size has changed | |
const Window * | getWindowAttachedToCommonAncestor (const Window &wnd) const |
Helper function to return the ancestor Window of /a wnd that is attached as a child to a window that is also an ancestor of /a this. Returns 0 if /a wnd and /a this are not part of the same hierachy. | |
virtual Rect | getUnclippedOuterRect_impl () const |
Default implementation of function to return Window outer rect area. | |
virtual Rect | getOuterRectClipper_impl () const |
Default implementation of function to return Window outer clipper area. | |
virtual Rect | getInnerRectClipper_impl () const |
Default implementation of function to return Window inner clipper area. | |
virtual Rect | getHitTestRect_impl () const |
Default implementation of function to return Window hit-test area. | |
virtual Rect | getNonClientChildWindowContentArea_impl () const |
Default implementation of function to return non-client content area. | |
virtual Rect | getClientChildWindowContentArea_impl () const |
Default implementation of function to return client content area. | |
virtual int | writePropertiesXML (XMLSerializer &xml_stream) const |
virtual int | writeChildWindowsXML (XMLSerializer &xml_stream) const |
virtual bool | writeAutoChildWindowXML (XMLSerializer &xml_stream) const |
bool | constrainUVector2ToMinSize (const Size &base_sz, UVector2 &sz) |
bool | constrainUVector2ToMaxSize (const Size &base_sz, UVector2 &sz) |
void | markAllCachedRectsInvalid () |
void | calculatePixelSize () |
calculate constrained pixel size of the window (outer rect) | |
void | fireAreaChangeEvents (const bool moved, const bool sized) |
helper to fire events based on changes to area rect | |
Protected Member Functions inherited from CEGUI::EventSet | |
Event * | getEventObject (const String &name, bool autoAdd=false) |
Return a pointer to the Event object with the given name, optionally adding such an Event object to the EventSet if it does not already exist. More... | |
void | fireEvent_impl (const String &name, EventArgs &args) |
Implementation event firing member. | |
EventSet (EventSet &) | |
EventSet & | operator= (EventSet &) |
Protected Attributes | |
const String | d_type |
type of Window (also the name of the WindowFactory that created us) | |
String | d_name |
The name of the window (GUI system unique). | |
String | d_falagardType |
Type name of the window as defined in a Falagard mapping. | |
bool | d_autoWindow |
true when this window is an auto-window (it's name contains __auto_) | |
bool | d_initialising |
true when this window is currently being initialised (creating children etc) | |
bool | d_destructionStarted |
true when this window is being destroyed. | |
bool | d_enabled |
true when Window is enabled | |
bool | d_visible |
is window visible (i.e. it will be rendered, but may still be obscured) | |
bool | d_active |
true when Window is the active Window (receiving inputs). | |
ChildList | d_children |
The list of child Window objects attached to this. | |
ChildList | d_drawList |
Child window objects arranged in rendering order. | |
Window * | d_parent |
Holds pointer to the parent window. | |
bool | d_destroyedByParent |
true when Window will be auto-destroyed by parent. | |
bool | d_clippedByParent |
true when Window will be clipped by parent Window area Rect. | |
bool | d_nonClientContent |
true if Window is in non-client (outside InnerRect) area of parent. | |
String | d_lookName |
Name of the Look assigned to this window (if any). | |
WindowRenderer * | d_windowRenderer |
The WindowRenderer module that implements the Look'N'Feel specification. | |
GeometryBuffer * | d_geometry |
Object which acts as a cache of geometry drawn by this Window. | |
RenderingSurface * | d_surface |
RenderingSurface owned by this window (may be 0) | |
bool | d_needsRedraw |
true if window geometry cache needs to be regenerated. | |
bool | d_autoRenderingWindow |
holds setting for automatic creation of of surface (RenderingWindow) | |
const Image * | d_mouseCursor |
Holds pointer to the Window objects current mouse cursor image. | |
float | d_alpha |
Alpha transparency setting for the Window. | |
bool | d_inheritsAlpha |
true if the Window inherits alpha from the parent Window | |
Window * | d_oldCapture |
The Window that previously had capture (used for restoreOldCapture mode) | |
bool | d_restoreOldCapture |
Restore capture to the previous capture window when releasing capture. | |
bool | d_distCapturedInputs |
Whether to distribute captured inputs to child windows. | |
Font * | d_font |
Holds pointer to the Window objects current Font. | |
String | d_textLogical |
Holds the text / label / caption for this Window. | |
BiDiVisualMapping * | d_bidiVisualMapping |
pointer to bidirection support object | |
bool | d_bidiDataValid |
whether bidi visual mapping has been updated since last text change. | |
RenderedString | d_renderedString |
RenderedString representation of text string as ouput from a parser. | |
bool | d_renderedStringValid |
true if d_renderedString is valid, false if needs re-parse. | |
RenderedStringParser * | d_customStringParser |
Pointer to a custom (user assigned) RenderedStringParser object. | |
bool | d_textParsingEnabled |
true if use of parser other than d_defaultStringParser is enabled | |
UBox | d_margin |
Margin, only used when the Window is inside LayoutContainer class. | |
uint | d_ID |
User ID assigned to this Window. | |
void * | d_userData |
Holds pointer to some user assigned data. | |
UserStringMap | d_userStrings |
Holds a collection of named user string values. | |
bool | d_alwaysOnTop |
true if Window will be drawn on top of all other Windows | |
bool | d_riseOnClick |
whether window should rise in the z order when left clicked. | |
bool | d_zOrderingEnabled |
true if the Window responds to z-order change requests. | |
bool | d_wantsMultiClicks |
true if the Window wishes to hear about multi-click mouse events. | |
bool | d_mousePassThroughEnabled |
whether (most) mouse events pass through this window | |
bool | d_autoRepeat |
whether pressed mouse button will auto-repeat the down event. | |
float | d_repeatDelay |
seconds before first repeat event is fired | |
float | d_repeatRate |
secons between further repeats after delay has expired. | |
MouseButton | d_repeatButton |
button we're tracking for auto-repeat purposes. | |
bool | d_repeating |
implements repeating - is true after delay has elapsed, | |
float | d_repeatElapsed |
implements repeating - tracks time elapsed. | |
bool | d_dragDropTarget |
true if window will receive drag and drop related notifications | |
String | d_tooltipText |
Text string used as tip for this window. | |
Tooltip * | d_customTip |
Possible custom Tooltip for this window. | |
bool | d_weOwnTip |
true if this Window created the custom Tooltip. | |
bool | d_inheritsTipText |
whether tooltip text may be inherited from parent. | |
bool | d_allowWriteXML |
true if this window is allowed to write XML, false if not | |
BannedXMLPropertySet | d_bannedXMLProperties |
collection of properties not to be written to XML for this window. | |
URect | d_area |
This Window objects area as defined by a URect. | |
Size | d_pixelSize |
Current constrained pixel size of the window. | |
UVector2 | d_minSize |
current minimum size for the window. | |
UVector2 | d_maxSize |
current maximum size for the window. | |
HorizontalAlignment | d_horzAlign |
Specifies the base for horizontal alignment. | |
VerticalAlignment | d_vertAlign |
Specifies the base for vertical alignment. | |
Vector3 | d_rotation |
Rotation angles for this window. | |
Rect | d_outerUnclippedRect |
outer area rect in screen pixels | |
Rect | d_innerUnclippedRect |
inner area rect in screen pixels | |
Rect | d_outerRectClipper |
outer area clipping rect in screen pixels | |
Rect | d_innerRectClipper |
inner area clipping rect in screen pixels | |
Rect | d_hitTestRect |
area rect used for hit-testing agains this window | |
bool | d_outerUnclippedRectValid |
bool | d_innerUnclippedRectValid |
bool | d_outerRectClipperValid |
bool | d_innerRectClipperValid |
bool | d_hitTestRectValid |
WindowUpdateMode | d_updateMode |
The mode to use for calling Window::update. | |
bool | d_propagateMouseInputs |
specifies whether mouse inputs should be propagated to parent(s) | |
Protected Attributes inherited from CEGUI::EventSet | |
EventMap | d_events |
bool | d_muted |
true if events for this EventSet have been muted. | |
Static Protected Attributes | |
static WindowProperties::Alpha | d_alphaProperty |
static WindowProperties::AlwaysOnTop | d_alwaysOnTopProperty |
static WindowProperties::ClippedByParent | d_clippedByParentProperty |
static WindowProperties::DestroyedByParent | d_destroyedByParentProperty |
static WindowProperties::Disabled | d_disabledProperty |
static WindowProperties::Font | d_fontProperty |
static WindowProperties::ID | d_IDProperty |
static WindowProperties::InheritsAlpha | d_inheritsAlphaProperty |
static WindowProperties::MouseCursorImage | d_mouseCursorProperty |
static WindowProperties::RestoreOldCapture | d_restoreOldCaptureProperty |
static WindowProperties::Text | d_textProperty |
static WindowProperties::Visible | d_visibleProperty |
static WindowProperties::ZOrderChangeEnabled | d_zOrderChangeProperty |
static WindowProperties::WantsMultiClickEvents | d_wantsMultiClicksProperty |
static WindowProperties::MouseButtonDownAutoRepeat | d_autoRepeatProperty |
static WindowProperties::AutoRepeatDelay | d_autoRepeatDelayProperty |
static WindowProperties::AutoRepeatRate | d_autoRepeatRateProperty |
static WindowProperties::DistributeCapturedInputs | d_distInputsProperty |
static WindowProperties::CustomTooltipType | d_tooltipTypeProperty |
static WindowProperties::Tooltip | d_tooltipProperty |
static WindowProperties::InheritsTooltipText | d_inheritsTooltipProperty |
static WindowProperties::RiseOnClick | d_riseOnClickProperty |
static WindowProperties::VerticalAlignment | d_vertAlignProperty |
static WindowProperties::HorizontalAlignment | d_horzAlignProperty |
static WindowProperties::UnifiedAreaRect | d_unifiedAreaRectProperty |
static WindowProperties::UnifiedPosition | d_unifiedPositionProperty |
static WindowProperties::UnifiedXPosition | d_unifiedXPositionProperty |
static WindowProperties::UnifiedYPosition | d_unifiedYPositionProperty |
static WindowProperties::UnifiedSize | d_unifiedSizeProperty |
static WindowProperties::UnifiedWidth | d_unifiedWidthProperty |
static WindowProperties::UnifiedHeight | d_unifiedHeightProperty |
static WindowProperties::UnifiedMinSize | d_unifiedMinSizeProperty |
static WindowProperties::UnifiedMaxSize | d_unifiedMaxSizeProperty |
static WindowProperties::MousePassThroughEnabled | d_mousePassThroughEnabledProperty |
static WindowProperties::WindowRenderer | d_windowRendererProperty |
static WindowProperties::LookNFeel | d_lookNFeelProperty |
static WindowProperties::DragDropTarget | d_dragDropTargetProperty |
static WindowProperties::AutoRenderingSurface | d_autoRenderingSurfaceProperty |
static WindowProperties::Rotation | d_rotationProperty |
static WindowProperties::XRotation | d_xRotationProperty |
static WindowProperties::YRotation | d_yRotationProperty |
static WindowProperties::ZRotation | d_zRotationProperty |
static WindowProperties::NonClient | d_nonClientProperty |
static WindowProperties::TextParsingEnabled | d_textParsingEnabledProperty |
static WindowProperties::Margin | d_marginProperty |
static WindowProperties::UpdateMode | d_updateModeProperty |
static WindowProperties::MouseInputPropagationEnabled | d_mouseInputPropagationProperty |
static Window * | d_captureWindow |
Window that has captured inputs. | |
static BasicRenderedStringParser | d_basicStringParser |
Shared instance of a parser to be used in most instances. | |
static DefaultRenderedStringParser | d_defaultStringParser |
Shared instance of a parser to be used when rendering text verbatim. | |
Friends | |
class | System |
class | WindowManager |
Additional Inherited Members | |
Public Types inherited from CEGUI::PropertySet | |
typedef ConstBaseIterator < PropertyRegistry > | Iterator |
Public Types inherited from CEGUI::EventSet | |
typedef ConstBaseIterator < EventMap > | Iterator |
An abstract base class providing common functionality and specifying the required interface for derived classes.
The Window base class is core UI object class that the the system knows about; for this reason, every other window, widget, or similar item within the system must be derived from Window.
The base class provides the common functionality required by all UI objects, and specifies the minimal interface required to be implemented by derived classes.
void CEGUI::Window::activate | ( | void | ) |
void CEGUI::Window::addChildWindow | ( | const String & | name | ) |
Add the named Window as a child of this Window. If the Window name is already attached to a Window, it is detached before being added to this Window.
UnknownObjectException | thrown if no Window named name exists. |
InvalidRequestException | thrown if Window name is an ancestor of this Window, to prevent cyclic Window structures. |
void CEGUI::Window::addChildWindow | ( | Window * | window | ) |
Add the specified Window as a child of this Window. If the Window window is already attached to a Window, it is detached before being added to this Window.
window | Pointer to the Window object to be added. |
InvalidRequestException | thrown if Window window is an ancestor of this Window, to prevent cyclic Window structures. |
|
protected |
Add the given window to the drawing list at an appropriate position for it's settings and the required direction. Basically, when at_back is false, the window will appear in front of all other windows with the same 'always on top' setting. When at_back is true, the window will appear behind all other windows wih the same 'always on top' setting.
wnd | Window object to be added to the drawing list. |
at_back | Indicates whether the window should be placed at the back of other windows in the same group. If this is false, the window is placed in front of other windows in the group. |
void CEGUI::Window::appendText | ( | const String & | text | ) |
|
protected |
Perform drawing operations concerned with generating and buffering window geometry.
bool CEGUI::Window::captureInput | ( | void | ) |
Captures input to this window.
void CEGUI::Window::deactivate | ( | void | ) |
Deactivate the window. No further inputs will be received by the window until it is re-activated either programmatically or by the user interacting with the gui.
|
virtual |
Internal destroy method which actually just adds the window and any parent destructed child windows to the dead pool.
This is virtual to allow for specialised cleanup which may be required in some advanced cases. If you override this for the above reason, you MUST call this base class version.
Reimplemented in CEGUI::ScrollablePane.
|
inline |
disable the Window to prevent interaction.
bool CEGUI::Window::distributesCapturedInputs | ( | void | ) | const |
|
protectedvirtual |
Perform the actual rendering for this Window.
ctx | RenderingContext holding the details of the RenderingSurface to be used for the Window rendering operations. |
Reimplemented in CEGUI::TabControl, CEGUI::ScrolledContainer, and CEGUI::ClippedContainer.
|
inline |
enable the Window to allow interaction.
Window* CEGUI::Window::getActiveChild | ( | void | ) |
return a pointer to the Window that currently has input focus starting with this Window.
Window* CEGUI::Window::getActiveSibling | ( | ) |
Returns the active sibling window.
This searches the immediate children of this window's parent, and returns a pointer to the active window. The method will return this if we are the immediate child of our parent that is active. If our parent is not active, or if no immediate child of our parent is active then 0 is returned. If this window has no parent, and this window is not active then 0 is returned, else this is returned.
|
inline |
return the current alpha value set for this Window
const URect& CEGUI::Window::getArea | ( | ) | const |
Return the windows area.
Returns the area occupied by this window. The defined area is offset from the top-left corner of this windows parent window or from the top-left corner of the display if this window has no parent (i.e. it is the root window).
float CEGUI::Window::getAutoRepeatDelay | ( | void | ) | const |
Return the current auto-repeat delay setting for this window.
float CEGUI::Window::getAutoRepeatRate | ( | void | ) | const |
Return the current auto-repeat rate setting for this window.
|
inlinestatic |
return a pointer to the child window with the specified name.
This function will throw an exception if no child object with the given name is attached. This decision was made (over returning NULL if no window was found) so that client code can assume that if the call returns it has a valid window pointer. We provide the isChild() functions for checking if a given window is attached.
name | String object holding the name of the child window for which a pointer is to be returned. |
UnknownObjectException | thrown if no window named name is attached to this Window. |
Window* CEGUI::Window::getChild | ( | uint | ID | ) | const |
return a pointer to the first attached child window with the specified ID value.
This function will throw an exception if no child object with the given ID is attached. This decision was made (over returning NULL if no window was found) so that client code can assume that if the call returns it has a valid window pointer. We provide the isChild() functions for checking if a given window is attached.
ID | uint value specifying the ID code of the window to return a pointer to. |
UnknownObjectException | thrown if no window with the ID code ID is attached to this Window. |
|
inline |
return a pointer to the child window that is attached to 'this' at the given index.
idx | Index of the child window whos pointer should be returned. This value is not bounds checked, client code should ensure that this is less than the value returned by getChildCount(). |
return the child Window that is hit by the given pixel position
position | Vector2 object describing the position to check. The position describes a pixel offset from the top-left corner of the display. |
|
inline |
return a pointer to the first attached child window with the specified name. Children are traversed recursively.
Contrary to the non recursive version of this function, this one will not throw an exception, but return 0 in case no child was found.
name | String object holding the name of the child window for which a pointer is to be returned. |
If no child is found with the name name, 0 is returned.
Window* CEGUI::Window::getChildRecursive | ( | uint | ID | ) | const |
return a pointer to the first attached child window with the specified ID value. Children are traversed recursively.
Contrary to the non recursive version of this function, this one will not throw an exception, but return 0 in case no child was found.
ID | uint value specifying the ID code of the window to return a pointer to. |
Rect CEGUI::Window::getChildWindowContentArea | ( | const bool | non_client = false | ) | const |
Return a Rect that describes the area that is used to position and - for scale values - size child content attached to this Window.
By and large the area returned here will be the same as the unclipped inner rect (for client content) or the unclipped outer rect (for non client content), although certain advanced uses will require alternative Rects to be returned.
non_client |
|
Rect CEGUI::Window::getClipRect | ( | const bool | non_client = false | ) | const |
Return a Rect that describes the rendering clipping rect for the Window.
This function can return the clipping rect for either the inner or outer area dependant upon the boolean values passed in.
non_client |
|
float CEGUI::Window::getEffectiveAlpha | ( | void | ) | const |
return the effective alpha value that will be used when rendering this window, taking into account inheritance of parent window(s) alpha.
EventSet::Iterator CEGUI::Window::getEventIterator | ( | ) | const |
Helper method that returns an EventSet::Iterator object that can be used to iterate over the events currently added to the EventSet of this Window.
Font* CEGUI::Window::getFont | ( | bool | useDefault = true | ) | const |
GeometryBuffer& CEGUI::Window::getGeometryBuffer | ( | ) |
Return the GeometryBuffer object for this Window.
UDim CEGUI::Window::getHeight | ( | ) | const |
Get the window's height.
Gets the height of the area occupied by this window.
Rect CEGUI::Window::getHitTestRect | ( | ) | const |
Return the Rect that descibes the clipped screen area that is used for determining whether this window has been hit by a certain point.
The area returned by this function may also be useful for certain calculations that require the clipped Window area as seen on the display as opposed to what is used for rendering (since the actual rendering clipper rects should not to be used if reliable results are desired).
|
inline |
Get the horizontal alignment.
Returns the horizontal alignment for the window. This setting affects how the windows position is interpreted relative to its parent.
|
inline |
Rect CEGUI::Window::getInnerRectClipper | ( | ) | const |
Return a Rect that describes the rendering clipping rect based upon the inner rect area of the window.
const String& CEGUI::Window::getLookNFeel | ( | ) | const |
Get the name of the LookNFeel assigned to this window.
const UVector2& CEGUI::Window::getMaxSize | ( | ) | const |
Get the window's maximum size.
Gets the maximum size that this windows area may occupy (whether size changes occur by user interaction, general system operation, or by direct setting by client code).
const UVector2& CEGUI::Window::getMinSize | ( | ) | const |
Get the window's minimum size.
Gets the minimum size that this windows area may occupy (whether size changes occur by user interaction, general system operation, or by direct setting by client code).
|
inline |
Get whether or not this Window is the modal target.
References CEGUI::System::getSingleton().
const Image* CEGUI::Window::getMouseCursor | ( | bool | useDefault = true | ) | const |
Return a pointer to the mouse cursor image to use when the mouse cursor is within this window's area.
useDefault | Sepcifies whether to return the default mouse cursor image if this window specifies no preferred mouse cursor image. |
|
inline |
Rect CEGUI::Window::getOuterRectClipper | ( | ) | const |
Return a Rect that describes the rendering clipping rect based upon the outer rect area of the window.
|
inline |
float CEGUI::Window::getParentPixelHeight | ( | void | ) | const |
Return the pixel Height of the parent element. This always returns a valid number.
Size CEGUI::Window::getParentPixelSize | ( | void | ) | const |
float CEGUI::Window::getParentPixelWidth | ( | void | ) | const |
Return the pixel Width of the parent element. This always returns a valid number.
|
inline |
Return the window size in pixels.
const UVector2& CEGUI::Window::getPosition | ( | ) | const |
Get the window's position.
Gets the position of the area occupied by this window. The position is offset from the top-left corner of this windows parent window or from the top-left corner of the display if this window has no parent (i.e. it is the root window).
PropertySet::Iterator CEGUI::Window::getPropertyIterator | ( | ) | const |
Helper method that returns a PropertySet::Iterator object that can be used to iterate over the events currently added to the PropertySet of this Window.
const Window* CEGUI::Window::getRootWindow | ( | ) | const |
Returns the window at the root of the hierarchy starting at this Window. The root window is defined as the first window back up the hierarchy that has no parent window.
UVector2 CEGUI::Window::getSize | ( | ) | const |
Get the window's size.
Gets the size of the area occupied by this window.
Window* CEGUI::Window::getTargetChildAtPosition | ( | const Vector2 & | position, |
const bool | allow_disabled = false |
||
) | const |
return the child Window that is 'hit' by the given position, and is allowed to handle mouse events.
position | Vector2 object describing the position to check. The position describes a pixel offset from the top-left corner of the display. |
allow_disabled |
|
|
inline |
Tooltip* CEGUI::Window::getTooltip | ( | void | ) | const |
const String& CEGUI::Window::getTooltipText | ( | void | ) | const |
String CEGUI::Window::getTooltipType | ( | void | ) | const |
Return the custom tooltip type.
const String& CEGUI::Window::getType | ( | void | ) | const |
|
virtual |
Return a Rect object that describes, unclipped, the inner rectangle for this window. The inner rectangle is typically an area that excludes some frame or other rendering that should not be touched by subsequent rendering.
Reimplemented in CEGUI::ScrolledContainer, CEGUI::ClippedContainer, and CEGUI::LayoutContainer.
Rect CEGUI::Window::getUnclippedRect | ( | const bool | inner | ) | const |
WindowUpdateMode CEGUI::Window::getUpdateMode | ( | ) | const |
Return the current window update mode that is set for this Window. This mode controls the behaviour of the Window::update member function such that updates are processed for this window (and therefore it's child content) according to the set mode.
|
inline |
Return the user data set for this Window.
Each Window can have some client assigned data attached to it, this data is not used by the GUI system in any way. Interpretation of the data is entirely application specific.
Returns a named user string.
name | String object holding the name of the string to be returned. |
UnknownObjectException | thrown if a user string named name does not exist. |
|
inline |
Get the vertical alignment.
Returns the vertical alignment for the window. This setting affects how the windows position is interpreted relative to its parent.
UDim CEGUI::Window::getWidth | ( | ) | const |
Get the window's width.
Gets the width of the area occupied by this window.
WindowRenderer* CEGUI::Window::getWindowRenderer | ( | void | ) | const |
Get the currently assigned WindowRenderer. (Look'N'Feel specification).
String CEGUI::Window::getWindowRendererName | ( | void | ) | const |
Get the factory name of the currently assigned WindowRenderer. (Look'N'Feel specification).
const UDim& CEGUI::Window::getXPosition | ( | ) | const |
Get the window's X position.
Gets the x position (left edge) of the area occupied by this window. The position is offset from the left edge of this windows parent window or from the left edge of the display if this window has no parent (i.e. it is the root window).
const UDim& CEGUI::Window::getYPosition | ( | ) | const |
Get the window's Y position.
Gets the y position (top edge) of the area occupied by this window. The position is offset from the top edge of this windows parent window or from the top edge of the display if this window has no parent (i.e. it is the root window).
size_t CEGUI::Window::getZIndex | ( | ) | const |
Return the (visual) z index of the window on it's parent.
The z index is a number that indicates the order that windows will be drawn (but is not a 'z co-ordinate', as such). Higher numbers are in front of lower numbers.
The number returned will not be stable, and generally should be used to compare with the z index of sibling windows (and only sibling windows) to discover the current z ordering of those windows.
|
inline |
hide the Window.
|
inline |
bool CEGUI::Window::inheritsTooltipText | ( | void | ) | const |
Return whether this window inherits Tooltip text from its parent when its own tooltip text is not set.
|
inlinevirtual |
Initialises the Window based object ready for use.
Reimplemented in CEGUI::MultiColumnList, CEGUI::Combobox, CEGUI::ScrollablePane, CEGUI::MultiLineEditbox, CEGUI::Listbox, CEGUI::Scrollbar, CEGUI::TabControl, CEGUI::ItemListBase, CEGUI::Slider, CEGUI::ScrolledItemListBase, CEGUI::ItemListbox, CEGUI::Spinner, CEGUI::FrameWindow, and CEGUI::ComboDropList.
void CEGUI::Window::insertText | ( | const String & | text, |
const String::size_type | position | ||
) |
Insert the text string text into the current text string for the Window object at the position specified by position.
void CEGUI::Window::invalidate | ( | void | ) |
Invalidate this window causing at least this window to be redrawn during the next rendering pass.
void CEGUI::Window::invalidate | ( | const bool | recursive | ) |
Invalidate this window and - dependant upon recursive - all child content, causing affected windows to be redrawn during the next rendering pass.
recursive | Boolean value indicating whether attached child content should also be invalidated.
|
bool CEGUI::Window::isActive | ( | void | ) | const |
return true if this is the active Window. An active window is a window that may receive user inputs.
Mouse events are always sent to the window containing the mouse cursor regardless of what this function reports (unless a window has captured inputs). The active state mainly determines where send other, for example keyboard, inputs.
|
inline |
bool CEGUI::Window::isAncestor | ( | const String & | name | ) | const |
bool CEGUI::Window::isAncestor | ( | uint | ID | ) | const |
bool CEGUI::Window::isAncestor | ( | const Window * | window | ) | const |
bool CEGUI::Window::isBehind | ( | const Window & | wnd | ) | const |
Return whether /a this Window is behind the given window.
|
inline |
|
inline |
|
inline |
bool CEGUI::Window::isChild | ( | const String & | name | ) | const |
bool CEGUI::Window::isChild | ( | uint | ID | ) | const |
returns whether at least one window with the given ID code is attached to this Window as a child.
ID | uint ID code to look for. |
bool CEGUI::Window::isChild | ( | const Window * | window | ) | const |
bool CEGUI::Window::isChildRecursive | ( | uint | ID | ) | const |
returns whether at least one window with the given ID code is attached to this Window or any of it's children as a child.
WARNING! This function can be very expensive and should only be used when you have no other option available. If you decide to use it anyway, make sure the window hierarchy from the entry point is small.
ID | uint ID code to look for. |
|
inline |
|
inline |
bool CEGUI::Window::isDisabled | ( | bool | localOnly = false | ) | const |
return whether the Window is currently disabled
localOnly | States whether to only return the state set for this window, and not to factor in inherited state from ancestor windows. |
bool CEGUI::Window::isDragDropTarget | ( | ) | const |
|
virtual |
check if the given pixel position would hit this window.
position | Vector2 object describing the position to check. The position describes a pixel offset from the top-left corner of the display. |
allow_disabled |
|
Reimplemented in CEGUI::FrameWindow, and CEGUI::Combobox.
Referenced by CEGUI::FrameWindow::isHit().
bool CEGUI::Window::isInFront | ( | const Window & | wnd | ) | const |
Return whether /a this Window is in front of the given window.
bool CEGUI::Window::isMouseAutoRepeatEnabled | ( | void | ) | const |
Return whether mouse button down event autorepeat is enabled for this window.
bool CEGUI::Window::isMouseInputPropagationEnabled | ( | ) | const |
|
inline |
Returns whether this window should ignore mouse event and pass them through to and other windows behind it. In effect making the window transparent to the mouse.
bool CEGUI::Window::isNonClientWindow | ( | ) | const |
Return whether the Window is a non-client window.
A non-client window is clipped, positioned and sized according to the parent window's full area as opposed to just the inner rect area used for normal client windows.
|
inline |
Return whether this window will rise to the top of the z-order when clicked with the left mouse button.
|
protected |
Return whether the window is at the top of the Z-Order. This will correctly take into account 'Always on top' windows as needed.
bool CEGUI::Window::isUserStringDefined | ( | const String & | name | ) | const |
Return whether a user string with the specified name exists.
name | String object holding the name of the string to be checked. |
bool CEGUI::Window::isUsingAutoRenderingSurface | ( | ) | const |
Returns whether automatic use of an imagery caching RenderingSurface (i.e. a RenderingWindow) is enabled for this window. The reason we emphasise 'automatic' is because the client may manually set a RenderingSurface that does exactly the same job.
bool CEGUI::Window::isUsingDefaultTooltip | ( | void | ) | const |
bool CEGUI::Window::isVisible | ( | bool | localOnly = false | ) | const |
return true if the Window is currently visible.
When true is returned from this function does not mean that the window is not completely obscured by other windows, just that the window will be processed when rendering, and is not explicitly marked as hidden.
localOnly | States whether to only return the state set for this window, and not to factor in inherited state from ancestor windows. |
bool CEGUI::Window::isZOrderingEnabled | ( | void | ) | const |
Return whether z-order changes are enabled or disabled for this Window.
void CEGUI::Window::moveBehind | ( | const Window *const | window | ) |
Move this window immediately behind it's sibling window in the z order.
No action will be taken under the following conditions: - \a window is 0. - \a window is not a sibling of this window. - \a window and this window have different AlwaysOnTop settings. - z ordering is disabled for this window.
window | The sibling window that this window will be moved behind. |
void CEGUI::Window::moveInFront | ( | const Window *const | window | ) |
Move this window immediately above it's sibling window in the z order.
No action will be taken under the following conditions: - \a window is 0. - \a window is not a sibling of this window. - \a window and this window have different AlwaysOnTop settings. - z ordering is disabled for this window.
window | The sibling window that this window will be moved in front of. |
void CEGUI::Window::moveToBack | ( | ) |
Move the Window to the bottom of the Z order.
- If the window is non always-on-top the Window is sent to the very bottom of its sibling windows and the process repeated for all ancestors. - If the window is always-on-top, the Window is sent to the bottom of all sibling always-on-top windows and the process repeated for all ancestors.
void CEGUI::Window::moveToFront | ( | ) |
Move the Window to the top of the z order.
- If the Window is a non always-on-top window it is moved the the top of all other non always-on-top sibling windows, and the process repeated for all ancestors. - If the Window is an always-on-top window it is moved to the of of all sibling Windows, and the process repeated for all ancestors.
|
protectedvirtual |
Implements move to front behavior.
Reimplemented in CEGUI::GUISheet.
void CEGUI::Window::notifyScreenAreaChanged | ( | bool | recursive = true | ) |
|
protectedvirtual |
Handler called when this window has become the active window.
e | ActivationEventArgs class whose 'otherWindow' field is set to the window that previously was active, or NULL for none. |
Reimplemented in CEGUI::Combobox, CEGUI::FrameWindow, CEGUI::Spinner, and CEGUI::ComboDropList.
|
protectedvirtual |
Handler called when the window's alpha blend value is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented in CEGUI::DragContainer, and CEGUI::PopupMenu.
|
protectedvirtual |
Handler called when the window's always-on-top setting is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when this window gains capture of mouse inputs.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when this window loses capture of mouse inputs.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented in CEGUI::MultiLineEditbox, CEGUI::FrameWindow, CEGUI::Editbox, CEGUI::ListHeaderSegment, CEGUI::DragContainer, CEGUI::Thumb, CEGUI::MenuItem, CEGUI::ComboDropList, CEGUI::Titlebar, and CEGUI::ButtonBase.
|
protectedvirtual |
Handler called when a character-key has been pressed while this window has input focus.
e | KeyEventArgs object whose 'codepoint' field is set to the Unicode code point (encoded as utf32) for the character typed, and whose 'sysKeys' field represents the combination of SystemKey that were active when the event was generated. All other fields should be considered as 'junk'. |
Reimplemented in CEGUI::MultiLineEditbox, and CEGUI::Editbox.
|
protectedvirtual |
Handler called when a child window is added to this window.
e | WindowEventArgs object whose 'window' pointer field is set to the window that has been added. |
Reimplemented in CEGUI::ScrolledContainer.
|
protectedvirtual |
Handler called when a child window is removed from this window.
e | WindowEventArgs object whose 'window' pointer field is set the window that has been removed. |
Reimplemented in CEGUI::MenuBase, and CEGUI::ScrolledContainer.
|
protectedvirtual |
Handler called when the window's setting for being clipped by it's parent is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented in CEGUI::DragContainer.
|
protectedvirtual |
Handler called when this window has lost input focus and has been deactivated.
e | ActivationEventArgs object whose 'otherWindow' field is set to the window that has now become active, or NULL for none. |
Reimplemented in CEGUI::FrameWindow.
|
protectedvirtual |
Handler called when this window's destruction sequence has begun.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented in CEGUI::PopupMenu.
|
protectedvirtual |
Handler called when the window is disabled.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when a DragContainer is dragged over this window.
e | DragDropEventArgs object initialised as follows:
|
|
protectedvirtual |
Handler called when a DragContainer is dragged over this window.
e | DragDropEventArgs object initialised as follows:
|
|
protectedvirtual |
Handler called when a DragContainer is dragged over this window.
e | DragDropEventArgs object initialised as follows:
|
|
protectedvirtual |
Handler called when the window is enabled.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when the window's font is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented in CEGUI::MultiColumnList, CEGUI::Combobox, CEGUI::TabControl, CEGUI::Spinner, and CEGUI::Titlebar.
|
protectedvirtual |
Handler called when the window is hidden.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented in CEGUI::PopupMenu, and CEGUI::MenuBase.
|
protectedvirtual |
Handler called when the horizontal alignment setting for the window is changed.
e | WindowEventArgs object initialised as follows:
|
|
protectedvirtual |
Handler called when the window's client assigned ID is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when the window's setting for inheriting alpha-blending is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when a key as been depressed while this window has input focus.
e | KeyEventArgs object whose 'scancode' field is set to the Key::Scan value representing the key that was pressed, and whose 'sysKeys' field represents the combination of SystemKey that were active when the event was generated. |
Reimplemented in CEGUI::MultiLineEditbox, CEGUI::Editbox, and CEGUI::ItemListbox.
|
protectedvirtual |
Handler called when a key as been released while this window has input focus.
e | KeyEventArgs object whose 'scancode' field is set to the Key::Scan value representing the key that was released, and whose 'sysKeys' field represents the combination of SystemKey that were active when the event was generated. All other fields should be considered as 'junk'. |
|
protectedvirtual |
Handler called when a mouse button has been depressed within this window's area.
e | MouseEventArgs object. All fields are valid. |
Reimplemented in CEGUI::MultiColumnList, CEGUI::Tree, CEGUI::Listbox, CEGUI::MultiLineEditbox, CEGUI::FrameWindow, CEGUI::Scrollbar, CEGUI::Editbox, CEGUI::ListHeaderSegment, CEGUI::DragContainer, CEGUI::Slider, CEGUI::Thumb, CEGUI::MenuItem, CEGUI::PopupMenu, CEGUI::ComboDropList, CEGUI::TabButton, CEGUI::GUISheet, CEGUI::ButtonBase, and CEGUI::Titlebar.
|
protectedvirtual |
Handler called when a mouse button has been released within this window's area.
e | MouseEventArgs object. All fields are valid. |
Reimplemented in CEGUI::MultiLineEditbox, CEGUI::FrameWindow, CEGUI::Editbox, CEGUI::ListHeaderSegment, CEGUI::DragContainer, CEGUI::MenuItem, CEGUI::PopupMenu, CEGUI::ComboDropList, CEGUI::RadioButton, CEGUI::TabButton, CEGUI::Checkbox, CEGUI::GUISheet, CEGUI::ButtonBase, CEGUI::Titlebar, and CEGUI::PushButton.
|
protectedvirtual |
Handler called when a mouse button has been clicked (that is depressed and then released, within a specified time) within this window's area.
e | MouseEventArgs object. All fields are valid. |
Reimplemented in CEGUI::ItemEntry, and CEGUI::GUISheet.
|
protectedvirtual |
Handler called when a mouse button has been double-clicked within this window's area.
e | MouseEventArgs object. All fields are valid. |
Reimplemented in CEGUI::MultiLineEditbox, CEGUI::Editbox, CEGUI::ListHeaderSegment, CEGUI::GUISheet, and CEGUI::Titlebar.
|
protectedvirtual |
Handler called when the mouse cursor has entered this window's area and is actually over some part of this windows surface and not, for instance over a child window - even though technically in those cases the mouse is also within this Window's area, the handler will not be called.
e | MouseEventArgs object. All fields are valid. |
Reimplemented in CEGUI::Tooltip.
|
protectedvirtual |
Handler called when the mouse cursor has entered this window's area.
e | MouseEventArgs object. All fields are valid. |
|
protectedvirtual |
Handler called when the mouse cursor is no longer over this window's surface area. This will be called when the mouse is not over a part of this Window's actual surface - even though technically the mouse is still within the Window's area, for example if the mouse moves over a child window.
e | MouseEventArgs object. All fields are valid. |
Reimplemented in CEGUI::ListHeaderSegment, CEGUI::MenuItem, and CEGUI::ButtonBase.
|
protectedvirtual |
Handler called when the mouse cursor has left this window's area.
e | MouseEventArgs object. All fields are valid. |
|
protectedvirtual |
Handler called when the mouse cursor has been moved within this window's area.
e | MouseEventArgs object. All fields are valid. |
Reimplemented in CEGUI::Tree, CEGUI::Listbox, CEGUI::MultiLineEditbox, CEGUI::FrameWindow, CEGUI::Editbox, CEGUI::ListHeaderSegment, CEGUI::DragContainer, CEGUI::Thumb, CEGUI::MenuItem, CEGUI::ComboDropList, CEGUI::TabButton, CEGUI::ButtonBase, CEGUI::GUISheet, and CEGUI::Titlebar.
|
protectedvirtual |
Handler called when a mouse button has been triple-clicked within this window's area.
e | MouseEventArgs object. All fields are valid. |
Reimplemented in CEGUI::MultiLineEditbox, CEGUI::Editbox, and CEGUI::GUISheet.
|
protectedvirtual |
Handler called when the mouse wheel (z-axis) position changes within this window's area.
e | MouseEventArgs object. All fields are valid. |
Reimplemented in CEGUI::MultiColumnList, CEGUI::Tree, CEGUI::Listbox, CEGUI::MultiLineEditbox, CEGUI::Scrollbar, CEGUI::ScrollablePane, CEGUI::Slider, CEGUI::ScrolledItemListBase, CEGUI::TabButton, and CEGUI::GUISheet.
|
protectedvirtual |
Handler called when the window's position changes.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented in CEGUI::DragContainer.
|
protectedvirtual |
Handler called when the window's non-client setting, affecting it's position and size relative to it's parent is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when the window's setting for being destroyed automatically be it's parent is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when this window's parent window has been resized. If this window is the root / GUI Sheet window, this call will be made when the display size changes.
e | WindowEventArgs object whose 'window' pointer field is set the the window that caused the event; this is typically either this window's parent window, or NULL to indicate the screen size has changed. |
Reimplemented in CEGUI::ItemListBase, and CEGUI::ScrolledContainer.
|
protectedvirtual |
Handler called when rendering for this window has ended.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when rendering for this window has started.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when the window's rotation factor is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when the window is shown (made visible).
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented in CEGUI::PopupMenu.
|
protectedvirtual |
Handler called when the window's size changes.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented in CEGUI::MultiColumnList, CEGUI::Tree, CEGUI::Listbox, CEGUI::MultiLineEditbox, and CEGUI::ScrollablePane.
|
protectedvirtual |
Handler called when the window's text is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
Reimplemented in CEGUI::Combobox, CEGUI::MultiLineEditbox, CEGUI::FrameWindow, CEGUI::Editbox, CEGUI::Tooltip, CEGUI::Spinner, and CEGUI::MenuItem.
|
protectedvirtual |
Handler called when the window's setting for whether text parsing is enabled is changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
protectedvirtual |
Handler called when the vertical alignment setting for the window is changed.
e | WindowEventArgs object initialised as follows:
|
|
protectedvirtual |
Handler called when a new window renderer object is attached.
e | WindowEventArgs object initialised as follows:
|
|
protectedvirtual |
Handler called when the currently attached window renderer object is detached.
e | WindowEventArgs object initialised as follows:
|
|
protectedvirtual |
Handler called when the z-order position of this window has changed.
e | WindowEventArgs object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. |
|
virtual |
method called to perform extended laying out of attached child windows.
The system may call this at various times (like when it is resized for example), and it may be invoked directly where required.
Reimplemented in CEGUI::TabControl, and CEGUI::ItemListBase.
|
inlineprotectedvirtual |
Update the rendering cache.
Populates the Window's GeometryBuffer ready for rendering.
Reimplemented in CEGUI::Tree.
|
protected |
Perform drawing operations concerned with positioning, clipping and queueing of window geometry to RenderingSurfaces.
void CEGUI::Window::releaseInput | ( | void | ) |
void CEGUI::Window::removeChildWindow | ( | const String & | name | ) |
void CEGUI::Window::removeChildWindow | ( | Window * | window | ) |
void CEGUI::Window::removeChildWindow | ( | uint | ID | ) |
Remove the first child Window with the specified ID. If there is more than one attached Window objects with the specified ID, only the fist one encountered will be removed.
ID | ID number assigned to the Window to be removed. If no Window with ID code ID is attached, nothing happens. |
|
protected |
Removes the window from the drawing list. If the window is not attached to the drawing list then nothing happens.
wnd | Window object to be removed from the drawing list. |
void CEGUI::Window::rename | ( | const String & | new_name | ) |
Renames the window.
new_name | String object holding the new name for the window. |
AlreadyExistsException | thrown if a Window named new_name already exists in the system. |
void CEGUI::Window::render | ( | ) |
Causes the Window object to render itself and all of it's attached children.
|
inline |
Return whether this window is set to restore old input capture when it loses input capture.
This is only really useful for certain sub-components for widget writers.
void CEGUI::Window::setAlpha | ( | float | alpha | ) |
Set the current alpha value for this window.
alpha | The new alpha value for the window. Value should be between 0.0f and 1.0f. |
void CEGUI::Window::setAlwaysOnTop | ( | bool | setting | ) |
Set whether this window is always on top, or not.
setting |
|
void CEGUI::Window::setArea | ( | const UDim & | xpos, |
const UDim & | ypos, | ||
const UDim & | width, | ||
const UDim & | height | ||
) |
Set the window area.
Sets the area occupied by this window. The defined area is offset from the top-left corner of this windows parent window or from the top-left corner of the display if this window has no parent (i.e. it is the root window).
Set the window area.
Sets the area occupied by this window. The defined area is offset from the top-left corner of this windows parent window or from the top-left corner of the display if this window has no parent (i.e. it is the root window).
void CEGUI::Window::setArea | ( | const URect & | area | ) |
Set the window area.
Sets the area occupied by this window. The defined area is offset from the top-left corner of this windows parent window or from the top-left corner of the display if this window has no parent (i.e. it is the root window).
area | URect describing the new area rectangle of the window area. |
|
protected |
Implementation method to modify window area while correctly applying min / max size processing, and firing any appropriate events.
/note This is the implementation function for setting size and position. In order to simplify area management, from this point on, all modifications to window size and position (area rect) should come through here.
/param pos UVector2 object describing the new area position.
/param size UVector2 object describing the new area size.
/param topLeftSizing
/param fireEvents
void CEGUI::Window::setAutoRepeatDelay | ( | float | delay | ) |
Set the current auto-repeat delay setting for this window.
delay | float value indicating the delay, in seconds, defore the first repeat mouse button down event should be triggered when autorepeat is enabled. |
void CEGUI::Window::setAutoRepeatRate | ( | float | rate | ) |
Set the current auto-repeat rate setting for this window.
rate | float value indicating the rate, in seconds, at which repeat mouse button down events should be generated after the initial delay has expired. |
void CEGUI::Window::setClippedByParent | ( | bool | setting | ) |
void CEGUI::Window::setDestroyedByParent | ( | bool | setting | ) |
void CEGUI::Window::setDistributesCapturedInputs | ( | bool | setting | ) |
void CEGUI::Window::setDragDropTarget | ( | bool | setting | ) |
void CEGUI::Window::setEnabled | ( | bool | setting | ) |
Changes the widget's falagard type, thus changing its look'n'feel and optionally its renderer in the process.
type | New look'n'feel of the widget |
type | New renderer of the widget |
void CEGUI::Window::setFont | ( | Font * | font | ) |
void CEGUI::Window::setFont | ( | const String & | name | ) |
void CEGUI::Window::setHeight | ( | const UDim & | height | ) |
Set the window's height.
Sets the height of the area occupied by this window.
height | UDim describing the new height of the window area. |
void CEGUI::Window::setHorizontalAlignment | ( | const HorizontalAlignment | alignment | ) |
Set the horizontal alignment.
Modifies the horizontal alignment for the window. This setting affects how the windows position is interpreted relative to its parent.
alignment | One of the HorizontalAlignment enumerated values. |
void CEGUI::Window::setID | ( | uint | ID | ) |
void CEGUI::Window::setInheritsAlpha | ( | bool | setting | ) |
void CEGUI::Window::setInheritsTooltipText | ( | bool | setting | ) |
Set whether this window inherits Tooltip text from its parent when its own tooltip text is not set.
setting |
|
|
virtual |
Set the LookNFeel that shoule be used for this window.
look | String object holding the name of the look to be assigned to the window. |
UnknownObjectException | thrown if the look'n'feel specified by look does not exist. |
Reimplemented in CEGUI::Tree.
void CEGUI::Window::setMaxSize | ( | const UVector2 & | size | ) |
Set the window's maximum size.
Sets the maximum size that this windows area may occupy (whether size changes occur by user interaction, general system operation, or by direct setting by client code).
size | UVector2 describing the new maximum size of the window area. |
void CEGUI::Window::setMinSize | ( | const UVector2 & | size | ) |
Set the window's minimum size.
Sets the minimum size that this windows area may occupy (whether size changes occur by user interaction, general system operation, or by direct setting by client code).
size | UVector2 describing the new minimum size of the window area. |
void CEGUI::Window::setModalState | ( | bool | state | ) |
void CEGUI::Window::setMouseAutoRepeatEnabled | ( | bool | setting | ) |
Set whether mouse button down event autorepeat is enabled for this window.
setting |
|
void CEGUI::Window::setMouseCursor | ( | const Image * | image | ) |
void CEGUI::Window::setMouseCursor | ( | MouseCursorImage | image | ) |
Set the mouse cursor image to be used when the mouse enters this window.
image | One of the MouseCursorImage enumerated values. |
Set the mouse cursor image to be used when the mouse enters this window.
imageset | String object that contains the name of the Imageset that contains the image to be used. |
image_name | String object that contains the name of the Image on imageset that is to be used. |
UnknownObjectException | thrown if imageset is not known, or if imageset contains no Image named image_name. |
void CEGUI::Window::setMouseInputPropagationEnabled | ( | const bool | enabled | ) |
|
inline |
Sets whether this window should ignore mouse events and pass them through to any windows behind it. In effect making the window transparent to the mouse.
setting | true if mouse pass through is enabled. false if mouse pass through is not enabled. |
void CEGUI::Window::setNonClientWindow | ( | const bool | setting | ) |
Set whether the Window is a non-client window.
A non-client window is clipped, positioned and sized according to the parent window's full area as opposed to just the inner rect area used for normal client windows.
setting |
|
|
protected |
void CEGUI::Window::setPosition | ( | const UVector2 & | pos | ) |
Set the window's position.
Sets the position of the area occupied by this window. The position is offset from the top-left corner of this windows parent window or from the top-left corner of the display if this window has no parent (i.e. it is the root window).
pos | UVector2 describing the new position (top-left corner) of the window area. |
void CEGUI::Window::setRenderingSurface | ( | RenderingSurface * | surface | ) |
Set the RenderingSurface to be associated with this Window, or 0 if none is required.
target | Pointer to the RenderingSurface object to be associated with the window. |
void CEGUI::Window::setRestoreCapture | ( | bool | setting | ) |
Set whether this window will remember and restore the previous window that had inputs captured.
setting |
|
|
inline |
Set whether this window will rise to the top of the z-order when clicked with the left mouse button.
setting |
|
void CEGUI::Window::setSize | ( | const UVector2 & | size | ) |
Set the window's size.
Sets the size of the area occupied by this window.
size | UVector2 describing the new size of the window area. |
void CEGUI::Window::setText | ( | const String & | text | ) |
void CEGUI::Window::setTooltip | ( | Tooltip * | tooltip | ) |
Set the custom Tooltip object for this Window. This value may be 0 to indicate that the Window should use the system default Tooltip object.
tooltip | Pointer to a valid Tooltip based object which should be used as the tooltip for this Window, or 0 to indicate that the Window should use the system default Tooltip object. Note that when passing a pointer to a Tooltip object, ownership of the Tooltip does not pass to this Window object. |
void CEGUI::Window::setTooltipText | ( | const String & | tip | ) |
void CEGUI::Window::setTooltipType | ( | const String & | tooltipType | ) |
Set the custom Tooltip to be used by this Window by specifying a Window type.
The Window will internally attempt to create an instance of the specified window type (which must be derived from the base Tooltip class). If the Tooltip creation fails, the error is logged and the Window will revert to using either the existing custom Tooltip or the system default Tooltip.
tooltipType | String object holding the name of the Tooltip based Window type which should be used as the Tooltip for this Window. |
void CEGUI::Window::setUpdateMode | ( | const WindowUpdateMode | mode | ) |
Set the window update mode. This mode controls the behaviour of the Window::update member function such that updates are processed for this window (and therefore it's child content) according to the set mode.
mode | One of the WindowUpdateMode enumerated values indicating the mode to set for this Window. |
|
inline |
Set the user data set for this Window.
Each Window can have some client assigned data attached to it, this data is not used by the GUI system in any way. Interpretation of the data is entirely application specific.
user_data | pointer to the user data that is to be set for this window. |
void CEGUI::Window::setUsingAutoRenderingSurface | ( | bool | setting | ) |
Sets whether automatic use of an imagery caching RenderingSurface (i.e. a RenderingWindow) is enabled for this window. The reason we emphasise 'atutomatic' is because the client may manually set a RenderingSurface that does exactlythe same job.
setting |
|
void CEGUI::Window::setVerticalAlignment | ( | const VerticalAlignment | alignment | ) |
Set the vertical alignment.
Modifies the vertical alignment for the window. This setting affects how the windows position is interpreted relative to its parent.
alignment | One of the VerticalAlignment enumerated values. |
void CEGUI::Window::setVisible | ( | bool | setting | ) |
Set whether the Window is visible or hidden.
void CEGUI::Window::setWantsMultiClickEvents | ( | bool | setting | ) |
Set whether this window will receive multi-click events or multiple 'down' events instead.
setting |
void CEGUI::Window::setWidth | ( | const UDim & | width | ) |
Set the window's width.
Sets the width of the area occupied by this window.
width | UDim describing the new width of the window area. |
void CEGUI::Window::setWindowRenderer | ( | const String & | name | ) |
Assign the WindowRenderer to specify the Look'N'Feel specification to be used.
name | The factory name of the WindowRenderer to use. |
void CEGUI::Window::setXPosition | ( | const UDim & | x | ) |
Set the window's X position.
Sets the x position (left edge) of the area occupied by this window. The position is offset from the left edge of this windows parent window or from the left edge of the display if this window has no parent (i.e. it is the root window).
x | UDim describing the new x position of the window area. |
void CEGUI::Window::setYPosition | ( | const UDim & | y | ) |
Set the window's Y position.
Sets the y position (top edge) of the area occupied by this window. The position is offset from the top edge of this windows parent window or from the top edge of the display if this window has no parent (i.e. it is the root window).
y | UDim describing the new y position of the window area. |
void CEGUI::Window::setZOrderingEnabled | ( | bool | setting | ) |
Set whether z-order changes are enabled or disabled for this Window.
setting |
|
|
inline |
show the Window.
|
inline |
Return whether this window was inherited from the given class name at some point in the inheritance hierarchy.
class_name | The class name that is to be checked. |
|
inlineprotectedvirtual |
Return whether this window was inherited from the given class name at some point in the inheritance hierarchy.
class_name | The class name that is to be checked. |
Reimplemented in CEGUI::MultiColumnList, CEGUI::Combobox, CEGUI::ListHeader, CEGUI::Tree, CEGUI::Listbox, CEGUI::FrameWindow, CEGUI::MultiLineEditbox, CEGUI::Scrollbar, CEGUI::ItemListBase, CEGUI::Editbox, CEGUI::ScrollablePane, CEGUI::DragContainer, CEGUI::TabControl, CEGUI::ListHeaderSegment, CEGUI::Slider, CEGUI::GridLayoutContainer, CEGUI::MenuItem, CEGUI::Tooltip, CEGUI::Spinner, CEGUI::Thumb, CEGUI::ItemListbox, CEGUI::MenuBase, CEGUI::ItemEntry, CEGUI::PopupMenu, CEGUI::SequentialLayoutContainer, CEGUI::ProgressBar, CEGUI::ScrolledItemListBase, CEGUI::ComboDropList, CEGUI::RadioButton, CEGUI::ScrolledContainer, CEGUI::TabButton, CEGUI::Checkbox, CEGUI::Titlebar, CEGUI::ButtonBase, CEGUI::ClippedContainer, CEGUI::LayoutContainer, CEGUI::PushButton, CEGUI::Menubar, CEGUI::GroupBox, CEGUI::GUISheet, CEGUI::HorizontalLayoutContainer, and CEGUI::VerticalLayoutContainer.
Referenced by CEGUI::GUISheet::testClassName_impl(), CEGUI::GroupBox::testClassName_impl(), CEGUI::LayoutContainer::testClassName_impl(), CEGUI::ClippedContainer::testClassName_impl(), CEGUI::ButtonBase::testClassName_impl(), CEGUI::Titlebar::testClassName_impl(), CEGUI::ScrolledContainer::testClassName_impl(), CEGUI::ProgressBar::testClassName_impl(), CEGUI::ItemEntry::testClassName_impl(), CEGUI::Spinner::testClassName_impl(), CEGUI::Tooltip::testClassName_impl(), CEGUI::Slider::testClassName_impl(), CEGUI::ListHeaderSegment::testClassName_impl(), CEGUI::TabControl::testClassName_impl(), CEGUI::DragContainer::testClassName_impl(), CEGUI::ScrollablePane::testClassName_impl(), CEGUI::Editbox::testClassName_impl(), CEGUI::ItemListBase::testClassName_impl(), CEGUI::Scrollbar::testClassName_impl(), CEGUI::MultiLineEditbox::testClassName_impl(), CEGUI::FrameWindow::testClassName_impl(), CEGUI::Listbox::testClassName_impl(), CEGUI::Tree::testClassName_impl(), CEGUI::ListHeader::testClassName_impl(), CEGUI::Combobox::testClassName_impl(), and CEGUI::MultiColumnList::testClassName_impl().
|
virtual |
Cause window to update itself and any attached children. Client code does not need to call this method; to ensure full, and proper updates, call the injectTimePulse methodname method provided by the System class.
elapsed | float value indicating the number of seconds passed since the last update. |
Reimplemented in CEGUI::LayoutContainer.
|
protectedvirtual |
Perform actual update processing for this Window.
elapsed | float value indicating the number of seconds elapsed since the last update call. |
Reimplemented in CEGUI::Tooltip, CEGUI::MenuItem, and CEGUI::PopupMenu.
|
protectedvirtual |
Function used in checking if a WindowRenderer is valid for this window.
Reimplemented in CEGUI::MultiColumnList, CEGUI::ListHeader, CEGUI::Listbox, CEGUI::MultiLineEditbox, CEGUI::Scrollbar, CEGUI::ItemListBase, CEGUI::ScrollablePane, CEGUI::Editbox, CEGUI::TabControl, CEGUI::Slider, CEGUI::Tooltip, and CEGUI::ItemEntry.
bool CEGUI::Window::wantsMultiClickEvents | ( | void | ) | const |
|
virtual |
Writes an xml representation of this window object to out_stream.
xml_stream | Stream where xml data should be output. |
|
static |
Event fired when the Window has been activated and has input focus. Handlers are passed a const ActivationEventArgs reference with WindowEventArgs::window set to the Window that is gaining activation and ActivationEventArgs::otherWindow set to the Window that is losing activation (may be 0).
|
static |
Event fired when the Alpha blend value for the Window has changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose alpha value was changed.
|
static |
Event fired when the always on top setting for the Window is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose always on top setting was changed.
|
static |
Event fired when the Window receives a character key input event. Handlers are passed a const KeyEventArgs reference with WindowEventArgs::window set to the Window receiving the character input, KeyEventArgs::codepoint set to the Unicode UTF32 / UCS-4 value for the input, and KeyEventArgs::sysKeys set to the combination of SystemKey values active when the character input was received.
|
static |
Event fired when a child Window has been added. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the child window that was added.
|
static |
Event fired when a child window has been removed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the child window that was removed.
|
static |
Event fired when the Window clipping mode is modified. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose clipping mode was changed.
|
static |
Event fired when the Window has been deactivated, losing input focus. Handlers are passed a const ActivationEventArgs reference with WindowEventArgs::window set to the Window that is losing activation and ActivationEventArgs::otherWindow set to the Window that is gaining activation (may be 0).
|
static |
Event fired when the Window destruction mode is modified. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose destruction mode was changed.
|
static |
Event fired when destruction of the Window is about to begin. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window that is about to be destroyed.
|
static |
Event fired when the Window is disabled and interaction is no longer possible. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window that was disabled.
|
static |
Event fired when a DragContainer is dropped within the window's area. Handlers are passed a const DragDropEventArgs reference with WindowEventArgs::window set to the window over which a DragContainer was dropped (the receiving window) and DragDropEventArgs::dragDropItem set to the DragContainer that was dropped within the receiving window's area.
|
static |
Event fired when a DragContainer is dragged in to the window's area. Handlers are passed a const DragDropEventArgs reference with WindowEventArgs::window set to the window over which a DragContainer has been dragged (the receiving window) and DragDropEventArgs::dragDropItem set to the DragContainer that was dragged in to the receiving window's area.
|
static |
Event fired when a DragContainer is dragged out of the window's area. Handlers are passed a const DragDropEventArgs reference with WindowEventArgs::window set to the window over which a DragContainer has been dragged out of (the receiving window) and DragDropEventArgs::dragDropItem set to the DragContainer that was dragged out of the receiving window's area.
|
static |
Event fired when the Window is enabled so interaction is possible. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window that was enabled.
|
static |
Event fired when the Font object for the Window has been changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose font was changed.
|
static |
Event fired when the Window is made hidden. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window that was hidden.
|
static |
Event fired when the horizontal alignment for the window is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the window whose horizontal alignment setting was changed.
|
static |
Event fired when the client assigned ID for the Window has changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose ID was changed.
|
static |
Event fired when the Window mode controlling inherited alpha is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose alpha inheritence mode was changed.
|
static |
Event fired when the Window gains capture of mouse inputs. Handlers are passed a cont WindowEventArgs reference with WindowEventArgs::window set to the Window that has captured mouse inputs.
|
static |
Event fired when the Window loses capture of mouse inputs. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to either:
|
static |
Event fired when a key on the keyboard was pressed down while the window had input focus. Handlers are passed a const KeyEventArgs reference with WindowEventArgs::window set to the Window receiving the key press, KeyEventArgs::scancode set to the Key::Scan value of the key that was pressed, and KeyEventArgs::sysKeys set to the combination of SystemKey values active when the key was pressed.
|
static |
Event fired when a key on the keyboard was released while the window had input focus. Handlers are passed a const KeyEventArgs reference with WindowEventArgs::window set to the Window receiving the key release, KeyEventArgs::scancode set to the Key::Scan value of the key that was released, and KeyEventArgs::sysKeys set to the combination of SystemKey values active when the key was released.
|
static |
Event fired when the Window's margin has changed (any of the four margins) Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose margin was changed.
|
static |
Event fired when a mouse button is pressed down within the Window. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when a mouse button is released within the Window. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when a mouse button is clicked - that is, pressed down and released within a specific time interval - while the mouse cursor is within the Window's area. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when a mouse button is double-clicked while the mouse cursor is within the Window's area. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when the mouse cursor enters the Window's area. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when the mouse cursor has entered the Window's area. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when the mouse cursor is no longer over the Window's surface area. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when themouse cursor has left the Window's area. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when the mouse cursor moves within the area of the Window. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when a mouse button is triple-clicked while the mouse cursor is within the Window's area. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when the mouse wheel is scrolled when the mouse cursor is within the Window's area. Handlers are passed a const MouseEventArgs reference with all fields valid.
|
static |
Event fired when the Window position has changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose position was changed.
|
static |
Event fired when the non-client setting for the Window is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose non-client setting was changed.
|
static |
Event fired when the parent of this Window has been re-sized. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window pointing to the parent window that was resized, not the window whose parent was resized.
|
static |
Event fired when rendering of the Window has ended. In this context 'rendering' is the population of the GeometryBuffer with geometry for the window, not the actual rendering of that GeometryBuffer content to the display. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose rendering has ended.
|
static |
Event fired when rendering of the Window has started. In this context 'rendering' is the population of the GeometryBuffer with geometry for the window, not the actual rendering of that GeometryBuffer content to the display. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose rendering has started.
|
static |
Event fired whrn the rotation factor(s) for the window are changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose rotation was changed.
|
static |
Event fired when the Window is shown (made visible). Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window that was shown.
|
static |
Event fired when the Window size has changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose size was changed.
|
static |
Event fired when the text string for the Window has changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose text was changed.
|
static |
Event fired when the Window's setting controlling parsing of it's text string is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose text parsing setting was changed.
|
static |
Event fired when the vertical alignment for the window is changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the window whose vertical alignment setting was changed.
|
static |
Event fired when a WindowRenderer object is attached to the window. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the window that had the WindowRenderer attached to it.
|
static |
Event fired when a WindowRenderer object is detached from the window. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the window that had the WindowRenderer detached from it.
|
static |
Event fired as part of the time based update of the window. Handlers are passed a const UpdateEventArgs reference.
|
static |
Event fired when the z-order of the window has changed. Handlers are passed a const WindowEventArgs reference with WindowEventArgs::window set to the Window whose z order position has changed.