summaryrefslogtreecommitdiff
path: root/src/gui/iconSelectWindow.vala
blob: 01a4a40959ca86ff2057841d34e9d75423840f8c (plain)
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
/* 
Copyright (c) 2011 by Simon Schneegans

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 3 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, see <http://www.gnu.org/licenses/>. 
*/

namespace GnomePie {

/////////////////////////////////////////////////////////////////////////    
/// A window which allows selection of an Icon of the user's current icon 
/// theme. Custom icons/images can be selested as well. Loading of icons
/// happens in an extra thread and a spinner is displayed while loading.
/////////////////////////////////////////////////////////////////////////

public class IconSelectWindow : Gtk.Dialog {

    /////////////////////////////////////////////////////////////////////
    /// The currently selected icon. If set, this icon gets focused.
    /////////////////////////////////////////////////////////////////////
    
    private string _active_icon = "application-default-icon";
    
    public string active_icon {
        get {
            return _active_icon;
        }
        set {
            if (value.contains("/")) {
                this.file_chooser.set_filename(value);
                this.tabs.set_current_page(1);
            } else {
                this.icon_list_filtered.foreach((model, path, iter) => {
                    string name = "";
                    model.get(iter, 0, out name);
                    
                    if (name == value) {
                        this.icon_view.select_path(path);
                        this.icon_view.scroll_to_path(path, true, 0.5f, 0.0f);
                        this.icon_view.set_cursor(path, null, false);
                    }
                    return (name == value);
                });
                
                this.tabs.set_current_page(0);
            }
        }
    }
    
    /////////////////////////////////////////////////////////////////////
    /// This signal gets emitted when the user selects a new icon.
    /////////////////////////////////////////////////////////////////////
    
    public signal void on_select(string icon_name);

    /////////////////////////////////////////////////////////////////////
    /// The ListStore storing all theme-icons.
    /////////////////////////////////////////////////////////////////////

    private static Gtk.ListStore icon_list = null;
    
    /////////////////////////////////////////////////////////////////////
    /// True, if the icon theme is currently reloaded.
    /////////////////////////////////////////////////////////////////////
    
    private static bool loading = false;
    
    /////////////////////////////////////////////////////////////////////
    /// If set to true, the icon list will be reloaded next time the
    /// window opens.
    /////////////////////////////////////////////////////////////////////
    
    private static bool need_reload = true;
    
    /////////////////////////////////////////////////////////////////////
    /// Icons of these contexts won't appear in the list.
    /////////////////////////////////////////////////////////////////////
    
    private const string disabled_contexts = "Animations, FileSystems";
    
    /////////////////////////////////////////////////////////////////////
    /// The list of icons, filtered according to the chosen type and
    /// filter string.
    /////////////////////////////////////////////////////////////////////
    
    private Gtk.TreeModelFilter icon_list_filtered = null;
    
    /////////////////////////////////////////////////////////////////////
    /// The Gtk widget displaying the icons.
    /////////////////////////////////////////////////////////////////////
    
    private Gtk.IconView icon_view = null;
    
    /////////////////////////////////////////////////////////////////////
    /// This spinner is displayed when the icons are loaded.
    /////////////////////////////////////////////////////////////////////
    
    private Gtk.Spinner spinner = null;
    
    /////////////////////////////////////////////////////////////////////
    /// A Gtk widget used for custom icon/image selection.
    /////////////////////////////////////////////////////////////////////
    
    private Gtk.FileChooserWidget file_chooser = null;
    
    /////////////////////////////////////////////////////////////////////
    /// The notebook containing the different icon choice possibilities:
    /// from the theme or custom.
    /////////////////////////////////////////////////////////////////////
    
    private Gtk.Notebook tabs = null;
    
    /////////////////////////////////////////////////////////////////////
    /// A little structure containing data for one icon in the icon_view.
    /////////////////////////////////////////////////////////////////////

    private class ListEntry {
        public string name;
        public IconContext context;
        public Gdk.Pixbuf pixbuf;
    }
    
    /////////////////////////////////////////////////////////////////////
    /// This queue is used for icon loading. A loading thread pushes
    /// icons into it --- the main thread updates the icon_view
    /// accordingly.
    /////////////////////////////////////////////////////////////////////
    
    private GLib.AsyncQueue<ListEntry?> load_queue;
    
    /////////////////////////////////////////////////////////////////////
    /// Possible icon types.
    /////////////////////////////////////////////////////////////////////
    
    private enum IconContext {
        ALL,
        APPS,
        ACTIONS,
        PLACES,
        FILES,
        EMOTES,
        OTHER
    }
    
    /////////////////////////////////////////////////////////////////////
    /// C'tor, creates a new IconSelectWindow.
    /////////////////////////////////////////////////////////////////////
    
