4faa9876bf
* BUG: Fix initial focus of welcome dialog. [INTERPRETER] * BUG: Release standard i/o File objects before cleaning up the classes, to avoid an incorrect "circular reference" message. [GB.GTK] * NEW: Link to the pthread library explicitly. * NEW: WAIT inside a keybord handler does not raise an error anymore. It just print a warning message and does nothing. [GB.GTK3] * NEW: Link to the pthread library explicitly. * NEW: WAIT inside a keybord handler does not raise an error anymore. It just print a warning message and does nothing. [GB.UTIL] * NEW: Date.EasterDay returns the Easter day of a specific year. [GB.QT4] * NEW: Link to the pthread library explicitly. * NEW: WAIT inside a keybord handler does not raise an error anymore. It just print a warning message and does nothing. [GB.QT4.EXT] * NEW: Editor.Font property now can take any font in the IDE. git-svn-id: svn://localhost/gambas/trunk@6754 867c0c6c-44f3-4631-809d-bfa615b0a4ec
36 lines
719 B
Text
36 lines
719 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(7.4286,17.7143,72.4286,66.7143)
|
|
Text = ("HTML Highlighting Editor")
|
|
Icon = Picture["editor.png"]
|
|
Arrangement = Arrange.Fill
|
|
{ mnuPopup Menu
|
|
Text = ("Popup")
|
|
Visible = False
|
|
{ mnuHighlight Menu
|
|
Text = ("Highlight HTML")
|
|
Checked = True
|
|
}
|
|
{ mnuImmediately Menu
|
|
Text = ("Highlight immediately")
|
|
}
|
|
{ Menu1 Menu
|
|
}
|
|
{ mnuQuit Menu
|
|
Text = ("Quit")
|
|
}
|
|
}
|
|
{ VSplit1 VSplit
|
|
MoveScaled(7,8,48,48)
|
|
{ Editor1 Editor
|
|
MoveScaled(3,2,43,16)
|
|
Border = False
|
|
Highlight = Highlight.Custom
|
|
}
|
|
{ Editor2 Editor
|
|
MoveScaled(2,22,43,15)
|
|
Highlight = Highlight.Custom
|
|
}
|
|
}
|
|
}
|