home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / etd.mnu < prev    next >
Text File  |  1996-12-19  |  1KB  |  67 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.     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.onevents
  36.     type        CustMenuPushButton
  37.     visible        {1 1 1 1 1}
  38.     objSpec        {
  39.         hintText    "Generates a report on events."
  40.         label        {On Events}
  41.         mnemonic    v
  42.         activated    {
  43.             #CTGENCommandScript
  44.             .main startReport events.tcl [%this label]
  45.             #CTGENEndCommandScript    
  46.         }
  47.         operations    diagram
  48.     }
  49. }
  50.  
  51.  
  52. registerObject {
  53.     name        .help.menu.aboutetdeditor
  54.     type        CustMenuPushButton
  55.     objSpec        {
  56.         hintText    "Shows version information."
  57.         label        {About ETD Editor}
  58.         mnemonic    A
  59.         activated    {
  60.             #CTGENCommandScript
  61.             showVersionDialog [%this label]
  62.             #CTGENEndCommandScript    
  63.         }
  64.     }
  65. }
  66.  
  67.