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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
/* Metacity fixed tooltip routine */
/*
* Copyright (C) 2001 Havoc Pennington
* Copyright (C) 2003-2006 Vincent Untz
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#include "fixedtip.h"
/* Signals */
enum
{
CLICKED,
LAST_SIGNAL
};
static guint fixedtip_signals[LAST_SIGNAL] = { 0 };
struct _NaFixedTipPrivate
{
GtkWidget *parent;
GtkWidget *label;
GtkOrientation orientation;
};
G_DEFINE_TYPE_WITH_PRIVATE (NaFixedTip, na_fixed_tip, GTK_TYPE_WINDOW)
static gboolean
button_press_handler (GtkWidget *fixedtip,
GdkEventButton *event,
gpointer data)
{
if (event->button == 1 && event->type == GDK_BUTTON_PRESS)
g_signal_emit (fixedtip, fixedtip_signals[CLICKED], 0);
return FALSE;
}
static gboolean
na_fixed_tip_draw (GtkWidget *widget, cairo_t *cr)
{
GtkStyleContext *context;
GtkStateFlags state;
int width, height;
width = gtk_widget_get_allocated_width (widget);
height = gtk_widget_get_allocated_height (widget);
state = gtk_widget_get_state_flags (widget);
context = gtk_widget_get_style_context (widget);
gtk_style_context_save (context);
gtk_style_context_add_class (context, GTK_STYLE_CLASS_TOOLTIP);
gtk_style_context_set_state (context, state);
cairo_save (cr);
gtk_render_background (context, cr,
0., 0.,
(gdouble)width,
(gdouble)height);
cairo_restore (cr);
gtk_style_context_restore (context);
return FALSE;
}
static void
na_fixed_tip_class_init (NaFixedTipClass *class)
{
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
widget_class->draw = na_fixed_tip_draw;
fixedtip_signals[CLICKED] =
g_signal_new ("clicked",
G_OBJECT_CLASS_TYPE (class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (NaFixedTipClass, clicked),
NULL, NULL, NULL,
G_TYPE_NONE, 0);
}
/* Did you already see this code? Yes, it's gtk_tooltips_ force_window() ;-) */
static void
na_fixed_tip_init (NaFixedTip *fixedtip)
{
GtkWidget *label;
fixedtip->priv = na_fixed_tip_get_instance_private (fixedtip);
gtk_window_set_type_hint (GTK_WINDOW (fixedtip),
GDK_WINDOW_TYPE_HINT_TOOLTIP);
gtk_widget_set_app_paintable (GTK_WIDGET (fixedtip), TRUE);
gtk_window_set_resizable (GTK_WINDOW (fixedtip), FALSE);
gtk_widget_set_name (GTK_WIDGET (fixedtip), "gtk-tooltips");
gtk_container_set_border_width (GTK_CONTAINER (fixedtip), 4);
label = gtk_label_new (NULL);
gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
gtk_widget_show (label);
gtk_container_add (GTK_CONTAINER (fixedtip), label);
fixedtip->priv->label = label;
gtk_widget_add_events (GTK_WIDGET (fixedtip), GDK_BUTTON_PRESS_MASK);
g_signal_connect (fixedtip, "button_press_event",
G_CALLBACK (button_press_handler), NULL);
fixedtip->priv->orientation = GTK_ORIENTATION_HORIZONTAL;
}
static void
get_monitor_geometry (GdkWindow *window,
GdkRectangle *geometry)
{
GdkDisplay *display;
GdkMonitor *monitor;
display = gdk_display_get_default ();
monitor = gdk_display_get_monitor_at_window (display, window);
gdk_monitor_get_geometry (monitor, geometry);
}
static void
na_fixed_tip_position (NaFixedTip *fixedtip)
{
GdkWindow *parent_window;
GdkRectangle monitor;
GtkRequisition req;
int root_x;
int root_y;
int parent_width;
int parent_height;
parent_window = gtk_widget_get_window (fixedtip->priv->parent);
get_monitor_geometry (parent_window, &monitor);
gtk_widget_get_preferred_size (GTK_WIDGET (fixedtip), &req, NULL);
gdk_window_get_origin (parent_window, &root_x, &root_y);
parent_width = gdk_window_get_width (parent_window);
parent_height = gdk_window_get_height (parent_window);
/* pad between panel and message window */
#define PAD 5
if (fixedtip->priv->orientation == GTK_ORIENTATION_VERTICAL)
{
if (root_x <= monitor.width / 2)
root_x += parent_width + PAD;
else
root_x -= req.width + PAD;
}
else
{
if (root_y <= monitor.height / 2)
root_y += parent_height + PAD;
else
root_y -= req.height + PAD;
}
/* Push onscreen */
if ((root_x + req.width) > monitor.width)
root_x = monitor.width - req.width;
if ((root_y + req.height) > monitor.height)
root_y = monitor.height - req.height;
gtk_window_move (GTK_WINDOW (fixedtip), root_x, root_y);
}
static void
na_fixed_tip_parent_size_allocated (GtkWidget *parent,
GtkAllocation *allocation,
NaFixedTip *fixedtip)
{
na_fixed_tip_position (fixedtip);
}
static void
na_fixed_tip_parent_screen_changed (GtkWidget *parent,
GdkScreen *new_screen,
NaFixedTip *fixedtip)
{
na_fixed_tip_position (fixedtip);
}
GtkWidget *
na_fixed_tip_new (GtkWidget *parent,
GtkOrientation orientation)
{
NaFixedTip *fixedtip;
g_return_val_if_fail (parent != NULL, NULL);
fixedtip = g_object_new (NA_TYPE_FIXED_TIP,
"type", GTK_WINDOW_POPUP,
NULL);
fixedtip->priv->parent = parent;
#if 0
//FIXME: would be nice to be able to get the toplevel for the tip, but this
//doesn't work
GtkWidget *toplevel;
toplevel = gtk_widget_get_toplevel (parent);
/*
if (toplevel && gtk_widget_is_toplevel (toplevel) && GTK_IS_WINDOW (toplevel))
gtk_window_set_transient_for (GTK_WINDOW (fixedtip), GTK_WINDOW (toplevel));
*/
#endif
fixedtip->priv->orientation = orientation;
//FIXME: would be nice to move the tip when the notification area moves
g_signal_connect_object (parent, "size-allocate",
G_CALLBACK (na_fixed_tip_parent_size_allocated),
fixedtip, 0);
g_signal_connect_object (parent, "screen-changed",
G_CALLBACK (na_fixed_tip_parent_screen_changed),
fixedtip, 0);
na_fixed_tip_position (fixedtip);
return GTK_WIDGET (fixedtip);
}
void
na_fixed_tip_set_markup (GtkWidget *widget,
const char *markup_text)
{
NaFixedTip *fixedtip;
g_return_if_fail (NA_IS_FIXED_TIP (widget));
fixedtip = NA_FIXED_TIP (widget);
gtk_label_set_markup (GTK_LABEL (fixedtip->priv->label),
markup_text);
na_fixed_tip_position (fixedtip);
}
void
na_fixed_tip_set_orientation (GtkWidget *widget,
GtkOrientation orientation)
{
NaFixedTip *fixedtip;
g_return_if_fail (NA_IS_FIXED_TIP (widget));
fixedtip = NA_FIXED_TIP (widget);
if (orientation == fixedtip->priv->orientation)
return;
fixedtip->priv->orientation = orientation;
na_fixed_tip_position (fixedtip);
}
|