Uses of Class
mkv.MyGUI.MyGUIStyle

Uses of MyGUIStyle in mkv.MyGUI
 

Fields in mkv.MyGUI declared as MyGUIStyle
 MyGUIStyle MyGUIObject._style
          A reference to a MyGUIStyle object used in draw or for font metrics.
 

Methods in mkv.MyGUI that return MyGUIStyle
 MyGUIStyle MyGUIStyle.copy()
           
 MyGUIStyle MyGUIObject.getStyle()
          Returns the currently assigned style.
 

Methods in mkv.MyGUI with parameters of type MyGUIStyle
 void MyGUIObject.setStyle(MyGUIStyle style)
          Sets a custom style for this object.
 void MyGUIGroup.setStyle(MyGUIStyle style)
          Sets the style of an object after initilisation.
 

Constructors in mkv.MyGUI with parameters of type MyGUIStyle
MyGUIGroup(processing.core.PApplet root, int x, int y, int size, MyGUIStyle style)
          Class constructor where you can specify the size of the element array and set the style.
MyGUIGroup(processing.core.PApplet root, int x, int y, MyGUIStyle style)
          Class constructor where you can specify the style but the element array stays at its default value.
MyGUI(processing.core.PApplet parent, int size, MyGUIStyle style)
          Class constructor where the size of the element array can be specified as well as a reference to a MyGUIStyle object.
MyGUI(processing.core.PApplet parent, MyGUIStyle style)
          Class constructor with a reference to a custom MyGUIStyle object.