home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / std.mnu < prev    next >
Text File  |  1997-10-16  |  2KB  |  117 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.     type    CustMenuSeparator
  35.     name    .options.menu.separator1
  36. }
  37.  
  38. registerObject {
  39.     name        .options.menu.menuarbiter
  40.     type        CustMenuArbiter
  41.     objSpec {
  42.         currentButtonChanged    { [.main options] look }
  43.     }
  44. }
  45.  
  46. registerObject {
  47.     name        .options.menu.UML
  48.     type        CustMenuRadioButton
  49.     arbiter        menuarbiter
  50.     objSpec        {
  51.         hintText    "Changes to UML look."
  52.         label        "UML Look"
  53.         mnemonic    U
  54.     }
  55. }
  56.  
  57. registerObject {
  58.     name        .options.menu.OMT
  59.     type        CustMenuRadioButton
  60.     arbiter        menuarbiter
  61.     objSpec        {
  62.         hintText    "Changes to OMT look."
  63.         label        "OMT Look"
  64.         mnemonic    M
  65.     }
  66. }
  67.  
  68. registerObject  {
  69.     name        .check.menu.localmodel
  70.     type        CustMenuPushButton
  71.     visible        {1 1 1 1 1}
  72.     objSpec        {
  73.         hintText    "Checks the local model of this diagram."
  74.         label        {Local Model}
  75.         mnemonic    L
  76.         activated    {
  77.             #CTGENCommandScript
  78.             .main checkLocalModel
  79.             #CTGENEndCommandScript    
  80.         }
  81.     }
  82. }
  83.  
  84. registerObject  {
  85.     name        .utilities.menu.reports.menu.onevents
  86.     type        CustMenuPushButton
  87.     visible        {1 1 1 1 1}
  88.     objSpec        {
  89.         hintText    "Generates a report on events."
  90.         label        {On Events}
  91.         mnemonic    v
  92.         activated    {
  93.             #CTGENCommandScript
  94.             .main startReport events.tcl [%this label]
  95.             #CTGENEndCommandScript    
  96.         }
  97.         operations    diagram
  98.     }
  99. }
  100.  
  101.  
  102. registerObject {
  103.     name        .help.menu.aboutstdeditor
  104.     type        CustMenuPushButton
  105.     objSpec        {
  106.         hintText    "Shows version information."
  107.         label        {About STD Editor}
  108.         mnemonic    A
  109.         activated    {
  110.             #CTGENCommandScript
  111.             showVersionDialog [%this label]
  112.             #CTGENEndCommandScript    
  113.         }
  114.     }
  115. }
  116.  
  117.