CorEngine RSS
NAVIGATION >>
HOME TUTORIAL API TOOLS FORUM REPORT BUGS
TYPES // MATH // NETWORK // GUI // PHYSICS // AUDIO // ENGINE // CORE

- [Expand all]    + [Collapse all]


:. CREATE FUNCTIONS +

  Create.Button
 1. Object: parent
 2. String: name
 3. Integer: x
 4. Integer: y
 5. Integer: width
 6. Integer: height
 7. String: text
 :: Button
  Create.CheckBox
 1. Object: parent
 2. String: name
 3. Integer: x
 4. Integer: y
 5. Boolean: state
 :: CheckBox
  Create.Gui
 ---
 :: Gui
  Create.Label
 1. Object: parent
 2. String: name
 3. Integer: x
 4. Integer: y
 5. String: text
 :: Label
  Create.Picture
 1. Object: parent
 2. String: name
 3. Integer: x
 4. Integer: y
 5. String: file
 :: Picture
  Create.Screen
 1. Object: parent
 2. String: name
 3. Integer: x
 4. Integer: y
 5. Integer: width
 6. Integer: height
 :: Screen
  Create.Slider
 1. Object: parent
 2. String: name
 3. Integer: x
 4. Integer: y
 5. Integer: width
 6. Integer: height
 7. float: value
 :: Slider
  Create.TextField
 1. Object: parent
 2. String: name
 3. Integer: x
 4. Integer: y
 5. Integer: width
 6. String: text
 :: TextField
  Create.TextList
 1. Object: parent
 2. String: name
 3. Integer: x
 4. Integer: y
 5. Integer: width
 6. Integer: rows
 :: TextList



top

:. BUTTON FUNCTIONS +

SET :: PROPERTIES
  Button.SetText
 1. Button: button
 2. String: text
 ---
  Button.SetFont
 1. Button: button
 2. Font: font
 ---
  Button.SetSize
 1. Button: button
 2. Integer: width
 3. Integer: height
 ---
  Button.SetOffTexture
 1. Button: button
 2. Texture: off
 ---
  Button.SetOverTexture
 1. Button: button
 2. Texture: over
 ---
  Button.SetOnTexture
 1. Button: button
 2. Texture: on
 ---
GET :: PROPERTIES
  Button.GetState
 1. Button: button
 :: Integer
  Button.GetText
 1. Button: button
 :: String
  Button.GetFont
 1. Button: button
 :: Font
  Button.GetOffTexture
 1. Button: button
 :: Texture
  Button.GetOverTexture
 1. Button: button
 :: Texture
  Button.GetOnTexture
 1. Button: button
 :: Texture



top

:. CHECK BOX FUNCTIONS +

SET :: PROPERTIES
  CheckBox.SetOffTexture
 1. CheckBox: checkBox
 2. Texture: off
 ---
  CheckBox.SetOnTexture
 1. CheckBox: checkBox
 2. Texture: on
 ---
  CheckBox.SetState
 1. CheckBox: checkBox
 2. Boolean: state
 ---
GET :: PROPERTIES
  CheckBox.GetState
 1. CheckBox: checkBox
 :: Boolean
  CheckBox.GetOffTexture
 1. CheckBox: checkBox
 :: Texture
  CheckBox.GetOnTexture
 1. CheckBox: checkBox
 :: Texture



top

:. GUI FUNCTIONS +

  Gui.Empty
 1. Gui: gui
 ---
GET :: PROPERTIES
  Gui.GetTrace
 1. Gui: gui
 :: Object
  Gui.GetFocus
 1. Gui: gui
 :: Object
  Gui.GetActiveTextField
 1. Gui: gui
 :: Object
  Gui.GetDragging
 1. Gui: gui
 :: Boolean
  Gui.GetDragObject
 1. Gui: gui
 :: Object
  Gui.GetDragContent
 1. Gui: gui
 :: String



top

:. LABEL FUNCTIONS +

SET :: PROPERTIES
  Label.SetFont
 1. Label: label
 2. Font: font
 ---
  Label.SetText
 1. Label: label
 2. String: text
 ---
GET :: PROPERTIES
  Label.GetFont
 1. Label: label
 :: Font
  Label.GetText
 1. Label: label
 :: String



top

:. OBJECT FUNCTIONS +

  Gui.AddObject
 1. Object: parent
 2. Object: object
 :: Boolean
  Gui.RemoveObject
 1. Object: parent
 2. Object: object
 :: Boolean
  Gui.RemoveObjectByName
 1. Object: parent
 2. String: name
 :: Boolean
  Gui.RemoveObjectByIndex
 1. Object: parent
 2. Integer: index
 :: Boolean
  Gui.SetObjectPosition
 1. Object: object
 2. float: x
 3. float: y
 ---
  Gui.SetObjectColor
 1. Object: object
 2. float: r
 3. float: g
 4. float: b
 5. float: a
 ---
  Gui.SetObjectVisible
 1. Object: object
 2. Boolean: visible
 ---
  Gui.SetObjectActive
 1. Object: object
 2. Boolean: active
 ---
  Gui.SetObjectScript
 1. Object: object
 2. Script: script
 ---
  Gui.GetObjectName
 1. Object: object
 :: String
  Gui.GetObjectPosition
 1. Object: object
 :: Vector2i
  Gui.GetObjectSize
 1. Object: object
 :: Vector2i
  Gui.GetObjectColor
 1. Object: object
 :: Color
  Gui.GetObjectVisible
 1. Object: object
 :: Boolean
  Gui.GetObjectActive
 1. Object: object
 :: Boolean
  Gui.GetObjectScript
 1. Object: object
 :: Script
  Gui.GetObjectEvent
 1. Object: object
 :: Integer
  Gui.GetObjectByName
 1. Object: parent
 2. String: name
 :: Object
  Gui.GetObjectByIndex
 1. Object: parent
 2. Integer: index
 :: Object



