/usr/share/elmerpost/tcl/savetiff.tcl is in elmer-common 6.1.0.svn.5396.dfsg-2ubuntu1.
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | #/*****************************************************************************
# *
# * Elmer, A Finite Element Software for Multiphysical Problems
# *
# * Copyright 1st April 1995 - , CSC - IT Center for Science Ltd., Finland
# *
# * 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 (in file fem/GPL-2); if not, write to the
# * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# * Boston, MA 02110-1301, USA.
# *
# *****************************************************************************/
#*******************************************************************************
#*
#* TIFF save utility routines
#*
#*******************************************************************************
#*
#* Author: Mikko Lyly
#*
#* Address: CSC - IT Center for Science Ltd.
#* Keilaranta 14, P.O. BOX 405
#* 02101 Espoo, Finland
#* Tel. +358 0 457 2723
#* Telefax: +358 0 457 2302
#* EMail: Juha.Ruokolainen@csc.fi
#*
#* Date: 04 Oct 2007
#*
#* Modified by:
#*
#* Date of modification:
#*
#******************************************************************************
set TIFFFileName "elmerpost.tif"
proc savetiff.Control { } {
global savetiff_control TIFFFileName
set savetiff_control .savetiff_control
if { [winfo exists $savetiff_control] } {
destroy $savetiff_control.title
destroy $savetiff_control.file
destroy $savetiff_control.save_button
destroy $savetiff_control.buttons
} else {
toplevel $savetiff_control
place_window $savetiff_control
}
wm title $savetiff_control "Savetiff control"
#
# File name:
#
frame $savetiff_control.file
label $savetiff_control.file.label -width 8 -text "File name:"
entry $savetiff_control.file.name -width 30 -textvariable TIFFFileName
button $savetiff_control.file.button -text "Browse.." \
-command { set TIFFFileName [tk_getSaveFile -parent .savetiff_control \
-title "Save Picture To File"]; }
pack $savetiff_control.file.label $savetiff_control.file.name \
$savetiff_control.file.button -side left -expand 1
pack $savetiff_control.file -expand 1 -fill both -side top
#
# Buttons:
#
frame $savetiff_control.buttons
button $savetiff_control.buttons.close -text "Close" \
-command { destroy $savetiff_control }
frame $savetiff_control.save_button
button $savetiff_control.save_button.save \
-text "Save" -command { savetiff $TIFFFileName }
pack $savetiff_control.save_button.save \
-side left -expand 1 -fill x
pack $savetiff_control.buttons.close -side right
pack $savetiff_control.save_button -side top -expand 1 -fill x
pack $savetiff_control.buttons -side top -fill x -expand 1
}
|