43f26cd8ff
* NEW: gb.qt5 component. [EXAMPLES] * BUG: Fix WebBrowser example. [INTERPRETER] * NEW: Fix compilation of EXEC and SHELL for older bytecode versions. [GB.DB.FORM] * NEW: Display the busy mouse cursor while loading SQL data. [GB.QT4] * NEW: Support for QT5. [GB.QT5] * NEW: Initial version of the QT5 component. Not everything is working. There is no Embedder and TrayIcon controls. git-svn-id: svn://localhost/gambas/trunk@7062 867c0c6c-44f3-4631-809d-bfa615b0a4ec
34 lines
718 B
Text
34 lines
718 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,69,13)
|
|
Arrangement = Arrange.Fill
|
|
Margin = True
|
|
{ Panel1 Panel
|
|
MoveScaled(1,1,67,11)
|
|
Background = Color.Background
|
|
Arrangement = Arrange.Vertical
|
|
Margin = True
|
|
Border = Border.Plain
|
|
{ lblTitle Label
|
|
MoveScaled(1,1,48,3)
|
|
Expand = True
|
|
Text = ("Starting download...")
|
|
}
|
|
{ lblStatus Label
|
|
MoveScaled(1,4,11,2)
|
|
Font = Font["Italic,-2"]
|
|
}
|
|
{ HBox2 HBox
|
|
MoveScaled(1,6,65,4)
|
|
{ pgbDownload ProgressBar
|
|
MoveScaled(0,0,56,4)
|
|
Expand = True
|
|
}
|
|
{ btnAbort ToolButton
|
|
MoveScaled(61,0,4,4)
|
|
Picture = Picture["icon:/small/close"]
|
|
}
|
|
}
|
|
}
|
|
}
|