This file is indexed.

/usr/share/pyshared/pida/ui/icons.py is in pida 0.5.1-6.

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
import os

import gtk, gtk.gdk
 
from kiwi.environ import environ


class IconRegister(object):

    def __init__(self):
        self._factory = gtk.IconFactory()
        self._factory.add_default()
        self._register_theme_icons()
        self._register_file_icons()

    def _register_file_icons(self):
        for directory in environ.get_resource_paths('pixmaps'):
            self.register_file_icons_for_directory(directory)

    def register_file_icons_for_directory(self, directory):
        for filename in os.listdir(directory):
            name, ext = os.path.splitext(filename)
            if ext in ['.png', '.gif', '.svg', '.jpg']:
                path = os.path.join(directory, filename)
                self._stock_add(name)
                self._register_file_icon(name, path)

    def _register_theme_icons(self):
        stock_ids = gtk.stock_list_ids()
        for name in gtk.icon_theme_get_default().list_icons():
            if name not in stock_ids:
                self._stock_add(name)
                self._register_theme_icon(name)

    def _stock_add(self, name, label=None):
        if label is None:
            label = name.capitalize()
        gtk.stock_add([(name, label, 0, 0, None)])

    def _register_theme_icon(self, name):
        icon_set = gtk.IconSet()
        self._register_icon_set(icon_set, name)

    def _register_file_icon(self, name, filename):
        #im = gtk.Image()
        #im.set_from_file(filename)
        #pb = im.get_pixbuf()
        pb = gtk.gdk.pixbuf_new_from_file_at_size(filename, 32, 32)
        icon_set = gtk.IconSet(pb)
        self._register_icon_set(icon_set, name)
        # this is broken for some reason
        #gtk.icon_theme_add_builtin_icon(name, gtk.ICON_SIZE_SMALL_TOOLBAR, pb)

    def _register_icon_set(self, icon_set, name):
        source = gtk.IconSource()
        source.set_icon_name(name)
        icon_set.add_source(source)
        self._factory.add(name, icon_set)






#w = gtk.Window()
#i = gtk.Image()
#i.set_from_stock("foo", gtk.ICON_SIZE_DIALOG)
#w.add(i)
#w.show_all()
#w.connect('destroy', gtk.main_quit)
#gtk.main()