This file is indexed.

/usr/share/decibel-audio-player/src/gui/preferences.py is in decibel-audio-player 1.06-3.

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
# -*- coding: utf-8 -*-
#
# Author: Ingelrest François (Francois.Ingelrest@gmail.com)
#
# 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 Library 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA

import gtk, gui, modules, tools

from tools   import consts, icons
from gettext import gettext as _


(
    ROW_ENABLED,    # True if the module is currently enabled
    ROW_TEXT,       # Name and description of the module
    ROW_ICON,       # An icon indicating whether the module is configurable
    ROW_UNLOADABLE, # True if the module can be disabled
    ROW_INSTANCE,   # Instance of the module, if any
    ROW_MODINFO     # Information exported by a module
) = range(6)


class Preferences:
    """ Allow the user to load/unload/configure modules """

    def __init__(self):
        """ Constructor """
        import gobject

        from gui import extListview, window

        self.window  = window.Window('Preferences.glade', 'vbox1', __name__, _('Preferences'), 495, 440)
        self.currCat = consts.MODCAT_NONE

        # List of modules
        textRdr   = gtk.CellRendererText()
        toggleRdr = gtk.CellRendererToggle()

        columns   = (('',   [(toggleRdr, gobject.TYPE_BOOLEAN)],          ROW_ENABLED,    False, True),
                     ('',   [(textRdr, gobject.TYPE_STRING)],             ROW_TEXT,       True,  True),
                     ('',   [(gtk.CellRendererPixbuf(), gtk.gdk.Pixbuf)], ROW_ICON,       False, True),
                     (None, [(None, gobject.TYPE_BOOLEAN)],               ROW_UNLOADABLE, False, False),
                     (None, [(None, gobject.TYPE_PYOBJECT)],              ROW_INSTANCE,   False, False),
                     (None, [(None, gobject.TYPE_PYOBJECT)],              ROW_MODINFO,    False, False))

        self.list = extListview.ExtListView(columns, sortable=False, useMarkup=True, canShowHideColumns=False)
        self.list.set_headers_visible(False)
        self.list.addColumnAttribute(0, toggleRdr, 'activatable', ROW_UNLOADABLE)
        toggleRdr.connect('toggled', self.onModuleToggled)
        self.window.getWidget('scrolledwindow1').add(self.list)
        self.fillList()

        self.list.get_column(1).set_cell_data_func(textRdr, self.__fmtColumnColor)

        # Categories
        self.iconview = self.window.getWidget('iconview')
        # Create the store for the iconview
        self.iconviewStore = gtk.ListStore(gobject.TYPE_STRING, gtk.gdk.Pixbuf, gobject.TYPE_INT)
        categories = [
                        (_('Decibel'),  icons.catDecibelIcon(),  consts.MODCAT_DECIBEL),
                        (_('Desktop'),  icons.catDesktopIcon(),  consts.MODCAT_DESKTOP),
                        (_('Internet'), icons.catInternetIcon(), consts.MODCAT_INTERNET),
                        (_('Explorer'), icons.catExplorerIcon(), consts.MODCAT_EXPLORER),
                     ]

        for category in sorted(categories):
            self.iconviewStore.append([category[0], category[1], category[2]])

        self.iconview.set_model(self.iconviewStore)
        self.iconview.set_text_column(0)
        self.iconview.set_pixbuf_column(1)
        self.iconview.set_size_request(84, -1)

        # GTK handlers
        self.iconview.connect('selection-changed', self.onCategoryChanged)
        self.window.getWidget('btn-help').connect('clicked', self.onHelp)
        self.list.connect('extlistview-button-pressed', self.onButtonPressed)
        self.list.get_selection().connect('changed', self.onSelectionChanged)
        self.window.getWidget('btn-prefs').connect('clicked', self.onPreferences)
        self.window.getWidget('btn-close').connect('clicked', lambda btn: self.window.hide())


    def __fmtColumnColor(self, col, cll, mdl, it):
        """ Grey out module that are not enabled """
        style   = self.list.get_style()
        enabled = mdl.get_value(it, ROW_ENABLED)

        if enabled: cll.set_property('foreground-gdk', style.text[gtk.STATE_NORMAL])
        else:       cll.set_property('foreground-gdk', style.text[gtk.STATE_INSENSITIVE])


    def show(self):
        """ Show the dialog box """
        if not self.window.isVisible():
            self.list.unselectAll()
            self.iconview.grab_focus()
            self.iconview.select_path((0,))
            self.window.getWidget('btn-prefs').set_sensitive(False)
        self.window.show()


    def fillList(self):
        """ Fill the list of modules according to the currently selected category """
        rows = []
        for (name, data) in modules.getModules():
            instance     = data[modules.MOD_INSTANCE]
            category     = data[modules.MOD_INFO][modules.MODINFO_CATEGORY]
            mandatory    = data[modules.MOD_INFO][modules.MODINFO_MANDATORY]
            configurable = data[modules.MOD_INFO][modules.MODINFO_CONFIGURABLE]

            if (configurable or not mandatory) and category == self.currCat:
                if configurable and instance is not None: icon = icons.prefsBtnIcon()
                else:                                     icon = None

                text = '<b>%s</b>\n<small>%s</small>' % (tools.htmlEscape(_(name)), tools.htmlEscape(data[modules.MOD_INFO][modules.MODINFO_DESC]))
                rows.append((instance is not None, text, icon, not mandatory, instance, data[modules.MOD_INFO]))

        rows.sort(key=lambda row: row[ROW_TEXT])
        self.list.replaceContent(rows)


    # --== GTK handlers ==--


    def onButtonPressed(self, list, event, path):
        """ A mouse button has been pressed """
        if event.button == 1 and event.type == gtk.gdk._2BUTTON_PRESS and path is not None:
            # Double-clicking an enabled and configurable module opens the configuration dialog
            row = self.list.getRow(path)
            if row[ROW_ENABLED] and row[ROW_ICON] is not None:
                row[ROW_INSTANCE].configure(self.window)


    def onModuleToggled(self, renderer, path):
        """ A module has been enabled/disabled """
        row  = self.list.getRow(path)
        name = row[ROW_MODINFO][modules.MODINFO_NAME]

        if row[ROW_ENABLED]:
            modules.unload(name)
        else:
            try:                             modules.load(name)
            except modules.LoadException, e: gui.errorMsgBox(self.window, _('Unable to load this module.'), str(e))

        self.fillList()


    def onCategoryChanged(self, iconview):
        """ A new category has been selected """
        selection = iconview.get_selected_items()

        if len(selection) == 0: self.currCat = consts.MODCAT_NONE
        else:                   self.currCat = self.iconviewStore[selection[0][0]][2]

        self.fillList()


    def onHelp(self, btn):
        """ Show a small help message box """
        from gui import help

        helpDlg = help.HelpDlg(_('Modules'))
        helpDlg.addSection(_('Description'),
                           _('This dialog box shows the list of available modules, which are small pieces of code that add '
                             'some functionnalities to the application. You can enable/disable a module by checking/unchecking '
                             'the check box in front of it. Note that some modules (e.g., the File Explorer) cannot be disabled.'))
        helpDlg.addSection(_('Configuring a Module'),
                           _('When a module may be configured, a specific icon is displayed on the right of the corresponding line. '
                             'To configure a module, simply select it and then click on the "Preferences" button on the bottom of '
                             'the dialog box. Note that configuring a module is only possible when it is enabled.'))
        helpDlg.show(self.window)


    def onSelectionChanged(self, selection):
        """ Decide whether the new selection may be configured """
        sensitive = self.list.getSelectedRowsCount() == 1 and self.list.getFirstSelectedRow()[ROW_ICON] is not None
        self.window.getWidget('btn-prefs').set_sensitive(sensitive)


    def onPreferences(self, btn):
        """ Configure the selected module """
        self.list.getFirstSelectedRow()[ROW_INSTANCE].configure(self.window)


# --== Global functions ==--


__instance = None

def show():
    """ Show the preferences dialog box """
    global __instance

    if __instance is None:
        __instance = Preferences()
    __instance.show()