CustomDialog.create

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function creates Custom Dialog for Window.

Syntax

cdialog CustomDialog.create(float RecommendWidth, string Text, table Buttons, [cwindow Parent])

Required Arguments

  • RecommendWidth - Recommend width of Dialog Window. By default it calculates by text, and gets maximum value of this and calculated.
  • Text - Text information in Dialog
  • Buttons - String table, contains only button names

Other Arguments

  • Parent - Window Object parent. Default - nil.

Returns

Creates dialog and returns object of class CustomDialog.

Example

Code Example
Example of buttons count in Demo Widgets

This example creates window with 2 dialogs - inside window, and outside:

local Window = CustomWindow.create(50, 50, 250, 150, "Example")

local ButtonWindow = CustomButton.create(0.25, 0.25, 0.5, 0.2, "Show Dialog 1", true, Window)
local ButtonDialog = CustomButton.create(0.25, 0.55, 0.5, 0.2, "Show Dialog 2", true, Window)

local DialogInWindow = CustomDialog.create(150, "Hello World 1", {"OK", "Cancel"}, Window)
local DialogOutWindow = CustomDialog.create(200, "Hello World 2", {"OK", "Cancel"})

Window:setColorScheme(Themes.Dark.Purple)

ButtonWindow:addEvent("onClientGUIClick", function()
	DialogInWindow:open()
end)

ButtonDialog:addEvent("onClientGUIClick", function()
	DialogOutWindow:open()
end)

DialogInWindow:addEvent("onCustomDialogClick", function(buttontext)
	if buttontext == "OK" then
		outputChatBox('You clicked button "OK"')
	end
end)

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