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

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