home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / std.mnu < prev    next >
Text File  |  1996-12-19  |  2KB  |  83 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        .options.menu.syntax
  19.     type        CustMenuPushButton
  20.     visible        {1 1 1 1 1}
  21.     objSpec        {
  22.         hintText    "Changes the syntax specification for labels."
  23.         label        Syntax...
  24.         mnemonic    y
  25.         activated    {
  26.             #CTGENCommandScript
  27.             [.main options] syntax
  28.             #CTGENEndCommandScript    
  29.         }
  30.     }
  31. }
  32.  
  33. registerObject  {
  34.     name        .check.menu.localmodel
  35.     type        CustMenuPushButton
  36.     visible        {1 1 1 1 1}
  37.     objSpec        {
  38.         hintText    "Checks the local model of this diagram."
  39.         label        {Local Model}
  40.         mnemonic    L
  41.         activated    {
  42.             #CTGENCommandScript
  43.             .main checkLocalModel
  44.             #CTGENEndCommandScript    
  45.         }
  46.         operations    check
  47.     }
  48. }
  49.  
  50. registerObject  {
  51.     name        .utilities.menu.reports.menu.onevents
  52.     type        CustMenuPushButton
  53.     visible        {1 1 1 1 1}
  54.     objSpec        {
  55.         hintText    "Generates a report on events."
  56.         label        {On Events}
  57.         mnemonic    v
  58.         activated    {
  59.             #CTGENCommandScript
  60.             .main startReport events.tcl [%this label]
  61.             #CTGENEndCommandScript    
  62.         }
  63.         operations    diagram
  64.     }
  65. }
  66.  
  67.  
  68. registerObject {
  69.     name        .help.menu.aboutstdeditor
  70.     type        CustMenuPushButton
  71.     objSpec        {
  72.         hintText    "Shows version information."
  73.         label        {About STD Editor}
  74.         mnemonic    A
  75.         activated    {
  76.             #CTGENCommandScript
  77.             showVersionDialog [%this label]
  78.             #CTGENEndCommandScript    
  79.         }
  80.     }
  81. }
  82.  
  83.