top

:. PICTURE FUNCTIONS +

SET :: PROPERTIES
  Picture.SetTexture
 1. Picture: picture
 2. Texture: texture
 ---
  Picture.SetScale
 1. Picture: picture
 2. float: x
 3. float: y
 ---
GET :: PROPERTIES
  Picture.GetTexture
 1. Picture: picture
 :: Texture
  Picture.GetScale
 1. Picture: picture
 :: Vector2f



top

:. SCREEN FUNCTIONS +

  Screen.ForceFocus
 1. Screen: screen
 ---
  Screen.ReleaseFocus
 1. Screen: screen
 ---
SET :: PROPERTIES
  Screen.SetSize
 1. Screen: screen
 2. Integer: width
 3. Integer: height
 ---
  Screen.SetTexture
 1. Screen: screen
 2. Texture: texture
 ---
  Screen.SetToTop
 1. Screen: screen
 ---
GET :: PROPERTIES
  Screen.GetTexture
 1. Screen: screen
 :: Texture



top

:. SLIDER FUNCTIONS +

SET :: PROPERTIES
  Slider.SetSize
 1. Slider: slider
 2. Integer: width
 3. Integer: height
 ---
  Slider.SetBackgroundTexture
 1. Slider: slider
 2. Texture: background
 ---
  Slider.SetTexture
 1. Slider: slider
 2. Texture: sliderTexture
 ---
  Slider.SetValue
 1. Slider: slider
 2. float: value
 ---
GET :: PROPERTIES
  Slider.GetValue
 1. Slider: slider
 :: float
  Slider.GetBackgroundTexture
 1. Slider: slider
 :: Texture
  Slider.GetTexture
 1. Slider: slider
 :: Texture



top

:. TEXT FIELD FUNCTIONS +

SET :: PROPERTIES
  TextField.SetFont
 1. TextField: textField
 2. Font: font
 ---
  TextField.SetWidth
 1. TextField: textField
 2. Integer: width
 ---
  TextField.SetTexture
 1. TextField: textField
 2. Texture: texture
 ---
  TextField.SetTextColor
 1. TextField: textField
 2. float: r
 3. float: g
 4. float: b
 5. float: a
 ---
  TextField.SetOffset
 1. TextField: textField
 2. Integer: offsetX
 3. Integer: offsetY
 ---
  TextField.SetCursorPosition
 1. TextField: textField
 2. Integer: index
 ---
  TextField.SetText
 1. TextField: textField
 2. String: text
 ---
GET :: PROPERTIES
  TextField.GetText
 1. TextField: textField
 :: String
  TextField.GetTexture
 1. TextField: textField
 :: Texture
  TextField.GetFont
 1. TextField: textField
 :: Font
  TextField.GetTextColor
 1. TextField: textField
 :: Color
  TextField.GetOffset
 1. TextField: textField
 :: Vector2i



top

:. TEXT LIST FUNCTIONS +

  TextList.AddItem
 1. TextList: textList
 2. String: text
 ---
  TextList.RemoveItem
 1. TextList: textList
 2. Integer: index
 :: Boolean
  TextList.RemoveItems
 1. TextList: textList
 ---
SET :: PROPERTIES
  TextList.SetFont
 1. TextList: textList
 2. Font: font
 ---
  TextList.SetSize
 1. TextList: textList
 2. Integer: width
 3. Integer: rows
 ---
  TextList.SetItem
 1. TextList: textList
 2. Integer: index
 3. String: text
 ---
  TextList.SetOffset
 1. TextList: textList
 2. Integer: offset
 ---
  TextList.SetSelection
 1. TextList: textList
 2. Integer: selection
 ---
  TextList.SetItemDrag
 1. TextList: textList
 2. Boolean: itemDrag
 ---
GET :: PROPERTIES
  TextList.GetFont
 1. TextList: textList
 :: Font
  TextList.GetRowCount
 1. TextList: textList
 :: Integer
  TextList.GetItemCount
 1. TextList: textList
 :: Integer
  TextList.GetSelectionIndex
 1. TextList: textList
 :: Integer
  TextList.GetOffset
 1. TextList: textList
 :: Integer
  TextList.GetItem
 1. TextList: textList
 2. Integer: index
 :: String
  TextList.GetSelectedItem
 1. TextList: textList
 :: String
  TextList.GetItemDrag
 1. TextList: textList
 :: Boolean



top
SourceForge.net
CorEngine.sf.net Except where otherwise noted, content on this site is
licensed under a Creative Commons Attribution 3.0 License.