Jump to content

Como pongo el boton con cual se abra mi resource?


starksZ

Recommended Posts

Le pedi ayuda al solidsnake y lo unico que hico fue presumir asi que pido ayuda a ustedes. Es que mi panel que cree con Qt to lua lo ise como para aprender por primera vez pero por pedirle ayuda a solidsnake solo gane que el presumiera y no me enseño nada. miren este es el code.

function build_MainWindow() 
     
    local gui = {} 
    gui._placeHolders = {} 
     
    local screenWidth, screenHeight = guiGetScreenSize() 
    local windowWidth, windowHeight = 414, 381 
    local left = screenWidth/2 - windowWidth/2 
    local top = screenHeight/2 - windowHeight/2 
    gui["_root"] = guiCreateWindow(left, top, windowWidth, windowHeight, "Login windows By Oter", false) 
    guiWindowSetSizable(gui["_root"], false) 
     
    gui._placeHolders["toolBox"] = {left = 40, top = 65, width = 331, height = 231, parent = gui["_root"]} 
     
    gui[""] = guiCreateScrollPane(40, 65, 100, 30, false, gui["_root"]) 
     
    gui._placeHolders["qt_calendar_calendarview"] = {left = 31, top = 11, width = 100, height = 30, parent = gui[""]} 
     
    gui["qt_spinbox_lineedit"] = guiCreateEdit(31, 11, 76, 30, "2012", false, gui[""]) 
    guiEditSetMaxLength(gui["qt_spinbox_lineedit"], 32767) 
     
    gui[""] = guiCreateScrollPane(40, 125, 331, 171, false, gui["_root"]) 
     
    gui._placeHolders["textEdit"] = {left = 17, top = 11, width = 303, height = 149, parent = gui[""]} 
     
    return gui, windowWidth, windowHeight 
end 

Link to comment

Yo no presumi de nada, aqui tienen toda la conversacion si quieren leerla y opinar.

Re: AYUDAME CON Qt to lua

Sent: Thu May 10, 2012 1:47 pm

by oter001

SOLO TE DIGO A TU POR QE SABES SOBRE LUA Y YO NO ENTIENDO LA WIKI NO ENSEÑAN NI MIERDA MEJOR DICHO PEDIRE AYUDA A OTRO TU NO ENSEÑAS NADA POR Q TEMES Q A Q LOS OTROS APRENDAN

Re: AYUDAME CON Qt to lua

Sent: Wed May 09, 2012 11:37 pm

by Solidsnake14

Pues si queres hacer eso, vas a tener que estudiar Lua.

Re: AYUDAME CON Qt to lua

Sent: Wed May 09, 2012 11:28 pm

by oter001

NO ENTIENDO MEN nose sobre script

Re: AYUDAME CON Qt to lua

Sent: Wed May 09, 2012 9:15 pm

by Solidsnake14

Usa el evento onClientGUIClick para cuando necesites ejecutar una funcion con un GUI.

Re: AYUDAME CON Qt to lua

Sent: Wed May 09, 2012 8:57 pm

by oter001

CLaro men pero el problema es al funcion del cual se abre

Re: AYUDAME CON Qt to lua

Sent: Wed May 09, 2012 4:30 pm

by Solidsnake14

El Qt To Lua funciona bien, por lo menos cuando yo lo use.

Re: AYUDAME CON Qt to lua

Sent: Wed May 09, 2012 1:42 pm

by oter001

Ok men no ay problema si logramos ajustar este recurso talvez podriamos subirlo al community de mta y pongo que los autores somos los dos na mas solo que con ese code no se como ponerle el boton men tu eres pro en Lua o como mejor se diga scripter.

Ok men mejorare

Re: AYUDAME CON Qt to lua

Sent: Tue May 08, 2012 8:40 pm

by Solidsnake14

Mejora el modo de hablar y te ayudo.

AYUDAME CON Qt to lua

Sent: Tue May 08, 2012 3:44 pm

by oter001

COMO MIERDAS LE PONGO EL BOTON QE SE ABRA AL PANEL ._.

MIRA ESTE ES EL CODE

Link to comment

Lo que vos queres es crear la interface cuando se inicie el recurso?

function build_MainWindow() 
    local gui = {} 
    gui._placeHolders = {} 
    
    local screenWidth, screenHeight = guiGetScreenSize() 
    local windowWidth, windowHeight = 414, 381 
    local left = screenWidth/2 - windowWidth/2 
    local top = screenHeight/2 - windowHeight/2 
    gui["_root"] = guiCreateWindow(left, top, windowWidth, windowHeight, "Login windows By Oter", false) 
    guiWindowSetSizable(gui["_root"], false) 
    
    gui._placeHolders["toolBox"] = {left = 40, top = 65, width = 331, height = 231, parent = gui["_root"]} 
    
    gui[""] = guiCreateScrollPane(40, 65, 100, 30, false, gui["_root"]) 
    
    gui._placeHolders["qt_calendar_calendarview"] = {left = 31, top = 11, width = 100, height = 30, parent = gui[""]} 
    
    gui["qt_spinbox_lineedit"] = guiCreateEdit(31, 11, 76, 30, "2012", false, gui[""]) 
    guiEditSetMaxLength(gui["qt_spinbox_lineedit"], 32767) 
    
    gui[""] = guiCreateScrollPane(40, 125, 331, 171, false, gui["_root"]) 
    
    gui._placeHolders["textEdit"] = {left = 17, top = 11, width = 303, height = 149, parent = gui[""]} 
    
    return gui, windowWidth, windowHeight 
end 
addEventHandler ( "onClientResourceStart", resourceRoot, build_MainWindow ) 

Link to comment
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...