home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1997
- #
- # File: @(#)mteditmenu.tcl /main/titanic/1
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)mteditmenu.tcl /main/titanic/1 7 Aug 1997 Copyright 1997 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
-
- Class MTEditMenuProcs : {Object} {
- constructor
- method destructor
- }
-
- constructor MTEditMenuProcs {class this name} {
- set this [Object::constructor $class $this $name]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method MTEditMenuProcs::destructor {this} {
- # Start destructor user section
- # End destructor user section
- }
-
- proc MTEditMenuProcs::selectAll {} {
-
- [.main infoView] selectedSet [[.main infoView] objectSet]
- .main selectionChanged
- }
-
- proc MTEditMenuProcs::invertSelection {} {
-
- foreach object [[.main infoView] objectSet] {
- $object selectState [expr {![$object selectState]}]
- }
- .main selectionChanged
- }
-
- # Do not delete this line -- regeneration end marker
-
-