home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / etd.mnu < prev    next >
Text File  |  1997-10-16  |  2KB  |  101 lines

  1. registerObject  {
  2.     name        .options.menu.font.menu.bold
  3.     type        CustMenuPushButton
  4.     visible        {1 1 1 1 1}
  5.     objSpec        {
  6.         hintText    "Changes the bold font."
  7.         label        Bold...
  8.         mnemonic    B
  9.         activated    {
  10.             #CTGENCommandScript
  11.             [.main options] boldFont 
  12.             #CTGENEndCommandScript    
  13.         }
  14.     }
  15. }
  16.  
  17. registerObject {
  18.     type    CustMenuSeparator
  19.     name    .options.menu.separator1
  20. }
  21.  
  22. registerObject {
  23.     name        .options.menu.menuarbiter
  24.     type        CustMenuArbiter
  25.     objSpec {
  26.         currentButtonChanged    { [.main options] look }
  27.     }
  28. }
  29.  
  30. registerObject {
  31.     name        .options.menu.UML
  32.     type        CustMenuRadioButton
  33.     arbiter        menuarbiter
  34.     objSpec        {
  35.         hintText    "Changes to UML look."
  36.         label        "UML Look"
  37.         mnemonic    U
  38.     }
  39. }
  40.  
  41. registerObject {
  42.     name        .options.menu.OMT
  43.     type        CustMenuRadioButton
  44.     arbiter        menuarbiter
  45.     objSpec        {
  46.         hintText    "Changes to OMT look."
  47.         label        "OMT Look"
  48.         mnemonic    M
  49.     }
  50. }
  51.  
  52. registerObject  {
  53.     name        .check.menu.localmodel
  54.     type        CustMenuPushButton
  55.     visible        {1 1 1 1 1}
  56.     objSpec        {
  57.         hintText    "Checks the local model of this diagram."
  58.         label        {Local Model}
  59.         mnemonic    L
  60.         activated    {
  61.             #CTGENCommandScript
  62.             .main checkLocalModel
  63.             #CTGENEndCommandScript    
  64.         }
  65.     }
  66. }
  67.  
  68. registerObject  {
  69.     name        .utilities.menu.reports.menu.onmessages
  70.     type        CustMenuPushButton
  71.     visible        {1 1 1 1 1}
  72.     objSpec        {
  73.         hintText    "Generates a report on messages."
  74.         label        {On Messages}
  75.         mnemonic    e
  76.         activated    {
  77.             #CTGENCommandScript
  78.             .main startReport events.tcl [%this label]
  79.             #CTGENEndCommandScript    
  80.         }
  81.         operations    diagram
  82.     }
  83. }
  84.  
  85.  
  86. registerObject {
  87.     name        .help.menu.aboutetdeditor
  88.     type        CustMenuPushButton
  89.     objSpec        {
  90.         hintText    "Shows version information."
  91.         label        {About SD Editor}
  92.         mnemonic    A
  93.         activated    {
  94.             #CTGENCommandScript
  95.             showVersionDialog [%this label]
  96.             #CTGENEndCommandScript    
  97.         }
  98.     }
  99. }
  100.  
  101.