the common files were not found on first build
[lqt.git] / test / t3.lua
blob118e4c6685108b39d8ae91b5a06eb207d8fdf216
1 #!/usr/bin/lua
3 require'qtcore'
4 require'qtgui'
6 app = QApplication.new(1 + select('#', ...), {arg[0], ...})
7 app.__gc = app.delete -- take ownership of object
9 window = QWidget()
10 window:resize(200, 120)
12 quit = QPushButton.new(QString.new("Quit"), window)
13 quit:setFont(QFont.new(QString.new'Times', 18, 75))
14 quit:setGeometry(10, 40, 180, 40)
16 QObject.connect(quit, '2clicked()', app, '1quit()')
18 window:show()
20 app.exec()