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
|
/* Mailnag - GNOME-Shell extension frontend
*
* Copyright 2013, 2014 Patrick Ulbrich <zulu99@gmx.net>
*
* 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 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 Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
const St = imports.gi.St;
const Clutter = imports.gi.Clutter;
const Util = imports.misc.util;
const Pango = imports.gi.Pango;
const PopupMenu = imports.ui.popupMenu;
const PanelMenu = imports.ui.panelMenu;
const Lang = imports.lang;
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
const Utils = Me.imports.utils;
const INDICATOR_ICON = 'mail-unread-symbolic'
const IndicatorMailMenuItem = new Lang.Class({
Name: 'IndicatorMailMenuItem',
Extends: PopupMenu.PopupBaseMenuItem,
_init: function(mail, avatars, avatarSize, extension) {
this.parent();
let [sender, size] = mail['sender_name'].get_string();
let [senderAddr, size] = mail['sender_addr'].get_string();
let [subject, size] = mail['subject'].get_string();
let [mail_id, size] = mail['id'].get_string();
if (sender.length == 0) sender = senderAddr;
let hbox = new St.BoxLayout({ vertical: false, x_expand: true, style_class: 'menu-item-box' });
let vbox = new St.BoxLayout({ vertical: true, x_expand: true });
let senderLabel = new St.Label({ text: sender, style_class: 'sender-label' });
let subjectLabel = new St.Label({ text: subject, style_class: 'subject-label' });
/* TODO : somehow these linewrap settings are ignored... */
senderLabel.clutter_text.line_wrap = false;
senderLabel.clutter_text.ellipsize = Pango.EllipsizeMode.END;
subjectLabel.clutter_text.line_wrap = false;
subjectLabel.clutter_text.ellipsize = Pango.EllipsizeMode.END;
vbox.add(senderLabel);
vbox.add(subjectLabel);
hbox.add(vbox);
let avatarFile = avatars[senderAddr.toString().toLowerCase()];
if (avatarFile != undefined) {
let iconBin = new St.Bin({ style_class: 'avatar',
style: 'background-image: url("%s")'.format(avatarFile),
width: avatarSize, height: avatarSize,
x_fill: true,
y_fill: true });
hbox.add(iconBin);
} else {
/*hbox.add(new St.Icon({ icon_name: 'avatar-default',
icon_size: avatarSize }));*/
}
let closeButton = new St.Button({ reactive: true, can_focus: true,
track_hover: true, style_class: 'mark-as-read-button' });
closeButton.connect('clicked', Lang.bind(this, function() {
extension.markMailAsRead(mail_id);
}));
closeButton.child = new St.Icon({ icon_name: 'edit-delete-symbolic',
style_class: 'popup-menu-icon' });
hbox.add(closeButton);
this.actor.add_child(hbox);
}
});
const MailnagIndicator = new Lang.Class({
Name: 'MailnagIndicator',
Extends: PanelMenu.Button,
_init: function(maxVisibleMails, avatars, avatarSize, extension) {
this.parent(0.0, this.Name);
this._maxVisisbleMails = maxVisibleMails;
this._avatars = avatars;
this._avatarSize = avatarSize;
this._extension = extension;
let icon = new St.Icon({
icon_name: INDICATOR_ICON,
style_class: 'system-status-icon'});
this._iconBin = new St.Bin({ child: icon,
x_fill: false,
y_fill: false });
this._counterLabel = new St.Label({ text: "0",
x_align: Clutter.ActorAlign.CENTER,
x_expand: true,
y_align: Clutter.ActorAlign.CENTER,
y_expand: true });
this._counterBin = new St.Bin({ style_class: 'mailnag-counter',
child: this._counterLabel,
layout_manager: new Clutter.BinLayout() });
this._counterBin.connect('style-changed', Lang.bind(this, function() {
let themeNode = this._counterBin.get_theme_node();
this._counterBin.translation_x = themeNode.get_length('-mailnag-counter-overlap-x');
this._counterBin.translation_y = themeNode.get_length('-mailnag-counter-overlap-y');
}));
this.actor.add_actor(this._iconBin);
this.actor.add_actor(this._counterBin);
},
_allocate: function(actor, box, flags) {
// the iconBin should fill our entire box
this._iconBin.allocate(box, flags);
// get the allocation box of the indicator icon
let iconBox = this._iconBin.child.get_allocation_box();
// create a temporary box for calculating the counter allocation
let childBox = new Clutter.ActorBox();
let [minWidth, minHeight, naturalWidth, naturalHeight] = this._counterBin.get_preferred_size();
let direction = this.actor.get_text_direction();
if (direction == Clutter.TextDirection.LTR) {
// allocate on the right in LTR
childBox.x1 = iconBox.x2 - (naturalWidth / 2);
childBox.x2 = childBox.x1 + naturalWidth;
} else {
// allocate on the left in RTL
childBox.x1 = iconBox.x1 - (naturalWidth / 2);
childBox.x2 = childBox.x1 + naturalWidth;
}
childBox.y1 = iconBox.y2 - (naturalHeight / 2);
childBox.y2 = childBox.y1 + naturalHeight;
this._counterBin.allocate(childBox, flags);
},
_updateMenu: function(mails) {
this.menu.removeAll();
let item = null;
let maxMails = (mails.length <= this._maxVisisbleMails) ?
mails.length : this._maxVisisbleMails;
for (let i = 0; i < maxMails; i++) {
item = new IndicatorMailMenuItem(mails[i], this._avatars,
this._avatarSize, this._extension);
item.connect('activate', function() {
Utils.openDefaultMailReader();
});
this.menu.addMenuItem(item);
}
if (mails.length > this._maxVisisbleMails) {
let str = _("(and {0} more)").replace("{0}", (mails.length - this._maxVisisbleMails));
item = new PopupMenu.PopupBaseMenuItem();
item.actor.style_class = 'menu-item-more-box';
item.actor.add_child(new St.Label({ text: str }));
this.menu.addMenuItem(item);
}
this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem())
this._add_settings_submenu(this.menu);
},
_add_settings_submenu: function(menu) {
let item = null;
let subMenu = new PopupMenu.PopupSubMenuMenuItem(_("Settings"), false);
item = new PopupMenu.PopupMenuItem(_("Mailnag Settings"));
item.connect('activate', function() {
Utils.launchApp('mailnag-config.desktop');
});
subMenu.menu.addMenuItem(item);
item = new PopupMenu.PopupMenuItem(_("Extension Settings"));
item.connect('activate', function() {
Util.spawn(['gnome-shell-extension-prefs', 'mailnag@pulb.github.com']);
});
subMenu.menu.addMenuItem(item);
menu.addMenuItem(subMenu);
},
setMails: function(mails) {
let label = mails.length <= 99 ? mails.length.toString() : "...";
this._counterLabel.set_text(label);
this._updateMenu(mails);
}
});
|