summaryrefslogtreecommitdiff
path: root/wikipedia/widgets/SideBarButton.js
blob: b602d6cff5e60425b51e4400abc9a170cb27bf49 (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
const Lang = imports.lang;
const Gdk = imports.gi.Gdk;
const GdkPixbuf = imports.gi.GdkPixbuf;
const Gtk = imports.gi.Gtk;

const SideBarButton = new Lang.Class({
    Name: 'EndlessSideBarButton',
    Extends: Gtk.Button,

    // This is a button for the article list widget. It has a label and an icon image.
    // The icon image will only appear on hover or press of button
    _init: function(hover_icon_path, params) {
        this.parent(params);

        this.set_size_request(40, -1);

        this._image = new Gtk.Image({
            resource: hover_icon_path,
            no_show_all: true
        });

        this.add(this._image);

        this.connect('state-changed', Lang.bind(this, this._update_appearance));
    },

    _update_appearance: function(widget, state) {
        // If button is hovered over and/or pressed, then show the arrow icon
        if (widget.get_state_flags() & Gtk.StateFlags.ACTIVE || 
            widget.get_state_flags() & Gtk.StateFlags.PRELIGHT) {
            this._image.show();
            return false; // don't block event
        }
        // If no hover or press, then hide the arrow icon
        this._image.hide();
        return false; // don't block event
    }
});