This file is indexed.

/usr/share/pyshared/fltk/test/file_chooser.py is in python-fltk 1.3.0-1.

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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#
# "$Id: file_chooser.py 315 2007-05-01 08:10:15Z andreasheld $"
#
# File chooser test program for pyFLTK the Python bindings
# for the Fast Light Tool Kit (FLTK).
#
# FLTK copyright 1998-1999 by Bill Spitzak and others.
# pyFLTK copyright 2003 by Andreas Held and others.
#
# This library is free software you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation either
# version 2 of the License, or (at your option) any later version.
#
# This library 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
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
#
# Please report all bugs and problems to "pyfltk-user@lists.sourceforge.net".
#

from fltk import *
import sys

# globals
fc = None
filter = None
files = None
relative = ""

def close_callback(ptr):
	sys.exit(0)

def create_callback(ptr):
	global fc
	fc.type(fc.type() ^ Fl_File_Chooser.CREATE)

def dir_callback(ptr):
	global fc
	fc.type(fc.type() ^ Fl_File_Chooser.DIRECTORY)

def fc_callback(ptr):
	global fc
	#fc = Fl_File_Chooser(ptr)
	filename = fc.value()
	print "    filename = ", filename

def multi_callback(ptr):
	global fc
	fc.type(fc.type() ^ Fl_File_Chooser.MULTI)

def pdf_check(name, header, headerlen):
	return None

def ps_check(name, header, headerlen):
	return None

def show_callback(ptr):
	global fc
	global filter
	global relative
	global files
	#fc.show()

	if filter.value() != None:
		#fc.filter(filter.value())
		fc.filter("*.*")

	fc.show()

	while fc.visible():
		Fl.wait()
	
	count = fc.count()
	#print "count = ", count
	#if count > 1:
	#	files.clear()
	#	i = 0
	#	if fc.value(i) != None:
	#	    (status, relative) = fl_filename_relative(relative, 1024, fc.value(i))
	#	    files.add(relative, None)	
	#	files.redraw()       
	if count > 0:
		files.clear()
		i = 1;
		while i <= count:
			if fc.value(i) != None:
			   (status,relative) = fl_filename_relative(relative, 1024, fc.value(i))
			   files.add(relative, Fl_File_Icon.find(fc.value(i),Fl_File_Icon.PLAIN))
			i = i+1
		files.redraw()


# Make the file chooser...
#Fl.scheme(0)
Fl_File_Icon.load_system_icons()
filter_string="*.*"

fc = Fl_File_Chooser(".", "*", Fl_File_Chooser.SINGLE, "Fl_File_Chooser Test");
#fc = Fl_File_Chooser("", filter_string, Fl_File_Chooser.SINGLE, "Fl_File_Chooser Test")
fc.callback(fc_callback)
fc.preview(0)

# Register the PS and PDF image types...
#Fl_Shared_Image.add_handler(pdf_check)
#Fl_Shared_Image.add_handler(ps_check)


#make the main window
window = Fl_Window(400, 200, "File Chooser Test")
filter = Fl_Input(50, 10, 310, 25, "Filter:")
filter.value(filter_string)
#filter.value("PDF Files (*.pdf)\t"
#                  "PostScript Files (*.ps)\t"
#		  "Image Files (*.{bmp,gif,jpg,png})\t"
#		  "C/C++ Source Files (*.{c,C,cc,cpp,cxx})")

b1 = Fl_Button(365, 10, 25, 25, "Test")
b1.labelcolor(FL_YELLOW);
b1.callback(show_callback);

icon   = Fl_File_Icon.find(".", Fl_File_Icon.DIRECTORY)
#print "icon = ", icon
if icon != None:
	icon.label(b1);

b2 = Fl_Light_Button(50, 45, 80, 25, "MULTI")
b2.callback(multi_callback)

b3 = Fl_Light_Button(140, 45, 90, 25, "CREATE")
b3.callback(create_callback);

b4 = Fl_Light_Button(240, 45, 115, 25, "DIRECTORY")
b4.callback(dir_callback);

files = Fl_File_Browser(50, 80, 340, 75, "Files:")
files.align(FL_ALIGN_LEFT);

b5 = Fl_Button(340, 165, 50, 25, "Close")
b5.callback(close_callback)

window.resizable(files)
window.end()
window.show()

Fl.run()