2005-08-29 17:47:10 +00:00
|
|
|
/* gtktrayicon.c
|
|
|
|
* Copyright (C) 2002 Anders Carlsson <andersca@gnu.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2005-08-29 19:15:24 +00:00
|
|
|
/*
|
|
|
|
* This is an implementation of the freedesktop.org "system tray" spec,
|
|
|
|
* http://www.freedesktop.org/wiki/Standards/systemtray-spec
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2011-01-04 19:51:19 +00:00
|
|
|
|
2010-09-08 14:33:14 +00:00
|
|
|
#include <math.h>
|
2005-08-29 17:47:10 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2011-01-04 19:51:19 +00:00
|
|
|
#include "x11/gdkx.h"
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <cairo-xlib.h>
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
#include "gtkintl.h"
|
|
|
|
#include "gtkprivate.h"
|
|
|
|
#include "gtktrayicon.h"
|
2010-09-18 23:57:32 +00:00
|
|
|
#include "gtktestutils.h"
|
|
|
|
#include "gtkdebug.h"
|
2011-01-04 19:51:19 +00:00
|
|
|
#include "gtktypebuiltins.h"
|
2005-08-29 17:47:10 +00:00
|
|
|
|
|
|
|
#define SYSTEM_TRAY_REQUEST_DOCK 0
|
|
|
|
#define SYSTEM_TRAY_BEGIN_MESSAGE 1
|
|
|
|
#define SYSTEM_TRAY_CANCEL_MESSAGE 2
|
|
|
|
|
|
|
|
#define SYSTEM_TRAY_ORIENTATION_HORZ 0
|
|
|
|
#define SYSTEM_TRAY_ORIENTATION_VERT 1
|
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
2010-04-29 03:00:37 +00:00
|
|
|
PROP_ORIENTATION,
|
|
|
|
PROP_FG_COLOR,
|
|
|
|
PROP_ERROR_COLOR,
|
|
|
|
PROP_WARNING_COLOR,
|
2010-05-10 14:26:44 +00:00
|
|
|
PROP_SUCCESS_COLOR,
|
2011-03-29 18:14:21 +00:00
|
|
|
PROP_PADDING,
|
|
|
|
PROP_ICON_SIZE
|
2005-08-29 17:47:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkTrayIconPrivate
|
|
|
|
{
|
|
|
|
guint stamp;
|
|
|
|
|
|
|
|
Atom selection_atom;
|
|
|
|
Atom manager_atom;
|
|
|
|
Atom system_tray_opcode_atom;
|
|
|
|
Atom orientation_atom;
|
2008-09-27 04:27:53 +00:00
|
|
|
Atom visual_atom;
|
2010-04-29 03:00:37 +00:00
|
|
|
Atom colors_atom;
|
2010-05-10 14:26:44 +00:00
|
|
|
Atom padding_atom;
|
2011-03-29 18:14:21 +00:00
|
|
|
Atom icon_size_atom;
|
2005-08-29 17:47:10 +00:00
|
|
|
Window manager_window;
|
2008-09-27 04:27:53 +00:00
|
|
|
GdkVisual *manager_visual;
|
|
|
|
gboolean manager_visual_rgba;
|
2005-08-29 17:47:10 +00:00
|
|
|
|
|
|
|
GtkOrientation orientation;
|
2011-05-02 15:13:50 +00:00
|
|
|
GdkRGBA fg_color;
|
|
|
|
GdkRGBA error_color;
|
|
|
|
GdkRGBA warning_color;
|
|
|
|
GdkRGBA success_color;
|
2010-05-10 14:26:44 +00:00
|
|
|
gint padding;
|
2011-03-29 18:14:21 +00:00
|
|
|
gint icon_size;
|
2005-08-29 17:47:10 +00:00
|
|
|
};
|
2008-09-27 04:27:53 +00:00
|
|
|
|
|
|
|
static void gtk_tray_icon_constructed (GObject *object);
|
|
|
|
static void gtk_tray_icon_dispose (GObject *object);
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
static void gtk_tray_icon_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
|
|
|
static void gtk_tray_icon_realize (GtkWidget *widget);
|
2011-01-04 01:04:37 +00:00
|
|
|
static void gtk_tray_icon_style_updated (GtkWidget *widget);
|
2005-08-29 17:47:10 +00:00
|
|
|
static gboolean gtk_tray_icon_delete (GtkWidget *widget,
|
|
|
|
GdkEventAny *event);
|
2010-09-08 14:33:14 +00:00
|
|
|
static gboolean gtk_tray_icon_draw (GtkWidget *widget,
|
|
|
|
cairo_t *cr);
|
2005-08-29 17:47:10 +00:00
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
static void gtk_tray_icon_clear_manager_window (GtkTrayIcon *icon);
|
2007-01-27 05:51:19 +00:00
|
|
|
static void gtk_tray_icon_update_manager_window (GtkTrayIcon *icon);
|
2005-08-29 17:47:10 +00:00
|
|
|
static void gtk_tray_icon_manager_window_destroyed (GtkTrayIcon *icon);
|
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
static GdkFilterReturn gtk_tray_icon_manager_filter (GdkXEvent *xevent,
|
|
|
|
GdkEvent *event,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
|
2006-05-14 04:25:34 +00:00
|
|
|
G_DEFINE_TYPE (GtkTrayIcon, gtk_tray_icon, GTK_TYPE_PLUG)
|
2005-08-29 17:47:10 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tray_icon_class_init (GtkTrayIconClass *class)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = (GObjectClass *)class;
|
|
|
|
GtkWidgetClass *widget_class = (GtkWidgetClass *)class;
|
|
|
|
|
|
|
|
gobject_class->get_property = gtk_tray_icon_get_property;
|
2008-09-27 04:27:53 +00:00
|
|
|
gobject_class->constructed = gtk_tray_icon_constructed;
|
|
|
|
gobject_class->dispose = gtk_tray_icon_dispose;
|
2005-08-29 17:47:10 +00:00
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
widget_class->realize = gtk_tray_icon_realize;
|
2011-01-04 01:04:37 +00:00
|
|
|
widget_class->style_updated = gtk_tray_icon_style_updated;
|
2005-08-29 17:47:10 +00:00
|
|
|
widget_class->delete_event = gtk_tray_icon_delete;
|
2010-09-08 14:33:14 +00:00
|
|
|
widget_class->draw = gtk_tray_icon_draw;
|
2005-08-29 17:47:10 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_ORIENTATION,
|
|
|
|
g_param_spec_enum ("orientation",
|
|
|
|
P_("Orientation"),
|
|
|
|
P_("The orientation of the tray"),
|
|
|
|
GTK_TYPE_ORIENTATION,
|
|
|
|
GTK_ORIENTATION_HORIZONTAL,
|
|
|
|
GTK_PARAM_READABLE));
|
|
|
|
|
2010-04-29 03:00:37 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_FG_COLOR,
|
|
|
|
g_param_spec_boxed ("fg-color",
|
|
|
|
P_("Foreground color"),
|
|
|
|
P_("Foreground color for symbolic icons"),
|
2011-05-02 15:13:50 +00:00
|
|
|
GDK_TYPE_RGBA,
|
2010-04-29 03:00:37 +00:00
|
|
|
GTK_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_ERROR_COLOR,
|
|
|
|
g_param_spec_boxed ("error-color",
|
|
|
|
P_("Error color"),
|
|
|
|
P_("Error color for symbolic icons"),
|
2011-05-02 15:13:50 +00:00
|
|
|
GDK_TYPE_RGBA,
|
2010-04-29 03:00:37 +00:00
|
|
|
GTK_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_WARNING_COLOR,
|
|
|
|
g_param_spec_boxed ("warning-color",
|
|
|
|
P_("Warning color"),
|
|
|
|
P_("Warning color for symbolic icons"),
|
2011-05-02 15:13:50 +00:00
|
|
|
GDK_TYPE_RGBA,
|
2010-04-29 03:00:37 +00:00
|
|
|
GTK_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_SUCCESS_COLOR,
|
|
|
|
g_param_spec_boxed ("success-color",
|
|
|
|
P_("Success color"),
|
|
|
|
P_("Success color for symbolic icons"),
|
2011-05-02 15:13:50 +00:00
|
|
|
GDK_TYPE_RGBA,
|
2010-04-29 03:00:37 +00:00
|
|
|
GTK_PARAM_READABLE));
|
|
|
|
|
2010-05-10 14:26:44 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_PADDING,
|
|
|
|
g_param_spec_int ("padding",
|
|
|
|
P_("Padding"),
|
|
|
|
P_("Padding that should be put around icons in the tray"),
|
|
|
|
0,
|
|
|
|
G_MAXINT,
|
|
|
|
0,
|
|
|
|
GTK_PARAM_READABLE));
|
|
|
|
|
2011-03-29 18:14:21 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_ICON_SIZE,
|
|
|
|
g_param_spec_int ("icon-size",
|
|
|
|
P_("Icon Size"),
|
|
|
|
P_("The pixel size that icons should be forced to, or zero"),
|
|
|
|
0,
|
|
|
|
G_MAXINT,
|
|
|
|
0,
|
|
|
|
GTK_PARAM_READABLE));
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
g_type_class_add_private (class, sizeof (GtkTrayIconPrivate));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tray_icon_init (GtkTrayIcon *icon)
|
|
|
|
{
|
|
|
|
icon->priv = G_TYPE_INSTANCE_GET_PRIVATE (icon, GTK_TYPE_TRAY_ICON,
|
|
|
|
GtkTrayIconPrivate);
|
2010-04-29 03:00:37 +00:00
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
icon->priv->stamp = 1;
|
|
|
|
icon->priv->orientation = GTK_ORIENTATION_HORIZONTAL;
|
2011-05-02 15:13:50 +00:00
|
|
|
icon->priv->fg_color.red = 0.0;
|
|
|
|
icon->priv->fg_color.green = 0.0;
|
|
|
|
icon->priv->fg_color.blue = 0.0;
|
|
|
|
icon->priv->fg_color.alpha = 1.0;
|
|
|
|
icon->priv->error_color.red = 0.7968;
|
|
|
|
icon->priv->error_color.green = 0.0;
|
|
|
|
icon->priv->error_color.blue = 0.0;
|
|
|
|
icon->priv->error_color.alpha = 1.0;
|
|
|
|
icon->priv->warning_color.red = 0.9570;
|
|
|
|
icon->priv->warning_color.green = 0.4726;
|
|
|
|
icon->priv->warning_color.blue = 0.2421;
|
|
|
|
icon->priv->warning_color.alpha = 1.0;
|
|
|
|
icon->priv->success_color.red = 0.3047;
|
|
|
|
icon->priv->success_color.green = 0.6016;
|
|
|
|
icon->priv->success_color.blue = 0.0234;
|
|
|
|
icon->priv->success_color.alpha = 1.0;
|
2010-05-10 14:26:44 +00:00
|
|
|
icon->priv->padding = 0;
|
2011-03-29 18:14:21 +00:00
|
|
|
icon->priv->icon_size = 0;
|
2006-06-19 23:53:28 +00:00
|
|
|
|
|
|
|
gtk_widget_set_app_paintable (GTK_WIDGET (icon), TRUE);
|
2005-08-29 17:47:10 +00:00
|
|
|
gtk_widget_add_events (GTK_WIDGET (icon), GDK_PROPERTY_CHANGE_MASK);
|
|
|
|
}
|
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
static void
|
|
|
|
gtk_tray_icon_constructed (GObject *object)
|
|
|
|
{
|
|
|
|
/* Do setup that depends on the screen; screen has been set at this point */
|
|
|
|
|
|
|
|
GtkTrayIcon *icon = GTK_TRAY_ICON (object);
|
|
|
|
GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (object));
|
|
|
|
GdkWindow *root_window = gdk_screen_get_root_window (screen);
|
|
|
|
GdkDisplay *display = gtk_widget_get_display (GTK_WIDGET (object));
|
|
|
|
Display *xdisplay = gdk_x11_display_get_xdisplay (display);
|
|
|
|
char buffer[256];
|
|
|
|
|
|
|
|
g_snprintf (buffer, sizeof (buffer),
|
|
|
|
"_NET_SYSTEM_TRAY_S%d",
|
|
|
|
gdk_screen_get_number (screen));
|
|
|
|
|
|
|
|
icon->priv->selection_atom = XInternAtom (xdisplay, buffer, False);
|
|
|
|
|
|
|
|
icon->priv->manager_atom = XInternAtom (xdisplay, "MANAGER", False);
|
|
|
|
|
|
|
|
icon->priv->system_tray_opcode_atom = XInternAtom (xdisplay,
|
|
|
|
"_NET_SYSTEM_TRAY_OPCODE",
|
|
|
|
False);
|
|
|
|
|
|
|
|
icon->priv->orientation_atom = XInternAtom (xdisplay,
|
|
|
|
"_NET_SYSTEM_TRAY_ORIENTATION",
|
|
|
|
False);
|
|
|
|
|
|
|
|
icon->priv->visual_atom = XInternAtom (xdisplay,
|
|
|
|
"_NET_SYSTEM_TRAY_VISUAL",
|
|
|
|
False);
|
|
|
|
|
2010-04-29 03:00:37 +00:00
|
|
|
icon->priv->colors_atom = XInternAtom (xdisplay,
|
|
|
|
"_NET_SYSTEM_TRAY_COLORS",
|
|
|
|
False);
|
|
|
|
|
2010-05-10 14:26:44 +00:00
|
|
|
icon->priv->padding_atom = XInternAtom (xdisplay,
|
|
|
|
"_NET_SYSTEM_TRAY_PADDING",
|
|
|
|
False);
|
|
|
|
|
2011-03-29 18:14:21 +00:00
|
|
|
icon->priv->icon_size_atom = XInternAtom (xdisplay,
|
|
|
|
"_NET_SYSTEM_TRAY_ICON_SIZE",
|
|
|
|
False);
|
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
/* Add a root window filter so that we get changes on MANAGER */
|
|
|
|
gdk_window_add_filter (root_window,
|
|
|
|
gtk_tray_icon_manager_filter, icon);
|
|
|
|
|
|
|
|
gtk_tray_icon_update_manager_window (icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tray_icon_clear_manager_window (GtkTrayIcon *icon)
|
|
|
|
{
|
|
|
|
GdkDisplay *display = gtk_widget_get_display (GTK_WIDGET (icon));
|
|
|
|
|
|
|
|
if (icon->priv->manager_window != None)
|
|
|
|
{
|
|
|
|
GdkWindow *gdkwin;
|
|
|
|
|
2010-12-15 06:39:30 +00:00
|
|
|
gdkwin = gdk_x11_window_lookup_for_display (display,
|
|
|
|
icon->priv->manager_window);
|
2008-09-27 04:27:53 +00:00
|
|
|
|
|
|
|
gdk_window_remove_filter (gdkwin, gtk_tray_icon_manager_filter, icon);
|
|
|
|
|
|
|
|
icon->priv->manager_window = None;
|
|
|
|
icon->priv->manager_visual = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tray_icon_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
GtkTrayIcon *icon = GTK_TRAY_ICON (object);
|
|
|
|
GtkWidget *widget = GTK_WIDGET (object);
|
|
|
|
GdkWindow *root_window = gdk_screen_get_root_window (gtk_widget_get_screen (widget));
|
|
|
|
|
|
|
|
gtk_tray_icon_clear_manager_window (icon);
|
|
|
|
|
|
|
|
gdk_window_remove_filter (root_window, gtk_tray_icon_manager_filter, icon);
|
2011-02-25 19:37:57 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (gtk_tray_icon_parent_class)->dispose (object);
|
2008-09-27 04:27:53 +00:00
|
|
|
}
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
static void
|
|
|
|
gtk_tray_icon_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkTrayIcon *icon = GTK_TRAY_ICON (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_ORIENTATION:
|
|
|
|
g_value_set_enum (value, icon->priv->orientation);
|
|
|
|
break;
|
2010-04-29 03:00:37 +00:00
|
|
|
case PROP_FG_COLOR:
|
|
|
|
g_value_set_boxed (value, &icon->priv->fg_color);
|
|
|
|
break;
|
|
|
|
case PROP_ERROR_COLOR:
|
|
|
|
g_value_set_boxed (value, &icon->priv->error_color);
|
|
|
|
break;
|
|
|
|
case PROP_WARNING_COLOR:
|
|
|
|
g_value_set_boxed (value, &icon->priv->warning_color);
|
|
|
|
break;
|
|
|
|
case PROP_SUCCESS_COLOR:
|
|
|
|
g_value_set_boxed (value, &icon->priv->success_color);
|
|
|
|
break;
|
2010-05-10 14:26:44 +00:00
|
|
|
case PROP_PADDING:
|
|
|
|
g_value_set_int (value, icon->priv->padding);
|
|
|
|
break;
|
2011-03-29 18:14:21 +00:00
|
|
|
case PROP_ICON_SIZE:
|
|
|
|
g_value_set_int (value, icon->priv->icon_size);
|
|
|
|
break;
|
2005-08-29 17:47:10 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-19 23:53:28 +00:00
|
|
|
static gboolean
|
2010-09-08 14:33:14 +00:00
|
|
|
gtk_tray_icon_draw (GtkWidget *widget,
|
|
|
|
cairo_t *cr)
|
2006-06-19 23:53:28 +00:00
|
|
|
{
|
2008-09-27 04:27:53 +00:00
|
|
|
GtkTrayIcon *icon = GTK_TRAY_ICON (widget);
|
2008-02-12 03:24:03 +00:00
|
|
|
GtkWidget *focus_child;
|
2010-08-15 15:50:39 +00:00
|
|
|
GdkWindow *window;
|
2010-09-08 14:33:14 +00:00
|
|
|
gint border_width;
|
2008-02-12 03:24:03 +00:00
|
|
|
gboolean retval = FALSE;
|
2010-09-08 14:33:14 +00:00
|
|
|
cairo_surface_t *target;
|
2008-02-12 03:24:03 +00:00
|
|
|
|
2010-08-15 15:50:39 +00:00
|
|
|
window = gtk_widget_get_window (widget);
|
2010-09-08 14:33:14 +00:00
|
|
|
target = cairo_get_group_target (cr);
|
2010-08-15 15:50:39 +00:00
|
|
|
|
2010-09-08 14:33:14 +00:00
|
|
|
if (icon->priv->manager_visual_rgba ||
|
|
|
|
cairo_surface_get_type (target) != CAIRO_SURFACE_TYPE_XLIB ||
|
|
|
|
cairo_xlib_surface_get_drawable (target) != GDK_WINDOW_XID (window))
|
2008-09-27 04:27:53 +00:00
|
|
|
{
|
|
|
|
/* Clear to transparent */
|
|
|
|
cairo_set_source_rgba (cr, 0, 0, 0, 0);
|
|
|
|
cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
|
2010-09-08 14:33:14 +00:00
|
|
|
cairo_paint (cr);
|
2008-09-27 04:27:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-30 13:50:52 +00:00
|
|
|
GdkRectangle clip;
|
|
|
|
|
|
|
|
if (gdk_cairo_get_clip_rectangle (cr, &clip))
|
|
|
|
{
|
|
|
|
/* Clear to parent-relative pixmap
|
|
|
|
* We need to use direct X access here because GDK doesn't know about
|
|
|
|
* the parent realtive pixmap. */
|
|
|
|
cairo_surface_flush (target);
|
|
|
|
|
|
|
|
XClearArea (GDK_WINDOW_XDISPLAY (window),
|
|
|
|
GDK_WINDOW_XID (window),
|
|
|
|
clip.x, clip.y,
|
|
|
|
clip.width, clip.height,
|
|
|
|
False);
|
|
|
|
cairo_surface_mark_dirty_rectangle (target,
|
|
|
|
clip.x, clip.y,
|
|
|
|
clip.width, clip.height);
|
|
|
|
}
|
2008-09-27 04:27:53 +00:00
|
|
|
}
|
2006-06-19 23:53:28 +00:00
|
|
|
|
2010-09-08 14:33:14 +00:00
|
|
|
if (GTK_WIDGET_CLASS (gtk_tray_icon_parent_class)->draw)
|
|
|
|
retval = GTK_WIDGET_CLASS (gtk_tray_icon_parent_class)->draw (widget, cr);
|
2008-02-12 03:24:03 +00:00
|
|
|
|
2010-06-02 04:28:22 +00:00
|
|
|
focus_child = gtk_container_get_focus_child (GTK_CONTAINER (widget));
|
2010-03-01 03:21:41 +00:00
|
|
|
if (focus_child && gtk_widget_has_focus (focus_child))
|
2008-02-12 03:24:03 +00:00
|
|
|
{
|
2011-01-04 01:04:37 +00:00
|
|
|
GtkStyleContext *context;
|
|
|
|
GtkStateFlags state;
|
|
|
|
|
2010-06-02 04:28:22 +00:00
|
|
|
border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
|
2011-01-04 01:04:37 +00:00
|
|
|
context = gtk_widget_get_style_context (widget);
|
|
|
|
state = gtk_widget_get_state_flags (widget);
|
|
|
|
|
|
|
|
gtk_style_context_save (context);
|
|
|
|
gtk_style_context_set_state (context, state);
|
|
|
|
|
|
|
|
gtk_render_focus (context, cr, border_width, border_width,
|
|
|
|
gtk_widget_get_allocated_width (widget) - 2 * border_width,
|
|
|
|
gtk_widget_get_allocated_height (widget) - 2 * border_width);
|
2008-02-12 03:24:03 +00:00
|
|
|
|
2011-01-04 01:04:37 +00:00
|
|
|
gtk_style_context_restore (context);
|
2008-02-12 03:24:03 +00:00
|
|
|
}
|
2006-06-19 23:53:28 +00:00
|
|
|
|
2008-02-12 03:24:03 +00:00
|
|
|
return retval;
|
2006-06-19 23:53:28 +00:00
|
|
|
}
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
static void
|
|
|
|
gtk_tray_icon_get_orientation_property (GtkTrayIcon *icon)
|
|
|
|
{
|
2008-09-27 04:27:53 +00:00
|
|
|
GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (icon));
|
|
|
|
GdkDisplay *display = gdk_screen_get_display (screen);
|
|
|
|
Display *xdisplay = GDK_DISPLAY_XDISPLAY (display);
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
Atom type;
|
|
|
|
int format;
|
|
|
|
union {
|
|
|
|
gulong *prop;
|
|
|
|
guchar *prop_ch;
|
|
|
|
} prop = { NULL };
|
|
|
|
gulong nitems;
|
|
|
|
gulong bytes_after;
|
|
|
|
int error, result;
|
|
|
|
|
|
|
|
g_assert (icon->priv->manager_window != None);
|
|
|
|
|
|
|
|
gdk_error_trap_push ();
|
|
|
|
type = None;
|
|
|
|
result = XGetWindowProperty (xdisplay,
|
|
|
|
icon->priv->manager_window,
|
|
|
|
icon->priv->orientation_atom,
|
|
|
|
0, G_MAXLONG, FALSE,
|
|
|
|
XA_CARDINAL,
|
|
|
|
&type, &format, &nitems,
|
|
|
|
&bytes_after, &(prop.prop_ch));
|
|
|
|
error = gdk_error_trap_pop ();
|
|
|
|
|
|
|
|
if (error || result != Success)
|
|
|
|
return;
|
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
if (type == XA_CARDINAL && nitems == 1 && format == 32)
|
2005-08-29 17:47:10 +00:00
|
|
|
{
|
|
|
|
GtkOrientation orientation;
|
|
|
|
|
|
|
|
orientation = (prop.prop [0] == SYSTEM_TRAY_ORIENTATION_HORZ) ?
|
|
|
|
GTK_ORIENTATION_HORIZONTAL :
|
|
|
|
GTK_ORIENTATION_VERTICAL;
|
|
|
|
|
|
|
|
if (icon->priv->orientation != orientation)
|
|
|
|
{
|
|
|
|
icon->priv->orientation = orientation;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (icon), "orientation");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
if (type != None)
|
|
|
|
XFree (prop.prop);
|
|
|
|
}
|
|
|
|
|
2009-01-01 06:46:57 +00:00
|
|
|
static void
|
2008-09-27 04:27:53 +00:00
|
|
|
gtk_tray_icon_get_visual_property (GtkTrayIcon *icon)
|
|
|
|
{
|
|
|
|
GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (icon));
|
|
|
|
GdkDisplay *display = gdk_screen_get_display (screen);
|
|
|
|
Display *xdisplay = GDK_DISPLAY_XDISPLAY (display);
|
|
|
|
|
|
|
|
Atom type;
|
|
|
|
int format;
|
|
|
|
union {
|
|
|
|
gulong *prop;
|
|
|
|
guchar *prop_ch;
|
|
|
|
} prop = { NULL };
|
|
|
|
gulong nitems;
|
|
|
|
gulong bytes_after;
|
|
|
|
int error, result;
|
|
|
|
GdkVisual *visual;
|
2010-12-10 07:32:18 +00:00
|
|
|
gint red_prec;
|
|
|
|
gint green_prec;
|
|
|
|
gint blue_prec;
|
2008-09-27 04:27:53 +00:00
|
|
|
|
|
|
|
g_assert (icon->priv->manager_window != None);
|
|
|
|
|
|
|
|
gdk_error_trap_push ();
|
|
|
|
type = None;
|
|
|
|
result = XGetWindowProperty (xdisplay,
|
|
|
|
icon->priv->manager_window,
|
|
|
|
icon->priv->visual_atom,
|
|
|
|
0, G_MAXLONG, FALSE,
|
|
|
|
XA_VISUALID,
|
|
|
|
&type, &format, &nitems,
|
|
|
|
&bytes_after, &(prop.prop_ch));
|
|
|
|
error = gdk_error_trap_pop ();
|
|
|
|
|
|
|
|
visual = NULL;
|
|
|
|
|
|
|
|
if (!error && result == Success &&
|
|
|
|
type == XA_VISUALID && nitems == 1 && format == 32)
|
|
|
|
{
|
|
|
|
VisualID visual_id = prop.prop[0];
|
|
|
|
visual = gdk_x11_screen_lookup_visual (screen, visual_id);
|
|
|
|
}
|
|
|
|
|
2010-12-10 07:32:18 +00:00
|
|
|
gdk_visual_get_red_pixel_details (visual, NULL, NULL, &red_prec);
|
|
|
|
gdk_visual_get_green_pixel_details (visual, NULL, NULL, &green_prec);
|
|
|
|
gdk_visual_get_blue_pixel_details (visual, NULL, NULL, &blue_prec);
|
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
icon->priv->manager_visual = visual;
|
|
|
|
icon->priv->manager_visual_rgba = visual != NULL &&
|
2010-12-10 07:32:18 +00:00
|
|
|
(red_prec + blue_prec + green_prec < gdk_visual_get_depth (visual));
|
2008-09-27 04:27:53 +00:00
|
|
|
|
|
|
|
/* For the background-relative hack we use when we aren't using a real RGBA
|
|
|
|
* visual, we can't be double-buffered */
|
|
|
|
gtk_widget_set_double_buffered (GTK_WIDGET (icon), icon->priv->manager_visual_rgba);
|
|
|
|
|
|
|
|
if (type != None)
|
2005-08-29 17:47:10 +00:00
|
|
|
XFree (prop.prop);
|
|
|
|
}
|
|
|
|
|
2010-04-29 03:00:37 +00:00
|
|
|
static void
|
|
|
|
gtk_tray_icon_get_colors_property (GtkTrayIcon *icon)
|
|
|
|
{
|
|
|
|
GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (icon));
|
|
|
|
GdkDisplay *display = gdk_screen_get_display (screen);
|
|
|
|
Display *xdisplay = GDK_DISPLAY_XDISPLAY (display);
|
|
|
|
|
|
|
|
Atom type;
|
|
|
|
int format;
|
|
|
|
union {
|
|
|
|
gulong *prop;
|
|
|
|
guchar *prop_ch;
|
|
|
|
} prop = { NULL };
|
|
|
|
gulong nitems;
|
|
|
|
gulong bytes_after;
|
|
|
|
int error, result;
|
|
|
|
|
|
|
|
g_assert (icon->priv->manager_window != None);
|
|
|
|
|
|
|
|
gdk_error_trap_push ();
|
|
|
|
type = None;
|
|
|
|
result = XGetWindowProperty (xdisplay,
|
|
|
|
icon->priv->manager_window,
|
|
|
|
icon->priv->colors_atom,
|
|
|
|
0, G_MAXLONG, FALSE,
|
|
|
|
XA_CARDINAL,
|
|
|
|
&type, &format, &nitems,
|
|
|
|
&bytes_after, &(prop.prop_ch));
|
|
|
|
error = gdk_error_trap_pop ();
|
|
|
|
|
|
|
|
if (error || result != Success)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (type == XA_CARDINAL && nitems == 12 && format == 32)
|
|
|
|
{
|
2011-05-02 15:13:50 +00:00
|
|
|
GdkRGBA color;
|
2010-04-29 03:00:37 +00:00
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (icon));
|
|
|
|
|
2011-05-02 15:13:50 +00:00
|
|
|
color.red = prop.prop[0] / 65535.0;
|
|
|
|
color.green = prop.prop[1] / 65535.0;
|
|
|
|
color.blue = prop.prop[2] / 65535.0;
|
2010-04-29 03:00:37 +00:00
|
|
|
|
2011-05-02 15:13:50 +00:00
|
|
|
if (!gdk_rgba_equal (&icon->priv->fg_color, &color))
|
2010-04-29 03:00:37 +00:00
|
|
|
{
|
|
|
|
icon->priv->fg_color = color;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (icon), "fg-color");
|
|
|
|
}
|
|
|
|
|
2011-05-02 15:13:50 +00:00
|
|
|
color.red = prop.prop[3] / 65535.0;
|
|
|
|
color.green = prop.prop[4] / 65535.0;
|
|
|
|
color.blue = prop.prop[5] / 65535.0;
|
2010-04-29 03:00:37 +00:00
|
|
|
|
2011-05-02 15:13:50 +00:00
|
|
|
if (!gdk_rgba_equal (&icon->priv->error_color, &color))
|
2010-04-29 03:00:37 +00:00
|
|
|
{
|
|
|
|
icon->priv->error_color = color;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (icon), "error-color");
|
|
|
|
}
|
|
|
|
|
2011-05-02 15:13:50 +00:00
|
|
|
color.red = prop.prop[6] / 65535.0;
|
|
|
|
color.green = prop.prop[7] / 65535.0;
|
|
|
|
color.blue = prop.prop[8] / 65535.0;
|
2010-04-29 03:00:37 +00:00
|
|
|
|
2011-05-02 15:13:50 +00:00
|
|
|
if (!gdk_rgba_equal (&icon->priv->warning_color, &color))
|
2010-04-29 03:00:37 +00:00
|
|
|
{
|
|
|
|
icon->priv->warning_color = color;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (icon), "warning-color");
|
|
|
|
}
|
|
|
|
|
2011-05-02 15:13:50 +00:00
|
|
|
color.red = prop.prop[9] / 65535.0;
|
|
|
|
color.green = prop.prop[10] / 65535.0;
|
|
|
|
color.blue = prop.prop[11] / 65535.0;
|
2010-04-29 03:00:37 +00:00
|
|
|
|
2011-05-02 15:13:50 +00:00
|
|
|
if (!gdk_rgba_equal (&icon->priv->success_color, &color))
|
2010-04-29 03:00:37 +00:00
|
|
|
{
|
|
|
|
icon->priv->success_color = color;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (icon), "success-color");
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (icon));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type != None)
|
|
|
|
XFree (prop.prop);
|
|
|
|
}
|
|
|
|
|
2010-05-10 14:26:44 +00:00
|
|
|
static void
|
|
|
|
gtk_tray_icon_get_padding_property (GtkTrayIcon *icon)
|
|
|
|
{
|
|
|
|
GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (icon));
|
|
|
|
GdkDisplay *display = gdk_screen_get_display (screen);
|
|
|
|
Display *xdisplay = GDK_DISPLAY_XDISPLAY (display);
|
|
|
|
|
|
|
|
Atom type;
|
|
|
|
int format;
|
|
|
|
union {
|
|
|
|
gulong *prop;
|
|
|
|
guchar *prop_ch;
|
|
|
|
} prop = { NULL };
|
|
|
|
gulong nitems;
|
|
|
|
gulong bytes_after;
|
|
|
|
int error, result;
|
|
|
|
|
|
|
|
g_assert (icon->priv->manager_window != None);
|
|
|
|
|
|
|
|
gdk_error_trap_push ();
|
|
|
|
type = None;
|
|
|
|
result = XGetWindowProperty (xdisplay,
|
|
|
|
icon->priv->manager_window,
|
|
|
|
icon->priv->padding_atom,
|
|
|
|
0, G_MAXLONG, FALSE,
|
|
|
|
XA_CARDINAL,
|
|
|
|
&type, &format, &nitems,
|
|
|
|
&bytes_after, &(prop.prop_ch));
|
|
|
|
error = gdk_error_trap_pop ();
|
|
|
|
|
|
|
|
if (!error && result == Success &&
|
|
|
|
type == XA_CARDINAL && nitems == 1 && format == 32)
|
|
|
|
{
|
|
|
|
gint padding;
|
|
|
|
|
|
|
|
padding = prop.prop[0];
|
|
|
|
|
|
|
|
if (icon->priv->padding != padding)
|
|
|
|
{
|
|
|
|
icon->priv->padding = padding;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (icon), "padding");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type != None)
|
|
|
|
XFree (prop.prop);
|
|
|
|
}
|
|
|
|
|
2011-03-29 18:14:21 +00:00
|
|
|
static void
|
|
|
|
gtk_tray_icon_get_icon_size_property (GtkTrayIcon *icon)
|
|
|
|
{
|
|
|
|
GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (icon));
|
|
|
|
GdkDisplay *display = gdk_screen_get_display (screen);
|
|
|
|
Display *xdisplay = GDK_DISPLAY_XDISPLAY (display);
|
|
|
|
|
|
|
|
Atom type;
|
|
|
|
int format;
|
|
|
|
union {
|
|
|
|
gulong *prop;
|
|
|
|
guchar *prop_ch;
|
|
|
|
} prop = { NULL };
|
|
|
|
gulong nitems;
|
|
|
|
gulong bytes_after;
|
|
|
|
int error, result;
|
|
|
|
|
|
|
|
g_assert (icon->priv->manager_window != None);
|
|
|
|
|
|
|
|
gdk_error_trap_push ();
|
|
|
|
type = None;
|
|
|
|
result = XGetWindowProperty (xdisplay,
|
|
|
|
icon->priv->manager_window,
|
|
|
|
icon->priv->icon_size_atom,
|
|
|
|
0, G_MAXLONG, FALSE,
|
|
|
|
XA_CARDINAL,
|
|
|
|
&type, &format, &nitems,
|
|
|
|
&bytes_after, &(prop.prop_ch));
|
|
|
|
error = gdk_error_trap_pop ();
|
|
|
|
|
|
|
|
if (!error && result == Success &&
|
|
|
|
type == XA_CARDINAL && nitems == 1 && format == 32)
|
|
|
|
{
|
|
|
|
gint icon_size;
|
|
|
|
|
|
|
|
icon_size = prop.prop[0];
|
|
|
|
|
|
|
|
if (icon->priv->icon_size != icon_size)
|
|
|
|
{
|
|
|
|
icon->priv->icon_size = icon_size;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (icon), "icon-size");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type != None)
|
|
|
|
XFree (prop.prop);
|
|
|
|
}
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
static GdkFilterReturn
|
2010-04-29 03:00:37 +00:00
|
|
|
gtk_tray_icon_manager_filter (GdkXEvent *xevent,
|
|
|
|
GdkEvent *event,
|
2005-08-29 17:47:10 +00:00
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GtkTrayIcon *icon = user_data;
|
|
|
|
XEvent *xev = (XEvent *)xevent;
|
|
|
|
|
|
|
|
if (xev->xany.type == ClientMessage &&
|
|
|
|
xev->xclient.message_type == icon->priv->manager_atom &&
|
|
|
|
xev->xclient.data.l[1] == icon->priv->selection_atom)
|
|
|
|
{
|
2007-01-27 05:51:19 +00:00
|
|
|
GTK_NOTE (PLUGSOCKET,
|
|
|
|
g_print ("GtkStatusIcon %p: tray manager appeared\n", icon));
|
|
|
|
|
|
|
|
gtk_tray_icon_update_manager_window (icon);
|
2005-08-29 17:47:10 +00:00
|
|
|
}
|
|
|
|
else if (xev->xany.window == icon->priv->manager_window)
|
|
|
|
{
|
|
|
|
if (xev->xany.type == PropertyNotify &&
|
|
|
|
xev->xproperty.atom == icon->priv->orientation_atom)
|
|
|
|
{
|
2007-01-27 05:51:19 +00:00
|
|
|
GTK_NOTE (PLUGSOCKET,
|
|
|
|
g_print ("GtkStatusIcon %p: got PropertyNotify on manager window for orientation atom\n", icon));
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
gtk_tray_icon_get_orientation_property (icon);
|
|
|
|
}
|
2010-04-29 03:00:37 +00:00
|
|
|
else if (xev->xany.type == PropertyNotify &&
|
|
|
|
xev->xproperty.atom == icon->priv->colors_atom)
|
|
|
|
{
|
|
|
|
GTK_NOTE (PLUGSOCKET,
|
|
|
|
g_print ("GtkStatusIcon %p: got PropertyNotify on manager window for colors atom\n", icon));
|
|
|
|
|
|
|
|
gtk_tray_icon_get_colors_property (icon);
|
|
|
|
}
|
2010-05-10 14:26:44 +00:00
|
|
|
else if (xev->xany.type == PropertyNotify &&
|
|
|
|
xev->xproperty.atom == icon->priv->padding_atom)
|
|
|
|
{
|
|
|
|
gtk_tray_icon_get_padding_property (icon);
|
|
|
|
}
|
2011-03-29 18:14:21 +00:00
|
|
|
else if (xev->xany.type == PropertyNotify &&
|
|
|
|
xev->xproperty.atom == icon->priv->icon_size_atom)
|
|
|
|
{
|
|
|
|
gtk_tray_icon_get_icon_size_property (icon);
|
|
|
|
}
|
2007-01-27 05:51:19 +00:00
|
|
|
else if (xev->xany.type == DestroyNotify)
|
2005-08-29 17:47:10 +00:00
|
|
|
{
|
2007-01-27 05:51:19 +00:00
|
|
|
GTK_NOTE (PLUGSOCKET,
|
|
|
|
g_print ("GtkStatusIcon %p: got DestroyNotify for manager window\n", icon));
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
gtk_tray_icon_manager_window_destroyed (icon);
|
|
|
|
}
|
2007-01-27 05:51:19 +00:00
|
|
|
else
|
|
|
|
GTK_NOTE (PLUGSOCKET,
|
|
|
|
g_print ("GtkStatusIcon %p: got other message on manager window\n", icon));
|
2005-08-29 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return GDK_FILTER_CONTINUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tray_icon_send_manager_message (GtkTrayIcon *icon,
|
|
|
|
long message,
|
|
|
|
Window window,
|
|
|
|
long data1,
|
|
|
|
long data2,
|
|
|
|
long data3)
|
|
|
|
{
|
2010-08-15 15:50:39 +00:00
|
|
|
GtkWidget *widget;
|
2005-08-29 17:47:10 +00:00
|
|
|
XClientMessageEvent ev;
|
|
|
|
Display *display;
|
2010-08-15 15:50:39 +00:00
|
|
|
|
|
|
|
widget = GTK_WIDGET (icon);
|
|
|
|
|
2007-01-04 01:28:07 +00:00
|
|
|
memset (&ev, 0, sizeof (ev));
|
2005-08-29 17:47:10 +00:00
|
|
|
ev.type = ClientMessage;
|
|
|
|
ev.window = window;
|
|
|
|
ev.message_type = icon->priv->system_tray_opcode_atom;
|
|
|
|
ev.format = 32;
|
2010-08-15 15:50:39 +00:00
|
|
|
ev.data.l[0] = gdk_x11_get_server_time (gtk_widget_get_window (widget));
|
2005-08-29 17:47:10 +00:00
|
|
|
ev.data.l[1] = message;
|
|
|
|
ev.data.l[2] = data1;
|
|
|
|
ev.data.l[3] = data2;
|
|
|
|
ev.data.l[4] = data3;
|
|
|
|
|
2010-08-15 15:50:39 +00:00
|
|
|
display = GDK_DISPLAY_XDISPLAY (gtk_widget_get_display (widget));
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
gdk_error_trap_push ();
|
|
|
|
XSendEvent (display,
|
|
|
|
icon->priv->manager_window, False, NoEventMask, (XEvent *)&ev);
|
2010-09-19 03:17:31 +00:00
|
|
|
gdk_error_trap_pop_ignored ();
|
2005-08-29 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tray_icon_send_dock_request (GtkTrayIcon *icon)
|
|
|
|
{
|
2007-01-27 05:51:19 +00:00
|
|
|
GTK_NOTE (PLUGSOCKET,
|
2007-05-23 15:06:03 +00:00
|
|
|
g_print ("GtkStatusIcon %p: sending dock request to manager window %lx\n",
|
|
|
|
icon, (gulong) icon->priv->manager_window));
|
2007-01-27 05:51:19 +00:00
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
gtk_tray_icon_send_manager_message (icon,
|
|
|
|
SYSTEM_TRAY_REQUEST_DOCK,
|
|
|
|
icon->priv->manager_window,
|
|
|
|
gtk_plug_get_id (GTK_PLUG (icon)),
|
|
|
|
0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-01-27 05:51:19 +00:00
|
|
|
gtk_tray_icon_update_manager_window (GtkTrayIcon *icon)
|
2005-08-29 17:47:10 +00:00
|
|
|
{
|
2008-09-27 04:27:53 +00:00
|
|
|
GtkWidget *widget = GTK_WIDGET (icon);
|
|
|
|
GdkScreen *screen = gtk_widget_get_screen (widget);
|
|
|
|
GdkDisplay *display = gdk_screen_get_display (screen);
|
|
|
|
Display *xdisplay = GDK_DISPLAY_XDISPLAY (display);
|
2007-01-27 05:51:19 +00:00
|
|
|
|
|
|
|
GTK_NOTE (PLUGSOCKET,
|
2007-05-23 15:06:03 +00:00
|
|
|
g_print ("GtkStatusIcon %p: updating tray icon manager window, current manager window: %lx\n",
|
|
|
|
icon, (gulong) icon->priv->manager_window));
|
2007-01-27 05:51:19 +00:00
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
if (icon->priv->manager_window != None)
|
|
|
|
return;
|
|
|
|
|
2007-01-27 05:51:19 +00:00
|
|
|
GTK_NOTE (PLUGSOCKET,
|
|
|
|
g_print ("GtkStatusIcon %p: trying to find manager window\n", icon));
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
XGrabServer (xdisplay);
|
|
|
|
|
|
|
|
icon->priv->manager_window = XGetSelectionOwner (xdisplay,
|
|
|
|
icon->priv->selection_atom);
|
|
|
|
|
|
|
|
if (icon->priv->manager_window != None)
|
|
|
|
XSelectInput (xdisplay,
|
|
|
|
icon->priv->manager_window, StructureNotifyMask|PropertyChangeMask);
|
|
|
|
|
|
|
|
XUngrabServer (xdisplay);
|
|
|
|
XFlush (xdisplay);
|
|
|
|
|
|
|
|
if (icon->priv->manager_window != None)
|
|
|
|
{
|
|
|
|
GdkWindow *gdkwin;
|
|
|
|
|
2007-01-27 05:51:19 +00:00
|
|
|
GTK_NOTE (PLUGSOCKET,
|
2010-12-15 06:39:30 +00:00
|
|
|
g_print ("GtkStatusIcon %p: is being managed by window %lx\n",
|
|
|
|
icon, (gulong) icon->priv->manager_window));
|
|
|
|
|
|
|
|
gdkwin = gdk_x11_window_lookup_for_display (display,
|
|
|
|
icon->priv->manager_window);
|
2007-01-27 05:51:19 +00:00
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
gdk_window_add_filter (gdkwin, gtk_tray_icon_manager_filter, icon);
|
|
|
|
|
|
|
|
gtk_tray_icon_get_orientation_property (icon);
|
2008-09-27 04:27:53 +00:00
|
|
|
gtk_tray_icon_get_visual_property (icon);
|
2010-04-29 03:00:37 +00:00
|
|
|
gtk_tray_icon_get_colors_property (icon);
|
2010-05-10 14:26:44 +00:00
|
|
|
gtk_tray_icon_get_padding_property (icon);
|
2011-03-29 18:14:21 +00:00
|
|
|
gtk_tray_icon_get_icon_size_property (icon);
|
2008-09-27 04:27:53 +00:00
|
|
|
|
2010-03-02 06:16:02 +00:00
|
|
|
if (gtk_widget_get_realized (GTK_WIDGET (icon)))
|
2008-09-27 04:27:53 +00:00
|
|
|
{
|
|
|
|
if ((icon->priv->manager_visual == NULL &&
|
|
|
|
gtk_widget_get_visual (widget) == gdk_screen_get_system_visual (screen)) ||
|
|
|
|
(icon->priv->manager_visual == gtk_widget_get_visual (widget)))
|
|
|
|
{
|
|
|
|
/* Already have the right visual, can just dock
|
|
|
|
*/
|
|
|
|
gtk_tray_icon_send_dock_request (icon);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Need to re-realize the widget to get the right visual
|
|
|
|
*/
|
|
|
|
gtk_widget_hide (widget);
|
|
|
|
gtk_widget_unrealize (widget);
|
|
|
|
gtk_widget_show (widget);
|
|
|
|
}
|
|
|
|
}
|
2005-08-29 17:47:10 +00:00
|
|
|
}
|
2007-01-27 05:51:19 +00:00
|
|
|
else
|
|
|
|
GTK_NOTE (PLUGSOCKET,
|
|
|
|
g_print ("GtkStatusIcon %p: no tray manager found\n", icon));
|
2005-08-29 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tray_icon_manager_window_destroyed (GtkTrayIcon *icon)
|
|
|
|
{
|
|
|
|
g_return_if_fail (icon->priv->manager_window != None);
|
|
|
|
|
2007-01-27 05:51:19 +00:00
|
|
|
GTK_NOTE (PLUGSOCKET,
|
|
|
|
g_print ("GtkStatusIcon %p: tray manager window destroyed\n", icon));
|
2005-08-29 17:47:10 +00:00
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
gtk_tray_icon_clear_manager_window (icon);
|
2005-08-29 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
static gboolean
|
2005-08-29 17:47:10 +00:00
|
|
|
gtk_tray_icon_delete (GtkWidget *widget,
|
|
|
|
GdkEventAny *event)
|
|
|
|
{
|
2010-04-12 18:43:18 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
2005-08-29 17:47:10 +00:00
|
|
|
GtkTrayIcon *icon = GTK_TRAY_ICON (widget);
|
2010-04-12 18:43:18 +00:00
|
|
|
#endif
|
2005-08-29 17:47:10 +00:00
|
|
|
|
2007-01-27 05:51:19 +00:00
|
|
|
GTK_NOTE (PLUGSOCKET,
|
2007-05-23 15:06:03 +00:00
|
|
|
g_print ("GtkStatusIcon %p: delete notify, tray manager window %lx\n",
|
2008-09-27 04:27:53 +00:00
|
|
|
icon, (gulong) icon->priv->manager_window));
|
2007-01-27 05:51:19 +00:00
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
/* A bug in X server versions up to x.org 1.5.0 means that:
|
|
|
|
* XFixesChangeSaveSet(...., SaveSetRoot, SaveSetUnmap) doesn't work properly
|
|
|
|
* and we'll left mapped in a separate toplevel window if the tray is destroyed.
|
|
|
|
* For simplicity just get rid of our X window and start over.
|
|
|
|
*/
|
2007-01-27 05:51:19 +00:00
|
|
|
gtk_widget_hide (widget);
|
|
|
|
gtk_widget_unrealize (widget);
|
|
|
|
gtk_widget_show (widget);
|
2005-08-29 17:47:10 +00:00
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
/* Handled it, don't destroy the tray icon */
|
2005-08-29 17:47:10 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
static void
|
2010-08-28 17:54:26 +00:00
|
|
|
gtk_tray_icon_set_visual (GtkTrayIcon *icon)
|
2008-09-27 04:27:53 +00:00
|
|
|
{
|
|
|
|
GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (icon));
|
|
|
|
GdkVisual *visual = icon->priv->manager_visual;
|
|
|
|
|
|
|
|
/* To avoid uncertainty about colormaps, _NET_SYSTEM_TRAY_VISUAL is supposed
|
|
|
|
* to be either the screen default visual or a TrueColor visual; ignore it
|
|
|
|
* if it is something else
|
|
|
|
*/
|
2010-12-10 07:32:18 +00:00
|
|
|
if (visual && gdk_visual_get_visual_type (visual) != GDK_VISUAL_TRUE_COLOR)
|
2008-09-27 04:27:53 +00:00
|
|
|
visual = NULL;
|
|
|
|
|
2010-08-28 17:54:26 +00:00
|
|
|
if (visual == NULL)
|
|
|
|
visual = gdk_screen_get_system_visual (screen);
|
2008-09-27 04:27:53 +00:00
|
|
|
|
2010-09-28 17:11:30 +00:00
|
|
|
gtk_widget_set_visual (GTK_WIDGET (icon), visual);
|
2008-09-27 04:27:53 +00:00
|
|
|
}
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
static void
|
|
|
|
gtk_tray_icon_realize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkTrayIcon *icon = GTK_TRAY_ICON (widget);
|
2010-08-15 15:50:39 +00:00
|
|
|
GdkWindow *window;
|
2008-09-27 04:27:53 +00:00
|
|
|
|
2010-08-28 17:54:26 +00:00
|
|
|
/* Set our visual before realizing */
|
|
|
|
gtk_tray_icon_set_visual (icon);
|
2005-08-29 17:47:10 +00:00
|
|
|
|
2007-01-27 05:51:19 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_tray_icon_parent_class)->realize (widget);
|
2010-08-15 15:50:39 +00:00
|
|
|
window = gtk_widget_get_window (widget);
|
2008-09-27 04:27:53 +00:00
|
|
|
if (icon->priv->manager_visual_rgba)
|
|
|
|
{
|
|
|
|
/* Set a transparent background */
|
|
|
|
GdkColor transparent = { 0, 0, 0, 0 }; /* Only pixel=0 matters */
|
2010-08-15 15:50:39 +00:00
|
|
|
gdk_window_set_background (window, &transparent);
|
2008-09-27 04:27:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Set a parent-relative background pixmap */
|
2010-08-15 12:35:48 +00:00
|
|
|
gdk_window_set_background_pattern (window, NULL);
|
2008-09-27 04:27:53 +00:00
|
|
|
}
|
2007-01-27 05:51:19 +00:00
|
|
|
|
|
|
|
GTK_NOTE (PLUGSOCKET,
|
2007-05-23 15:06:03 +00:00
|
|
|
g_print ("GtkStatusIcon %p: realized, window: %lx, socket window: %lx\n",
|
2007-01-27 05:51:19 +00:00
|
|
|
widget,
|
2010-11-22 16:06:46 +00:00
|
|
|
(gulong) GDK_WINDOW_XID (window),
|
2010-08-28 07:19:16 +00:00
|
|
|
gtk_plug_get_socket_window (GTK_PLUG (icon)) ?
|
2010-11-22 16:06:46 +00:00
|
|
|
(gulong) GDK_WINDOW_XID (gtk_plug_get_socket_window (GTK_PLUG (icon))) : 0UL));
|
2005-08-29 17:47:10 +00:00
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
if (icon->priv->manager_window != None)
|
|
|
|
gtk_tray_icon_send_dock_request (icon);
|
|
|
|
}
|
2005-08-29 17:47:10 +00:00
|
|
|
|
2008-09-27 04:27:53 +00:00
|
|
|
static void
|
2011-01-04 01:04:37 +00:00
|
|
|
gtk_tray_icon_style_updated (GtkWidget *widget)
|
2008-09-27 04:27:53 +00:00
|
|
|
{
|
|
|
|
/* The default handler resets the background according to the style. We either
|
|
|
|
* use a transparent background or a parent-relative background and ignore the
|
|
|
|
* style background. So, just don't chain up.
|
|
|
|
*/
|
2005-08-29 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
guint
|
|
|
|
_gtk_tray_icon_send_message (GtkTrayIcon *icon,
|
|
|
|
gint timeout,
|
|
|
|
const gchar *message,
|
|
|
|
gint len)
|
|
|
|
{
|
|
|
|
guint stamp;
|
2009-07-06 06:03:21 +00:00
|
|
|
Display *xdisplay;
|
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_TRAY_ICON (icon), 0);
|
|
|
|
g_return_val_if_fail (timeout >= 0, 0);
|
|
|
|
g_return_val_if_fail (message != NULL, 0);
|
2009-07-06 06:03:21 +00:00
|
|
|
|
2005-08-29 17:47:10 +00:00
|
|
|
if (icon->priv->manager_window == None)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (len < 0)
|
|
|
|
len = strlen (message);
|
|
|
|
|
|
|
|
stamp = icon->priv->stamp++;
|
|
|
|
|
|
|
|
/* Get ready to send the message */
|
|
|
|
gtk_tray_icon_send_manager_message (icon, SYSTEM_TRAY_BEGIN_MESSAGE,
|
2006-08-17 17:35:55 +00:00
|
|
|
(Window)gtk_plug_get_id (GTK_PLUG (icon)),
|
2005-08-29 17:47:10 +00:00
|
|
|
timeout, len, stamp);
|
|
|
|
|
|
|
|
/* Now to send the actual message */
|
2009-07-06 06:03:21 +00:00
|
|
|
xdisplay = GDK_DISPLAY_XDISPLAY (gtk_widget_get_display (GTK_WIDGET (icon)));
|
2005-08-29 17:47:10 +00:00
|
|
|
gdk_error_trap_push ();
|
|
|
|
while (len > 0)
|
|
|
|
{
|
|
|
|
XClientMessageEvent ev;
|
|
|
|
|
2007-01-04 01:28:07 +00:00
|
|
|
memset (&ev, 0, sizeof (ev));
|
2005-08-29 17:47:10 +00:00
|
|
|
ev.type = ClientMessage;
|
2006-08-17 17:35:55 +00:00
|
|
|
ev.window = (Window)gtk_plug_get_id (GTK_PLUG (icon));
|
2005-08-29 17:47:10 +00:00
|
|
|
ev.format = 8;
|
|
|
|
ev.message_type = XInternAtom (xdisplay,
|
|
|
|
"_NET_SYSTEM_TRAY_MESSAGE_DATA", False);
|
|
|
|
if (len > 20)
|
|
|
|
{
|
|
|
|
memcpy (&ev.data, message, 20);
|
|
|
|
len -= 20;
|
|
|
|
message += 20;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy (&ev.data, message, len);
|
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
XSendEvent (xdisplay,
|
2009-07-06 06:03:21 +00:00
|
|
|
icon->priv->manager_window, False,
|
2005-08-29 17:47:10 +00:00
|
|
|
StructureNotifyMask, (XEvent *)&ev);
|
|
|
|
}
|
2010-09-19 03:17:31 +00:00
|
|
|
gdk_error_trap_pop_ignored ();
|
2005-08-29 17:47:10 +00:00
|
|
|
|
|
|
|
return stamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gtk_tray_icon_cancel_message (GtkTrayIcon *icon,
|
|
|
|
guint id)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_TRAY_ICON (icon));
|
|
|
|
g_return_if_fail (id > 0);
|
|
|
|
|
|
|
|
gtk_tray_icon_send_manager_message (icon, SYSTEM_TRAY_CANCEL_MESSAGE,
|
2006-08-17 17:35:55 +00:00
|
|
|
(Window)gtk_plug_get_id (GTK_PLUG (icon)),
|
2005-08-29 17:47:10 +00:00
|
|
|
id, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkTrayIcon *
|
|
|
|
_gtk_tray_icon_new_for_screen (GdkScreen *screen,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
|
|
|
|
|
|
|
|
return g_object_new (GTK_TYPE_TRAY_ICON,
|
|
|
|
"screen", screen,
|
|
|
|
"title", name,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkTrayIcon*
|
|
|
|
_gtk_tray_icon_new (const gchar *name)
|
|
|
|
{
|
|
|
|
return g_object_new (GTK_TYPE_TRAY_ICON,
|
|
|
|
"title", name,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkOrientation
|
|
|
|
_gtk_tray_icon_get_orientation (GtkTrayIcon *icon)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_TRAY_ICON (icon), GTK_ORIENTATION_HORIZONTAL);
|
|
|
|
|
|
|
|
return icon->priv->orientation;
|
|
|
|
}
|
|
|
|
|
2010-05-10 14:26:44 +00:00
|
|
|
gint
|
|
|
|
_gtk_tray_icon_get_padding (GtkTrayIcon *icon)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_TRAY_ICON (icon), 0);
|
|
|
|
|
|
|
|
return icon->priv->padding;
|
|
|
|
}
|
2011-03-29 18:14:21 +00:00
|
|
|
|
|
|
|
gint
|
|
|
|
_gtk_tray_icon_get_icon_size (GtkTrayIcon *icon)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_TRAY_ICON (icon), 0);
|
|
|
|
|
|
|
|
return icon->priv->icon_size;
|
|
|
|
}
|