Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
Load "guilib.ring"
|
||||
|
||||
MyApp = New qApp {
|
||||
num = 0
|
||||
win1 = new qWidget() {
|
||||
setwindowtitle("Hello World")
|
||||
setGeometry(100,100,370,250)
|
||||
|
||||
btn1 = new qpushbutton(win1) {
|
||||
setGeometry(150,200,100,30)
|
||||
settext("click me")
|
||||
setclickevent("clickme()")}
|
||||
|
||||
Lineedit1 = new qlineedit(win1) {
|
||||
setGeometry(10,100,350,30)}
|
||||
show()}
|
||||
Exec()}
|
||||
|
||||
func clickme
|
||||
num += 1
|
||||
lineedit1.settext( "you clicked me " + num + " times")
|
||||
Loading…
Add table
Add a link
Reference in a new issue