c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
35 lines
689 B
Text
35 lines
689 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(19,0,75.2857,70.7143)
|
|
Text = ("DeepSpace Vector Engine")
|
|
Icon = Picture["images/deepspace.png"]
|
|
Resizable = False
|
|
{ mnuMain Menu
|
|
Text = ("&DeepSpace")
|
|
{ mnuShowText Menu
|
|
Text = ("&Show object labels")
|
|
}
|
|
{ mnuMainAbout Menu
|
|
Text = ("&About DeepSpace ...")
|
|
}
|
|
{ mnuMainSep1 Menu
|
|
}
|
|
{ mnuMainExit Menu
|
|
Text = ("&Exit")
|
|
Shortcut = "Ctrl+Q"
|
|
}
|
|
}
|
|
{ daCanvas DrawingArea
|
|
MoveScaled(0,0,54,50)
|
|
Font = Font["Monospace"]
|
|
Background = &H000000&
|
|
Cached = True
|
|
Focus = True
|
|
}
|
|
{ tmrMainLoop #Timer
|
|
#MoveScaled(65,43)
|
|
Enabled = True
|
|
Delay = 20
|
|
}
|
|
}
|