This file is indexed.

/usr/share/saods9/src/macosx.tcl is in saods9-data 7.2+dfsg-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
 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
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
#  Copyright (C) 1999-2012
#  Smithsonian Astrophysical Observatory, Cambridge, MA, USA
#  For conditions of distribution and use, see copyright notice in "copyright"

package provide DS9 1.0

# ::tk::mac::OpenApplication
# ::tk::mac::ReopenApplication

proc ::tk::mac::OpenDocument {args} {
    global ds9

    set ds9(event,opendoc) $args
    if {!$ds9(init)} {
	MacOSXOpenDocEvent 1
    }
}

proc ::tk::mac::PrintDocument {args} {
    global ds9

    set ds9(event,printdoc) $args
    if {!$ds9(init)} {
	MacOSXPrintDocEvent 0
    }
}

proc ::tk::mac::ShowPreferences {} {
    PrefsDialog
}

proc ::tk::mac::Quit {args} {
    QuitDS9
}

proc MacOSXOpenDocEvent {fc} {
    global ds9

    if {$ds9(event,opendoc) != {}} {
	StartLoad
	foreach f $ds9(event,opendoc) {
	    MultiLoad
	    LoadFitsFile $f {} {}
	    FileLastFull fitsfbox $f

	}
	FinishLoad
    }
}

proc MacOSXPrintDocEvent {bye} {
    global ds9

    if {$ds9(event,printdoc) != {}} {
	set fc 0

	foreach f $ds9(event,printdoc) {
	    RealizeDS9
	    StartLoad

	    MultiLoad
	    LoadFitsFile $f {} {}
	    FileLastFull fitsfbox $f

	    FinishLoad
	    MacOSXPrintPre
	}

	if {$bye} {
	    Quit
	}
    }
}

proc MacOSXGetLocale {} {
    return [macosx locale]
}

proc MacOSXPrint {} {
    global ds9

    # we need to be realized
    RealizeDS9
    # need the colorbar levels updated
    UpdateColormapLevel

    if {[macosx pm print begin [winfo width $ds9(canvas)] [winfo height $ds9(canvas)] yes]} {
	foreach f $ds9(frames) {
	    $f macosx print
	}
	colorbar macosx print
	colorbarrgb macosx print
	macosx pm print end
    }
}

proc MacOSXPrintPre {} {
    global ds9

    if {[macosx pm print begin [winfo width $ds9(canvas)] [winfo height $ds9(canvas)] no]} {
	foreach f $ds9(frames) {
	    $f macosx print
	}
	colorbar macosx print
	colorbarrgb macosx print
	macosx pm print end
    }
}

proc MacOSXPageSetup {} {
    macosx pm pagesetup
}