gambas-source-code/app/src/gambas3/FList.form
Benoît Minisini 1bb3f3a509 [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-18 23:43:38 +00:00

50 lines
987 B
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(19.1667,40,63,41)
Text = ("Edit list property")
Resizable = False
{ lstValue ListBox
MoveScaled(1,1,44,29)
}
{ btnOK Button
MoveScaled(46,1,16,4)
Text = ("OK")
Default = True
}
{ btnCancel Button
MoveScaled(46,6,16,4)
Text = ("Cancel")
Cancel = True
}
{ btnInsert Button
MoveScaled(1,36,14,4)
Text = ("&Insert")
Picture = Picture["icon:/small/add"]
}
{ btnUp Button
MoveScaled(31,36,4,4)
Text = ("")
Picture = Picture["icon:/small/up"]
}
{ btnDown Button
MoveScaled(36,36,4,4)
Text = ("")
Picture = Picture["icon:/small/down"]
}
{ btnDelete Button
MoveScaled(16,36,14,4)
Text = ("&Delete")
Picture = Picture["icon:/small/delete"]
}
{ txtValue TextBox
MoveScaled(1,31,44,4)
Enabled = False
Text = ("")
}
{ btnClear Button
MoveScaled(41,36,4,4)
Text = ("")
Picture = Picture["icon:/small/trash"]
}
}