[gnome-shell] Add shell_global_report_error()
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] Add shell_global_report_error()
- Date: Wed, 16 Mar 2011 19:06:26 +0000 (UTC)
commit b4f16c4df830ff4f13d4da3d4f29acbb8d04bfda
Author: Colin Walters <walters verbum org>
Date: Tue Mar 15 18:31:16 2011 -0400
Add shell_global_report_error()
Move the "system notification error" handling out of
util.js, and add it to ShellGlobal so we can start
calling it from across the codebase better (including
C).
https://bugzilla.gnome.org/show_bug.cgi?id=644402
js/misc/util.js | 8 +-------
js/ui/main.js | 24 ++++++++++++++++++++++++
src/shell-global.c | 32 ++++++++++++++++++++++++++++++++
src/shell-global.h | 5 +++++
4 files changed, 62 insertions(+), 7 deletions(-)
---
diff --git a/js/misc/util.js b/js/misc/util.js
index f68907e..1bc1a72 100644
--- a/js/misc/util.js
+++ b/js/misc/util.js
@@ -6,7 +6,6 @@ const GLib = imports.gi.GLib;
const Shell = imports.gi.Shell;
const Main = imports.ui.main;
-const MessageTray = imports.ui.messageTray;
const Gettext = imports.gettext.domain('gnome-shell');
const _ = Gettext.gettext;
@@ -146,12 +145,7 @@ function trySpawnDesktop(id) {
function _handleSpawnError(command, err) {
let title = _("Execution of '%s' failed:").format(command);
-
- let source = new MessageTray.SystemNotificationSource();
- Main.messageTray.add(source);
- let notification = new MessageTray.Notification(source, title, err.message);
- notification.setTransient(true);
- source.notify(notification);
+ Main.notifyProblem(title, err.message);
}
// killall:
diff --git a/js/ui/main.js b/js/ui/main.js
index 24dab31..3c3763b 100644
--- a/js/ui/main.js
+++ b/js/ui/main.js
@@ -86,6 +86,9 @@ function start() {
global.logError = _logError;
global.log = _logDebug;
+ // Chain up async errors reported from C
+ global.connect('notify-error', function (global, msg, detail) { notifyError(msg, detail); });
+
Gio.DesktopAppInfo.set_desktop_env('GNOME');
shellDBusService = new ShellDBus.GnomeShell();
@@ -396,6 +399,27 @@ function loadTheme() {
}
/**
+ * notifyError:
+ * @msg: An error message
+ * @details: Additional information
+ *
+ * See shell_global_notify_problem().
+ */
+function notifyError(msg, details) {
+ // Also print to stderr so it's logged somewhere
+ if (details)
+ log("error: " + msg + ": " + details);
+ else
+ log("error: " + msg)
+
+ let source = new MessageTray.SystemNotificationSource();
+ messageTray.add(source);
+ let notification = new MessageTray.Notification(source, msg, details);
+ notification.setTransient(true);
+ source.notify(notification);
+}
+
+/**
* _log:
* @category: string message type ('info', 'error')
* @msg: A message string
diff --git a/src/shell-global.c b/src/shell-global.c
index 88b8224..ab112cc 100644
--- a/src/shell-global.c
+++ b/src/shell-global.c
@@ -21,6 +21,7 @@
#include <gdk/gdkx.h>
#include <gio/gio.h>
#include <gjs/gjs-module.h>
+#include <girepository.h>
#include <libxml/parser.h>
#include <libxml/tree.h>
#include <libxml/xmlmemory.h>
@@ -102,6 +103,7 @@ enum
XDND_POSITION_CHANGED,
XDND_LEAVE,
XDND_ENTER,
+ NOTIFY_ERROR,
LAST_SIGNAL
};
@@ -293,6 +295,17 @@ shell_global_class_init (ShellGlobalClass *klass)
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
+ shell_global_signals[NOTIFY_ERROR] =
+ g_signal_new ("notify-error",
+ G_TYPE_FROM_CLASS (klass),
+ G_SIGNAL_RUN_LAST,
+ 0,
+ NULL, NULL,
+ gi_cclosure_marshal_generic,
+ G_TYPE_NONE, 2,
+ G_TYPE_STRING,
+ G_TYPE_STRING);
+
g_object_class_install_property (gobject_class,
PROP_OVERLAY_GROUP,
g_param_spec_object ("overlay-group",
@@ -1238,6 +1251,25 @@ shell_global_maybe_gc (ShellGlobal *global)
gjs_context_maybe_gc (global->js_context);
}
+/**
+ * shell_global_notify_error:
+ * @global: a #ShellGlobal
+ * @msg: Error message
+ * @details: Error details
+ *
+ * Show a system error notification. Use this function
+ * when a user-initiated action results in a non-fatal problem
+ * from causes that may not be under system control. For
+ * example, an application crash.
+ */
+void
+shell_global_notify_error (ShellGlobal *global,
+ const char *msg,
+ const char *details)
+{
+ g_signal_emit_by_name (global, "notify-error", msg, details);
+}
+
static void
grab_notify (GtkWidget *widget, gboolean was_grabbed, gpointer user_data)
{
diff --git a/src/shell-global.h b/src/shell-global.h
index 1ca247c..f053919 100644
--- a/src/shell-global.h
+++ b/src/shell-global.h
@@ -143,6 +143,11 @@ void shell_global_play_theme_sound (ShellGlobal *global,
void shell_global_cancel_theme_sound (ShellGlobal *global,
guint id);
+
+void shell_global_notify_error (ShellGlobal *global,
+ const char *msg,
+ const char *details);
+
void shell_global_init_xdnd (ShellGlobal *global);
typedef void (*ShellGetTpContactCb) (TpConnection *connection,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]