DxWindow: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 5: | Line 5: | ||
==Sintaxis== | ==Sintaxis== | ||
<syntaxhighlight lang="lua">element dxWindow(int x, int y, int w, int h, string title, [ bool closebutton, bool rounded, float border ])</syntaxhighlight> | <syntaxhighlight lang="lua">element dxWindow(int x, int y, int w, int h, string title, [ bool closebutton = true, bool rounded = false, float border = false])</syntaxhighlight> | ||
===Argumentos requeridos=== | ===Argumentos requeridos=== | ||
Line 17: | Line 17: | ||
* '''border''': Un entero que reprenta el grosor de la linea del borde de la ventana. | * '''border''': Un entero que reprenta el grosor de la linea del borde de la ventana. | ||
==Ejemplo de Uso== | ==Ejemplo de Uso== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
loadstring(exports.dxlib:dxGetLibrary())() | loadstring(exports.dxlib:dxGetLibrary())() | ||
--creamos una ventana | |||
win = dxWindow(251, 21, 250, 300, 'Window DEMO', true, true) | win = dxWindow(251, 21, 250, 300, 'Window DEMO', true, true) | ||
--creamos un boton a dicha venta | |||
bot = dxButton(276, 80, 100, 40, 'Button demo', win, false) | bot = dxButton(276, 80, 100, 40, 'Button demo', win, false) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==Ver también== | ==Ver también== | ||
{{DXLIB_FUNCTIONS}} | {{DXLIB_FUNCTIONS}} |
Revision as of 03:59, 11 May 2022
Esta funcion crea una ventana moderna basado en dxDrawing.
Sintaxis
element dxWindow(int x, int y, int w, int h, string title, [ bool closebutton = true, bool rounded = false, float border = false])
Argumentos requeridos
- x: Un entero que representa la posición X del origen absoluto de la ventana, representado por píxeles en la pantalla.
- y: Un entero que representa la posición Y del origen absoluto de la ventana, representado por píxeles en la pantalla.
- w: Un entero que representa el ancho de la ventana.
- h: Un entero que representa la altura de la ventana.
Argumentos Opcionales
- closebutton: Un booleano que representa la visibilidad del boton de cerrado, false para quitar, true o nil para visualizar.
- rounded: Un booleano que representa si la ventana llevara bordes redondeados.
- border: Un entero que reprenta el grosor de la linea del borde de la ventana.
Ejemplo de Uso
loadstring(exports.dxlib:dxGetLibrary())() --creamos una ventana win = dxWindow(251, 21, 250, 300, 'Window DEMO', true, true) --creamos un boton a dicha venta bot = dxButton(276, 80, 100, 40, 'Button demo', win, false)
Ver también
General Functions
- dxGetLibrary
- dxGetScreen
- dxSet
- dxGet
- dxSetText
- dxSetTitle
- dxSetVisible
- dxSetEnabled
- dxSetPosition
- dxGetPosition
- dxSetSize
- dxGetSize
- dxGetRootParent
- dxSetColorBackground
- dxSetColorText
- dxSetColorSelected
- dxSetColorBorder
- dxFont
- dxSetFont
- dxGetText
- dxSetTitle
- dxGetTitle
Window
Button
CheckBox
Edit
GridList
- dxGridList
- dxGridListAddItem
- dxGridListRemoveItem
- dxGridListAddColumn
- dxGridListRemoveColumn
- dxGridListGetItemSelected
- dxGridListSetItemSelected
- dxGridListGetScrollHV
Image
Label
List
- dxList
- dxListAddItem
- dxListRemoveItem
- dxListGetItemSelected
- dxListSetItemSelected
- dxListSetColorFilaItem