Jump to content

Ya esta disponible la descarga De Qt to lua


Recommended Posts

._. ya sabia lo del qt to lua pero solo les puse el link por que vi un post abajo qe pedian el Qt to lua

Y yo tengo problemas con mi script nose como ponerle el boton qe se abra

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
  • 1 month later...
  • Recently Browsing   0 members

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