home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
s_mtrxvdbo.tcl
< prev
next >
Wrap
Text File
|
1997-08-07
|
1KB
|
37 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1997
#
# File: @(#)s_mtrxvdbo.tcl /main/titanic/3
# Author: voyager
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)s_mtrxvdbo.tcl /main/titanic/3 7 Aug 1997 Copyright 1997 Cayenne Software Inc.
proc MtrxVDbObj::editFile_docwriter {this} {
require "docstructd.tcl"
global classCount
incr classCount
set box .main.documentStructureDialog$classCount
DocStructDlg new $box $this \
-modal 1 \
-editable 1 \
-title "Edit Document Structure" \
-helpPressed {.main helpOnName documentStructureDialog}
$box popUp
}
proc MtrxVDbObj::showFile_docwriter {this} {
require "docstructd.tcl"
global classCount
incr classCount
set box .main.documentStructureDialog$classCount
DocStructDlg new $box $this \
-editable 0 \
-title "Show Document Structure" \
-helpPressed {.main helpOnName documentStructureDialog}
$box popUp
}