    public IconSelectWindow() {
        this.title = _("Choose an Icon");
        this.set_size_request(520, 520);
        this.delete_event.connect(hide_on_delete);
        this.load_queue = new GLib.AsyncQueue<ListEntry?>();
            
        if (this.icon_list == null) {
            this.icon_list = new Gtk.ListStore(3, typeof(string),      // icon name
                                                  typeof(IconContext), // icon type
                                                  typeof(Gdk.Pixbuf)); // the icon itself
                                                  
            // disable sorting until all icons are loaded
            // else loading becomes horribly slow                                    
            this.icon_list.set_default_sort_func(() => {return 0;});

            // reload if icon theme changes
            Gtk.IconTheme.get_default().changed.connect(() => {
                if (this.visible) load_icons();
                else              need_reload = true;
            });
        } 
        
        // make the icon_view filterable
        this.icon_list_filtered = new Gtk.TreeModelFilter(this.icon_list, null);

        var container = new Gtk.VBox(false, 12);
            container.set_border_width(12);

            // tab container
            this.tabs = new Gtk.Notebook();

                // icon theme tab
                var theme_tab = new Gtk.VBox(false, 12);
                    theme_tab.set_border_width(12);
            
                    // type chooser combo-box
                    var context_combo = new Gtk.ComboBox.text();
                        context_combo.append_text(_("All icons"));
                        context_combo.append_text(_("Applications"));
                        context_combo.append_text(_("Actions"));
                        context_combo.append_text(_("Places"));
                        context_combo.append_text(_("File types"));
                        context_combo.append_text(_("Emotes"));
                        context_combo.append_text(_("Miscellaneous"));

                        context_combo.set_active(0);
                        
                        context_combo.changed.connect(() => {
                            this.icon_list_filtered.refilter();
                        });
                        
                        theme_tab.pack_start(context_combo, false, false);
                    
                    // string filter entry
                    var filter = new Gtk.Entry();
                        filter.primary_icon_stock = Gtk.Stock.FIND;
                        filter.primary_icon_activatable = false;
                        filter.secondary_icon_stock = Gtk.Stock.CLEAR;
                        theme_tab.pack_start(filter, false, false);
                        
                        // only display items which have the selected type
                        // and whose name contains the text entered in the entry
                        this.icon_list_filtered.set_visible_func((model, iter) => {
                            string name = "";
                            IconContext context = IconContext.ALL;
                            model.get(iter, 0, out name);
                            model.get(iter, 1, out context);
                            
                            if (name == null) return false;
                            
                            return (context_combo.get_active() == context || 
                                    context_combo.get_active() == IconContext.ALL) && 
                                    name.down().contains(filter.text.down());
                        });
                        
                        // clear when the users clicks on the "clear" icon
                        filter.icon_release.connect((pos, event) => {
                            if (pos == Gtk.EntryIconPosition.SECONDARY)
                                filter.text = "";
                        });
                        
                        // refilter on input
                        filter.notify["text"].connect(() => {
                            this.icon_list_filtered.refilter();
                        });
                    
                    // container for the icon_view
                    var scroll = new Gtk.ScrolledWindow (null, null);
                        scroll.set_policy (Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC);
                        scroll.set_shadow_type (Gtk.ShadowType.IN);

                        // displays the filtered icons
                        this.icon_view = new Gtk.IconView.with_model(this.icon_list_filtered);
                            this.icon_view.item_width = 32;
                            this.icon_view.item_padding = 3;
                            this.icon_view.pixbuf_column = 2;
                            this.icon_view.tooltip_column = 0;
                            
                            // set _active_icon if selection changes
                            this.icon_view.selection_changed.connect(() => {
                                foreach (var path in this.icon_view.get_selected_items()) {
                                    Gtk.TreeIter iter;
                                    this.icon_list_filtered.get_iter(out iter, path);
                                    this.icon_list_filtered.get(iter, 0, out this._active_icon);
                                }
                            });
                            
                            // hide this window when the user activates an icon
                            this.icon_view.item_activated.connect((path) => {
                                Gtk.TreeIter iter;
                                this.icon_list_filtered.get_iter(out iter, path);
                                this.icon_list_filtered.get(iter, 0, out this._active_icon);
                                this.on_select(this._active_icon);
                                this.hide();
                            });
                    
                        scroll.add(this.icon_view);
                    
                        theme_tab.pack_start(scroll, true, true);
                        
                    tabs.append_page(theme_tab, new Gtk.Label(_("Icon Theme")));
                
                // tab containing the possibility to choose a custom icon
                var custom_tab = new Gtk.VBox(false, 6);
                    custom_tab.border_width = 12;
                    
                    // file chooser widget
                    this.file_chooser = new Gtk.FileChooserWidget(Gtk.FileChooserAction.OPEN);
                        var file_filter = new Gtk.FileFilter();
                        file_filter.add_pixbuf_formats();
                        file_filter.set_name(_("All supported image formats"));
                        file_chooser.add_filter(file_filter);
                        
                        // set _active_icon if the user selected a file
                        file_chooser.selection_changed.connect(() => {
                            if (file_chooser.get_filename() != null && 
                                GLib.FileUtils.test(file_chooser.get_filename(), 
                                                    GLib.FileTest.IS_REGULAR))
                                
                                this._active_icon = file_chooser.get_filename();
                        });
                        
                        // hide this window when the user activates a file
                        file_chooser.file_activated.connect(() => {
                            this._active_icon = file_chooser.get_filename();
                            this.on_select(this._active_icon);
                            this.hide();
                        });
                    
                    
                    custom_tab.pack_start(file_chooser, true, true);
                    
                tabs.append_page(custom_tab, new Gtk.Label(_("Custom Icon")));
                    
            container.pack_start(tabs, true, true);

            // button box --- this dialog has a custom button box at the bottom because it
            // should have a spinner there. Sadly that's impossible with the "normal"
            // action_area of Gtk.Dialog's 
            var bottom_box = new Gtk.HBox(false, 0);
            
                var bbox = new Gtk.HButtonBox();
                    bbox.set_spacing(6);
                    bbox.set_layout(Gtk.ButtonBoxStyle.END);
                    
                    var cancel_button = new Gtk.Button.from_stock(Gtk.Stock.CANCEL);
                        cancel_button.clicked.connect(() => { 
                            this.hide();
                        });
                        bbox.pack_start(cancel_button);
                        
                    var ok_button = new Gtk.Button.from_stock(Gtk.Stock.OK);
                        ok_button.clicked.connect(() => { 
                            this.on_select(this._active_icon);
                            this.hide();
                        });
                        bbox.pack_start(ok_button);
                        
                    bottom_box.pack_end(bbox, false);
                    
                    this.spinner = new Gtk.Spinner();
                        this.spinner.set_size_request(16, 16);
                        this.spinner.start();
                        
                        bottom_box.pack_start(this.spinner, false, false);
            
            container.pack_start(bottom_box, false, false);
          
        this.vbox.pack_start(container, true, true);

        this.vbox.show_all();

        this.set_focus(this.icon_view);
    }
    
