/usr/share/tkgate-1.8.7/scripts/tkgate.tcl is in tkgate-data 1.8.7-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | # Copyright (C) 1987-2007 by Jeffery P. Hansen
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# Last edit by hansen on Mon Mar 14 08:36:29 2005
#
# The following variables are set before executing the file:
# tkg_gateHome The home directory for tkgate.
# sd The directory with tcl script files
# bd The directory with bitmaps
#
#set imtest 0
#catch {
# set imtest [tk useinputmethods 1]
#}
source $sd/parms.tcl
source $sd/misc.tcl
start_splash
source $sd/dropbox.tcl
source $sd/dragger.tcl
source $sd/helpon.tcl
source $sd/frame.tcl
source $sd/blocklist.tcl
source $sd/editnets.tcl
source $sd/portlist.tcl
source $sd/menu.tcl
source $sd/gcanvas.tcl
source $sd/status.tcl
source $sd/print.tcl
source $sd/scope.tcl
source $sd/toolbar.tcl
source $sd/message.tcl
source $sd/errbox.tcl
source $sd/editgate.tcl
source $sd/circuit.tcl
source $sd/simulator.tcl
source $sd/simtty.tcl
source $sd/commands.tcl
source $sd/options.tcl
source $sd/cpath.tcl
source $sd/license.tcl
source $sd/action.tcl
source $sd/shortcuts.tcl
tkg_modeChanged $mode
tkg_teardownSimMenus
gat_init
gat_makeMakeShortcuts
end_splash
#
|