mirror of
https://github.com/elementary/gala.git
synced 2024-12-20 15:52:04 +03:00
624 lines
24 KiB
Vala
624 lines
24 KiB
Vala
//
|
|
// Copyright (C) 2014 Tom Beckmann
|
|
//
|
|
// 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/>.
|
|
//
|
|
|
|
using Meta;
|
|
|
|
namespace Gala.Plugins.Notify {
|
|
const string X_CANONICAL_PRIVATE_SYNCHRONOUS = "x-canonical-private-synchronous";
|
|
const string X_CANONICAL_PRIVATE_ICON_ONLY = "x-canonical-private-icon-only";
|
|
|
|
public enum NotificationUrgency {
|
|
LOW = 0,
|
|
NORMAL = 1,
|
|
CRITICAL = 2
|
|
}
|
|
|
|
public enum NotificationClosedReason {
|
|
EXPIRED = 1,
|
|
DISMISSED = 2,
|
|
CLOSE_NOTIFICATION_CALL = 3,
|
|
UNDEFINED = 4
|
|
}
|
|
|
|
[DBus (name = "org.freedesktop.DBus")]
|
|
private interface DBus : Object {
|
|
[DBus (name = "GetConnectionUnixProcessID")]
|
|
public abstract uint32 get_connection_unix_process_id (string name) throws Error;
|
|
}
|
|
|
|
[DBus (name = "org.freedesktop.Notifications")]
|
|
public class NotifyServer : Object {
|
|
const int DEFAULT_TMEOUT = 4000;
|
|
const string FALLBACK_ICON = "dialog-information";
|
|
const string FALLBACK_APP_ID = "gala-other";
|
|
|
|
static Gdk.RGBA? icon_fg_color = null;
|
|
static Gdk.Pixbuf? image_mask_pixbuf = null;
|
|
|
|
[DBus (visible = false)]
|
|
public signal void show_notification (Notification notification);
|
|
|
|
public signal void notification_closed (uint32 id, uint32 reason);
|
|
public signal void action_invoked (uint32 id, string action_key);
|
|
|
|
[DBus (visible = false)]
|
|
public NotificationStack stack { get; construct; }
|
|
|
|
uint32 id_counter = 0;
|
|
|
|
DBus? bus_proxy = null;
|
|
unowned Canberra.Context? ca_context = null;
|
|
Gee.HashMap<string, GLib.Settings> app_settings_cache;
|
|
Gee.HashMap<string, AppInfo> app_info_cache;
|
|
|
|
public NotifyServer (NotificationStack stack) {
|
|
Object (stack: stack);
|
|
}
|
|
|
|
construct {
|
|
try {
|
|
bus_proxy = Bus.get_proxy_sync (BusType.SESSION, "org.freedesktop.DBus", "/");
|
|
} catch (Error e) {
|
|
warning (e.message);
|
|
bus_proxy = null;
|
|
}
|
|
|
|
var locale = Intl.setlocale (LocaleCategory.MESSAGES, null);
|
|
ca_context = CanberraGtk.context_get ();
|
|
ca_context.change_props (Canberra.PROP_APPLICATION_NAME, "Gala",
|
|
Canberra.PROP_APPLICATION_ID, "org.pantheon.gala",
|
|
Canberra.PROP_APPLICATION_NAME, "start-here",
|
|
Canberra.PROP_APPLICATION_LANGUAGE, locale,
|
|
null);
|
|
ca_context.open ();
|
|
|
|
app_settings_cache = new Gee.HashMap<string, GLib.Settings> ();
|
|
app_info_cache = new Gee.HashMap<string, AppInfo> ();
|
|
}
|
|
|
|
public string [] get_capabilities () throws DBusError, IOError {
|
|
return {
|
|
"body",
|
|
"body-markup",
|
|
"sound",
|
|
// even though we don't fully support actions, we still want to receive the default
|
|
// action. Well written applications will check if the actions capability is available
|
|
// before settings a default action, so we have to specify it here. Also, not displaying
|
|
// certain actions even though requested is allowed according to spec, so we should be fine
|
|
"actions",
|
|
X_CANONICAL_PRIVATE_SYNCHRONOUS,
|
|
X_CANONICAL_PRIVATE_ICON_ONLY
|
|
};
|
|
}
|
|
|
|
public void get_server_information (out string name, out string vendor,
|
|
out string version, out string spec_version) throws DBusError, IOError {
|
|
name = "pantheon-notify";
|
|
vendor = "elementaryOS";
|
|
version = "0.1";
|
|
spec_version = "1.2";
|
|
}
|
|
|
|
/**
|
|
* Implementation of the CloseNotification DBus method
|
|
*
|
|
* @param id The id of the notification to be closed.
|
|
*/
|
|
public void close_notification (uint32 id) throws DBusError, IOError {
|
|
foreach (var child in stack.get_children ()) {
|
|
unowned Notification notification = (Notification) child;
|
|
if (notification.id != id)
|
|
continue;
|
|
|
|
notification_closed_callback (notification, id,
|
|
NotificationClosedReason.CLOSE_NOTIFICATION_CALL);
|
|
notification.close ();
|
|
|
|
return;
|
|
}
|
|
|
|
// according to spec, an empty dbus error should be sent if the notification
|
|
// doesn't exist (anymore)
|
|
throw new DBusError.FAILED ("");
|
|
}
|
|
|
|
public new uint32 notify (string app_name, uint32 replaces_id, string app_icon, string summary,
|
|
string body, string[] actions, HashTable<string, Variant> hints, int32 expire_timeout, BusName sender)
|
|
throws DBusError, IOError {
|
|
unowned Variant? variant = null;
|
|
|
|
AppInfo? app_info = null;
|
|
|
|
if ((variant = hints.lookup ("desktop-entry")) != null
|
|
&& variant.is_of_type (VariantType.STRING)) {
|
|
string desktop_id = variant.get_string ();
|
|
if (!desktop_id.has_suffix (".desktop"))
|
|
desktop_id += ".desktop";
|
|
|
|
app_info = new DesktopAppInfo (desktop_id);
|
|
} else {
|
|
app_info = get_appinfo_from_app_name (app_name);
|
|
}
|
|
|
|
// Get app icon from .desktop as fallback
|
|
string icon = app_icon;
|
|
if (app_icon == "" && app_info != null)
|
|
icon = app_info.get_icon ().to_string ();
|
|
|
|
var id = (replaces_id != 0 ? replaces_id : ++id_counter);
|
|
var pixbuf = get_pixbuf (app_name, icon, hints);
|
|
var timeout = (expire_timeout == uint32.MAX ? DEFAULT_TMEOUT : expire_timeout);
|
|
|
|
var urgency = NotificationUrgency.NORMAL;
|
|
if ((variant = hints.lookup ("urgency")) != null)
|
|
urgency = (NotificationUrgency) variant.get_byte ();
|
|
|
|
var icon_only = hints.contains (X_CANONICAL_PRIVATE_ICON_ONLY);
|
|
var confirmation = hints.contains (X_CANONICAL_PRIVATE_SYNCHRONOUS);
|
|
var progress = confirmation && hints.contains ("value");
|
|
|
|
unowned NotifySettings notify_settings = NotifySettings.get_default ();
|
|
|
|
// Default values for confirmations
|
|
var allow_bubble = true;
|
|
var allow_sound = true;
|
|
|
|
if (!confirmation) {
|
|
if (notify_settings.do_not_disturb) {
|
|
allow_bubble = allow_sound = false;
|
|
} else {
|
|
string app_id = "";
|
|
bool has_notifications_key = false;
|
|
|
|
if (app_info != null) {
|
|
app_id = app_info.get_id ().replace (".desktop", "");
|
|
if (app_info is DesktopAppInfo)
|
|
has_notifications_key = ((DesktopAppInfo) app_info).get_boolean ("X-GNOME-UsesNotifications");
|
|
}
|
|
|
|
if (!has_notifications_key)
|
|
app_id = FALLBACK_APP_ID;
|
|
|
|
GLib.Settings? app_settings = app_settings_cache.get (app_id);
|
|
if (app_settings == null) {
|
|
var schema = SettingsSchemaSource.get_default ().lookup ("org.pantheon.desktop.gala.notifications.application", true);
|
|
if (schema != null) {
|
|
app_settings = new GLib.Settings.full (schema, null, "/org/pantheon/desktop/gala/notifications/applications/%s/".printf (app_id));
|
|
app_settings_cache.set (app_id, app_settings);
|
|
}
|
|
}
|
|
|
|
if (app_settings != null) {
|
|
allow_bubble = app_settings.get_boolean ("bubbles");
|
|
allow_sound = app_settings.get_boolean ("sounds");
|
|
}
|
|
}
|
|
}
|
|
|
|
#if 0 // enable to debug notifications
|
|
print ("Notification from '%s', replaces: %u\n" +
|
|
"\tapp icon: '%s'\n\tsummary: '%s'\n\tbody: '%s'\n\tn actions: %u\n\texpire: %i\n\tHints:\n",
|
|
app_name, replaces_id, app_icon, summary, body, actions.length);
|
|
hints.@foreach ((key, val) => {
|
|
print ("\t\t%s => %s\n", key, val.is_of_type (VariantType.STRING) ?
|
|
val.get_string () : "<" + val.get_type ().dup_string () + ">");
|
|
});
|
|
print ("\tActions: ");
|
|
foreach (var action in actions) {
|
|
print ("%s, ", action);
|
|
}
|
|
print ("\n");
|
|
#endif
|
|
|
|
uint32 pid = 0;
|
|
try {
|
|
pid = bus_proxy.get_connection_unix_process_id (sender);
|
|
} catch (Error e) { warning (e.message); }
|
|
|
|
if (allow_sound)
|
|
handle_sounds (hints);
|
|
|
|
foreach (var child in stack.get_children ()) {
|
|
unowned Notification notification = (Notification) child;
|
|
|
|
if (notification.being_destroyed)
|
|
continue;
|
|
|
|
// we only want a single confirmation notification, so we just take the
|
|
// first one that can be found, no need to check ids or anything
|
|
unowned ConfirmationNotification? confirmation_notification = notification as ConfirmationNotification;
|
|
if (confirmation
|
|
&& confirmation_notification != null) {
|
|
|
|
// value may be -1 for a muted state, but -1 is interpreted as no progress set by the
|
|
// ConfirmationNotification class, so if we do have a progress, we make sure it's set
|
|
// to 0 for a muted state.
|
|
var progress_value = progress ? int.max (hints.@get ("value").get_int32 (), 0) : -1;
|
|
|
|
confirmation_notification.update (pixbuf,
|
|
progress_value,
|
|
hints.@get (X_CANONICAL_PRIVATE_SYNCHRONOUS).get_string (),
|
|
icon_only);
|
|
|
|
return id;
|
|
}
|
|
|
|
unowned NormalNotification? normal_notification = notification as NormalNotification;
|
|
if (!confirmation
|
|
&& notification.id == id
|
|
&& normal_notification != null) {
|
|
|
|
normal_notification.update (summary, body, pixbuf, timeout, actions);
|
|
|
|
return id;
|
|
}
|
|
}
|
|
|
|
if (allow_bubble) {
|
|
Notification notification;
|
|
if (confirmation)
|
|
notification = new ConfirmationNotification (id, pixbuf, icon_only,
|
|
progress ? hints.@get ("value").get_int32 () : -1,
|
|
hints.@get (X_CANONICAL_PRIVATE_SYNCHRONOUS).get_string ());
|
|
else
|
|
#if HAS_MUTTER330
|
|
notification = new NormalNotification (stack.display, id, summary, body, pixbuf,
|
|
urgency, timeout, pid, actions);
|
|
#else
|
|
notification = new NormalNotification (stack.screen, id, summary, body, pixbuf,
|
|
urgency, timeout, pid, actions);
|
|
#endif
|
|
|
|
notification.action_invoked.connect (notification_action_invoked_callback);
|
|
notification.closed.connect (notification_closed_callback);
|
|
stack.show_notification (notification);
|
|
} else {
|
|
notification_closed (id, NotificationClosedReason.EXPIRED);
|
|
}
|
|
|
|
return id;
|
|
}
|
|
|
|
static Gdk.RGBA? get_icon_fg_color () {
|
|
if (icon_fg_color != null)
|
|
return icon_fg_color;
|
|
|
|
var style_path = new Gtk.WidgetPath ();
|
|
style_path.append_type (typeof (Gtk.Window));
|
|
style_path.append_type (typeof (Gtk.EventBox));
|
|
style_path.iter_add_class (1, "gala-notification");
|
|
style_path.append_type (typeof (Gtk.Label));
|
|
|
|
var label_style_context = new Gtk.StyleContext ();
|
|
label_style_context.add_provider (Gala.Utils.get_gala_css (), Gtk.STYLE_PROVIDER_PRIORITY_FALLBACK);
|
|
label_style_context.set_path (style_path);
|
|
label_style_context.add_class ("label");
|
|
label_style_context.set_state (Gtk.StateFlags.NORMAL);
|
|
icon_fg_color = label_style_context.get_color (Gtk.StateFlags.NORMAL);
|
|
|
|
return icon_fg_color;
|
|
}
|
|
|
|
static Gdk.Pixbuf? get_pixbuf (string app_name, string app_icon, HashTable<string, Variant> hints) {
|
|
// decide on the icon, order:
|
|
// - image-data
|
|
// - image-path
|
|
// - app_icon
|
|
// - icon_data
|
|
// - from app name?
|
|
// - fallback to dialog-information
|
|
|
|
Gdk.Pixbuf? pixbuf = null;
|
|
Variant? variant = null;
|
|
var scale = Utils.get_ui_scaling_factor ();
|
|
var size = Notification.ICON_SIZE * scale;
|
|
var mask_offset = 4 * scale;
|
|
var mask_size_offset = mask_offset * 2;
|
|
var has_mask = false;
|
|
|
|
if ((variant = hints.lookup ("image-data")) != null
|
|
|| (variant = hints.lookup ("image_data")) != null
|
|
|| (variant = hints.lookup ("icon_data")) != null) {
|
|
|
|
has_mask = true;
|
|
size = size - mask_size_offset;
|
|
|
|
pixbuf = load_from_variant_at_size (variant, size);
|
|
|
|
} else if ((variant = hints.lookup ("image-path")) != null
|
|
|| (variant = hints.lookup ("image_path")) != null) {
|
|
|
|
var image_path = variant.get_string ();
|
|
|
|
try {
|
|
if (image_path.has_prefix ("file://") || image_path.has_prefix ("/")) {
|
|
has_mask = true;
|
|
size = size - mask_size_offset;
|
|
|
|
var file_path = File.new_for_commandline_arg (image_path).get_path ();
|
|
pixbuf = new Gdk.Pixbuf.from_file_at_scale (file_path, size, size, true);
|
|
} else {
|
|
pixbuf = Gtk.IconTheme.get_default ().load_icon_for_scale (image_path, Notification.ICON_SIZE, scale, 0);
|
|
}
|
|
} catch (Error e) { warning (e.message); }
|
|
|
|
} else if (app_icon != "") {
|
|
|
|
try {
|
|
var themed = new ThemedIcon.with_default_fallbacks (app_icon);
|
|
var info = Gtk.IconTheme.get_default ().lookup_by_gicon_for_scale (themed, Notification.ICON_SIZE, scale, 0);
|
|
if (info != null) {
|
|
pixbuf = info.load_symbolic (get_icon_fg_color ());
|
|
|
|
if (pixbuf.height != size)
|
|
pixbuf = pixbuf.scale_simple (size, size, Gdk.InterpType.HYPER);
|
|
|
|
}
|
|
} catch (Error e) { warning (e.message); }
|
|
|
|
}
|
|
|
|
if (pixbuf == null) {
|
|
|
|
try {
|
|
var themed = new ThemedIcon (app_name.down ());
|
|
var info = Gtk.IconTheme.get_default ().lookup_by_gicon_for_scale (themed, Notification.ICON_SIZE, scale, 0);
|
|
if (info != null) {
|
|
pixbuf = info.load_symbolic (get_icon_fg_color ());
|
|
|
|
if (pixbuf.height != size)
|
|
pixbuf = pixbuf.scale_simple (size, size, Gdk.InterpType.HYPER);
|
|
}
|
|
} catch (Error e) {
|
|
|
|
try {
|
|
pixbuf = Gtk.IconTheme.get_default ().load_icon_for_scale (FALLBACK_ICON, Notification.ICON_SIZE, scale, 0);
|
|
} catch (Error e) { warning (e.message); }
|
|
}
|
|
} else if (has_mask) {
|
|
var offset_x = mask_offset;
|
|
var offset_y = mask_offset + scale;
|
|
var mask_size = Notification.ICON_SIZE * scale;
|
|
|
|
var surface = new Cairo.ImageSurface (Cairo.Format.ARGB32, mask_size, mask_size);
|
|
var cr = new Cairo.Context (surface);
|
|
|
|
Granite.Drawing.Utilities.cairo_rounded_rectangle (cr, offset_x, offset_y, size, size, mask_offset);
|
|
cr.clip ();
|
|
|
|
Gdk.cairo_set_source_pixbuf (cr, pixbuf, offset_x, offset_y);
|
|
cr.paint ();
|
|
|
|
cr.reset_clip ();
|
|
|
|
if (image_mask_pixbuf == null) {
|
|
try {
|
|
image_mask_pixbuf = new Gdk.Pixbuf.from_file_at_scale (Config.PKGDATADIR + "/image-mask.svg", -1, mask_size, true);
|
|
} catch (Error e) {
|
|
warning (e.message);
|
|
}
|
|
}
|
|
|
|
Gdk.cairo_set_source_pixbuf (cr, image_mask_pixbuf, 0, 0);
|
|
cr.paint ();
|
|
|
|
pixbuf = Gdk.pixbuf_get_from_surface (surface, 0, 0, mask_size, mask_size);
|
|
}
|
|
|
|
return pixbuf;
|
|
}
|
|
|
|
static Gdk.Pixbuf? load_from_variant_at_size (Variant variant, int size) {
|
|
if (!variant.is_of_type (new VariantType ("(iiibiiay)"))) {
|
|
critical ("notify icon/image-data format invalid");
|
|
return null;
|
|
}
|
|
|
|
int width, height, rowstride, bits_per_sample, n_channels;
|
|
bool has_alpha;
|
|
|
|
variant.get ("(iiibiiay)", out width, out height, out rowstride,
|
|
out has_alpha, out bits_per_sample, out n_channels, null);
|
|
|
|
var data = variant.get_child_value (6);
|
|
unowned uint8[] pixel_data = (uint8[]) data.get_data ();
|
|
|
|
var pixbuf = new Gdk.Pixbuf.with_unowned_data (pixel_data, Gdk.Colorspace.RGB, has_alpha,
|
|
bits_per_sample, width, height, rowstride, null);
|
|
|
|
return pixbuf.scale_simple (size, size, Gdk.InterpType.BILINEAR);
|
|
}
|
|
|
|
void handle_sounds (HashTable<string,Variant> hints) {
|
|
if (ca_context == null)
|
|
return;
|
|
|
|
Variant? variant = null;
|
|
|
|
// Are we suppose to play a sound at all?
|
|
if ((variant = hints.lookup ("suppress-sound")) != null
|
|
&& variant.get_boolean ())
|
|
return;
|
|
|
|
Canberra.Proplist props;
|
|
Canberra.Proplist.create (out props);
|
|
props.sets (Canberra.PROP_CANBERRA_CACHE_CONTROL, "volatile");
|
|
|
|
bool play_sound = false;
|
|
|
|
// no sounds for confirmation bubbles
|
|
if ((variant = hints.lookup (X_CANONICAL_PRIVATE_SYNCHRONOUS)) != null) {
|
|
var confirmation_type = variant.get_string ();
|
|
|
|
// the sound indicator is an exception here, it won't emit a sound at all, even though for
|
|
// consistency it should. So we make it emit the default one.
|
|
if (confirmation_type != "indicator-sound")
|
|
return;
|
|
|
|
props.sets (Canberra.PROP_EVENT_ID, "audio-volume-change");
|
|
play_sound = true;
|
|
}
|
|
|
|
if ((variant = hints.lookup ("sound-name")) != null) {
|
|
props.sets (Canberra.PROP_EVENT_ID, variant.get_string ());
|
|
play_sound = true;
|
|
}
|
|
|
|
if ((variant = hints.lookup ("sound-file")) != null) {
|
|
props.sets (Canberra.PROP_MEDIA_FILENAME, variant.get_string ());
|
|
play_sound = true;
|
|
}
|
|
|
|
// pick a sound according to the category
|
|
if (!play_sound) {
|
|
variant = hints.lookup ("category");
|
|
unowned string? sound_name = null;
|
|
|
|
if (variant != null)
|
|
sound_name = category_to_sound (variant.get_string ());
|
|
else
|
|
sound_name = "dialog-information";
|
|
|
|
if (sound_name != null) {
|
|
props.sets (Canberra.PROP_EVENT_ID, sound_name);
|
|
play_sound = true;
|
|
}
|
|
}
|
|
|
|
if (play_sound)
|
|
ca_context.play_full (0, props);
|
|
}
|
|
|
|
static unowned string? category_to_sound (string category) {
|
|
unowned string? sound = null;
|
|
|
|
switch (category) {
|
|
case "device.added":
|
|
sound = "device-added";
|
|
break;
|
|
case "device.removed":
|
|
sound = "device-removed";
|
|
break;
|
|
case "im":
|
|
sound = "message";
|
|
break;
|
|
case "im.received":
|
|
sound = "message-new-instant";
|
|
break;
|
|
case "network.connected":
|
|
sound = "network-connectivity-established";
|
|
break;
|
|
case "network.disconnected":
|
|
sound = "network-connectivity-lost";
|
|
break;
|
|
case "presence.online":
|
|
sound = "service-login";
|
|
break;
|
|
case "presence.offline":
|
|
sound = "service-logout";
|
|
break;
|
|
// no sound at all
|
|
case "x-gnome.music":
|
|
sound = null;
|
|
break;
|
|
// generic errors
|
|
case "device.error":
|
|
case "email.bounced":
|
|
case "im.error":
|
|
case "network.error":
|
|
case "transfer.error":
|
|
sound = "dialog-error";
|
|
break;
|
|
// use generic default
|
|
case "network":
|
|
case "email":
|
|
case "email.arrived":
|
|
case "presence":
|
|
case "transfer":
|
|
case "transfer.complete":
|
|
default:
|
|
sound = "dialog-information";
|
|
break;
|
|
}
|
|
|
|
return sound;
|
|
}
|
|
|
|
void notification_closed_callback (Notification notification, uint32 id, uint32 reason) {
|
|
notification.action_invoked.disconnect (notification_action_invoked_callback);
|
|
notification.closed.disconnect (notification_closed_callback);
|
|
|
|
notification_closed (id, reason);
|
|
}
|
|
|
|
void notification_action_invoked_callback (Notification notification, uint32 id, string action) {
|
|
action_invoked (id, action);
|
|
}
|
|
|
|
AppInfo? get_appinfo_from_app_name (string app_name) {
|
|
if (app_name.strip () == "")
|
|
return null;
|
|
|
|
AppInfo? app_info = app_info_cache.get (app_name);
|
|
if (app_info != null)
|
|
return app_info;
|
|
|
|
foreach (unowned AppInfo info in AppInfo.get_all ()) {
|
|
if (info == null || !validate (info, app_name))
|
|
continue;
|
|
|
|
app_info = info;
|
|
break;
|
|
}
|
|
|
|
app_info_cache.set (app_name, app_info);
|
|
|
|
return app_info;
|
|
}
|
|
|
|
static bool validate (AppInfo appinfo, string name) {
|
|
string? app_executable = appinfo.get_executable ();
|
|
string? app_name = appinfo.get_name ();
|
|
string? app_display_name = appinfo.get_display_name ();
|
|
|
|
if (app_name == null || app_executable == null || app_display_name == null)
|
|
return false;
|
|
|
|
string token = name.down ().strip ();
|
|
string? token_executable = token;
|
|
if (!token_executable.has_prefix (Path.DIR_SEPARATOR_S))
|
|
token_executable = Environment.find_program_in_path (token_executable);
|
|
|
|
if (!app_executable.has_prefix (Path.DIR_SEPARATOR_S))
|
|
app_executable = Environment.find_program_in_path (app_executable);
|
|
|
|
string[] args;
|
|
|
|
try {
|
|
Shell.parse_argv (appinfo.get_commandline (), out args);
|
|
} catch (ShellError e) {
|
|
warning ("%s", e.message);
|
|
}
|
|
|
|
return (app_name.down () == token
|
|
|| token_executable == app_executable
|
|
|| (args.length > 0 && args[0] == token)
|
|
|| app_display_name.down ().contains (token));
|
|
}
|
|
}
|
|
}
|