gambas-source-code/comp/src/gb.form/FDirChooser.form

116 lines
2.8 KiB
Text
Raw Normal View History

# Gambas Form File 3.0
{ Form Form
MoveScaled(23,39,100,78)
Text = ("")
[CONFIGURATION] * BUG: Libraries and include files are automatically searched inside 64 bits specific directories. [DEVELOPMENT ENVIRONMENT] * NEW: Automatically convert old Border property to the new Border and Resizable properties. * BUG: The "Theme" tab of the option dialog is correctly initialized the first time Gambas is run. * BUG: Going to a non-existing line number in the editor does not crash the IDE anymore. * NEW: The IDE forms now use the new Border, Resizable and Type properties of the Window class. [COMPILER] * BUG: Do not print error messages on unexpected strings with newline inside. Just claim that an unexpected string has been encountered. [GB.EVAL] * BUG: Do not print error messages on unexpected strings with newline inside. Just claim that an unexpected string has been encountered. [GB.GTK] * NEW: The old Border property of the Window class has been replaced by a two boolean properties: Border and Resizable. * NEW: Window.Type is a new property to set the window manager type of a window: Normal, ToolBar, Splash... * NEW: The Window.ToolBox property has been removed. * NEW: A newly opened non-modal window stays automatically on top of the application main window. [GB.QT] * NEW: The old Border property of the Window class has been replaced by a two boolean properties: Border and Resizable. * NEW: Window.Type is a new property to set the window manager type of a window: Normal, ToolBar, Splash... * NEW: The Window.ToolBox property has been removed. * NEW: A newly opened non-modal window stays automatically on top of the application main window. git-svn-id: svn://localhost/gambas/trunk@1321 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-04-19 01:43:38 +02:00
Resizable = False
Arrangement = Arrange.Vertical
Spacing = 8
{ HBox3 HBox
MoveScaled(0,0,86,50)
Expand = True
{ panBookmark SidePanel
MoveScaled(2,2,19,47)
Visible = False
Arrangement = Arrange.Vertical
Spacing = 8
Orientation = Align.Left
{ lstBookmark ListContainer
MoveScaled(0,1,15,32)
Font = Font["-1"]
Background = Color.ButtonBackground
Expand = True
}
{ btnAdd Button
MoveScaled(0,34,15,4)
Text = ("&Add")
Picture = Picture["icon:/small/add"]
}
{ btnRemove Button
MoveScaled(0,39,15,4)
Text = ("&Remove")
Picture = Picture["icon:/small/remove"]
}
}
{ VBox1 VBox
MoveScaled(22,2,64,46)
Expand = True
Spacing = 8
{ HBox1 HBox
MoveScaled(1,2,62,4)
AutoResize = True
{ cmbDir ComboBox
MoveScaled(0,0,37,4)
Expand = True
Text = ("")
Sorted = True
}
{ Panel1 Panel
MoveScaled(37,0,2,4)
}
{ btnParent ToolButton
MoveScaled(37,0,4,4)
ToolTip = ("Parent directory")
Text = ("")
Picture = Picture["icon:/small/up"]
}
{ btnRefresh ToolButton
MoveScaled(41,0,4,4)
ToolTip = ("Refresh")
Text = ("")
Picture = Picture["icon:/small/refresh"]
}
{ btnNewDir ToolButton
MoveScaled(45,0,4,4)
ToolTip = ("Create directory")
Text = ("")
Picture = Picture["icon:/small/new-dir"]
}
{ btnShowHidden ToolButton
MoveScaled(49,0,4,4)
ToolTip = ("View hidden files")
Text = ("")
Picture = Picture["icon:/small/view-hidden"]
Toggle = True
}
{ btnDetailed ToolButton
MoveScaled(53,0,4,4)
Visible = False
ToolTip = ("Toggle view")
Text = ("")
Picture = Picture["icon:/small/view-detail"]
}
{ btnView ToolButton
MoveScaled(57,0,4,4)
ToolTip = ("Show files")
Text = ("")
Picture = Picture["icon:/small/view-split-h"]
}
}
{ splChoose HSplit
MoveScaled(2,7,56,37)
Expand = True
{ dvwChoose DirView
MoveScaled(2,3,25,33)
Picture = Picture["icon:/small/home"]
}
{ fvwChoose FileView
MoveScaled(29,3,25,33)
Visible = False
}
}
}
}
{ txtFile TextBox
MoveScaled(1,51,57,4)
Visible = False
Text = ("")
}
{ cmbFilter ComboBox
MoveScaled(1,56,57,4)
Visible = False
Text = ("")
ReadOnly = True
}
}