home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / newmenubar.tcl < prev    next >
Text File  |  1996-05-29  |  1KB  |  54 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)newmenubar.tcl    1.9
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)newmenubar.tcl    1.9   02 Apr 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "newcustobj.tcl"
  15.  
  16. Class NewMenuBarButtonDialog : {NewCustObjectDialog} {
  17.     constructor
  18.     method destructor
  19. }
  20.  
  21. constructor NewMenuBarButtonDialog {class this name} {
  22.     set this [NewCustObjectDialog::constructor $class $this $name]
  23.     # Start constructor user section
  24.     $this title CustMenuBarButton
  25.     interface DlgColumn $this.DC {
  26.         Label L {
  27.             text "Name:"
  28.         }
  29.         SingleLineText nameSLT {
  30.         }
  31.     }
  32.     $this okPressed {
  33.         set name [%this.DC.nameSLT text]
  34.         %this popDown
  35.         [.main editorArea] newObject CustMenuBarButton \
  36.             $name "dummyParent" [%this edit]
  37.     }
  38.     $this helpPressed { .main helpOnName newMenuPart }
  39.  
  40.     $this checkList [list "$this.DC.nameSLT textModified text"]
  41.  
  42.     # End constructor user section
  43.     return $this
  44. }
  45.  
  46. method NewMenuBarButtonDialog::destructor {this} {
  47.     # Start destructor user section
  48.     # End destructor user section
  49.     $this NewCustObjectDialog::destructor
  50. }
  51.  
  52. # Do not delete this line -- regeneration end marker
  53.  
  54.