gambas-source-code/app/examples/Games/GNUBoxWorld/.src/FMain.form
Benoît Minisini c31c915f1d [DEVELOPMENT ENVIRONMENT]
* NEW: Animate wizards.
* NEW: Software farm: The software description is now selectable.
* NEW: Software farm: The software box text contents is now displayed 
  without waiting for the icon to be available.

[EXAMPLES]
* BUG: Fix the GNUBoxWorld icon.

[GB.FORM]
* NEW: Wizard.Animated is a new property that animate the wizard when 
  going to the next or previous step.


git-svn-id: svn://localhost/gambas/trunk@6728 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-12-12 23:33:39 +00:00

37 lines
703 B
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(0,0,42,16)
Icon = Picture["icon.png"]
Resizable = False
{ MnuGame Menu
Text = ("Game")
{ MnuClear Menu
Text = ("Clear")
Picture = Picture["icon:/32/clear"]
}
{ MnuQuit Menu
Text = ("Quit")
Picture = Picture["icon:/32/quit"]
}
}
{ mnuLevel Menu
Text = ("Level")
}
{ MnuHelp Menu
Text = ("Help")
{ MnuHelpPlay Menu
Text = ("How to play?")
Picture = Picture["icon:/32/help"]
}
{ MnuAbout Menu
Text = ("About")
Picture = Picture["icon:/32/info"]
}
}
{ btnClear Button
MoveScaled(15,2,16,6)
Font = Font["Bold,+4"]
Text = ("Clear")
}
}