Always snap to grid

Difference between revisions of "Legacy:GUI Class Hierarchy"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
m (reverted)
 
m
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
This is the [[Legacy:Class Tree|class tree]] extending from GUI in [[Legacy:UT2003|UT2003]].  For a class tree of the Actor hierarchy see [[Legacy:Actor Class Hierarchy|Actor Class Hierarchy]].  [[Legacy:Mutator Config GUI (UT2003)|Mutator Config GUI (UT2003)]] has some information on how these classes can be used to build a configuration screen for a small mutator.
 
This is the [[Legacy:Class Tree|class tree]] extending from GUI in [[Legacy:UT2003|UT2003]].  For a class tree of the Actor hierarchy see [[Legacy:Actor Class Hierarchy|Actor Class Hierarchy]].  [[Legacy:Mutator Config GUI (UT2003)|Mutator Config GUI (UT2003)]] has some information on how these classes can be used to build a configuration screen for a small mutator.
  
==Adding new class pages==
+
==Adding new class pages ==
  
 
Any UT2003 GUI class page should begin with the text:
 
Any UT2003 GUI class page should begin with the text:
Line 7: Line 7:
 
{{classbox| [[Legacy:UT2003|UT2003]] :: [[Legacy:GUI|GUI]] >> etc}}
 
{{classbox| [[Legacy:UT2003|UT2003]] :: [[Legacy:GUI|GUI]] >> etc}}
  
==Class Tree==
+
==Class Tree ==
  
 
All classes are in the xInterface package unless otherwise stated.
 
All classes are in the xInterface package unless otherwise stated.

Revision as of 21:09, 2 December 2005

This is the class tree extending from GUI in UT2003. For a class tree of the Actor hierarchy see Actor Class Hierarchy. Mutator Config GUI (UT2003) has some information on how these classes can be used to build a configuration screen for a small mutator.

Adding new class pages

Any UT2003 GUI class page should begin with the text:

UT2003 :: GUI >> etc

Class Tree

All classes are in the xInterface package unless otherwise stated.

 GUI
  +-GUIComponent
  |    +-GUIButton
  |    |    +-GUIEditBox
  |    |    +-GUIGFXButton
  |    |    |    +-GUICheckBoxButton
  |    |    |    +-GUIHorizGripButton
  |    |    |    +-GUIHorizScrollButton
  |    |    |    +-GUISpinnerButton
  |    |    |    +-GUIVertGripButton
  |    |    |    +-GUIVertScrollButton
  |    |    |    |    +-GUIComboButton
  |    |    |    +-LadderButton
  |    |    +-GUITabButton
  |    +-GUIHorzScrollZone
  |    +-GUIImage
  |    |    +-GUIImageList
  |    +-GUILabel
  |    +-GUIListBase
  |    |    +-GUICircularList
  |    |    |    +-GUICharacterList
  |    |    |         +-GUICharacterListTeam
  |    |    +-GUIHorzList
  |    |    +-GUIVertList
  |    |         +-GUIList
  |    |         |    +-GUIScrollText
  |    |         +-GUIMultiColumnListNot expanded here
  |    +-GUIMultiColumnListHeader
  |    +-GUIMultiComponent
  |    |    +-GUIComboBox
  |    |    +-GUIFloatEdit
  |    |    +-GUIListBoxBase
  |    |    |    +-GUIListBox
  |    |    |    +-GUIMultiColumnListBox
  |    |    |    +-GUIScrollTextBox
  |    |    +-GUIMenuOption
  |    |    |    +-moCheckBox
  |    |    |    +-moComboBox
  |    |    |    +-moEditBox
  |    |    |    +-moFloatEdit
  |    |    |    +-moNumericEdit
  |    |    +-GUINumericEdit
  |    |    +-GUIPageNot expanded here
  |    |    +-GUIPanel
  |    |    |    +-GUISplitter
  |    |    |    +-GUITabPanelNot expanded here
  |    |    +-GUIScrollBarBase
  |    |    |    +-GUIHorzScrollBar
  |    |    |    +-GUIVertScrollBar
  |    |    +-GUITabControl
  |    +-GUIProgressBar
  |    +-GUISlider
  |    +-GUITitleBar
  |    +-GUIVertScrollZone
  +-GUIFontNot expanded here
  +-GUIStylesNot expanded here
  +-GUIUserKeyBinding

Related Topics