gambas-source-code/app/examples/Control/HighlightEditor/.src/FEditor.form
Benoît Minisini c6a9cd69c2 [EXAMPLES]
* NEW: Add examples again. I hope correctly this time.


git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-12-12 19:58:52 +00:00

38 lines
807 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(1,1,48,48)
{ Editor1 Editor
MoveScaled(3,2,43,16)
Font = Font["Bitstream Vera Sans Mono"]
Background = Color.LightBackground
Highlight = Highlight.Custom
}
{ Editor2 Editor
MoveScaled(2,22,43,15)
Visible = False
Highlight = Highlight.Custom
}
}
}