home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / ccd.mnu < prev    next >
Text File  |  1996-12-19  |  2KB  |  83 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.         operations    check
  31.     }
  32. }
  33.  
  34. registerObject  {
  35.     name        .utilities.menu.reports.menu.oncommunications
  36.     type        CustMenuPushButton
  37.     visible        {1 1 1 1 1}
  38.     objSpec        {
  39.         hintText    "Generates a report on communications."
  40.         label        {On Communications}
  41.         mnemonic    C
  42.         activated    {
  43.             #CTGENCommandScript
  44.             .main startReport communications.tcl [%this label]
  45.             #CTGENEndCommandScript    
  46.         }
  47.         operations    diagram
  48.     }
  49. }
  50.  
  51. registerObject  {
  52.     name        .utilities.menu.reports.menu.onevents
  53.     type        CustMenuPushButton
  54.     visible        {1 1 1 1 1}
  55.     objSpec        {
  56.         hintText    "Generates a report on events."
  57.         label        {On Events}
  58.         mnemonic    v
  59.         activated    {
  60.             #CTGENCommandScript
  61.             .main startReport events.tcl [%this label]
  62.             #CTGENEndCommandScript    
  63.         }
  64.         operations    diagram
  65.     }
  66. }
  67.  
  68. registerObject {
  69.     name        .help.menu.aboutccdeditor
  70.     type        CustMenuPushButton
  71.     objSpec        {
  72.         hintText    "Shows version information."
  73.         label        {About CCD Editor}
  74.         mnemonic    A
  75.         activated    {
  76.             #CTGENCommandScript
  77.             showVersionDialog [%this label]
  78.             #CTGENEndCommandScript    
  79.         }
  80.     }
  81. }
  82.  
  83.