This file is indexed.

/usr/lib/python3/dist-packages/lightdm_gtk_greeter_settings/IconChooserDialog.py is in lightdm-gtk-greeter-settings 1.2.1-0ubuntu1.

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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
#!/usr/bin/env python3
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
#   LightDM GTK Greeter Settings
#   Copyright (C) 2014 Andrew P. <pan.pav.7c5@gmail.com>
#
#   This program is free software: you can redistribute it and/or modify it
#   under the terms of the GNU General Public License version 3, as published
#   by the Free Software Foundation.
#
#   This program is distributed in the hope that it will be useful, but
#   WITHOUT ANY WARRANTY; without even the implied warranties of
#   MERCHANTABILITY, SATISFACTORY QUALITY, 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, see <http://www.gnu.org/licenses/>.


from gi.repository import (
    GObject,
    Gtk)

from lightdm_gtk_greeter_settings.helpers import (
    get_data_path,
    NC_,
    SimpleEnum,
    WidgetsEnum)


__all__ = ['IconChooserDialog']


class ContextRow(SimpleEnum):
    Name = ()
    Standard = ()
    Title = ()


class IconRow(SimpleEnum):
    Name = ()
    Standard = ()
    Context = ()


class IconChooserDialog(Gtk.Dialog):

    __gtype_name__ = 'IconChooserDialog'

    def __new__(cls):
        builder = Gtk.Builder()
        builder.add_from_file(get_data_path('%s.ui' % cls.__name__))
        window = builder.get_object('icon_chooser_dialog')
        window.builder = builder
        builder.connect_signals(window)
        window.init_window()
        return window

    class Widgets(WidgetsEnum):
        name = 'name_entry'
        preview = 'preview_image'
        standard = 'standard_toggle'
        ok = 'ok_button'
        cancel = 'cancel_button'
        contexts_view = 'contexts_view'
        contexts_selection = 'contexts_selection'
        contexts_model = 'contexts_model'
        contexts_filter = 'contexts_filter'
        icons_view = 'icons_view'
        icons_selection = 'icons_selection'
        icons_model = 'icons_model'
        icons_sorted = 'icons_sorted'
        icons_filter = 'icons_filter'

    builder = None

    def init_window(self):
        self._widgets = self.Widgets(builder=self.builder)
        self._widgets_to_disable = (self._widgets.name, self._widgets.standard,
                                    self._widgets.contexts_view, self._widgets.icons_view,
                                    self._widgets.ok, self._widgets.cancel)

        self._icons_loaded = False
        self._icon_to_select = None
        self._icon_filter_standard = True
        self._icon_filter_context = None

        self._widgets.contexts_view.set_row_separator_func(self._contexts_separator_callback, None)
        self._widgets.contexts_filter.set_visible_func(self._contexts_visible_callback)

        self._widgets.icons_filter.set_visible_func(self._icons_filter_visible_callback)
        self._widgets.icons_sorted.set_sort_column_id(0, Gtk.SortType.ASCENDING)

        self._reload()

    def _reload(self):
        for w in self._widgets_to_disable:
            w.props.sensitive = False
        GObject.idle_add(self._read_icons)

    def _read_icons(self):
        theme = Gtk.IconTheme.get_default()
        standard_contexts = set(name for name, title in StandardContexts)

        self._widgets.contexts_model.clear()
        for name, title in StandardContexts:
            row = ContextRow._make(Name=name, Standard=True, Title=title)
            self._widgets.contexts_model.append(row)

        for name in theme.list_contexts():
            if name not in standard_contexts:
                row = ContextRow._make(Name=name, Standard=False, Title=name)
                self._widgets.contexts_model.append(row)

        self._widgets.icons_model.clear()
        for context in theme.list_contexts():
            for icon in theme.list_icons(context):
                row = IconRow._make(Name=icon, Standard=icon in StandardIconNames, Context=context)
                self._widgets.icons_model.append(row)

        self._icons_loaded = True
        if self._icon_to_select:
            self.select_icon(self._icon_to_select)
            self._icon_to_select = None

        for w in self._widgets_to_disable:
            w.props.sensitive = True

        return False

    def _update_contexts_filter(self):
        self._widgets.contexts_filter.refilter()
        self._update_icons_filter()

    def _update_icons_filter(self):
        self._widgets.icons_view.props.model = None
        model, rowiter = self._widgets.contexts_selection.get_selected()
        if rowiter:
            self._icon_filter_standard = self._widgets.standard.props.active
            self._icon_filter_context = model[rowiter][ContextRow.Name]
            self._widgets.icons_filter.refilter()
            self._widgets.icons_view.props.model = self._widgets.icons_sorted

    def _contexts_visible_callback(self, model, rowiter, data):
        if not self._widgets.standard.props.active:
            return True
        return model[rowiter][ContextRow.Standard]

    def _contexts_separator_callback(self, model, rowiter, data):
        return not model[rowiter][ContextRow.Name] and not model[rowiter][ContextRow.Title]

    def _icons_filter_visible_callback(self, model, rowiter, data):
        if self._icon_filter_standard and not model[rowiter][IconRow.Standard]:
            return False
        if not self._icon_filter_context:
            return True
        return model[rowiter][IconRow.Context] == self._icon_filter_context

    def get_selected_icon(self):
        return self._widgets.name.props.text

    def select_icon(self, name):
        if not self._icons_loaded:
            self._icon_to_select = name
            return

        if name not in StandardIconNames:
            self._widgets.standard.props.active = False
        self._widgets.contexts_selection.select_path(0)

        for row in self._widgets.icons_sorted:
            if row[IconRow.Name] == name:
                self._widgets.icons_view.set_cursor(row.path)
                self._widgets.icons_selection.select_path(row.path)
                break
        else:
            self._widgets.name.props.text = name

    def on_icons_selection_changed(self, selection):
        model, rowiter = selection.get_selected()
        if rowiter:
            self._widgets.name.props.text = model[rowiter][IconRow.Name]

    def on_contexts_selection_changed(self, selection):
        self._widgets.icons_selection.unselect_all()
        self._update_icons_filter()

    def on_standard_toggled(self, toggle):
        self._update_contexts_filter()

    def on_name_changed(self, entry):
        name = entry.props.text
        if not Gtk.IconTheme.get_default().has_icon(name):
            name = ''
        self._widgets.preview.props.icon_name = name


