home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / dfd.mnu < prev    next >
Text File  |  1996-12-23  |  1KB  |  66 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        .utilities.menu.reports.menu.onflows
  35.     type        CustMenuPushButton
  36.     visible        {1 1 1 1 1}
  37.     objSpec        {
  38.         hintText    "Generates a report on flows."
  39.         label        {On Flows}
  40.         mnemonic    F
  41.         activated    {
  42.             #CTGENCommandScript
  43.             .main startReport flows.tcl [%this label]
  44.             #CTGENEndCommandScript    
  45.         }
  46.         operations    diagram
  47.     }
  48. }
  49.  
  50.  
  51. registerObject {
  52.     name        .help.menu.aboutdfdeditor
  53.     type        CustMenuPushButton
  54.     objSpec        {
  55.         hintText    "Shows version information."
  56.         label        {About DFD Editor}
  57.         mnemonic    A
  58.         activated    {
  59.             #CTGENCommandScript
  60.             showVersionDialog [%this label]
  61.             #CTGENEndCommandScript    
  62.         }
  63.     }
  64. }
  65.  
  66.