    /////////////////////////////////////////////////////////////////////
    /// Hide the "normal" action_area when this window is shown. Reload
    /// all icons if necessary.
    /////////////////////////////////////////////////////////////////////
    
    public override void show() {
        base.show();
        
        // hide the "normal" action_area --- this Dialog has a custom set of
        // buttons containg the spinner
        this.action_area.hide();
        
        if (this.need_reload) {
            this.need_reload = false;
            this.load_icons();
        }
    }
    
    /////////////////////////////////////////////////////////////////////
    /// (Re)load all icons.
    /////////////////////////////////////////////////////////////////////
    
    private void load_icons() {
        // only if it's not loading currently
        if (!this.loading) {
            this.loading = true;
            this.icon_list.clear();
            
            // display the spinner
            if (spinner != null)
                this.spinner.visible = true;

            // disable sorting of the icon_view - else it's horribly slow
            this.icon_list.set_sort_column_id(-1, Gtk.SortType.ASCENDING);
            
            try {
                // start loading in another thread
                unowned Thread loader = Thread.create<void*>(load_thread, false);
                loader.set_priority(ThreadPriority.LOW);
            } catch (GLib.ThreadError e) {
                error("Failed to create icon loader thread!");
            }
            
            // insert loaded icons every 200 ms
            Timeout.add(200, () => {
                while (this.load_queue.length() > 0) {
                    var new_entry = this.load_queue.pop();
                    Gtk.TreeIter current;
                    this.icon_list.append(out current);
                    this.icon_list.set(current, 0, new_entry.name, 
                                                1, new_entry.context,
                                                2, new_entry.pixbuf);
                }
                
                // enable sorting of the icon_view if loading finished
                if (!this.loading) this.icon_list.set_sort_column_id(0, Gtk.SortType.ASCENDING);  

                return loading;
            });
        }
    }
    
    /////////////////////////////////////////////////////////////////////
    /// Loads all icons of an icon theme and pushes them into the
    /// load_queue.
    /////////////////////////////////////////////////////////////////////
    
    private void* load_thread() {
        var icon_theme = Gtk.IconTheme.get_default();

        foreach (var context in icon_theme.list_contexts()) {
            if (!disabled_contexts.contains(context)) {
                foreach (var icon in icon_theme.list_icons(context)) {
                    IconContext icon_context = IconContext.OTHER;
                    switch(context) {
                        case "Apps": case "Applications":
                            icon_context = IconContext.APPS; break;
                        case "Emotes":
                            icon_context = IconContext.EMOTES; break;
                        case "Places": case "Devices":
                            icon_context = IconContext.PLACES; break;
                        case "Mimetypes":
                            icon_context = IconContext.FILES; break;
                        case "Actions":
                            icon_context = IconContext.ACTIONS; break;
                        default: break;
                    }
                    
                    try {      
                        // create a new entry for the queue
                        var new_entry = new ListEntry();
                        new_entry.name = icon;
                        new_entry.context = icon_context;
                        new_entry.pixbuf = icon_theme.load_icon(icon, 32, 0); 
                        
                        // some icons have only weird sizes... do not include them
                        if (new_entry.pixbuf.width == 32)
                            this.load_queue.push(new_entry);
                            
                    } catch (GLib.Error e) {
                        warning("Failed to load image " + icon);
                    }
                }
            }
        }
        
        // finished loading
        this.loading = false;
        
        // hide the spinner
        if (spinner != null)
            spinner.visible = this.loading;

        return null;
    }
}

}