2016-08-29 11:29:58 -03:00
|
|
|
/*
|
|
|
|
* pamac-vala
|
|
|
|
*
|
2017-01-03 05:43:19 -03:00
|
|
|
* Copyright (C) 2014-2017 Guillaume Benoit <guillaume@manjaro.org>
|
2016-08-29 11:29:58 -03:00
|
|
|
*
|
|
|
|
* 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 get of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pamac {
|
|
|
|
|
|
|
|
class GtkTrayIcon: TrayIcon {
|
|
|
|
Gtk.StatusIcon status_icon;
|
|
|
|
|
|
|
|
public override void init_status_icon () {
|
|
|
|
status_icon = new Gtk.StatusIcon ();
|
|
|
|
status_icon.visible = false;
|
|
|
|
status_icon.activate.connect (left_clicked);
|
|
|
|
status_icon.popup_menu.connect (menu_popup);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show popup menu on right button
|
|
|
|
void menu_popup (uint button, uint time) {
|
|
|
|
menu.popup (null, null, null, button, time);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void set_tooltip (string info) {
|
|
|
|
status_icon.set_tooltip_markup (info);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void set_icon (string icon) {
|
|
|
|
status_icon.set_from_icon_name (icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override string get_icon () {
|
|
|
|
return status_icon.get_icon_name ();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void set_icon_visible (bool visible) {
|
|
|
|
if (visible) {
|
|
|
|
status_icon.visible = true;
|
|
|
|
} else {
|
|
|
|
status_icon.visible = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main (string[] args) {
|
|
|
|
var tray_icon = new Pamac.GtkTrayIcon();
|
|
|
|
return tray_icon.run (args);
|
|
|
|
}
|