HGamer3D-CEGUI-Binding-0.1.9: Windows Game Engine for the Haskell Programmer - CEGUI Bindings

Safe HaskellNone

HGamer3D.Bindings.CEGUI.ClassSpinner

Synopsis

Documentation

newSource

Arguments

:: String

type

-> String

name

-> IO HG3DClass 

Constructor for Spinner

deleteSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance which is going to be deleted.

-> IO () 

Initialises the Window - Details: This must be called for every window created. Normally this is handled automatically by the WindowFactory for each Window

Destructor for Spinner

initialiseComponentsSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> IO ()

return value - Nothing

Return the current spinner value.

getCurrentValueSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> IO Double

return value - current value of the

getStepSizeSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> IO Double

return value - Step value. This is the value added to the spinner vaue when the up / down buttons are clicked.

Return the current step value.

getMaximumValueSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> IO Double

return value - Maximum value that is allowed for the spinner.

Return the current maximum limit value for the Spinner

getMinimumValueSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> IO Double

return value - Minimum value that is allowed for the spinner.

Return the current minimum limit value for the Spinner

getTextInputModeSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> IO EnumTextInputMode

return value - One of the TextInputMode enumerated values indicating the current text input and display mode.

Return the current text input / display mode setting.

setCurrentValueSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> Double

value - value to be assigned to the Spinner.

-> IO ()

return value - Nothing.

Set the current step value.

Set the current spinner value.

setStepSizeSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> Double

step - The value added to be the spinner value when the up / down buttons are clicked.

-> IO ()

return value - Nothing.

Set the spinner maximum value.

setMaximumValueSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> Double

maxValue - The maximum value to be allowed by the spinner.

-> IO ()

return value - Nothing.

Set the spinner minimum value.

setMinimumValueSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> Double

minVaue - The minimum value to be allowed by the spinner.

-> IO ()

return value - Nothing.

Set the spinner input / display mode.

setTextInputModeSource

Arguments

:: HG3DClass

classpointer - pointer of Class instance from which this methods is called.

-> EnumTextInputMode

mode - One of the TextInputMode enumerated values indicating the text input / display mode to be used by the spinner.

-> IO ()

return value - Nothing.