guiPlatformGenericMenubar.ed.cs 420 B

12345678910111213141516171819
  1. if(isClass(GuiPlatformGenericMenuBar))
  2. {
  3. exec("./guiPlatformGenericMenubar.ed.gui");
  4. }
  5. else
  6. {
  7. %guiContent = new GuiControl(PlatformGenericMenubar) {
  8. profile = "GuiModelessDialogProfile";
  9. new GuiControl()
  10. {
  11. internalName = "menubar";
  12. extent = "1024 20";
  13. minExtent = "320 20";
  14. horizSizing = "width";
  15. profile = "GuiMenuBarProfile";
  16. };
  17. };
  18. }