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

  1. registerObject  {
  2.     name        .edit.menu.corporate_1
  3.     type        CustMenuSeparator
  4.     visible        {1 1 1 1 1}
  5.     objSpec        {
  6.     }
  7. }
  8.  
  9. registerObject  {
  10.     name        .options.menu.syntax
  11.     type        CustMenuPushButton
  12.     visible        {1 1 1 1 1}
  13.     objSpec        {
  14.         hintText    "Changes the syntax specification for labels."
  15.         label        Syntax...
  16.         mnemonic    y
  17.         activated    {
  18.             #CTGENCommandScript
  19.             [.main options] syntax
  20.             #CTGENEndCommandScript    
  21.         }
  22.     }
  23. }
  24.  
  25. registerObject  {
  26.     name        .check.menu.localmodel
  27.     type        CustMenuPushButton
  28.     visible        {1 1 1 1 1}
  29.     objSpec        {
  30.         hintText    "Checks the local model of this diagram."
  31.         label        {Local Model}
  32.         mnemonic    L
  33.         activated    {
  34.             #CTGENCommandScript
  35.             .main checkLocalModel
  36.             #CTGENEndCommandScript    
  37.         }
  38.     }
  39. }
  40.  
  41. registerObject  {
  42.     name        .utilities.menu.reports.menu.oncommunications
  43.     type        CustMenuPushButton
  44.     visible        {1 1 1 1 1}
  45.     objSpec        {
  46.         hintText    "Generates a report on communications."
  47.         label        {On Communications}
  48.         mnemonic    C
  49.         activated    {
  50.             #CTGENCommandScript
  51.             .main startReport communications.tcl [%this label]
  52.             #CTGENEndCommandScript    
  53.         }
  54.         operations    diagram
  55.     }
  56. }
  57.  
  58. registerObject  {
  59.     name        .utilities.menu.reports.menu.onmessages
  60.     type        CustMenuPushButton
  61.     visible        {1 1 1 1 1}
  62.     objSpec        {
  63.         hintText    "Generates a report on messages."
  64.         label        {On Messages}
  65.         mnemonic    e
  66.         activated    {
  67.             #CTGENCommandScript
  68.             .main startReport events.tcl [%this label]
  69.             #CTGENEndCommandScript    
  70.         }
  71.         operations    diagram
  72.     }
  73. }
  74.  
  75. registerObject {
  76.     name        .help.menu.aboutcodeditor
  77.     type        CustMenuPushButton
  78.     objSpec        {
  79.         hintText    "Shows version information."
  80.         label        {About COD Editor}
  81.         mnemonic    A
  82.         activated    {
  83.             #CTGENCommandScript
  84.             showVersionDialog [%this label]
  85.             #CTGENEndCommandScript    
  86.         }
  87.     }
  88. }
  89.  
  90.