This file is indexed.

/usr/lib/python2.7/dist-packages/spectlib/trayicon.py is in specto 0.3.1-0ubuntu3.

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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# -*- coding: UTF8 -*-

# Specto , Unobtrusive event notifier
#
#       trayicon.py
#
# See the AUTHORS file for copyright ownership information

# 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., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.

import gtk
import os
from spectlib.i18n import _


def gettext_noop(s):
    return s


class Tray:
    """
    Display a tray icon in the notification area.
    """

    def __init__(self, specto, notifier):
        self.specto = specto
        self.notifier = notifier

        self.ICON_PATH = os.path.join(self.specto.PATH, "icons/specto_tray_1.svg")
        self.ICON2_PATH = os.path.join(self.specto.PATH, "icons/specto_tray_2.svg")
        # Create the tray icon object
        self.tray = None
        if not self.tray:
            self.tray = gtk.StatusIcon()
        self.tray.set_from_file(self.ICON_PATH)
        self.tray.connect("activate", self.show_notifier)
        self.tray.connect("popup-menu", self.show_popup)
        if self.specto.specto_gconf.get_entry("always_show_icon") == True:
            self.tray.set_visible(True)
        else:
            self.tray.set_visible(False)

        while gtk.events_pending():
            gtk.main_iteration(True)

    def set_icon_state_excited(self):
        """ Change the tray icon to "changed". """
        if self.specto.specto_gconf.get_entry("always_show_icon") == False:
            self.tray.set_from_file(self.ICON2_PATH)
            self.tray.set_visible(True)#we need to show the tray again
        else:
            self.tray.set_from_file(self.ICON2_PATH)

    def set_icon_state_normal(self):
        """ Change the tray icon to "not changed". If the user requested to always show the tray, it will change its icon but not disappear. Otherwise, it will be removed."""
        if self.specto.specto_gconf.get_entry("always_show_icon") == False:
            self.tray.set_visible(False)
        else:
            self.tray.set_from_file(self.ICON_PATH)

    def show_tooltip(self):
        """ Create the tooltip message and show the tooltip. """
        global _
        show_return = False
        changed_messages = self.specto.watch_db.count_changed_watches()
        message = ""

        z = 0
        y = 0
        for i in changed_messages.values():
            if i > 0:
                y += 1
                if show_return == True:
                    message += "\n"
                message += str(i) + " " + changed_messages.keys()[z]
                #message += i18n._translation.ungettext(_("watch"), _("watches"), i) #disabled, because it is redundant and not properly translatable
                show_return = True
            z += 1

        if y > 0:
            self.set_icon_state_excited()
        else:
            message = _("No changed watches.")
            self.set_icon_state_normal()

        self.tray.set_tooltip(message)

    def show_preferences(self, widget):
        """ Call the main function to show the preferences window. """
        self.notifier.show_preferences()

    def show_help(self, widget):
        """ Call the main function to show help. """
        self.notifier.show_help()

    def show_about(self, widget):
        """ Call the main function to show the about window. """
        self.notifier.show_about()

    def refresh(self, widget):
        self.notifier.refresh_all_watches()

    def show_notifier(self, widget):
        """ Call the main function to show the notifier window. """
        if self.specto.specto_gconf.get_entry("always_show_icon") == True:
            self.specto.toggle_notifier()
        else:
            self.specto.notifier.notifier.present()

    def show_popup(self, status_icon, button, activate_time):
        """
        Create the popupmenu
        """
        ## From the PyGTK 2.10 documentation
        # status_icon : the object which received the signal
        # button :      the button that was pressed, or 0 if the signal is not emitted in response to a button press event
        # activate_time :       the timestamp of the event that triggered the signal emission
        if self.specto.specto_gconf.get_entry("always_show_icon") == True and self.specto.notifier.get_state() == True:
            text = _("Hide window")
        else:
            text = _("Show window")

        # Create menu items
        self.item_show = gtk.MenuItem(text, True)
        self.item_pref = gtk.ImageMenuItem(gtk.STOCK_PREFERENCES)
        self.item_help = gtk.ImageMenuItem(gtk.STOCK_HELP)
        self.item_about = gtk.ImageMenuItem(gtk.STOCK_ABOUT)
        self.item_quit = gtk.ImageMenuItem(gtk.STOCK_QUIT)
        self.item_clear = gtk.MenuItem(_("Mark as read"), True)
        self.item_refresh = gtk.ImageMenuItem(_("Refresh All"))
        image = gtk.image_new_from_stock(gtk.STOCK_REFRESH, gtk.ICON_SIZE_MENU)
        self.item_refresh.set_image(image)
        image.show()

        #create submenu for changed watches
        self.sub_menu = gtk.Menu()

        self.sub_item_clear = gtk.ImageMenuItem(_("_Mark all read"), True)
        image = gtk.image_new_from_stock(gtk.STOCK_CLEAR, gtk.ICON_SIZE_MENU)
        self.sub_item_clear.set_image(image)
        image.show()

        self.sub_item_clear.connect('activate', self.specto.notifier.mark_all_as_read)
        self.sub_menu.append(self.sub_item_clear)

        self.sub_menu.append(gtk.SeparatorMenuItem())

        for watch in self.specto.watch_db:
            if watch.changed == True:
                self.sub_item_clear = gtk.ImageMenuItem(watch.name, True)
                image = gtk.image_new_from_pixbuf(self.notifier.get_icon(watch.icon, 0, False))
                self.sub_item_clear.set_image(image)
                self.sub_item_clear.connect('activate', self.specto.notifier.mark_watch_as_read, watch.id)
                self.sub_menu.append(self.sub_item_clear)

        self.sub_menu.show_all()
        self.item_clear.set_submenu(self.sub_menu)

        # Connect the events
        self.item_show.connect('activate', self.show_notifier)
        self.item_refresh.connect('activate', self.refresh)
        self.item_pref.connect('activate', self.show_preferences)
        self.item_help.connect('activate', self.show_help)
        self.item_about.connect('activate', self.show_about)
        self.item_quit.connect('activate', self.quit)

        # Create the menu
        self.menu = gtk.Menu()

        # Append menu items to the menu
        self.menu.append(self.item_show)
        self.menu.append(gtk.SeparatorMenuItem())
        self.menu.append(self.item_refresh)
        self.menu.append(self.item_clear)
        self.menu.append(gtk.SeparatorMenuItem())
        self.menu.append(self.item_pref)
        self.menu.append(self.item_help)
        self.menu.append(self.item_about)
        self.menu.append(gtk.SeparatorMenuItem())
        self.menu.append(self.item_quit)
        self.menu.show_all()
        self.menu.popup(None, None, gtk.status_icon_position_menu, button, activate_time, self.tray)#the last argument is to tell gtk.status_icon_position_menu where to grab the coordinates to position the popup menu correctly

    def get_x(self):
        if self.tray.get_visible()==True:
            x = self.tray.get_geometry()[1][0]
            x += int(self.tray.get_size() / 2) #add half the icon's width
        else:
            x = 0 #remove half the icon's width
            #FIXME: I don't know why that one does not work
        return x

    def get_y(self):
        if self.tray.get_visible()==True:
            y = self.tray.get_geometry()[1][1]
            y += int(self.tray.get_size() / 2) #add half the icon's height
        else:
            y = 0 #remove half the icon's height
            #FIXME: I don't know why that one does not work
        return y

    def destroy(self):
        self.tray.set_visible(False)

    def quit(self, widget):
        """ Call the main function to quit specto. """
        self.specto.quit()