gambas-source-code/app/src/gambas3/FFormStack.form
Benoît Minisini a4ee904dba [DEVELOPMENT ENVIRONMENT]
* NEW: Update toolbars contents according to the toolbar configuration 
  dialog needs.
* NEW: Toolbar contents and default configuration are generated by the IDE 
  and store in the files located in the .action directory.

[GB.FORM.MDI]
* NEW: The toolbar configuration dialog is almost completely finished. 
  There is a big bug yet, a crash in Qt coming from a "locking assertion 
  failure" in the libxcb library. No workaround or fix was found at the 
  moment.

[GB.QT]
* BUG: Control.Reparent() correctly restores the Enabled state of the 
  control.
* NEW: Container.Children.Clear() is a new method that destroys all 
  children of a container.


git-svn-id: svn://localhost/gambas/trunk@1791 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2009-01-08 00:46:23 +00:00

47 lines
1.1 KiB
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(0,2.1667,27,55.5)
Text = ("Hierarchy")
Icon = Picture["img/16/stack-order.png"]
Persistent = True
Arrangement = Arrange.Vertical
{ lblMessage TextLabel
MoveScaled(0,0,23,12)
Padding = 8
Text = ("Click on a form to display the hierarchy of its controls...")
}
{ panControl ToolBar
MoveScaled(1,12,22,4)
Text = ("")
{ btnTop ToolButton
MoveScaled(0,0,4,4)
ToolTip = ("Move top")
Text = ("")
Picture = Picture["icon:/small/top"]
}
{ btnUp ToolButton
MoveScaled(4,0,4,4)
ToolTip = ("Move up")
Text = ("")
Picture = Picture["icon:/small/up"]
}
{ btnDown ToolButton
MoveScaled(8,0,4,4)
ToolTip = ("Move down")
Text = ("")
Picture = Picture["icon:/small/down"]
}
{ btnBottom ToolButton
MoveScaled(12,0,4,4)
ToolTip = ("Move bottom")
Text = ("")
Picture = Picture["icon:/small/bottom"]
}
}
{ tvwControl TreeView
MoveScaled(1,17,20,19)
Visible = False
Expand = True
}
}