CustomSpinner.create: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
This function creates Custom Number Scroller Box.
This function creates Custom Spinner Box.


== Syntax ==
== Syntax ==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
cnscroller CustomNumberScroller.create(float X, float Y, float Width, float Height, [bool Relative, gui-element Parent])
cnscroller CustomSpinner.create(float X, float Y, float Width, float Height, [bool Relative, gui-element Parent])
</syntaxhighlight>
</syntaxhighlight>


Line 19: Line 19:


=== Returns ===
=== Returns ===
Creates number scroller and returns object of class CustomNumberScroller.
Creates spinner and returns object of class CustomSpinner.


== Information ==
== Information ==
On Number Scroller you can use Middle Mouse Scroller to scroll numbers from minimal to maximal values, and back.
On Spinner you can use Middle Mouse Scroller to scroll numbers from minimal to maximal values, and back.


== Example ==
== Example ==
[[Image:ExampleCustomEdits.png|thumb|right|Code Example]]
[[Image:ExampleCustomEdits.png|thumb|right|Code Example]]
This example creates 3 different Edit Boxes, Memo Box, and Number Scroller:
This example creates 3 different Edit Boxes, Memo Box, and Spinner:


<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 36: Line 36:


local Memo = CustomMemo.create(5, 130, 290, 65, "Memo Box\nMultilune Text", false, Window)
local Memo = CustomMemo.create(5, 130, 290, 65, "Memo Box\nMultilune Text", false, Window)
local Number = CustomNumberScroller.create(5, 195, 290, 30, false, Window)
local Number = CustomSpinner.create(5, 195, 290, 30, false, Window)


EditDisabled:setEnabled(false)
EditDisabled:setEnabled(false)

Revision as of 07:02, 6 August 2018

This function creates Custom Spinner Box.

Syntax

cnscroller CustomSpinner.create(float X, float Y, float Width, float Height, [bool Relative, gui-element Parent])

Required Arguments

  • X - Position on X axis on screen of widget
  • Y - Position on Y axis on screen of widget
  • Width - Width of widget
  • Height - Height of widget

Other Arguments

  • Relative - Relative of coordinates and size (if false, position and size will be absolute). Default - false.
  • Parent - GUI Element of parent. Default - nil.

Returns

Creates spinner and returns object of class CustomSpinner.

Information

On Spinner you can use Middle Mouse Scroller to scroll numbers from minimal to maximal values, and back.

Example

Code Example

This example creates 3 different Edit Boxes, Memo Box, and Spinner:

local Window = CustomWindow.create(50, 50, 300, 230, "Example")

local Edit = CustomEdit.create(5, 25, 290, 30, "Edit Box", false, Window)
local EditDisabled = CustomEdit.create(5, 60, 290, 30, "Edit Box Disabled", false, Window)
local EditReadOnly = CustomEdit.create(5, 95, 290, 30, "Edit Box ReadOnly", false, Window)

local Memo = CustomMemo.create(5, 130, 290, 65, "Memo Box\nMultilune Text", false, Window)
local Number = CustomSpinner.create(5, 195, 290, 30, false, Window)

EditDisabled:setEnabled(false)
EditReadOnly:setReadOnly(true)

Window:setColorScheme(Themes.Dark.Red)

See Also

Resource Wiki with content located here: Resource:CustomWidgets

Custom Widgets

This methods working for all elements except CustomDialogs and CustomTooltips

Set Functions

Get Functions

Event Functions


Custom Windows

Create Function

Set Functions

Get Functions

Event Functions


Custom Buttons

Create Function

Set Functions

Get Functions

Event Functions


Custom Progress Bars

Create Function

Set Functions

Get Functions

Event Functions


Custom Scroll Bars

Create Function

Set Functions

Get Functions


Custom Edit Boxes

All functions, what has mark CustomEditBox available for CustomEdit, CustomMemo and CustomSpinner.

Create Functions

Set Functions

Get Functions

Event Functions


Custom Check Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Combo Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Tabbed Panels

Create Function

Set Functions

Get Functions

Event Functions


Custom Labels

Create Function

Set Functions

Get Functions

Event Functions


Custom Dialogs

Create Function

Event Functions


Custom Tool Tips

Create Function

Set Function

Get Function


Custom Loadings

Create Function

Set Functions

Get Functions


Custom Scroll Panes

Create Function

Set Functions

Get Functions

Event Functions


Custom Table Views

Create Function

Set Functions

Get Functions

Event Functions


Custom Static Images

Create Function

Set Function

Get Function

Event Functions


Custom Text Boxes

Create Function

Set Function

Get Function


Custom Events


Other about Custom Widgets