Updated German help translation
[empathy/ppotvin.git] / libempathy-gtk / empathy-cell-renderer-expander.c
blobfb360431f0c7fd6140e893a207e927d93599d63b
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Copyright (C) 2006-2007 Imendio AB
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public
16 * License along with this program; if not, write to the
17 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18 * Boston, MA 02110-1301 USA
20 * Authors: Kristian Rietveld <kris@imendio.com>
23 /* To do:
24 * - should probably cancel animation if model changes
25 * - need to handle case where node-in-animation is removed
26 * - it only handles a single animation at a time; but I guess users
27 * aren't fast enough to trigger two or more animations at once anyway :P
28 * (could guard for this by just cancelling the "old" animation, and
29 * start the new one).
32 #include <gtk/gtk.h>
34 #include <libempathy/empathy-utils.h>
35 #include "empathy-cell-renderer-expander.h"
37 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyCellRendererExpander)
38 typedef struct {
39 GtkExpanderStyle expander_style;
40 gint expander_size;
42 GtkTreeView *animation_view;
43 GtkTreeRowReference *animation_node;
44 GtkExpanderStyle animation_style;
45 guint animation_timeout;
46 GdkRectangle animation_area;
48 guint activatable : 1;
49 guint animation_expanding : 1;
50 } EmpathyCellRendererExpanderPriv;
52 enum {
53 PROP_0,
54 PROP_EXPANDER_STYLE,
55 PROP_EXPANDER_SIZE,
56 PROP_ACTIVATABLE
59 static void empathy_cell_renderer_expander_get_property (GObject *object,
60 guint param_id,
61 GValue *value,
62 GParamSpec *pspec);
63 static void empathy_cell_renderer_expander_set_property (GObject *object,
64 guint param_id,
65 const GValue *value,
66 GParamSpec *pspec);
67 static void empathy_cell_renderer_expander_finalize (GObject *object);
68 static void empathy_cell_renderer_expander_get_size (GtkCellRenderer *cell,
69 GtkWidget *widget,
70 GdkRectangle *cell_area,
71 gint *x_offset,
72 gint *y_offset,
73 gint *width,
74 gint *height);
75 static void empathy_cell_renderer_expander_render (GtkCellRenderer *cell,
76 GdkWindow *window,
77 GtkWidget *widget,
78 GdkRectangle *background_area,
79 GdkRectangle *cell_area,
80 GdkRectangle *expose_area,
81 GtkCellRendererState flags);
82 static gboolean empathy_cell_renderer_expander_activate (GtkCellRenderer *cell,
83 GdkEvent *event,
84 GtkWidget *widget,
85 const gchar *path,
86 GdkRectangle *background_area,
87 GdkRectangle *cell_area,
88 GtkCellRendererState flags);
90 G_DEFINE_TYPE (EmpathyCellRendererExpander, empathy_cell_renderer_expander, GTK_TYPE_CELL_RENDERER)
92 static void
93 empathy_cell_renderer_expander_init (EmpathyCellRendererExpander *expander)
95 EmpathyCellRendererExpanderPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (expander,
96 EMPATHY_TYPE_CELL_RENDERER_EXPANDER, EmpathyCellRendererExpanderPriv);
98 expander->priv = priv;
99 priv->expander_style = GTK_EXPANDER_COLLAPSED;
100 priv->expander_size = 12;
101 priv->activatable = TRUE;
102 priv->animation_node = NULL;
104 g_object_set (expander,
105 "xpad", 2,
106 "ypad", 2,
107 "mode", GTK_CELL_RENDERER_MODE_ACTIVATABLE,
108 NULL);
111 static void
112 empathy_cell_renderer_expander_class_init (EmpathyCellRendererExpanderClass *klass)
114 GObjectClass *object_class;
115 GtkCellRendererClass *cell_class;
117 object_class = G_OBJECT_CLASS (klass);
118 cell_class = GTK_CELL_RENDERER_CLASS (klass);
120 object_class->finalize = empathy_cell_renderer_expander_finalize;
122 object_class->get_property = empathy_cell_renderer_expander_get_property;
123 object_class->set_property = empathy_cell_renderer_expander_set_property;
125 cell_class->get_size = empathy_cell_renderer_expander_get_size;
126 cell_class->render = empathy_cell_renderer_expander_render;
127 cell_class->activate = empathy_cell_renderer_expander_activate;
129 g_object_class_install_property (object_class,
130 PROP_EXPANDER_STYLE,
131 g_param_spec_enum ("expander-style",
132 "Expander Style",
133 "Style to use when painting the expander",
134 GTK_TYPE_EXPANDER_STYLE,
135 GTK_EXPANDER_COLLAPSED,
136 G_PARAM_READWRITE));
138 g_object_class_install_property (object_class,
139 PROP_EXPANDER_SIZE,
140 g_param_spec_int ("expander-size",
141 "Expander Size",
142 "The size of the expander",
144 G_MAXINT,
146 G_PARAM_READWRITE));
148 g_object_class_install_property (object_class,
149 PROP_ACTIVATABLE,
150 g_param_spec_boolean ("activatable",
151 "Activatable",
152 "The expander can be activated",
153 TRUE,
154 G_PARAM_READWRITE));
156 g_type_class_add_private (object_class, sizeof (EmpathyCellRendererExpanderPriv));
159 static void
160 empathy_cell_renderer_expander_get_property (GObject *object,
161 guint param_id,
162 GValue *value,
163 GParamSpec *pspec)
165 EmpathyCellRendererExpander *expander;
166 EmpathyCellRendererExpanderPriv *priv;
168 expander = EMPATHY_CELL_RENDERER_EXPANDER (object);
169 priv = GET_PRIV (expander);
171 switch (param_id) {
172 case PROP_EXPANDER_STYLE:
173 g_value_set_enum (value, priv->expander_style);
174 break;
176 case PROP_EXPANDER_SIZE:
177 g_value_set_int (value, priv->expander_size);
178 break;
180 case PROP_ACTIVATABLE:
181 g_value_set_boolean (value, priv->activatable);
182 break;
184 default:
185 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
186 break;
190 static void
191 empathy_cell_renderer_expander_set_property (GObject *object,
192 guint param_id,
193 const GValue *value,
194 GParamSpec *pspec)
196 EmpathyCellRendererExpander *expander;
197 EmpathyCellRendererExpanderPriv *priv;
199 expander = EMPATHY_CELL_RENDERER_EXPANDER (object);
200 priv = GET_PRIV (expander);
202 switch (param_id) {
203 case PROP_EXPANDER_STYLE:
204 priv->expander_style = g_value_get_enum (value);
205 break;
207 case PROP_EXPANDER_SIZE:
208 priv->expander_size = g_value_get_int (value);
209 break;
211 case PROP_ACTIVATABLE:
212 priv->activatable = g_value_get_boolean (value);
213 break;
215 default:
216 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
217 break;
221 static void
222 empathy_cell_renderer_expander_finalize (GObject *object)
224 EmpathyCellRendererExpanderPriv *priv;
226 priv = GET_PRIV (object);
228 if (priv->animation_timeout) {
229 g_source_remove (priv->animation_timeout);
230 priv->animation_timeout = 0;
233 if (priv->animation_node) {
234 gtk_tree_row_reference_free (priv->animation_node);
237 (* G_OBJECT_CLASS (empathy_cell_renderer_expander_parent_class)->finalize) (object);
240 GtkCellRenderer *
241 empathy_cell_renderer_expander_new (void)
243 return g_object_new (EMPATHY_TYPE_CELL_RENDERER_EXPANDER, NULL);
246 static void
247 empathy_cell_renderer_expander_get_size (GtkCellRenderer *cell,
248 GtkWidget *widget,
249 GdkRectangle *cell_area,
250 gint *x_offset,
251 gint *y_offset,
252 gint *width,
253 gint *height)
255 EmpathyCellRendererExpander *expander;
256 EmpathyCellRendererExpanderPriv *priv;
257 gfloat xalign, yalign;
258 guint xpad, ypad;
260 expander = (EmpathyCellRendererExpander *) cell;
261 priv = GET_PRIV (expander);
263 g_object_get (cell,
264 "xalign", &xalign,
265 "yalign", &yalign,
266 "xpad", &xpad,
267 "ypad", &ypad,
268 NULL);
270 if (cell_area) {
271 if (x_offset) {
272 *x_offset = xalign * (cell_area->width - (priv->expander_size + (2 * xpad)));
273 *x_offset = MAX (*x_offset, 0);
276 if (y_offset) {
277 *y_offset = yalign * (cell_area->height - (priv->expander_size + (2 * ypad)));
278 *y_offset = MAX (*y_offset, 0);
280 } else {
281 if (x_offset)
282 *x_offset = 0;
284 if (y_offset)
285 *y_offset = 0;
288 if (width)
289 *width = xpad * 2 + priv->expander_size;
291 if (height)
292 *height = ypad * 2 + priv->expander_size;
295 static void
296 empathy_cell_renderer_expander_render (GtkCellRenderer *cell,
297 GdkWindow *window,
298 GtkWidget *widget,
299 GdkRectangle *background_area,
300 GdkRectangle *cell_area,
301 GdkRectangle *expose_area,
302 GtkCellRendererState flags)
304 EmpathyCellRendererExpander *expander;
305 EmpathyCellRendererExpanderPriv *priv;
306 GtkExpanderStyle expander_style;
307 gint x_offset, y_offset;
308 guint xpad, ypad;
311 expander = (EmpathyCellRendererExpander *) cell;
312 priv = GET_PRIV (expander);
314 if (priv->animation_node) {
315 GtkTreePath *path;
316 GdkRectangle rect;
318 /* Not sure if I like this ... */
319 path = gtk_tree_row_reference_get_path (priv->animation_node);
320 gtk_tree_view_get_background_area (priv->animation_view, path,
321 NULL, &rect);
322 gtk_tree_path_free (path);
324 if (background_area->y == rect.y)
325 expander_style = priv->animation_style;
326 else
327 expander_style = priv->expander_style;
328 } else
329 expander_style = priv->expander_style;
331 empathy_cell_renderer_expander_get_size (cell, widget, cell_area,
332 &x_offset, &y_offset,
333 NULL, NULL);
335 g_object_get (cell,
336 "xpad", &xpad,
337 "ypad", &ypad,
338 NULL);
340 gtk_paint_expander (gtk_widget_get_style (widget),
341 window,
342 GTK_STATE_NORMAL,
343 expose_area,
344 widget,
345 "treeview",
346 cell_area->x + x_offset + xpad + priv->expander_size / 2,
347 cell_area->y + y_offset + ypad + priv->expander_size / 2,
348 expander_style);
351 static void
352 invalidate_node (GtkTreeView *tree_view,
353 GtkTreePath *path)
355 GdkWindow *bin_window;
356 GdkRectangle rect;
357 GtkAllocation allocation;
359 bin_window = gtk_tree_view_get_bin_window (tree_view);
361 gtk_tree_view_get_background_area (tree_view, path, NULL, &rect);
363 rect.x = 0;
364 gtk_widget_get_allocation (GTK_WIDGET (tree_view), &allocation);
365 rect.width = allocation.width;
367 gdk_window_invalidate_rect (bin_window, &rect, TRUE);
370 static gboolean
371 do_animation (EmpathyCellRendererExpander *expander)
373 EmpathyCellRendererExpanderPriv *priv;
374 GtkTreePath *path;
375 gboolean done = FALSE;
377 priv = GET_PRIV (expander);
379 if (priv->animation_expanding) {
380 if (priv->animation_style == GTK_EXPANDER_SEMI_COLLAPSED)
381 priv->animation_style = GTK_EXPANDER_SEMI_EXPANDED;
382 else if (priv->animation_style == GTK_EXPANDER_SEMI_EXPANDED) {
383 priv->animation_style = GTK_EXPANDER_EXPANDED;
384 done = TRUE;
386 } else {
387 if (priv->animation_style == GTK_EXPANDER_SEMI_EXPANDED)
388 priv->animation_style = GTK_EXPANDER_SEMI_COLLAPSED;
389 else if (priv->animation_style == GTK_EXPANDER_SEMI_COLLAPSED) {
390 priv->animation_style = GTK_EXPANDER_COLLAPSED;
391 done = TRUE;
395 path = gtk_tree_row_reference_get_path (priv->animation_node);
396 invalidate_node (priv->animation_view, path);
397 gtk_tree_path_free (path);
399 if (done) {
400 gtk_tree_row_reference_free (priv->animation_node);
401 priv->animation_node = NULL;
402 priv->animation_timeout = 0;
405 return !done;
408 static gboolean
409 animation_timeout (gpointer data)
411 gboolean retval;
413 GDK_THREADS_ENTER ();
415 retval = do_animation (data);
417 GDK_THREADS_LEAVE ();
419 return retval;
422 static void
423 empathy_cell_renderer_expander_start_animation (EmpathyCellRendererExpander *expander,
424 GtkTreeView *tree_view,
425 GtkTreePath *path,
426 gboolean expanding,
427 GdkRectangle *background_area)
429 EmpathyCellRendererExpanderPriv *priv;
431 priv = GET_PRIV (expander);
433 if (priv->animation_timeout != 0) {
434 g_source_remove (priv->animation_timeout);
435 priv->animation_timeout = 0;
436 gtk_tree_row_reference_free (priv->animation_node);
437 priv->animation_node = NULL;
440 if (expanding) {
441 priv->animation_style = GTK_EXPANDER_SEMI_COLLAPSED;
442 } else {
443 priv->animation_style = GTK_EXPANDER_SEMI_EXPANDED;
446 invalidate_node (tree_view, path);
448 priv->animation_expanding = expanding;
449 priv->animation_view = tree_view;
450 priv->animation_node = gtk_tree_row_reference_new (gtk_tree_view_get_model (tree_view), path);
451 priv->animation_timeout = g_timeout_add (50, animation_timeout, expander);
454 static gboolean
455 empathy_cell_renderer_expander_activate (GtkCellRenderer *cell,
456 GdkEvent *event,
457 GtkWidget *widget,
458 const gchar *path_string,
459 GdkRectangle *background_area,
460 GdkRectangle *cell_area,
461 GtkCellRendererState flags)
463 EmpathyCellRendererExpander *expander;
464 EmpathyCellRendererExpanderPriv *priv;
465 GtkTreePath *path;
466 gboolean animate;
467 gboolean expanding;
469 expander = EMPATHY_CELL_RENDERER_EXPANDER (cell);
470 priv = GET_PRIV (cell);
472 if (!GTK_IS_TREE_VIEW (widget) || !priv->activatable)
473 return FALSE;
475 path = gtk_tree_path_new_from_string (path_string);
477 if (gtk_tree_path_get_depth (path) > 1) {
478 gtk_tree_path_free (path);
479 return TRUE;
482 g_object_get (gtk_widget_get_settings (GTK_WIDGET (widget)),
483 "gtk-enable-animations", &animate,
484 NULL);
486 if (gtk_tree_view_row_expanded (GTK_TREE_VIEW (widget), path)) {
487 gtk_tree_view_collapse_row (GTK_TREE_VIEW (widget), path);
488 expanding = FALSE;
489 } else {
490 gtk_tree_view_expand_row (GTK_TREE_VIEW (widget), path, FALSE);
491 expanding = TRUE;
494 if (animate) {
495 empathy_cell_renderer_expander_start_animation (expander,
496 GTK_TREE_VIEW (widget),
497 path,
498 expanding,
499 background_area);
502 gtk_tree_path_free (path);
504 return TRUE;