home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
repdirbrow.tcl
< prev
next >
Wrap
Text File
|
1997-07-25
|
1KB
|
47 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1997
#
# File: @(#)repdirbrow.tcl /main/titanic/3
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)repdirbrow.tcl /main/titanic/3 25 Jul 1997 Copyright 1997 Cayenne Software Inc.
# Start user added include file section
# End user added include file section
require "dirbrowser.tcl"
Class RepDirBrowser : {DirBrowser} {
method destructor
constructor
method showDumpInfo
}
method RepDirBrowser::destructor {this} {
# Start destructor user section
# End destructor user section
$this DirBrowser::destructor
}
constructor RepDirBrowser {class this name {createButton 0} {infoButton 0}} {
set this [DirBrowser::constructor $class $this $name $createButton]
if $infoButton {
PushButton new $this.info \
-label "Info" \
-activated "$this showDumpInfo"
}
return $this
}
method RepDirBrowser::showDumpInfo {this} {
$this handleOk
Repository::showDumpInfo [$this selected]
}
# Do not delete this line -- regeneration end marker