d0d6425a54
* BUG: Try to always enable only the right popup menu, and only that one. But is sometimes fails at the moment. * BUG: The completion list computes its height correctly now. * NEW: Beginning of the database manager integration. * BUG: When creating a new data file, ensure that the proposed name does not exist. [GB.GTK] * NEW: Control.HasFocus is a new property that returns if a control has the focus. [GB.FORM] * NEW: ButtonBox is a new control that is a TextBox with a button on its right. * NEW: Two new stock icons: 'computer' and 'server'. [GB.QT4] * NEW: Control.HasFocus is a new property that returns if a control has the focus. git-svn-id: svn://localhost/gambas/trunk@2106 867c0c6c-44f3-4631-809d-bfa615b0a4ec
23 lines
434 B
Text
23 lines
434 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(8,16,50,50)
|
|
Text = ("")
|
|
Resizable = False
|
|
{ panMove DrawingArea
|
|
MoveScaled(2,1,46,4)
|
|
Background = Color.Background
|
|
{ btnSide DrawingArea
|
|
MoveScaled(9,0,6,4)
|
|
Mouse = Mouse.Arrow
|
|
}
|
|
{ btnSide2 DrawingArea btnSide
|
|
Name = "btnSide2"
|
|
MoveScaled(19,0,6,4)
|
|
Mouse = Mouse.Arrow
|
|
}
|
|
}
|
|
{ panSide Panel
|
|
MoveScaled(8,8,34,32)
|
|
}
|
|
}
|