# http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html

StandardContexts = (
    (None, NC_('icon-dialog', 'All contexts')),
    (None, ''),  # separator
    ('Actions', NC_('icon-dialog', 'Actions')),
    ('Applications', NC_('icon-dialog', 'Applications')),
    ('Categories', NC_('icon-dialog', 'Categories')),
    ('Devices', NC_('icon-dialog', 'Devices')),
    ('Emblems', NC_('icon-dialog', 'Emblems')),
    ('Emotes', NC_('icon-dialog', 'Emoticons')),
    ('International', NC_('icon-dialog', 'International')),
    ('MimeTypes', NC_('icon-dialog', 'MIME Types')),
    ('Places', NC_('icon-dialog', 'Places')),
    ('Status', NC_('icon-dialog', 'Status')))

StandardIconNames = {
    # Actions
    'address-book-new', 'application-exit', 'appointment-new',
    'call-start', 'call-stop', 'contact-new', 'document-new',
    'document-open', 'document-open-recent', 'document-page-setup',
    'document-print', 'document-print-preview', 'document-properties',
    'document-revert', 'document-save', 'document-save-as',
    'document-send', 'edit-clear', 'edit-copy', 'edit-cut', 'edit-delete',
    'edit-find', 'edit-find-replace', 'edit-paste', 'edit-redo',
    'edit-select-all', 'edit-undo', 'folder-new', 'format-indent-less',
    'format-indent-more', 'format-justify-center', 'format-justify-fill',
    'format-justify-left', 'format-justify-right',
    'format-text-direction-ltr', 'format-text-direction-rtl',
    'format-text-bold', 'format-text-italic', 'format-text-underline',
    'format-text-strikethrough', 'go-bottom', 'go-down', 'go-first',
    'go-home', 'go-jump', 'go-last', 'go-next', 'go-previous', 'go-top',
    'go-up', 'help-about', 'help-contents', 'help-faq', 'insert-image',
    'insert-link', 'insert-object', 'insert-text', 'list-add',
    'list-remove', 'mail-forward', 'mail-mark-important', 'mail-mark-junk',
    'mail-mark-notjunk', 'mail-mark-read', 'mail-mark-unread',
    'mail-message-new', 'mail-reply-all', 'mail-reply-sender', 'mail-send',
    'mail-send-receive', 'media-eject', 'media-playback-pause',
    'media-playback-start', 'media-playback-stop', 'media-record',
    'media-seek-backward', 'media-seek-forward', 'media-skip-backward',
    'media-skip-forward', 'object-flip-horizontal', 'object-flip-vertical',
    'object-rotate-left', 'object-rotate-right', 'process-stop',
    'system-lock-screen', 'system-log-out', 'system-run', 'system-search',
    'system-reboot', 'system-shutdown', 'tools-check-spelling',
    'view-fullscreen', 'view-refresh', 'view-restore',
    'view-sort-ascending', 'view-sort-descending', 'window-close',
    'window-new', 'zoom-fit-best', 'zoom-in', 'zoom-original', 'zoom-out',
    # StandardApplicationIcons
    'accessories-calculator', 'accessories-character-map',
    'accessories-dictionary', 'accessories-text-editor', 'help-browser',
    'multimedia-volume-control', 'preferences-desktop-accessibility',
    'preferences-desktop-font', 'preferences-desktop-keyboard',
    'preferences-desktop-locale', 'preferences-desktop-multimedia',
    'preferences-desktop-screensaver', 'preferences-desktop-theme',
    'preferences-desktop-wallpaper', 'system-file-manager',
    'system-software-install', 'system-software-update',
    'utilities-system-monitor', 'utilities-terminal',
    # StandardCategoryIcons
    'applications-accessories', 'applications-development',
    'applications-engineering', 'applications-games',
    'applications-graphics', 'applications-internet',
    'applications-multimedia', 'applications-office', 'applications-other',
    'applications-science', 'applications-system',
    'applications-utilities', 'preferences-desktop',
    'preferences-desktop-peripherals', 'preferences-desktop-personal',
    'preferences-other', 'preferences-system',
    'preferences-system-network', 'system-help',
    # StandardDeviceIcons
    'audio-card', 'audio-input-microphone', 'battery', 'camera-photo',
    'camera-video', 'camera-web', 'computer', 'drive-harddisk',
    'drive-optical', 'drive-removable-media', 'input-gaming',
    'input-keyboard', 'input-mouse', 'input-tablet', 'media-flash',
    'media-floppy', 'media-optical', 'media-tape', 'modem',
    'multimedia-player', 'network-wired', 'network-wireless', 'pda',
    'phone', 'printer', 'scanner', 'video-display',
    # StandardEmblemIcons
    'emblem-default', 'emblem-documents', 'emblem-downloads',
    'emblem-favorite', 'emblem-important', 'emblem-mail', 'emblem-photos',
    'emblem-readonly', 'emblem-shared', 'emblem-symbolic-link',
    'emblem-synchronized', 'emblem-system', 'emblem-unreadable',
    # StandardEmotionIcons
    'face-angel', 'face-angry', 'face-cool', 'face-crying',
    'face-devilish', 'face-embarrassed', 'face-kiss', 'face-laugh',
    'face-monkey', 'face-plain', 'face-raspberry', 'face-sad', 'face-sick',
    'face-smile', 'face-smile-big', 'face-smirk', 'face-surprise',
    'face-tired', 'face-uncertain', 'face-wink', 'face-worried',
    # StandardInternationalIcons
    'flag-aa',
    # StandardMIMETypeIcons
    'application-x-executable', 'audio-x-generic', 'font-x-generic',
    'image-x-generic', 'package-x-generic', 'text-html', 'text-x-generic',
    'text-x-generic-template', 'text-x-script', 'video-x-generic',
    'x-office-address-book', 'x-office-calendar', 'x-office-document',
    'x-office-presentation', 'x-office-spreadsheet',
    # StandardPlaceIcons
    'folder', 'folder-remote', 'network-server', 'network-workgroup',
    'start-here', 'user-bookmarks', 'user-desktop', 'user-home',
    'user-trash',
    # StandardStatusIcons
    'appointment-missed', 'appointment-soon', 'audio-volume-high',
    'audio-volume-low', 'audio-volume-medium', 'audio-volume-muted',
    'battery-caution', 'battery-low', 'dialog-error', 'dialog-information',
    'dialog-password', 'dialog-question', 'dialog-warning',
    'folder-drag-accept', 'folder-open', 'folder-visiting',
    'image-loading', 'image-missing', 'mail-attachment', 'mail-unread',
    'mail-read', 'mail-replied', 'mail-signed', 'mail-signed-verified',
    'media-playlist-repeat', 'media-playlist-shuffle', 'network-error',
    'network-idle', 'network-offline', 'network-receive',
    'network-transmit', 'network-transmit-receive', 'printer-error',
    'printer-printing', 'security-high', 'security-medium', 'security-low',
    'software-update-available', 'software-update-urgent', 'sync-error',
    'sync-synchronizing', 'task-due', 'task-past-due', 'user-available',
    'user-away', 'user-idle', 'user-offline', 'user-trash-full',
    'weather-clear', 'weather-clear-night', 'weather-few-clouds',
    'weather-few-clouds-night', 'weather-fog', 'weather-overcast',
    'weather-severe-alert', 'weather-showers', 'weather-showers-scattered',
    'weather-snow', 'weather-storm'}