Added a new feature to the HildonPannableArea allowing center on the child
[hildon] / hildon / hildon-pannable-area.c
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Rodrigo Novo <rodrigo.novo@nokia.com>
7  *
8  * This widget is based on MokoFingerScroll from libmokoui
9  * OpenMoko Application Framework UI Library
10  * Authored by Chris Lord <chris@openedhand.com>
11  * Copyright (C) 2006-2007 OpenMoko Inc.
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU Lesser Public License as published by
15  * the Free Software Foundation; version 2 of the license.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU Lesser Public License for more details.
21  *
22  */
23
24 /**
25  * SECTION: hildon-pannable-area
26  * @short_description: A scrolling widget designed for touch screens
27  * @see_also: #GtkScrolledWindow
28  *
29  * #HildonPannableArea is a container widget that can be "panned" (scrolled)
30  * up and down using the touchscreen with fingers. The widget has no scrollbars,
31  * but it rather shows small scroll indicators to give an idea of the part of the
32  * content that is visible at a time. The scroll indicators appear when a dragging
33  * motion is started on the pannable area.
34  *
35  * The scrolling is "kinetic", meaning the motion can be "flicked" and it will
36  * continue from the initial motion by gradually slowing down to an eventual stop.
37  * The motion can also be stopped immediately by pressing the touchscreen over the
38  * pannable area.
39  */
40
41 #undef HILDON_DISABLE_DEPRECATED
42
43 #include <math.h>
44 #if USE_CAIRO_SCROLLBARS == 1
45 #include <cairo.h>
46 #endif
47 #include <gdk/gdkx.h>
48
49 #include "hildon-pannable-area.h"
50 #include "hildon-marshalers.h"
51 #include "hildon-enum-types.h"
52
53 #define USE_CAIRO_SCROLLBARS 0
54
55 #define SCROLL_BAR_MIN_SIZE 5
56 #define RATIO_TOLERANCE 0.000001
57 #define SCROLL_FADE_TIMEOUT 100
58 #define MOTION_EVENTS_PER_SECOND 25
59 #define CURSOR_STOPPED_TIMEOUT 80
60 #define MAX_SPEED_THRESHOLD 250
61 #define PANNABLE_MAX_WIDTH 788
62 #define PANNABLE_MAX_HEIGHT 378
63
64 G_DEFINE_TYPE (HildonPannableArea, hildon_pannable_area, GTK_TYPE_BIN)
65
66 #define PANNABLE_AREA_PRIVATE(o)                                \
67   (G_TYPE_INSTANCE_GET_PRIVATE ((o), HILDON_TYPE_PANNABLE_AREA, \
68                                 HildonPannableAreaPrivate))
69
70 struct _HildonPannableAreaPrivate {
71   HildonPannableAreaMode mode;
72   HildonMovementMode mov_mode;
73   GdkWindow *event_window;
74   gdouble x;            /* Used to store mouse co-ordinates of the first or */
75   gdouble y;            /* previous events in a press-motion pair */
76   gdouble ex;           /* Used to store mouse co-ordinates of the last */
77   gdouble ey;           /* motion event in acceleration mode */
78   gboolean enabled;
79   gboolean button_pressed;
80   guint32 last_time;    /* Last event time, to stop infinite loops */
81   gint last_type;
82   gboolean last_in;
83   gboolean moved;
84   gdouble vmin;
85   gdouble vmax;
86   gdouble vmax_overshooting;
87   gdouble vfast_factor;
88   gdouble decel;
89   gdouble drag_inertia;
90   gdouble scroll_time;
91   gdouble vel_factor;
92   guint sps;
93   guint panning_threshold;
94   guint scrollbar_fade_delay;
95   guint bounce_steps;
96   guint force;
97   guint direction_error_margin;
98   gdouble vel_x;
99   gdouble vel_y;
100   GdkWindow *child;
101   gint child_width;
102   gint child_height;
103   gint ix;                      /* Initial click mouse co-ordinates */
104   gint iy;
105   gint cx;                      /* Initial click child window mouse co-ordinates */
106   gint cy;
107   guint idle_id;
108   gdouble scroll_to_x;
109   gdouble scroll_to_y;
110   gdouble motion_x;
111   gdouble motion_y;
112   gint overshot_dist_x;
113   gint overshot_dist_y;
114   gint overshooting_y;
115   gint overshooting_x;
116   gdouble scroll_indicator_alpha;
117   gint motion_event_scroll_timeout;
118   gint scroll_indicator_timeout;
119   gint scroll_indicator_event_interrupt;
120   gint scroll_delay_counter;
121   gint vovershoot_max;
122   gint hovershoot_max;
123   gboolean initial_hint;
124   gboolean initial_effect;
125   gboolean low_friction_mode;
126   gboolean first_drag;
127
128   gboolean size_request_policy;
129   gboolean hscroll_visible;
130   gboolean vscroll_visible;
131   GdkRectangle hscroll_rect;
132   GdkRectangle vscroll_rect;
133   guint indicator_width;
134
135   GtkAdjustment *hadjust;
136   GtkAdjustment *vadjust;
137   gint x_offset;
138   gint y_offset;
139
140   GtkPolicyType vscrollbar_policy;
141   GtkPolicyType hscrollbar_policy;
142
143   GdkGC *scrollbars_gc;
144   GdkColor scroll_color;
145
146   gboolean center_on_child_focus;
147   gboolean center_on_child_focus_pending;
148 };
149
150 /*signals*/
151 enum {
152   HORIZONTAL_MOVEMENT,
153   VERTICAL_MOVEMENT,
154   PANNING_STARTED,
155   PANNING_FINISHED,
156   LAST_SIGNAL
157 };
158
159 static guint pannable_area_signals [LAST_SIGNAL] = { 0 };
160
161 enum {
162   PROP_ENABLED = 1,
163   PROP_MODE,
164   PROP_MOVEMENT_MODE,
165   PROP_VELOCITY_MIN,
166   PROP_VELOCITY_MAX,
167   PROP_VEL_MAX_OVERSHOOTING,
168   PROP_VELOCITY_FAST_FACTOR,
169   PROP_DECELERATION,
170   PROP_DRAG_INERTIA,
171   PROP_SPS,
172   PROP_PANNING_THRESHOLD,
173   PROP_SCROLLBAR_FADE_DELAY,
174   PROP_BOUNCE_STEPS,
175   PROP_FORCE,
176   PROP_DIRECTION_ERROR_MARGIN,
177   PROP_VSCROLLBAR_POLICY,
178   PROP_HSCROLLBAR_POLICY,
179   PROP_VOVERSHOOT_MAX,
180   PROP_HOVERSHOOT_MAX,
181   PROP_SCROLL_TIME,
182   PROP_INITIAL_HINT,
183   PROP_LOW_FRICTION_MODE,
184   PROP_SIZE_REQUEST_POLICY,
185   PROP_HADJUSTMENT,
186   PROP_VADJUSTMENT,
187   PROP_CENTER_ON_CHILD_FOCUS,
188   PROP_LAST
189 };
190
191 static void hildon_pannable_area_class_init (HildonPannableAreaClass * klass);
192 static void hildon_pannable_area_init (HildonPannableArea * area);
193 static void hildon_pannable_area_get_property (GObject * object,
194                                                guint property_id,
195                                                GValue * value,
196                                                GParamSpec * pspec);
197 static void hildon_pannable_area_set_property (GObject * object,
198                                                guint property_id,
199                                                const GValue * value,
200                                                GParamSpec * pspec);
201 static void hildon_pannable_area_dispose (GObject * object);
202 static void hildon_pannable_area_realize (GtkWidget * widget);
203 static void hildon_pannable_area_unrealize (GtkWidget * widget);
204 static void hildon_pannable_area_size_request (GtkWidget * widget,
205                                                GtkRequisition * requisition);
206 static void hildon_pannable_area_size_allocate (GtkWidget * widget,
207                                                 GtkAllocation * allocation);
208 static void hildon_pannable_area_child_allocate_calculate (GtkWidget * widget,
209                                                            GtkAllocation * allocation,
210                                                            GtkAllocation * child_allocation);
211 static void hildon_pannable_area_style_set (GtkWidget * widget,
212                                             GtkStyle * previous_style);
213 static void hildon_pannable_area_map (GtkWidget * widget);
214 static void hildon_pannable_area_unmap (GtkWidget * widget);
215 static void hildon_pannable_area_grab_notify (GtkWidget *widget,
216                                               gboolean was_grabbed,
217                                               gpointer user_data);
218 #if USE_CAIRO_SCROLLBARS == 1
219 static void rgb_from_gdkcolor (GdkColor *color, gdouble *r, gdouble *g, gdouble *b);
220 #else /* USE_CAIRO_SCROLLBARS */
221 static void tranparency_color (GdkColor *color,
222                                GdkColor colora,
223                                GdkColor colorb,
224                                gdouble transparency);
225 #endif /* USE_CAIRO_SCROLLBARS */
226 static void hildon_pannable_draw_vscroll (GtkWidget * widget,
227                                           GdkColor *back_color,
228                                           GdkColor *scroll_color);
229 static void hildon_pannable_draw_hscroll (GtkWidget * widget,
230                                           GdkColor *back_color,
231                                           GdkColor *scroll_color);
232 static void hildon_pannable_area_initial_effect (GtkWidget * widget);
233 static void hildon_pannable_area_redraw (HildonPannableArea * area);
234 static void hildon_pannable_area_launch_fade_timeout (HildonPannableArea * area,
235                                                       gdouble alpha);
236 static void hildon_pannable_area_adjust_value_changed (HildonPannableArea * area,
237                                                        gpointer data);
238 static void hildon_pannable_area_adjust_changed (HildonPannableArea * area,
239                                                  gpointer data);
240 static gboolean hildon_pannable_area_scroll_indicator_fade(HildonPannableArea * area);
241 static gboolean hildon_pannable_area_expose_event (GtkWidget * widget,
242                                                    GdkEventExpose * event);
243 static GdkWindow * hildon_pannable_area_get_topmost (GdkWindow * window,
244                                                      gint x, gint y,
245                                                      gint * tx, gint * ty,
246                                                      GdkEventMask mask);
247 static void synth_crossing (GdkWindow * child,
248                             gint x, gint y,
249                             gint x_root, gint y_root,
250                             guint32 time, gboolean in);
251 static gboolean hildon_pannable_area_button_press_cb (GtkWidget * widget,
252                                                       GdkEventButton * event);
253 static void hildon_pannable_area_refresh (HildonPannableArea * area);
254 static gboolean hildon_pannable_area_check_scrollbars (HildonPannableArea * area);
255 static void hildon_pannable_axis_scroll (HildonPannableArea *area,
256                                          GtkAdjustment *adjust,
257                                          gdouble *vel,
258                                          gdouble inc,
259                                          gint *overshooting,
260                                          gint *overshot_dist,
261                                          gdouble *scroll_to,
262                                          gint overshoot_max,
263                                          gboolean *s);
264 static void hildon_pannable_area_scroll (HildonPannableArea *area,
265                                          gdouble x, gdouble y);
266 static gboolean hildon_pannable_area_timeout (HildonPannableArea * area);
267 static void hildon_pannable_area_calculate_velocity (gdouble *vel,
268                                                      gdouble delta,
269                                                      gdouble dist,
270                                                      gdouble vmax,
271                                                      gdouble drag_inertia,
272                                                      gdouble force,
273                                                      guint sps);
274 static gboolean hildon_pannable_area_motion_event_scroll_timeout (HildonPannableArea *area);
275 static void hildon_pannable_area_motion_event_scroll (HildonPannableArea *area,
276                                                       gdouble x, gdouble y);
277 static void hildon_pannable_area_check_move (HildonPannableArea *area,
278                                              GdkEventMotion * event,
279                                              gdouble *x,
280                                              gdouble *y);
281 static void hildon_pannable_area_handle_move (HildonPannableArea *area,
282                                               GdkEventMotion * event,
283                                               gdouble *x,
284                                               gdouble *y);
285 static gboolean hildon_pannable_area_motion_notify_cb (GtkWidget * widget,
286                                                        GdkEventMotion * event);
287 static gboolean hildon_pannable_leave_notify_event (GtkWidget *widget,
288                                                     GdkEventCrossing *event);
289 static gboolean hildon_pannable_area_button_release_cb (GtkWidget * widget,
290                                                         GdkEventButton * event);
291 static gboolean hildon_pannable_area_scroll_cb (GtkWidget *widget,
292                                                 GdkEventScroll *event);
293 static void hildon_pannable_area_child_mapped (GtkWidget *widget,
294                                                GdkEvent  *event,
295                                                gpointer user_data);
296 static void hildon_pannable_area_add (GtkContainer *container, GtkWidget *child);
297 static void hildon_pannable_area_remove (GtkContainer *container, GtkWidget *child);
298 static void hildon_pannable_calculate_vel_factor (HildonPannableArea * self);
299 static void hildon_pannable_area_set_focus_child (GtkContainer *container,
300                                                  GtkWidget *child);
301 static void hildon_pannable_area_center_on_child_focus (HildonPannableArea *area);
302
303
304 static void
305 hildon_pannable_area_class_init (HildonPannableAreaClass * klass)
306 {
307   GObjectClass *object_class = G_OBJECT_CLASS (klass);
308   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
309   GtkContainerClass *container_class = GTK_CONTAINER_CLASS (klass);
310
311
312   g_type_class_add_private (klass, sizeof (HildonPannableAreaPrivate));
313
314   object_class->get_property = hildon_pannable_area_get_property;
315   object_class->set_property = hildon_pannable_area_set_property;
316   object_class->dispose = hildon_pannable_area_dispose;
317
318   widget_class->realize = hildon_pannable_area_realize;
319   widget_class->unrealize = hildon_pannable_area_unrealize;
320   widget_class->map = hildon_pannable_area_map;
321   widget_class->unmap = hildon_pannable_area_unmap;
322   widget_class->size_request = hildon_pannable_area_size_request;
323   widget_class->size_allocate = hildon_pannable_area_size_allocate;
324   widget_class->expose_event = hildon_pannable_area_expose_event;
325   widget_class->style_set = hildon_pannable_area_style_set;
326   widget_class->button_press_event = hildon_pannable_area_button_press_cb;
327   widget_class->button_release_event = hildon_pannable_area_button_release_cb;
328   widget_class->motion_notify_event = hildon_pannable_area_motion_notify_cb;
329   widget_class->leave_notify_event = hildon_pannable_leave_notify_event;
330   widget_class->scroll_event = hildon_pannable_area_scroll_cb;
331
332   container_class->add = hildon_pannable_area_add;
333   container_class->remove = hildon_pannable_area_remove;
334   container_class->set_focus_child = hildon_pannable_area_set_focus_child;
335
336   klass->horizontal_movement = NULL;
337   klass->vertical_movement = NULL;
338
339   g_object_class_install_property (object_class,
340                                    PROP_ENABLED,
341                                    g_param_spec_boolean ("enabled",
342                                                          "Enabled",
343                                                          "Enable or disable finger-scroll.",
344                                                          TRUE,
345                                                          G_PARAM_READWRITE |
346                                                          G_PARAM_CONSTRUCT));
347
348   g_object_class_install_property (object_class,
349                                    PROP_VSCROLLBAR_POLICY,
350                                    g_param_spec_enum ("vscrollbar_policy",
351                                                       "vscrollbar policy",
352                                                       "Visual policy of the vertical scrollbar",
353                                                       GTK_TYPE_POLICY_TYPE,
354                                                       GTK_POLICY_AUTOMATIC,
355                                                       G_PARAM_READWRITE |
356                                                       G_PARAM_CONSTRUCT));
357
358   g_object_class_install_property (object_class,
359                                    PROP_HSCROLLBAR_POLICY,
360                                    g_param_spec_enum ("hscrollbar_policy",
361                                                       "hscrollbar policy",
362                                                       "Visual policy of the horizontal scrollbar",
363                                                       GTK_TYPE_POLICY_TYPE,
364                                                       GTK_POLICY_AUTOMATIC,
365                                                       G_PARAM_READWRITE |
366                                                       G_PARAM_CONSTRUCT));
367
368   g_object_class_install_property (object_class,
369                                    PROP_MODE,
370                                    g_param_spec_enum ("mode",
371                                                       "Scroll mode",
372                                                       "Change the finger-scrolling mode.",
373                                                       HILDON_TYPE_PANNABLE_AREA_MODE,
374                                                       HILDON_PANNABLE_AREA_MODE_AUTO,
375                                                       G_PARAM_READWRITE |
376                                                       G_PARAM_CONSTRUCT));
377
378   g_object_class_install_property (object_class,
379                                    PROP_MOVEMENT_MODE,
380                                    g_param_spec_flags ("mov_mode",
381                                                        "Scroll movement mode",
382                                                        "Controls if the widget can scroll vertically, horizontally or both",
383                                                        HILDON_TYPE_MOVEMENT_MODE,
384                                                        HILDON_MOVEMENT_MODE_VERT,
385                                                        G_PARAM_READWRITE |
386                                                        G_PARAM_CONSTRUCT));
387
388   g_object_class_install_property (object_class,
389                                    PROP_VELOCITY_MIN,
390                                    g_param_spec_double ("velocity_min",
391                                                         "Minimum scroll velocity",
392                                                         "Minimum distance the child widget should scroll "
393                                                         "per 'frame', in pixels per frame.",
394                                                         0, G_MAXDOUBLE, 10,
395                                                         G_PARAM_READWRITE |
396                                                         G_PARAM_CONSTRUCT));
397
398   g_object_class_install_property (object_class,
399                                    PROP_VELOCITY_MAX,
400                                    g_param_spec_double ("velocity_max",
401                                                         "Maximum scroll velocity",
402                                                         "Maximum distance the child widget should scroll "
403                                                         "per 'frame', in pixels per frame.",
404                                                         0, G_MAXDOUBLE, 500,
405                                                         G_PARAM_READWRITE |
406                                                         G_PARAM_CONSTRUCT));
407
408   g_object_class_install_property (object_class,
409                                    PROP_VEL_MAX_OVERSHOOTING,
410                                    g_param_spec_double ("velocity_overshooting_max",
411                                                         "Maximum scroll velocity when overshooting",
412                                                         "Maximum distance the child widget should scroll "
413                                                         "per 'frame', in pixels per frame when it overshoots after hitting the edge.",
414                                                         0, G_MAXDOUBLE, 20,
415                                                         G_PARAM_READWRITE |
416                                                         G_PARAM_CONSTRUCT));
417
418   g_object_class_install_property (object_class,
419                                    PROP_VELOCITY_FAST_FACTOR,
420                                    g_param_spec_double ("velocity_fast_factor",
421                                                         "Fast velocity factor",
422                                                         "Minimum velocity that is considered 'fast': "
423                                                         "children widgets won't receive button presses. "
424                                                         "Expressed as a fraction of the maximum velocity.",
425                                                         0, 1, 0.02,
426                                                         G_PARAM_READWRITE |
427                                                         G_PARAM_CONSTRUCT));
428
429   g_object_class_install_property (object_class,
430                                    PROP_DECELERATION,
431                                    g_param_spec_double ("deceleration",
432                                                         "Deceleration multiplier",
433                                                         "The multiplier used when decelerating when in "
434                                                         "acceleration scrolling mode.",
435                                                         0, 1.0, 0.93,
436                                                         G_PARAM_READWRITE |
437                                                         G_PARAM_CONSTRUCT));
438
439   g_object_class_install_property (object_class,
440                                    PROP_DRAG_INERTIA,
441                                    g_param_spec_double ("drag_inertia",
442                                                         "Inertia of the cursor dragging",
443                                                         "Percentage of the calculated speed in each moment we are are going to use"
444                                                         "to calculate the launch speed, the other part would be the speed"
445                                                         "calculated previously",
446                                                         0, 1.0, 0.85,
447                                                         G_PARAM_READWRITE |
448                                                         G_PARAM_CONSTRUCT));
449
450   g_object_class_install_property (object_class,
451                                    PROP_SPS,
452                                    g_param_spec_uint ("sps",
453                                                       "Scrolls per second",
454                                                       "Amount of scroll events to generate per second.",
455                                                       0, G_MAXUINT, 20,
456                                                       G_PARAM_READWRITE |
457                                                       G_PARAM_CONSTRUCT));
458
459   g_object_class_install_property (object_class,
460                                    PROP_PANNING_THRESHOLD,
461                                    g_param_spec_uint ("panning_threshold",
462                                                       "Threshold to consider a motion event an scroll",
463                                                       "Amount of pixels to consider a motion event an scroll, if it is less"
464                                                       "it is a click detected incorrectly by the touch screen.",
465                                                       0, G_MAXUINT, 25,
466                                                       G_PARAM_READWRITE |
467                                                       G_PARAM_CONSTRUCT));
468
469   g_object_class_install_property (object_class,
470                                    PROP_SCROLLBAR_FADE_DELAY,
471                                    g_param_spec_uint ("scrollbar_fade_delay",
472                                                       "Time before starting to fade the scrollbar",
473                                                       "Time the scrollbar is going to be visible if the widget is not in"
474                                                       "action in miliseconds",
475                                                       0, G_MAXUINT, 3000,
476                                                       G_PARAM_READWRITE |
477                                                       G_PARAM_CONSTRUCT));
478
479   g_object_class_install_property (object_class,
480                                    PROP_BOUNCE_STEPS,
481                                    g_param_spec_uint ("bounce_steps",
482                                                       "Bounce steps",
483                                                       "Number of steps that is going to be used to bounce when hitting the"
484                                                       "edge, the rubberband effect depends on it",
485                                                       0, G_MAXUINT, 3,
486                                                       G_PARAM_READWRITE |
487                                                       G_PARAM_CONSTRUCT));
488
489   g_object_class_install_property (object_class,
490                                    PROP_FORCE,
491                                    g_param_spec_uint ("force",
492                                                       "Multiplier of the calculated speed",
493                                                       "Force applied to the movement, multiplies the calculated speed of the"
494                                                       "user movement the cursor in the screen",
495                                                       0, G_MAXUINT, 50,
496                                                       G_PARAM_READWRITE |
497                                                       G_PARAM_CONSTRUCT));
498
499   g_object_class_install_property (object_class,
500                                    PROP_DIRECTION_ERROR_MARGIN,
501                                    g_param_spec_uint ("direction_error_margin",
502                                                       "Margin in the direction detection",
503                                                       "After detecting the direction of the movement (horizontal or"
504                                                       "vertical), we can add this margin of error to allow the movement in"
505                                                       "the other direction even apparently it is not",
506                                                       0, G_MAXUINT, 10,
507                                                       G_PARAM_READWRITE |
508                                                       G_PARAM_CONSTRUCT));
509
510   g_object_class_install_property (object_class,
511                                    PROP_VOVERSHOOT_MAX,
512                                    g_param_spec_int ("vovershoot_max",
513                                                      "Vertical overshoot distance",
514                                                      "Space we allow the widget to pass over its vertical limits when"
515                                                      "hitting the edges, set 0 in order to deactivate overshooting.",
516                                                      0, G_MAXINT, 150,
517                                                      G_PARAM_READWRITE |
518                                                      G_PARAM_CONSTRUCT));
519
520   g_object_class_install_property (object_class,
521                                    PROP_HOVERSHOOT_MAX,
522                                    g_param_spec_int ("hovershoot_max",
523                                                      "Horizontal overshoot distance",
524                                                      "Space we allow the widget to pass over its horizontal limits when"
525                                                      "hitting the edges, set 0 in order to deactivate overshooting.",
526                                                      0, G_MAXINT, 150,
527                                                      G_PARAM_READWRITE |
528                                                      G_PARAM_CONSTRUCT));
529
530   g_object_class_install_property (object_class,
531                                    PROP_SCROLL_TIME,
532                                    g_param_spec_double ("scroll_time",
533                                                         "Time to scroll to a position",
534                                                         "The time to scroll to a position when calling the hildon_pannable_scroll_to function",
535                                                         0.0, 20.0, 1.0,
536                                                         G_PARAM_READWRITE |
537                                                         G_PARAM_CONSTRUCT));
538
539   g_object_class_install_property (object_class,
540                                    PROP_INITIAL_HINT,
541                                    g_param_spec_boolean ("initial-hint",
542                                                          "Initial hint",
543                                                          "Whether to hint the user about the pannability of the container.",
544                                                          TRUE,
545                                                          G_PARAM_READWRITE |
546                                                          G_PARAM_CONSTRUCT));
547
548   g_object_class_install_property (object_class,
549                                    PROP_LOW_FRICTION_MODE,
550                                    g_param_spec_boolean ("low-friction-mode",
551                                                          "Do not decelerate the initial velocity",
552                                                          "Avoid decelerating the panning movement, like no friction, the widget"
553                                                          "will stop in the edges or if the user clicks.",
554                                                          FALSE,
555                                                          G_PARAM_READWRITE |
556                                                          G_PARAM_CONSTRUCT));
557
558   g_object_class_install_property (object_class,
559                                    PROP_SIZE_REQUEST_POLICY,
560                                    g_param_spec_enum ("size-request-policy",
561                                                       "Size Requisition policy",
562                                                       "Controls the size request policy of the widget",
563                                                       HILDON_TYPE_SIZE_REQUEST_POLICY,
564                                                       HILDON_SIZE_REQUEST_MINIMUM,
565                                                       G_PARAM_READWRITE|
566                                                       G_PARAM_CONSTRUCT));
567
568   g_object_class_install_property (object_class,
569                                    PROP_HADJUSTMENT,
570                                    g_param_spec_object ("hadjustment",
571                                                         "Horizontal Adjustment",
572                                                         "The GtkAdjustment for the horizontal position",
573                                                         GTK_TYPE_ADJUSTMENT,
574                                                         G_PARAM_READABLE));
575   g_object_class_install_property (object_class,
576                                    PROP_VADJUSTMENT,
577                                    g_param_spec_object ("vadjustment",
578                                                         "Vertical Adjustment",
579                                                         "The GtkAdjustment for the vertical position",
580                                                         GTK_TYPE_ADJUSTMENT,
581                                                         G_PARAM_READABLE));
582
583   g_object_class_install_property (object_class,
584                                    PROP_CENTER_ON_CHILD_FOCUS,
585                                    g_param_spec_boolean ("center-on-child-focus",
586                                                          "Center on the child with the focus",
587                                                          "Whether to center the pannable on the child that receives the focus.",
588                                                          FALSE,
589                                                          G_PARAM_READWRITE |
590                                                          G_PARAM_CONSTRUCT));
591
592
593   gtk_widget_class_install_style_property (widget_class,
594                                            g_param_spec_uint
595                                            ("indicator-width",
596                                             "Width of the scroll indicators",
597                                             "Pixel width used to draw the scroll indicators.",
598                                             0, G_MAXUINT, 8,
599                                             G_PARAM_READWRITE));
600
601  /**
602    * HildonPannableArea::horizontal-movement:
603    * @hildonpannable: the object which received the signal
604    * @direction: the direction of the movement #HILDON_MOVEMENT_LEFT or #HILDON_MOVEMENT_RIGHT
605    * @initial_x: the x coordinate of the point where the user clicked to start the movement
606    * @initial_y: the y coordinate of the point where the user clicked to start the movement
607    *
608    * The horizontal-movement signal is emitted when the pannable area
609    * detects a horizontal movement. The detection does not mean the
610    * widget is going to move (i.e. maybe the children are smaller
611    * horizontally than the screen).
612    *
613    * Since: 2.2
614    */
615   pannable_area_signals[HORIZONTAL_MOVEMENT] =
616     g_signal_new ("horizontal_movement",
617                   G_TYPE_FROM_CLASS (object_class),
618                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
619                   G_STRUCT_OFFSET (HildonPannableAreaClass, horizontal_movement),
620                   NULL, NULL,
621                   _hildon_marshal_VOID__INT_DOUBLE_DOUBLE,
622                   G_TYPE_NONE, 3,
623                   G_TYPE_INT,
624                   G_TYPE_DOUBLE,
625                   G_TYPE_DOUBLE);
626
627   /**
628    * HildonPannableArea::vertical-movement:
629    * @hildonpannable: the object which received the signal
630    * @direction: the direction of the movement #HILDON_MOVEMENT_UP or #HILDON_MOVEMENT_DOWN
631    * @initial_x: the x coordinate of the point where the user clicked to start the movement
632    * @initial_y: the y coordinate of the point where the user clicked to start the movement
633    *
634    * The vertical-movement signal is emitted when the pannable area
635    * detects a vertical movement. The detection does not mean the
636    * widget is going to move (i.e. maybe the children are smaller
637    * vertically than the screen).
638    *
639    * Since: 2.2
640    */
641   pannable_area_signals[VERTICAL_MOVEMENT] =
642     g_signal_new ("vertical_movement",
643                   G_TYPE_FROM_CLASS (object_class),
644                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
645                   G_STRUCT_OFFSET (HildonPannableAreaClass, vertical_movement),
646                   NULL, NULL,
647                   _hildon_marshal_VOID__INT_DOUBLE_DOUBLE,
648                   G_TYPE_NONE, 3,
649                   G_TYPE_INT,
650                   G_TYPE_DOUBLE,
651                   G_TYPE_DOUBLE);
652
653  /**
654    * HildonPannableArea::panning-started:
655    * @hildonpannable: the pannable area object that is going to start
656    * the panning
657    *
658    * This signal is emitted before the panning starts. Applications
659    * can return %TRUE to avoid the panning. The main difference with
660    * the vertical-movement and horizontal-movement signals is those
661    * gesture signals are launched no matter if the widget is going to
662    * move, this signal means the widget is going to start moving. It
663    * could even happen that the widget moves and there was no gesture
664    * (i.e. click meanwhile the pannable is overshooting).
665    *
666    * Returns: %TRUE to stop the panning launch. %FALSE to continue
667    * with it.
668    *
669    * Since: 2.2
670    */
671   pannable_area_signals[PANNING_STARTED] =
672     g_signal_new ("panning-started",
673                   G_TYPE_FROM_CLASS (object_class),
674                   0,
675                   0,
676                   NULL, NULL,
677                   _hildon_marshal_BOOLEAN__VOID,
678                   G_TYPE_BOOLEAN, 0);
679
680  /**
681    * HildonPannableArea::panning-finished:
682    * @hildonpannable: the pannable area object that finished the
683    * panning
684    *
685    * This signal is emitted after the kinetic panning has
686    * finished.
687    *
688    * Since: 2.2
689    */
690   pannable_area_signals[PANNING_FINISHED] =
691     g_signal_new ("panning-finished",
692                   G_TYPE_FROM_CLASS (object_class),
693                   0,
694                   0,
695                   NULL, NULL,
696                   _hildon_marshal_VOID__VOID,
697                   G_TYPE_NONE, 0);
698
699 }
700
701 static void
702 hildon_pannable_area_init (HildonPannableArea * area)
703 {
704   HildonPannableAreaPrivate *priv = PANNABLE_AREA_PRIVATE (area);
705
706   GTK_WIDGET_UNSET_FLAGS (area, GTK_NO_WINDOW);
707
708   area->priv = priv;
709
710   priv->moved = FALSE;
711   priv->button_pressed = FALSE;
712   priv->last_time = 0;
713   priv->last_type = 0;
714   priv->vscroll_visible = TRUE;
715   priv->hscroll_visible = TRUE;
716   priv->indicator_width = 6;
717   priv->overshot_dist_x = 0;
718   priv->overshot_dist_y = 0;
719   priv->overshooting_y = 0;
720   priv->overshooting_x = 0;
721   priv->idle_id = 0;
722   priv->vel_x = 0;
723   priv->vel_y = 0;
724   priv->scroll_indicator_alpha = 0.0;
725   priv->scroll_indicator_timeout = 0;
726   priv->motion_event_scroll_timeout = 0;
727   priv->scroll_indicator_event_interrupt = 0;
728   priv->scroll_delay_counter = 0;
729   priv->scrollbar_fade_delay = 0;
730   priv->scroll_to_x = -1;
731   priv->scroll_to_y = -1;
732   priv->first_drag = TRUE;
733   priv->initial_effect = TRUE;
734   priv->child_width = 0;
735   priv->child_height = 0;
736   priv->last_in = TRUE;
737   priv->x_offset = 0;
738   priv->y_offset = 0;
739   priv->center_on_child_focus_pending = FALSE;
740
741   gtk_style_lookup_color (GTK_WIDGET (area)->style,
742                           "SecondaryTextColor", &priv->scroll_color);
743
744   priv->hadjust =
745     GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0));
746   priv->vadjust =
747     GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0));
748
749   g_object_ref_sink (G_OBJECT (priv->hadjust));
750   g_object_ref_sink (G_OBJECT (priv->vadjust));
751
752   g_signal_connect_swapped (priv->hadjust, "value-changed",
753                             G_CALLBACK (hildon_pannable_area_adjust_value_changed), area);
754   g_signal_connect_swapped (priv->vadjust, "value-changed",
755                             G_CALLBACK (hildon_pannable_area_adjust_value_changed), area);
756   g_signal_connect_swapped (priv->hadjust, "changed",
757                             G_CALLBACK (hildon_pannable_area_adjust_changed), area);
758   g_signal_connect_swapped (priv->vadjust, "changed",
759                             G_CALLBACK (hildon_pannable_area_adjust_changed), area);
760   g_signal_connect (area, "grab-notify",
761                     G_CALLBACK (hildon_pannable_area_grab_notify), NULL);
762 }
763
764 static void
765 hildon_pannable_area_get_property (GObject * object,
766                                    guint property_id,
767                                    GValue * value,
768                                    GParamSpec * pspec)
769 {
770   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (object)->priv;
771
772   switch (property_id) {
773   case PROP_ENABLED:
774     g_value_set_boolean (value, priv->enabled);
775     break;
776   case PROP_MODE:
777     g_value_set_enum (value, priv->mode);
778     break;
779   case PROP_MOVEMENT_MODE:
780     g_value_set_flags (value, priv->mov_mode);
781     break;
782   case PROP_VELOCITY_MIN:
783     g_value_set_double (value, priv->vmin);
784     break;
785   case PROP_VELOCITY_MAX:
786     g_value_set_double (value, priv->vmax);
787     break;
788   case PROP_VEL_MAX_OVERSHOOTING:
789     g_value_set_double (value, priv->vmax_overshooting);
790     break;
791   case PROP_VELOCITY_FAST_FACTOR:
792     g_value_set_double (value, priv->vfast_factor);
793     break;
794   case PROP_DECELERATION:
795     g_value_set_double (value, priv->decel);
796     break;
797   case PROP_DRAG_INERTIA:
798     g_value_set_double (value, priv->drag_inertia);
799     break;
800   case PROP_SPS:
801     g_value_set_uint (value, priv->sps);
802     break;
803   case PROP_PANNING_THRESHOLD:
804     g_value_set_uint (value, priv->panning_threshold);
805     break;
806   case PROP_SCROLLBAR_FADE_DELAY:
807     /* convert to miliseconds */
808     g_value_set_uint (value, priv->scrollbar_fade_delay * SCROLL_FADE_TIMEOUT);
809     break;
810   case PROP_BOUNCE_STEPS:
811     g_value_set_uint (value, priv->bounce_steps);
812     break;
813   case PROP_FORCE:
814     g_value_set_uint (value, priv->force);
815     break;
816   case PROP_DIRECTION_ERROR_MARGIN:
817     g_value_set_uint (value, priv->direction_error_margin);
818     break;
819   case PROP_VSCROLLBAR_POLICY:
820     g_value_set_enum (value, priv->vscrollbar_policy);
821     break;
822   case PROP_HSCROLLBAR_POLICY:
823     g_value_set_enum (value, priv->hscrollbar_policy);
824     break;
825   case PROP_VOVERSHOOT_MAX:
826     g_value_set_int (value, priv->vovershoot_max);
827     break;
828   case PROP_HOVERSHOOT_MAX:
829     g_value_set_int (value, priv->hovershoot_max);
830     break;
831   case PROP_SCROLL_TIME:
832     g_value_set_double (value, priv->scroll_time);
833     break;
834   case PROP_INITIAL_HINT:
835     g_value_set_boolean (value, priv->initial_hint);
836     break;
837   case PROP_LOW_FRICTION_MODE:
838     g_value_set_boolean (value, priv->low_friction_mode);
839     break;
840   case PROP_SIZE_REQUEST_POLICY:
841     g_value_set_enum (value, priv->size_request_policy);
842     break;
843   case PROP_HADJUSTMENT:
844     g_value_set_object (value,
845                         hildon_pannable_area_get_hadjustment
846                         (HILDON_PANNABLE_AREA (object)));
847     break;
848   case PROP_VADJUSTMENT:
849     g_value_set_object (value,
850                         hildon_pannable_area_get_vadjustment
851                         (HILDON_PANNABLE_AREA (object)));
852     break;
853   case PROP_CENTER_ON_CHILD_FOCUS:
854     g_value_set_boolean (value, priv->center_on_child_focus);
855     break;
856   default:
857     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
858   }
859 }
860
861 static void
862 hildon_pannable_area_set_property (GObject * object,
863                                    guint property_id,
864                                    const GValue * value,
865                                    GParamSpec * pspec)
866 {
867   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (object)->priv;
868   gboolean enabled;
869
870   switch (property_id) {
871   case PROP_ENABLED:
872     enabled = g_value_get_boolean (value);
873
874     if ((priv->enabled != enabled) && (GTK_WIDGET_REALIZED (object))) {
875       if (enabled)
876         gdk_window_raise (priv->event_window);
877       else
878         gdk_window_lower (priv->event_window);
879     }
880
881     priv->enabled = enabled;
882     break;
883   case PROP_MODE:
884     priv->mode = g_value_get_enum (value);
885     break;
886   case PROP_MOVEMENT_MODE:
887     priv->mov_mode = g_value_get_flags (value);
888     break;
889   case PROP_VELOCITY_MIN:
890     priv->vmin = g_value_get_double (value);
891     break;
892   case PROP_VELOCITY_MAX:
893     priv->vmax = g_value_get_double (value);
894     break;
895   case PROP_VEL_MAX_OVERSHOOTING:
896     priv->vmax_overshooting = g_value_get_double (value);
897     break;
898   case PROP_VELOCITY_FAST_FACTOR:
899     priv->vfast_factor = g_value_get_double (value);
900     break;
901   case PROP_DECELERATION:
902     priv->decel = g_value_get_double (value);
903     hildon_pannable_calculate_vel_factor (HILDON_PANNABLE_AREA (object));
904     break;
905   case PROP_DRAG_INERTIA:
906     priv->drag_inertia = g_value_get_double (value);
907     break;
908   case PROP_SPS:
909     priv->sps = g_value_get_uint (value);
910     break;
911   case PROP_PANNING_THRESHOLD:
912     {
913       GtkSettings *settings = gtk_settings_get_default ();
914       GtkSettingsValue svalue = { NULL, { 0, }, };
915
916       priv->panning_threshold = g_value_get_uint (value);
917
918       /* insure gtk dnd is the same we are using, not allowed
919          different thresholds in the same application */
920       svalue.origin = "panning_threshold";
921       g_value_init (&svalue.value, G_TYPE_LONG);
922       g_value_set_long (&svalue.value, priv->panning_threshold);
923       gtk_settings_set_property_value (settings, "gtk-dnd-drag-threshold", &svalue);
924       g_value_unset (&svalue.value);
925     }
926     break;
927   case PROP_SCROLLBAR_FADE_DELAY:
928     /* convert to miliseconds */
929     priv->scrollbar_fade_delay = g_value_get_uint (value)/(SCROLL_FADE_TIMEOUT);
930     break;
931   case PROP_BOUNCE_STEPS:
932     priv->bounce_steps = g_value_get_uint (value);
933     break;
934   case PROP_FORCE:
935     priv->force = g_value_get_uint (value);
936     break;
937   case PROP_DIRECTION_ERROR_MARGIN:
938     priv->direction_error_margin = g_value_get_uint (value);
939     break;
940   case PROP_VSCROLLBAR_POLICY:
941     priv->vscrollbar_policy = g_value_get_enum (value);
942
943     gtk_widget_queue_resize (GTK_WIDGET (object));
944     break;
945   case PROP_HSCROLLBAR_POLICY:
946     priv->hscrollbar_policy = g_value_get_enum (value);
947
948     gtk_widget_queue_resize (GTK_WIDGET (object));
949     break;
950   case PROP_VOVERSHOOT_MAX:
951     priv->vovershoot_max = g_value_get_int (value);
952     break;
953   case PROP_HOVERSHOOT_MAX:
954     priv->hovershoot_max = g_value_get_int (value);
955     break;
956   case PROP_SCROLL_TIME:
957     priv->scroll_time = g_value_get_double (value);
958
959     hildon_pannable_calculate_vel_factor (HILDON_PANNABLE_AREA (object));
960     break;
961   case PROP_INITIAL_HINT:
962     priv->initial_hint = g_value_get_boolean (value);
963     break;
964   case PROP_LOW_FRICTION_MODE:
965     priv->low_friction_mode = g_value_get_boolean (value);
966     break;
967   case PROP_SIZE_REQUEST_POLICY:
968     hildon_pannable_area_set_size_request_policy (HILDON_PANNABLE_AREA (object),
969                                                   g_value_get_enum (value));
970     break;
971   case PROP_CENTER_ON_CHILD_FOCUS:
972     priv->center_on_child_focus = g_value_get_boolean (value);
973     break;
974
975   default:
976     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
977   }
978 }
979
980 static void
981 hildon_pannable_area_dispose (GObject * object)
982 {
983   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (object)->priv;
984   GtkWidget *child = gtk_bin_get_child (GTK_BIN (object));
985
986   if (priv->idle_id) {
987     g_signal_emit (object, pannable_area_signals[PANNING_FINISHED], 0);
988     g_source_remove (priv->idle_id);
989     priv->idle_id = 0;
990   }
991
992   if (priv->scroll_indicator_timeout){
993     g_source_remove (priv->scroll_indicator_timeout);
994     priv->scroll_indicator_timeout = 0;
995   }
996
997   if (priv->motion_event_scroll_timeout){
998     g_source_remove (priv->motion_event_scroll_timeout);
999     priv->motion_event_scroll_timeout = 0;
1000   }
1001
1002   if (child) {
1003     g_signal_handlers_disconnect_by_func (child,
1004                                           hildon_pannable_area_child_mapped,
1005                                           object);
1006   }
1007
1008   g_signal_handlers_disconnect_by_func (object,
1009                                         hildon_pannable_area_grab_notify,
1010                                         NULL);
1011
1012   if (priv->hadjust) {
1013     g_signal_handlers_disconnect_by_func (priv->hadjust,
1014                                           hildon_pannable_area_adjust_value_changed,
1015                                           object);
1016     g_signal_handlers_disconnect_by_func (priv->hadjust,
1017                                           hildon_pannable_area_adjust_changed,
1018                                           object);
1019     g_object_unref (priv->hadjust);
1020     priv->hadjust = NULL;
1021   }
1022
1023   if (priv->vadjust) {
1024     g_signal_handlers_disconnect_by_func (priv->vadjust,
1025                                           hildon_pannable_area_adjust_value_changed,
1026                                           object);
1027     g_signal_handlers_disconnect_by_func (priv->vadjust,
1028                                           hildon_pannable_area_adjust_changed,
1029                                           object);
1030     g_object_unref (priv->vadjust);
1031     priv->vadjust = NULL;
1032   }
1033
1034   if (G_OBJECT_CLASS (hildon_pannable_area_parent_class)->dispose)
1035     G_OBJECT_CLASS (hildon_pannable_area_parent_class)->dispose (object);
1036 }
1037
1038 static void
1039 hildon_pannable_area_realize (GtkWidget * widget)
1040 {
1041   GdkWindowAttr attributes;
1042   gint attributes_mask;
1043   gint border_width;
1044   HildonPannableAreaPrivate *priv;
1045
1046   priv = HILDON_PANNABLE_AREA (widget)->priv;
1047
1048   GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
1049
1050   border_width = GTK_CONTAINER (widget)->border_width;
1051
1052   attributes.x = widget->allocation.x + border_width;
1053   attributes.y = widget->allocation.y + border_width;
1054   attributes.width = MAX (widget->allocation.width - 2 * border_width, 0);
1055   attributes.height = MAX (widget->allocation.height - 2 * border_width, 0);
1056   attributes.window_type = GDK_WINDOW_CHILD;
1057
1058   /* avoid using the hildon_window */
1059   attributes.visual = gtk_widget_get_visual (widget);
1060   attributes.colormap = gtk_widget_get_colormap (widget);
1061   attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK;
1062   attributes.wclass = GDK_INPUT_OUTPUT;
1063
1064   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
1065
1066   widget->window = gdk_window_new (gtk_widget_get_parent_window (widget),
1067                                    &attributes, attributes_mask);
1068   gdk_window_set_user_data (widget->window, widget);
1069
1070   /* create the events window */
1071   attributes.x = 0;
1072   attributes.y = 0;
1073   attributes.event_mask = gtk_widget_get_events (widget)
1074     | GDK_BUTTON_MOTION_MASK
1075     | GDK_BUTTON_PRESS_MASK
1076     | GDK_BUTTON_RELEASE_MASK
1077     | GDK_SCROLL_MASK
1078     | GDK_POINTER_MOTION_HINT_MASK
1079     | GDK_EXPOSURE_MASK | GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK;
1080   attributes.wclass = GDK_INPUT_ONLY;
1081
1082   attributes_mask = GDK_WA_X | GDK_WA_Y;
1083
1084   priv->event_window = gdk_window_new (widget->window,
1085                                        &attributes, attributes_mask);
1086   gdk_window_set_user_data (priv->event_window, widget);
1087
1088   widget->style = gtk_style_attach (widget->style, widget->window);
1089   gtk_style_set_background (widget->style, widget->window, GTK_STATE_NORMAL);
1090
1091   priv->scrollbars_gc = gdk_gc_new (GDK_DRAWABLE (widget->window));
1092   gdk_gc_copy (priv->scrollbars_gc, widget->style->fg_gc[GTK_STATE_INSENSITIVE]);
1093 }
1094
1095 static void
1096 hildon_pannable_area_unrealize (GtkWidget * widget)
1097 {
1098   HildonPannableAreaPrivate *priv;
1099
1100   priv = HILDON_PANNABLE_AREA (widget)->priv;
1101
1102   if (priv->event_window != NULL) {
1103     gdk_window_set_user_data (priv->event_window, NULL);
1104     gdk_window_destroy (priv->event_window);
1105     priv->event_window = NULL;
1106   }
1107
1108   gdk_gc_unref (priv->scrollbars_gc);
1109
1110   if (GTK_WIDGET_CLASS (hildon_pannable_area_parent_class)->unrealize)
1111     (*GTK_WIDGET_CLASS (hildon_pannable_area_parent_class)->unrealize)(widget);
1112 }
1113
1114 static void
1115 hildon_pannable_area_size_request (GtkWidget * widget,
1116                                    GtkRequisition * requisition)
1117 {
1118   GtkRequisition child_requisition = {0};
1119   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (widget)->priv;
1120   GtkWidget *child = gtk_bin_get_child (GTK_BIN (widget));
1121
1122   if (child && GTK_WIDGET_VISIBLE (child))
1123     {
1124       gtk_widget_size_request (child, &child_requisition);
1125     }
1126
1127   if (priv->hscrollbar_policy == GTK_POLICY_NEVER) {
1128     requisition->width = child_requisition.width;
1129   } else {
1130     switch (priv->size_request_policy) {
1131       case HILDON_SIZE_REQUEST_CHILDREN:
1132         requisition->width = MIN (PANNABLE_MAX_WIDTH,
1133                                   child_requisition.width);
1134         break;
1135       case HILDON_SIZE_REQUEST_MINIMUM:
1136       default:
1137         requisition->width = priv->indicator_width;
1138       }
1139   }
1140
1141   if (priv->vscrollbar_policy == GTK_POLICY_NEVER) {
1142     requisition->height = child_requisition.height;
1143   } else {
1144     switch (priv->size_request_policy) {
1145       case HILDON_SIZE_REQUEST_CHILDREN:
1146         requisition->height = MIN (PANNABLE_MAX_HEIGHT,
1147                                    child_requisition.height);
1148         break;
1149       case HILDON_SIZE_REQUEST_MINIMUM:
1150       default:
1151         requisition->height = priv->indicator_width;
1152       }
1153   }
1154
1155   requisition->width += 2 * GTK_CONTAINER (widget)->border_width;
1156   requisition->height += 2 * GTK_CONTAINER (widget)->border_width;
1157 }
1158
1159 static void
1160 hildon_pannable_area_child_allocate_calculate (GtkWidget * widget,
1161                                                GtkAllocation * allocation,
1162                                                GtkAllocation * child_allocation)
1163 {
1164   gint border_width;
1165   HildonPannableAreaPrivate *priv;
1166
1167   border_width = GTK_CONTAINER (widget)->border_width;
1168
1169   priv = HILDON_PANNABLE_AREA (widget)->priv;
1170
1171   child_allocation->x = 0;
1172   child_allocation->y = 0;
1173   child_allocation->width = MAX (allocation->width - 2 * border_width -
1174                                  (priv->vscroll_visible ? priv->vscroll_rect.width : 0), 0);
1175   child_allocation->height = MAX (allocation->height - 2 * border_width -
1176                                   (priv->hscroll_visible ? priv->hscroll_rect.height : 0), 0);
1177
1178   if (priv->overshot_dist_y > 0) {
1179     child_allocation->y = MIN (child_allocation->y + priv->overshot_dist_y,
1180                                child_allocation->height);
1181     child_allocation->height = MAX (child_allocation->height - priv->overshot_dist_y, 0);
1182   } else if (priv->overshot_dist_y < 0) {
1183     child_allocation->height = MAX (child_allocation->height + priv->overshot_dist_y, 0);
1184   }
1185
1186   if (priv->overshot_dist_x > 0) {
1187     child_allocation->x = MIN (child_allocation->x + priv->overshot_dist_x,
1188                                child_allocation->width);
1189     child_allocation->width = MAX (child_allocation->width - priv->overshot_dist_x, 0);
1190   } else if (priv->overshot_dist_x < 0) {
1191     child_allocation->width = MAX (child_allocation->width + priv->overshot_dist_x, 0);
1192   }
1193 }
1194
1195 static void
1196 hildon_pannable_area_size_allocate (GtkWidget * widget,
1197                                     GtkAllocation * allocation)
1198 {
1199   GtkAllocation child_allocation;
1200   HildonPannableAreaPrivate *priv;
1201   GtkWidget *child = gtk_bin_get_child (GTK_BIN (widget));
1202   gint border_width;
1203   gdouble hv, vv;
1204
1205   border_width = GTK_CONTAINER (widget)->border_width;
1206
1207   widget->allocation = *allocation;
1208
1209   priv = HILDON_PANNABLE_AREA (widget)->priv;
1210
1211   if (GTK_WIDGET_REALIZED (widget)) {
1212       gdk_window_move_resize (widget->window,
1213                               allocation->x + border_width,
1214                               allocation->y  + border_width,
1215                               allocation->width  - border_width * 2,
1216                               allocation->height - border_width * 2);
1217       gdk_window_move_resize (priv->event_window,
1218                               0,
1219                               0,
1220                               allocation->width  - border_width * 2,
1221                               allocation->height - border_width * 2);
1222   }
1223
1224   if (child && GTK_WIDGET_VISIBLE (child)) {
1225
1226     hildon_pannable_area_child_allocate_calculate (widget,
1227                                                    allocation,
1228                                                    &child_allocation);
1229
1230     gtk_widget_size_allocate (child, &child_allocation);
1231
1232     if (hildon_pannable_area_check_scrollbars (HILDON_PANNABLE_AREA (widget))) {
1233       hildon_pannable_area_child_allocate_calculate (widget,
1234                                                      allocation,
1235                                                      &child_allocation);
1236
1237       gtk_widget_size_allocate (child, &child_allocation);
1238     }
1239
1240     hv = priv->hadjust->value;
1241     vv = priv->vadjust->value;
1242
1243     /* we have to do this after child size_allocate because page_size is
1244      * changed when we allocate the size of the children */
1245     if (priv->overshot_dist_y < 0) {
1246       priv->vadjust->value = priv->vadjust->upper - priv->vadjust->page_size;
1247     }
1248
1249     if (priv->overshot_dist_x < 0) {
1250       priv->hadjust->value = priv->hadjust->upper - priv->hadjust->page_size;
1251     }
1252
1253     if (hv != priv->hadjust->value)
1254       gtk_adjustment_value_changed (priv->hadjust);
1255
1256     if (vv != priv->vadjust->value)
1257       gtk_adjustment_value_changed (priv->vadjust);
1258
1259   } else {
1260     hildon_pannable_area_check_scrollbars (HILDON_PANNABLE_AREA (widget));
1261   }
1262 }
1263
1264 static void
1265 hildon_pannable_area_style_set (GtkWidget * widget,
1266                                 GtkStyle * previous_style)
1267 {
1268   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (widget)->priv;
1269
1270   GTK_WIDGET_CLASS (hildon_pannable_area_parent_class)->
1271     style_set (widget, previous_style);
1272
1273   gtk_style_lookup_color (widget->style, "SecondaryTextColor", &priv->scroll_color);
1274   gtk_widget_style_get (widget, "indicator-width", &priv->indicator_width, NULL);
1275 }
1276
1277 static void
1278 hildon_pannable_area_map (GtkWidget * widget)
1279 {
1280   HildonPannableAreaPrivate *priv;
1281
1282   priv = HILDON_PANNABLE_AREA (widget)->priv;
1283
1284   gdk_window_show (widget->window);
1285
1286   if (priv->event_window != NULL && !priv->enabled)
1287     gdk_window_show (priv->event_window);
1288
1289   (*GTK_WIDGET_CLASS (hildon_pannable_area_parent_class)->map) (widget);
1290
1291   if (priv->event_window != NULL && priv->enabled)
1292     gdk_window_show (priv->event_window);
1293 }
1294
1295 static void
1296 hildon_pannable_area_unmap (GtkWidget * widget)
1297 {
1298   HildonPannableAreaPrivate *priv;
1299
1300   priv = HILDON_PANNABLE_AREA (widget)->priv;
1301
1302   if (priv->event_window != NULL)
1303     gdk_window_hide (priv->event_window);
1304
1305   gdk_window_hide (widget->window);
1306
1307   (*GTK_WIDGET_CLASS (hildon_pannable_area_parent_class)->unmap) (widget);
1308 }
1309
1310 static void
1311 hildon_pannable_area_grab_notify (GtkWidget *widget,
1312                                   gboolean was_grabbed,
1313                                   gpointer user_data)
1314 {
1315   /* an internal widget has grabbed the focus and now has returned it,
1316      we have to do some release actions */
1317   if (was_grabbed) {
1318     HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (widget)->priv;
1319
1320     priv->scroll_indicator_event_interrupt = 0;
1321
1322     if ((!priv->scroll_indicator_timeout)&&(priv->scroll_indicator_alpha)>0.1) {
1323       priv->scroll_delay_counter = priv->scrollbar_fade_delay;
1324
1325       hildon_pannable_area_launch_fade_timeout (HILDON_PANNABLE_AREA (widget),
1326                                                 priv->scroll_indicator_alpha);
1327     }
1328
1329     priv->last_type = 3;
1330     priv->moved = FALSE;
1331   }
1332 }
1333
1334 #if USE_CAIRO_SCROLLBARS == 1
1335
1336 static void
1337 rgb_from_gdkcolor (GdkColor *color, gdouble *r, gdouble *g, gdouble *b)
1338 {
1339   *r = (color->red >> 8) / 255.0;
1340   *g = (color->green >> 8) / 255.0;
1341   *b = (color->blue >> 8) / 255.0;
1342 }
1343
1344 static void
1345 hildon_pannable_draw_vscroll (GtkWidget * widget,
1346                               GdkColor *back_color,
1347                               GdkColor *scroll_color)
1348 {
1349   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (widget)->priv;
1350   gfloat y, height;
1351   cairo_t *cr;
1352   cairo_pattern_t *pattern;
1353   gdouble r, g, b;
1354   gint radius = (priv->vscroll_rect.width/2) - 1;
1355
1356   cr = gdk_cairo_create(widget->window);
1357
1358   /* Draw the background */
1359   rgb_from_gdkcolor (back_color, &r, &g, &b);
1360   cairo_set_source_rgb (cr, r, g, b);
1361   cairo_rectangle(cr, priv->vscroll_rect.x, priv->vscroll_rect.y,
1362                   priv->vscroll_rect.width,
1363                   priv->vscroll_rect.height);
1364   cairo_fill_preserve (cr);
1365   cairo_clip (cr);
1366
1367   /* Calculate the scroll bar height and position */
1368   y = ((priv->vadjust->value - priv->vadjust->lower) / (priv->vadjust->upper - priv->vadjust->lower)) *
1369     (widget->allocation.height -
1370      (priv->hscroll_visible ? priv->indicator_width : 0));
1371   height = ((((priv->vadjust->value - priv->vadjust->lower) +
1372               priv->vadjust->page_size) /
1373              (priv->vadjust->upper - priv->vadjust->lower)) *
1374             (widget->allocation.height -
1375              (priv->hscroll_visible ? priv->indicator_width : 0))) - y;
1376
1377   /* Set a minimum height */
1378   height = MAX (SCROLL_BAR_MIN_SIZE, height);
1379
1380   /* Check the max y position */
1381   y = MIN (y, widget->allocation.height -
1382            (priv->hscroll_visible ? priv->hscroll_rect.height : 0) -
1383            height);
1384
1385   /* Draw the scrollbar */
1386   rgb_from_gdkcolor (scroll_color, &r, &g, &b);
1387
1388   pattern = cairo_pattern_create_linear(radius+1, y, radius+1,y + height);
1389   cairo_pattern_add_color_stop_rgb(pattern, 0, r, g, b);
1390   cairo_pattern_add_color_stop_rgb(pattern, 1, r/2, g/2, b/2);
1391   cairo_set_source(cr, pattern);
1392   cairo_fill(cr);
1393   cairo_pattern_destroy(pattern);
1394
1395   cairo_arc(cr, priv->vscroll_rect.x + radius + 1, y + radius + 1, radius, G_PI, 0);
1396   cairo_line_to(cr, priv->vscroll_rect.x + (radius * 2) + 1, y + height - radius);
1397   cairo_arc(cr, priv->vscroll_rect.x + radius + 1, y + height - radius, radius, 0, G_PI);
1398   cairo_line_to(cr, priv->vscroll_rect.x + 1, y + height - radius);
1399   cairo_clip (cr);
1400
1401   cairo_paint_with_alpha(cr, priv->scroll_indicator_alpha);
1402
1403   cairo_destroy(cr);
1404 }
1405
1406 static void
1407 hildon_pannable_draw_hscroll (GtkWidget * widget,
1408                               GdkColor *back_color,
1409                               GdkColor *scroll_color)
1410 {
1411   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (widget)->priv;
1412   gfloat x, width;
1413   cairo_t *cr;
1414   cairo_pattern_t *pattern;
1415   gdouble r, g, b;
1416   gint radius = (priv->hscroll_rect.height/2) - 1;
1417
1418   cr = gdk_cairo_create(widget->window);
1419
1420   /* Draw the background */
1421   rgb_from_gdkcolor (back_color, &r, &g, &b);
1422   cairo_set_source_rgb (cr, r, g, b);
1423   cairo_rectangle(cr, priv->hscroll_rect.x, priv->hscroll_rect.y,
1424                   priv->hscroll_rect.width,
1425                   priv->hscroll_rect.height);
1426   cairo_fill_preserve (cr);
1427   cairo_clip (cr);
1428
1429   /* calculate the scrollbar width and position */
1430   x = ((priv->hadjust->value - priv->hadjust->lower) / (priv->hadjust->upper - priv->hadjust->lower)) *
1431     (widget->allocation.width - (priv->vscroll_visible ? priv->indicator_width : 0));
1432   width =((((priv->hadjust->value - priv->hadjust->lower) +
1433             priv->hadjust->page_size) / (priv->hadjust->upper - priv->hadjust->lower)) *
1434           (widget->allocation.width -
1435            (priv->vscroll_visible ? priv->indicator_width : 0))) - x;
1436
1437   /* Set a minimum width */
1438   width = MAX (SCROLL_BAR_MIN_SIZE, width);
1439
1440   /* Check the max x position */
1441   x = MIN (x, widget->allocation.width -
1442            (priv->vscroll_visible ? priv->vscroll_rect.width : 0) -
1443            width);
1444
1445   /* Draw the scrollbar */
1446   rgb_from_gdkcolor (scroll_color, &r, &g, &b);
1447
1448   pattern = cairo_pattern_create_linear(x, radius+1, x+width, radius+1);
1449   cairo_pattern_add_color_stop_rgb(pattern, 0, r, g, b);
1450   cairo_pattern_add_color_stop_rgb(pattern, 1, r/2, g/2, b/2);
1451   cairo_set_source(cr, pattern);
1452   cairo_fill(cr);
1453   cairo_pattern_destroy(pattern);
1454
1455   cairo_arc_negative(cr, x + radius + 1, priv->hscroll_rect.y + radius + 1, radius, 3*G_PI_2, G_PI_2);
1456   cairo_line_to(cr, x + width - radius, priv->hscroll_rect.y + (radius * 2) + 1);
1457   cairo_arc_negative(cr, x + width - radius, priv->hscroll_rect.y + radius + 1, radius, G_PI_2, 3*G_PI_2);
1458   cairo_line_to(cr, x + width - radius, priv->hscroll_rect.y + 1);
1459   cairo_clip (cr);
1460
1461   cairo_paint_with_alpha(cr, priv->scroll_indicator_alpha);
1462
1463   cairo_destroy(cr);
1464 }
1465
1466 #else /* USE_CAIRO_SCROLLBARS */
1467
1468 static void
1469 tranparency_color (GdkColor *color,
1470                    GdkColor colora,
1471                    GdkColor colorb,
1472                    gdouble transparency)
1473 {
1474   gdouble diff;
1475
1476   diff = colora.red - colorb.red;
1477   color->red = colora.red-diff*transparency;
1478
1479   diff = colora.green - colorb.green;
1480   color->green = colora.green-diff*transparency;
1481
1482   diff = colora.blue - colorb.blue;
1483   color->blue = colora.blue-diff*transparency;
1484 }
1485
1486 static void
1487 hildon_pannable_draw_vscroll (GtkWidget *widget,
1488                               GdkColor *back_color,
1489                               GdkColor *scroll_color)
1490 {
1491   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (widget)->priv;
1492   gfloat y, height;
1493   GdkColor transp_color;
1494   GdkGC *gc = priv->scrollbars_gc;
1495
1496   gdk_draw_rectangle (widget->window,
1497                       widget->style->bg_gc[GTK_STATE_NORMAL],
1498                       TRUE,
1499                        priv->vscroll_rect.x, priv->vscroll_rect.y,
1500                       priv->vscroll_rect.width,
1501                       priv->vscroll_rect.height);
1502
1503   y = ((priv->vadjust->value - priv->vadjust->lower) / (priv->vadjust->upper - priv->vadjust->lower)) *
1504     (widget->allocation.height - (priv->hscroll_visible ? priv->indicator_width : 0));
1505   height = ((((priv->vadjust->value - priv->vadjust->lower) + priv->vadjust->page_size) /
1506              (priv->vadjust->upper - priv->vadjust->lower)) *
1507             (widget->allocation.height -
1508              (priv->hscroll_visible ? priv->indicator_width : 0))) - y;
1509
1510   /* Set a minimum height */
1511   height = MAX (SCROLL_BAR_MIN_SIZE, height);
1512
1513   /* Check the max y position */
1514   y = MIN (y, widget->allocation.height -
1515            (priv->hscroll_visible ? priv->hscroll_rect.height : 0) -
1516            height);
1517
1518   if (priv->scroll_indicator_alpha == 1.0) {
1519     transp_color = priv->scroll_color;
1520   } else if (priv->scroll_indicator_alpha < 1.0) {
1521     tranparency_color (&transp_color, *back_color, *scroll_color,
1522                        priv->scroll_indicator_alpha);
1523   }
1524   gdk_gc_set_rgb_fg_color (gc, &transp_color);
1525
1526   gdk_draw_rectangle (widget->window, gc,
1527                       TRUE, priv->vscroll_rect.x, y,
1528                       priv->vscroll_rect.width, height);
1529 }
1530
1531 static void
1532 hildon_pannable_draw_hscroll (GtkWidget *widget,
1533                               GdkColor *back_color,
1534                               GdkColor *scroll_color)
1535 {
1536   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (widget)->priv;
1537   gfloat x, width;
1538   GdkColor transp_color;
1539   GdkGC *gc = priv->scrollbars_gc;
1540
1541   gdk_draw_rectangle (widget->window,
1542                       widget->style->bg_gc[GTK_STATE_INSENSITIVE],
1543                       TRUE,
1544                       priv->hscroll_rect.x, priv->hscroll_rect.y,
1545                       priv->hscroll_rect.width,
1546                       priv->hscroll_rect.height);
1547
1548   /* calculate the scrollbar width and position */
1549   x = ((priv->hadjust->value - priv->hadjust->lower) / (priv->hadjust->upper - priv->hadjust->lower)) *
1550     (widget->allocation.width - (priv->vscroll_visible ? priv->indicator_width : 0));
1551   width =((((priv->hadjust->value - priv->hadjust->lower) +
1552             priv->hadjust->page_size) / (priv->hadjust->upper - priv->hadjust->lower)) *
1553           (widget->allocation.width -
1554            (priv->vscroll_visible ? priv->indicator_width : 0))) - x;
1555
1556   /* Set a minimum width */
1557   width = MAX (SCROLL_BAR_MIN_SIZE, width);
1558
1559   /* Check the max x position */
1560   x = MIN (x, widget->allocation.width -
1561            (priv->vscroll_visible ? priv->vscroll_rect.width : 0) -
1562            width);
1563
1564   if (priv->scroll_indicator_alpha == 1.0) {
1565     transp_color = priv->scroll_color;
1566   } else if (priv->scroll_indicator_alpha < 1.0) {
1567     tranparency_color (&transp_color, *back_color, *scroll_color,
1568                        priv->scroll_indicator_alpha);
1569   }
1570   gdk_gc_set_rgb_fg_color (gc, &transp_color);
1571
1572   gdk_draw_rectangle (widget->window, gc,
1573                       TRUE, x, priv->hscroll_rect.y, width,
1574                       priv->hscroll_rect.height);
1575 }
1576
1577 #endif /* USE_CAIRO_SCROLLBARS */
1578
1579 static void
1580 hildon_pannable_area_initial_effect (GtkWidget * widget)
1581 {
1582   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (widget)->priv;
1583
1584   if (priv->initial_hint) {
1585     if (priv->vscroll_visible || priv->hscroll_visible) {
1586
1587       priv->scroll_indicator_event_interrupt = 0;
1588       priv->scroll_delay_counter = priv->scrollbar_fade_delay;
1589
1590       hildon_pannable_area_launch_fade_timeout (HILDON_PANNABLE_AREA (widget), 1.0);
1591     }
1592   }
1593 }
1594
1595 static void
1596 hildon_pannable_area_launch_fade_timeout (HildonPannableArea * area,
1597                                           gdouble alpha)
1598 {
1599   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (area)->priv;
1600
1601   priv->scroll_indicator_alpha = alpha;
1602
1603   if (!priv->scroll_indicator_timeout)
1604     priv->scroll_indicator_timeout =
1605       gdk_threads_add_timeout (SCROLL_FADE_TIMEOUT,
1606                                (GSourceFunc) hildon_pannable_area_scroll_indicator_fade,
1607                                area);
1608 }
1609
1610 static void
1611 hildon_pannable_area_adjust_changed (HildonPannableArea * area,
1612                                      gpointer data)
1613 {
1614   if (GTK_WIDGET_REALIZED (area))
1615     hildon_pannable_area_refresh (area);
1616 }
1617
1618 static void
1619 hildon_pannable_area_adjust_value_changed (HildonPannableArea * area,
1620                                            gpointer data)
1621 {
1622   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (area)->priv;
1623   gint xdiff, ydiff;
1624   gint x = priv->x_offset;
1625   gint y = priv->y_offset;
1626
1627   priv->x_offset = priv->hadjust->value;
1628   xdiff = x - priv->x_offset;
1629   priv->y_offset = priv->vadjust->value;
1630   ydiff = y - priv->y_offset;
1631
1632   if ((xdiff || ydiff) && GTK_WIDGET_DRAWABLE (area)) {
1633     hildon_pannable_area_redraw (area);
1634
1635     if ((priv->vscroll_visible) || (priv->hscroll_visible)) {
1636       priv->scroll_indicator_event_interrupt = 0;
1637       priv->scroll_delay_counter = priv->scrollbar_fade_delay;
1638
1639       hildon_pannable_area_launch_fade_timeout (area, 1.0);
1640     }
1641   }
1642 }
1643
1644 static void
1645 hildon_pannable_area_redraw (HildonPannableArea * area)
1646 {
1647   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (area)->priv;
1648
1649   /* Redraw scroll indicators */
1650   if (GTK_WIDGET_DRAWABLE (area)) {
1651       if (priv->hscroll_visible) {
1652         gdk_window_invalidate_rect (GTK_WIDGET (area)->window,
1653                                     &priv->hscroll_rect, FALSE);
1654       }
1655
1656       if (priv->vscroll_visible) {
1657         gdk_window_invalidate_rect (GTK_WIDGET (area)->window,
1658                                     &priv->vscroll_rect, FALSE);
1659       }
1660   }
1661 }
1662
1663 static gboolean
1664 hildon_pannable_area_scroll_indicator_fade(HildonPannableArea * area)
1665 {
1666   HildonPannableAreaPrivate *priv = area->priv;
1667
1668   /* if moving do not fade out */
1669   if (((ABS (priv->vel_y)>priv->vmin)||
1670        (ABS (priv->vel_x)>priv->vmin))&&(!priv->button_pressed)) {
1671
1672     return TRUE;
1673   }
1674
1675   if (priv->scroll_indicator_event_interrupt) {
1676     /* Stop a fade out, and fade back in */
1677     if (priv->scroll_indicator_alpha > 0.9) {
1678       priv->scroll_indicator_alpha = 1.0;
1679       priv->scroll_indicator_timeout = 0;
1680
1681       return FALSE;
1682     } else {
1683       priv->scroll_indicator_alpha += 0.2;
1684       hildon_pannable_area_redraw (area);
1685
1686       return TRUE;
1687     }
1688   }
1689
1690   if ((priv->scroll_indicator_alpha > 0.9) &&
1691       (priv->scroll_delay_counter > 0)) {
1692     priv->scroll_delay_counter--;
1693
1694     return TRUE;
1695   }
1696
1697   if (!priv->scroll_indicator_event_interrupt) {
1698     /* Continue fade out */
1699     if (priv->scroll_indicator_alpha < 0.1) {
1700       priv->scroll_indicator_timeout = 0;
1701       priv->scroll_indicator_alpha = 0.0;
1702
1703       return FALSE;
1704     } else {
1705       priv->scroll_indicator_alpha -= 0.2;
1706       hildon_pannable_area_redraw (area);
1707
1708       return TRUE;
1709     }
1710   }
1711
1712   return TRUE;
1713 }
1714
1715 static gboolean
1716 hildon_pannable_area_expose_event (GtkWidget * widget,
1717                                    GdkEventExpose * event)
1718 {
1719
1720   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (widget)->priv;
1721 #if USE_CAIRO_SCROLLBARS == 1
1722   GdkColor back_color = widget->style->bg[GTK_STATE_NORMAL];
1723   GdkColor scroll_color = widget->style->base[GTK_STATE_SELECTED];
1724 #else /* USE_CAIRO_SCROLLBARS */
1725   GdkColor back_color = widget->style->bg[GTK_STATE_NORMAL];
1726   GdkColor scroll_color = priv->scroll_color;
1727 #endif
1728
1729   if (G_UNLIKELY (priv->initial_effect)) {
1730     hildon_pannable_area_initial_effect (widget);
1731
1732     priv->initial_effect = FALSE;
1733   }
1734
1735   if (gtk_bin_get_child (GTK_BIN (widget))) {
1736
1737     if (priv->scroll_indicator_alpha > 0.1) {
1738       if (priv->vscroll_visible) {
1739         hildon_pannable_draw_vscroll (widget, &back_color, &scroll_color);
1740       }
1741       if (priv->hscroll_visible) {
1742         hildon_pannable_draw_hscroll (widget, &back_color, &scroll_color);
1743       }
1744     }
1745
1746     /* draw overshooting rectangles */
1747     if (priv->overshot_dist_y > 0) {
1748       gint overshot_height;
1749
1750       overshot_height = MIN (priv->overshot_dist_y, widget->allocation.height -
1751                              (priv->hscroll_visible ? priv->hscroll_rect.height : 0));
1752
1753       gdk_draw_rectangle (widget->window,
1754                           widget->style->bg_gc[GTK_STATE_NORMAL],
1755                           TRUE,
1756                           0,
1757                           0,
1758                           widget->allocation.width -
1759                           (priv->vscroll_visible ? priv->vscroll_rect.width : 0),
1760                           overshot_height);
1761     } else if (priv->overshot_dist_y < 0) {
1762       gint overshot_height;
1763       gint overshot_y;
1764
1765       overshot_height =
1766         MAX (priv->overshot_dist_y,
1767              -(widget->allocation.height -
1768                (priv->hscroll_visible ? priv->hscroll_rect.height : 0)));
1769
1770       overshot_y = MAX (widget->allocation.height +
1771                         overshot_height -
1772                         (priv->hscroll_visible ? priv->hscroll_rect.height : 0), 0);
1773
1774       gdk_draw_rectangle (widget->window,
1775                           widget->style->bg_gc[GTK_STATE_NORMAL],
1776                           TRUE,
1777                           0,
1778                           overshot_y,
1779                           widget->allocation.width -
1780                           priv->vscroll_rect.width,
1781                           -overshot_height);
1782     }
1783
1784     if (priv->overshot_dist_x > 0) {
1785       gint overshot_width;
1786
1787       overshot_width = MIN (priv->overshot_dist_x, widget->allocation.width -
1788                              (priv->vscroll_visible ? priv->vscroll_rect.width : 0));
1789
1790       gdk_draw_rectangle (widget->window,
1791                           widget->style->bg_gc[GTK_STATE_NORMAL],
1792                           TRUE,
1793                           0,
1794                           0,
1795                           overshot_width,
1796                           widget->allocation.height -
1797                           (priv->hscroll_visible ? priv->hscroll_rect.height : 0));
1798     } else if (priv->overshot_dist_x < 0) {
1799       gint overshot_width;
1800       gint overshot_x;
1801
1802       overshot_width =
1803         MAX (priv->overshot_dist_x,
1804              -(widget->allocation.width -
1805                (priv->vscroll_visible ? priv->vscroll_rect.width : 0)));
1806
1807       overshot_x = MAX (widget->allocation.width +
1808                         overshot_width -
1809                         (priv->vscroll_visible ? priv->vscroll_rect.width : 0), 0);
1810
1811       gdk_draw_rectangle (widget->window,
1812                           widget->style->bg_gc[GTK_STATE_NORMAL],
1813                           TRUE,
1814                           overshot_x,
1815                           0,
1816                           -overshot_width,
1817                           widget->allocation.height -
1818                           priv->hscroll_rect.height);
1819     }
1820
1821   }
1822
1823   return GTK_WIDGET_CLASS (hildon_pannable_area_parent_class)->expose_event (widget, event);
1824 }
1825
1826 static GdkWindow *
1827 hildon_pannable_area_get_topmost (GdkWindow * window,
1828                                   gint x, gint y,
1829                                   gint * tx, gint * ty,
1830                                   GdkEventMask mask)
1831 {
1832   /* Find the GdkWindow at the given point, by recursing from a given
1833    * parent GdkWindow. Optionally return the co-ordinates transformed
1834    * relative to the child window.
1835    */
1836   gint width, height;
1837   GList *c, *children;
1838   GdkWindow *selected_window = NULL;
1839
1840   gdk_drawable_get_size (GDK_DRAWABLE (window), &width, &height);
1841   if ((x < 0) || (x >= width) || (y < 0) || (y >= height))
1842     return NULL;
1843
1844   children = gdk_window_peek_children (window);
1845
1846   if (!children) {
1847     if (tx)
1848       *tx = x;
1849     if (ty)
1850       *ty = y;
1851     selected_window = window;
1852   }
1853
1854   for (c = children; c; c = c->next) {
1855     GdkWindow *child = (GdkWindow *) c->data;
1856     gint wx, wy;
1857
1858     gdk_drawable_get_size (GDK_DRAWABLE (child), &width, &height);
1859     gdk_window_get_position (child, &wx, &wy);
1860
1861     if ((x >= wx) && (x < (wx + width)) && (y >= wy) && (y < (wy + height)) &&
1862         (gdk_window_is_visible (child))) {
1863
1864       if (gdk_window_peek_children (child)) {
1865         selected_window = hildon_pannable_area_get_topmost (child, x-wx, y-wy,
1866                                                             tx, ty, mask);
1867         if (!selected_window) {
1868           if (tx)
1869             *tx = x;
1870           if (ty)
1871             *ty = y;
1872           selected_window = child;
1873         }
1874       } else {
1875         if ((gdk_window_get_events (child)&mask)) {
1876           if (tx)
1877             *tx = x-wx;
1878           if (ty)
1879             *ty = y-wy;
1880           selected_window = child;
1881         }
1882       }
1883     }
1884   }
1885
1886   return selected_window;
1887 }
1888
1889 static void
1890 synth_crossing (GdkWindow * child,
1891                 gint x, gint y,
1892                 gint x_root, gint y_root,
1893                 guint32 time, gboolean in)
1894 {
1895   GdkEventCrossing *crossing_event;
1896   GdkEventType type = in ? GDK_ENTER_NOTIFY : GDK_LEAVE_NOTIFY;
1897
1898   /* Send synthetic enter event */
1899   crossing_event = (GdkEventCrossing *) gdk_event_new (type);
1900   ((GdkEventAny *) crossing_event)->type = type;
1901   ((GdkEventAny *) crossing_event)->window = g_object_ref (child);
1902   ((GdkEventAny *) crossing_event)->send_event = FALSE;
1903   crossing_event->subwindow = g_object_ref (child);
1904   crossing_event->time = time;
1905   crossing_event->x = x;
1906   crossing_event->y = y;
1907   crossing_event->x_root = x_root;
1908   crossing_event->y_root = y_root;
1909   crossing_event->mode = GDK_CROSSING_NORMAL;
1910   crossing_event->detail = GDK_NOTIFY_UNKNOWN;
1911   crossing_event->focus = FALSE;
1912   crossing_event->state = 0;
1913   gdk_event_put ((GdkEvent *) crossing_event);
1914   gdk_event_free ((GdkEvent *) crossing_event);
1915 }
1916
1917 static gboolean
1918 hildon_pannable_area_button_press_cb (GtkWidget * widget,
1919                                       GdkEventButton * event)
1920 {
1921   gint x, y;
1922   HildonPannableArea *area = HILDON_PANNABLE_AREA (widget);
1923   HildonPannableAreaPrivate *priv = area->priv;
1924
1925   if ((!priv->enabled) || (event->button != 1) ||
1926       ((event->time == priv->last_time) &&
1927        (priv->last_type == 1)) || (gtk_bin_get_child (GTK_BIN (widget)) == NULL))
1928     return TRUE;
1929
1930   priv->scroll_indicator_event_interrupt = 1;
1931
1932   hildon_pannable_area_launch_fade_timeout (area,
1933                                             priv->scroll_indicator_alpha);
1934
1935   priv->last_time = event->time;
1936   priv->last_type = 1;
1937
1938   priv->scroll_to_x = -1;
1939   priv->scroll_to_y = -1;
1940
1941   if (priv->button_pressed && priv->child) {
1942     /* Widget stole focus on last click, send crossing-out event */
1943     synth_crossing (priv->child, 0, 0, event->x_root, event->y_root,
1944                     event->time, FALSE);
1945   }
1946
1947   priv->x = event->x;
1948   priv->y = event->y;
1949   priv->ix = priv->x;
1950   priv->iy = priv->y;
1951
1952   /* Don't allow a click if we're still moving fast */
1953   if ((ABS (priv->vel_x) <= (priv->vmax * priv->vfast_factor)) &&
1954       (ABS (priv->vel_y) <= (priv->vmax * priv->vfast_factor)))
1955     priv->child =
1956       hildon_pannable_area_get_topmost (gtk_bin_get_child (GTK_BIN (widget))->window,
1957                                         event->x, event->y, &x, &y, GDK_BUTTON_PRESS_MASK);
1958   else
1959     priv->child = NULL;
1960
1961   priv->button_pressed = TRUE;
1962
1963   /* Stop scrolling on mouse-down (so you can flick, then hold to stop) */
1964   priv->vel_x = 0;
1965   priv->vel_y = 0;
1966   if (priv->idle_id) {
1967     g_source_remove (priv->idle_id);
1968     priv->idle_id = 0;
1969     g_signal_emit (area, pannable_area_signals[PANNING_FINISHED], 0);
1970   }
1971
1972   if (priv->child) {
1973
1974     gdk_drawable_get_size (priv->child, &priv->child_width,
1975                            &priv->child_height);
1976     priv->last_in = TRUE;
1977
1978     g_object_add_weak_pointer ((GObject *) priv->child,
1979                                (gpointer) & priv->child);
1980
1981     event = (GdkEventButton *) gdk_event_copy ((GdkEvent *) event);
1982     event->x = x;
1983     event->y = y;
1984     priv->cx = x;
1985     priv->cy = y;
1986
1987     synth_crossing (priv->child, x, y, event->x_root,
1988                     event->y_root, event->time, TRUE);
1989
1990     /* Send synthetic click (button press/release) event */
1991     ((GdkEventAny *) event)->window = g_object_ref (priv->child);
1992
1993     gdk_event_put ((GdkEvent *) event);
1994     gdk_event_free ((GdkEvent *) event);
1995   } else
1996     priv->child = NULL;
1997
1998   return TRUE;
1999 }
2000
2001 static gboolean
2002 hildon_pannable_area_check_scrollbars (HildonPannableArea * area)
2003 {
2004   HildonPannableAreaPrivate *priv = area->priv;
2005   gboolean prev_hscroll_visible, prev_vscroll_visible;
2006
2007   prev_hscroll_visible = priv->hscroll_visible;
2008   prev_vscroll_visible = priv->vscroll_visible;
2009
2010   if (!gtk_bin_get_child (GTK_BIN (area))) {
2011     priv->vscroll_visible = FALSE;
2012     priv->hscroll_visible = FALSE;
2013   } else {
2014     switch (priv->hscrollbar_policy) {
2015     case GTK_POLICY_ALWAYS:
2016       priv->hscroll_visible = TRUE;
2017       break;
2018     case GTK_POLICY_NEVER:
2019       priv->hscroll_visible = FALSE;
2020       break;
2021     default:
2022       priv->hscroll_visible = (priv->hadjust->upper - priv->hadjust->lower >
2023                                priv->hadjust->page_size);
2024     }
2025
2026     switch (priv->vscrollbar_policy) {
2027     case GTK_POLICY_ALWAYS:
2028       priv->vscroll_visible = TRUE;
2029       break;
2030     case GTK_POLICY_NEVER:
2031       priv->vscroll_visible = FALSE;
2032       break;
2033     default:
2034       priv->vscroll_visible = (priv->vadjust->upper - priv->vadjust->lower >
2035                                priv->vadjust->page_size);
2036     }
2037
2038     /* Store the vscroll/hscroll areas for redrawing */
2039     if (priv->vscroll_visible) {
2040       GtkAllocation *allocation = &GTK_WIDGET (area)->allocation;
2041       priv->vscroll_rect.x = allocation->width - priv->indicator_width;
2042       priv->vscroll_rect.y = 0;
2043       priv->vscroll_rect.width = priv->indicator_width;
2044       priv->vscroll_rect.height = allocation->height -
2045         (priv->hscroll_visible ? priv->indicator_width : 0);
2046     }
2047     if (priv->hscroll_visible) {
2048       GtkAllocation *allocation = &GTK_WIDGET (area)->allocation;
2049       priv->hscroll_rect.y = allocation->height - priv->indicator_width;
2050       priv->hscroll_rect.x = 0;
2051       priv->hscroll_rect.height = priv->indicator_width;
2052       priv->hscroll_rect.width = allocation->width -
2053         (priv->vscroll_visible ? priv->indicator_width : 0);
2054     }
2055   }
2056
2057   return ((priv->hscroll_visible != prev_hscroll_visible) ||
2058           (priv->vscroll_visible != prev_vscroll_visible));
2059 }
2060
2061 static void
2062 hildon_pannable_area_refresh (HildonPannableArea * area)
2063 {
2064   if (GTK_WIDGET_DRAWABLE (area) &&
2065       hildon_pannable_area_check_scrollbars (area)) {
2066     HildonPannableAreaPrivate *priv = area->priv;
2067
2068     gtk_widget_queue_resize (GTK_WIDGET (area));
2069
2070     if ((priv->vscroll_visible) || (priv->hscroll_visible)) {
2071       priv->scroll_indicator_event_interrupt = 0;
2072       priv->scroll_delay_counter = area->priv->scrollbar_fade_delay;
2073
2074       hildon_pannable_area_launch_fade_timeout (area, 1.0);
2075     }
2076   } else {
2077     hildon_pannable_area_redraw (area);
2078   }
2079 }
2080
2081 /* Scroll by a particular amount (in pixels). Optionally, return if
2082  * the scroll on a particular axis was successful.
2083  */
2084 static void
2085 hildon_pannable_axis_scroll (HildonPannableArea *area,
2086                              GtkAdjustment *adjust,
2087                              gdouble *vel,
2088                              gdouble inc,
2089                              gint *overshooting,
2090                              gint *overshot_dist,
2091                              gdouble *scroll_to,
2092                              gint overshoot_max,
2093                              gboolean *s)
2094 {
2095   gdouble dist;
2096   HildonPannableAreaPrivate *priv = area->priv;
2097
2098   dist = gtk_adjustment_get_value (adjust) - inc;
2099
2100   /* Overshooting
2101    * We use overshot_dist to define the distance of the current overshoot,
2102    * and overshooting to define the direction/whether or not we are overshot
2103    */
2104   if (!(*overshooting)) {
2105
2106     /* Initiation of the overshoot happens when the finger is released
2107      * and the current position of the pannable contents are out of range
2108      */
2109     if (dist < adjust->lower) {
2110       if (s) *s = FALSE;
2111
2112       dist = adjust->lower;
2113
2114       if (overshoot_max!=0) {
2115         *overshooting = 1;
2116         *scroll_to = -1;
2117         *overshot_dist = CLAMP (*overshot_dist + *vel, 0, overshoot_max);
2118         *vel = MIN (priv->vmax_overshooting, *vel);
2119         gtk_widget_queue_resize (GTK_WIDGET (area));
2120       } else {
2121         *vel = 0.0;
2122       }
2123     } else if (dist > adjust->upper - adjust->page_size) {
2124       if (s) *s = FALSE;
2125
2126       dist = adjust->upper - adjust->page_size;
2127
2128       if (overshoot_max!=0) {
2129         *overshooting = 1;
2130         *scroll_to = -1;
2131         *overshot_dist = CLAMP (*overshot_dist + *vel, -overshoot_max, 0);
2132         *vel = MAX (-priv->vmax_overshooting, *vel);
2133         gtk_widget_queue_resize (GTK_WIDGET (area));
2134       } else {
2135         *vel = 0.0;
2136       }
2137     } else {
2138       if ((*scroll_to) != -1) {
2139         if (((inc < 0)&&(*scroll_to <= dist))||
2140             ((inc > 0)&&(*scroll_to >= dist))) {
2141           dist = *scroll_to;
2142           *scroll_to = -1;
2143           *vel = 0;
2144         }
2145       }
2146     }
2147
2148     adjust->value = dist;
2149   } else {
2150     if (!priv->button_pressed) {
2151
2152       /* When the overshoot has started we continue for
2153        * PROP_BOUNCE_STEPS more steps into the overshoot before we
2154        * reverse direction. The deceleration factor is calculated
2155        * based on the percentage distance from the first item with
2156        * each iteration, therefore always returning us to the
2157        * top/bottom most element
2158        */
2159       if (*overshot_dist > 0) {
2160
2161         if ((*overshooting < priv->bounce_steps) && (*vel > 0)) {
2162           (*overshooting)++;
2163           *vel = (((gdouble)*overshot_dist)/overshoot_max) * (*vel);
2164         } else if ((*overshooting >= priv->bounce_steps) && (*vel > 0)) {
2165           *vel *= -1;
2166         } else if ((*overshooting > 1) && (*vel < 0)) {
2167           /* we add the MIN in order to avoid very small speeds */
2168           *vel = MIN ((((gdouble)*overshot_dist)*0.4) * -1, -2.0);
2169         }
2170
2171         *overshot_dist = CLAMP (*overshot_dist + *vel, 0, overshoot_max);
2172
2173         gtk_widget_queue_resize (GTK_WIDGET (area));
2174
2175       } else if (*overshot_dist < 0) {
2176
2177         if ((*overshooting < priv->bounce_steps) && (*vel < 0)) {
2178           (*overshooting)++;
2179           *vel = (((gdouble)*overshot_dist)/overshoot_max) * (*vel) * -1;
2180         } else if ((*overshooting >= priv->bounce_steps) && (*vel < 0)) {
2181           *vel *= -1;
2182         } else if ((*overshooting > 1) && (*vel > 0)) {
2183           /* we add the MAX in order to avoid very small speeds */
2184           *vel = MAX ((((gdouble)*overshot_dist)*0.4) * -1, 2.0);
2185         }
2186
2187         *overshot_dist = CLAMP (*overshot_dist + (*vel), -overshoot_max, 0);
2188
2189         gtk_widget_queue_resize (GTK_WIDGET (area));
2190
2191       } else {
2192         *overshooting = 0;
2193         *vel = 0;
2194         gtk_widget_queue_resize (GTK_WIDGET (area));
2195       }
2196     } else {
2197
2198       gint overshot_dist_old = *overshot_dist;
2199
2200       if (*overshot_dist > 0) {
2201         *overshot_dist = CLAMP ((*overshot_dist) + inc, 0, overshoot_max);
2202       } else if (*overshot_dist < 0) {
2203         *overshot_dist = CLAMP ((*overshot_dist) + inc, -1 * overshoot_max, 0);
2204       } else {
2205         *overshooting = 0;
2206         adjust->value = CLAMP (dist,
2207                                adjust->lower,
2208                                adjust->upper -
2209                                adjust->page_size);
2210       }
2211
2212       if (*overshot_dist != overshot_dist_old)
2213         gtk_widget_queue_resize (GTK_WIDGET (area));
2214     }
2215   }
2216 }
2217
2218 static void
2219 hildon_pannable_area_scroll (HildonPannableArea *area,
2220                              gdouble x, gdouble y)
2221 {
2222   gboolean sx, sy;
2223   HildonPannableAreaPrivate *priv = area->priv;
2224   gboolean hscroll_visible, vscroll_visible;
2225   gdouble hv, vv;
2226
2227   if (gtk_bin_get_child (GTK_BIN (area)) == NULL)
2228     return;
2229
2230   vscroll_visible = (priv->vadjust->upper - priv->vadjust->lower >
2231              priv->vadjust->page_size);
2232   hscroll_visible = (priv->hadjust->upper - priv->hadjust->lower >
2233              priv->hadjust->page_size);
2234
2235   sx = TRUE;
2236   sy = TRUE;
2237
2238   hv = priv->hadjust->value;
2239   vv = priv->vadjust->value;
2240
2241   if (vscroll_visible) {
2242     hildon_pannable_axis_scroll (area, priv->vadjust, &priv->vel_y, y,
2243                                  &priv->overshooting_y, &priv->overshot_dist_y,
2244                                  &priv->scroll_to_y, priv->vovershoot_max, &sy);
2245   } else {
2246     priv->vel_y = 0;
2247   }
2248
2249   if (hscroll_visible) {
2250     hildon_pannable_axis_scroll (area, priv->hadjust, &priv->vel_x, x,
2251                                  &priv->overshooting_x, &priv->overshot_dist_x,
2252                                  &priv->scroll_to_x, priv->hovershoot_max, &sx);
2253   } else {
2254     priv->vel_x = 0;
2255   }
2256
2257   if (hv != priv->hadjust->value)
2258     gtk_adjustment_value_changed (priv->hadjust);
2259
2260   if (vv != priv->vadjust->value)
2261     gtk_adjustment_value_changed (priv->vadjust);
2262
2263   /* If the scroll on a particular axis wasn't succesful, reset the
2264    * initial scroll position to the new mouse co-ordinate. This means
2265    * when you get to the top of the page, dragging down works immediately.
2266    */
2267   if (priv->mode == HILDON_PANNABLE_AREA_MODE_ACCEL) {
2268       if (!sx) {
2269         priv->x = priv->ex;
2270       }
2271
2272       if (!sy) {
2273         priv->y = priv->ey;
2274       }
2275     }
2276 }
2277
2278 static gboolean
2279 hildon_pannable_area_timeout (HildonPannableArea * area)
2280 {
2281   HildonPannableAreaPrivate *priv = area->priv;
2282
2283   if ((!priv->enabled) || (priv->mode == HILDON_PANNABLE_AREA_MODE_PUSH)) {
2284     priv->idle_id = 0;
2285     g_signal_emit (area, pannable_area_signals[PANNING_FINISHED], 0);
2286
2287     return FALSE;
2288   }
2289
2290   if (!priv->button_pressed) {
2291     /* Decelerate gradually when pointer is raised */
2292     if ((!priv->overshot_dist_y) &&
2293         (!priv->overshot_dist_x)) {
2294
2295       /* in case we move to a specific point do not decelerate when arriving */
2296       if ((priv->scroll_to_x != -1)||(priv->scroll_to_y != -1)) {
2297
2298         if (ABS (priv->vel_x) >= 1.5) {
2299           priv->vel_x *= priv->decel;
2300         }
2301
2302         if (ABS (priv->vel_y) >= 1.5) {
2303           priv->vel_y *= priv->decel;
2304         }
2305
2306       } else {
2307         if ((!priv->low_friction_mode) ||
2308             ((priv->mov_mode&HILDON_MOVEMENT_MODE_HORIZ) &&
2309              (ABS (priv->vel_x) < 0.8*priv->vmax)))
2310           priv->vel_x *= priv->decel;
2311
2312         if ((!priv->low_friction_mode) ||
2313             ((priv->mov_mode&HILDON_MOVEMENT_MODE_VERT) &&
2314              (ABS (priv->vel_y) < 0.8*priv->vmax)))
2315           priv->vel_y *= priv->decel;
2316
2317         if ((ABS (priv->vel_x) < 1.0) && (ABS (priv->vel_y) < 1.0)) {
2318           priv->vel_x = 0;
2319           priv->vel_y = 0;
2320           priv->idle_id = 0;
2321
2322           g_signal_emit (area, pannable_area_signals[PANNING_FINISHED], 0);
2323
2324           return FALSE;
2325         }
2326       }
2327     }
2328   } else if (priv->mode == HILDON_PANNABLE_AREA_MODE_AUTO) {
2329     priv->idle_id = 0;
2330
2331     return FALSE;
2332   }
2333
2334   hildon_pannable_area_scroll (area, priv->vel_x, priv->vel_y);
2335
2336   return TRUE;
2337 }
2338
2339 static void
2340 hildon_pannable_area_calculate_velocity (gdouble *vel,
2341                                          gdouble delta,
2342                                          gdouble dist,
2343                                          gdouble vmax,
2344                                          gdouble drag_inertia,
2345                                          gdouble force,
2346                                          guint sps)
2347 {
2348   gdouble rawvel;
2349
2350   if (ABS (dist) >= RATIO_TOLERANCE) {
2351     rawvel = (dist / ABS (delta)) * force;
2352     *vel = *vel * (1 - drag_inertia) +
2353       rawvel * drag_inertia;
2354     *vel = *vel > 0 ? MIN (*vel, vmax)
2355       : MAX (*vel, -1 * vmax);
2356   }
2357 }
2358
2359 static gboolean
2360 hildon_pannable_area_motion_event_scroll_timeout (HildonPannableArea *area)
2361 {
2362   HildonPannableAreaPrivate *priv = area->priv;
2363
2364   if ((priv->motion_x != 0)||(priv->motion_y != 0))
2365     hildon_pannable_area_scroll (area, priv->motion_x, priv->motion_y);
2366
2367   priv->motion_event_scroll_timeout = 0;
2368
2369   return FALSE;
2370 }
2371
2372 static void
2373 hildon_pannable_area_motion_event_scroll (HildonPannableArea *area,
2374                                           gdouble x, gdouble y)
2375 {
2376   HildonPannableAreaPrivate *priv = area->priv;
2377
2378   if (priv->motion_event_scroll_timeout) {
2379
2380     priv->motion_x += x;
2381     priv->motion_y += y;
2382
2383   } else {
2384
2385   /* we do not delay the first event but the next ones */
2386     hildon_pannable_area_scroll (area, x, y);
2387
2388     priv->motion_x = 0;
2389     priv->motion_y = 0;
2390
2391     priv->motion_event_scroll_timeout = gdk_threads_add_timeout
2392       ((gint) (1000.0 / (gdouble) MOTION_EVENTS_PER_SECOND),
2393        (GSourceFunc) hildon_pannable_area_motion_event_scroll_timeout, area);
2394   }
2395 }
2396
2397 static void
2398 hildon_pannable_area_check_move (HildonPannableArea *area,
2399                                  GdkEventMotion * event,
2400                                  gdouble *x,
2401                                  gdouble *y)
2402 {
2403   HildonPannableAreaPrivate *priv = area->priv;
2404
2405   if (priv->first_drag && (!priv->moved) &&
2406       ((ABS (*x) > (priv->panning_threshold))
2407        || (ABS (*y) > (priv->panning_threshold)))) {
2408     priv->moved = TRUE;
2409     *x = 0;
2410     *y = 0;
2411
2412     if (priv->first_drag) {
2413         gboolean vscroll_visible;
2414         gboolean hscroll_visible;
2415
2416       if (ABS (priv->iy - event->y) >=
2417           ABS (priv->ix - event->x)) {
2418
2419         g_signal_emit (area,
2420                        pannable_area_signals[VERTICAL_MOVEMENT],
2421                        0, (priv->iy > event->y) ?
2422                        HILDON_MOVEMENT_UP :
2423                        HILDON_MOVEMENT_DOWN,
2424                        (gdouble)priv->ix, (gdouble)priv->iy);
2425
2426         vscroll_visible = (priv->vadjust->upper - priv->vadjust->lower >
2427                    priv->vadjust->page_size);
2428
2429         if (!((vscroll_visible)&&
2430               (priv->mov_mode&HILDON_MOVEMENT_MODE_VERT))) {
2431
2432           hscroll_visible = (priv->hadjust->upper - priv->hadjust->lower >
2433                              priv->hadjust->page_size);
2434
2435           /* even in case we do not have to move we check if this
2436              could be a fake horizontal movement */
2437           if (!((hscroll_visible)&&
2438                 (priv->mov_mode&HILDON_MOVEMENT_MODE_HORIZ)) ||
2439               (ABS (priv->iy - event->y) -
2440                ABS (priv->ix - event->x) >= priv->direction_error_margin))
2441             priv->moved = FALSE;
2442         }
2443       } else {
2444
2445         g_signal_emit (area,
2446                        pannable_area_signals[HORIZONTAL_MOVEMENT],
2447                        0, (priv->ix > event->x) ?
2448                        HILDON_MOVEMENT_LEFT :
2449                        HILDON_MOVEMENT_RIGHT,
2450                        (gdouble)priv->ix, (gdouble)priv->iy);
2451
2452         hscroll_visible = (priv->hadjust->upper - priv->hadjust->lower >
2453                            priv->hadjust->page_size);
2454
2455         if (!((hscroll_visible)&&
2456               (priv->mov_mode&HILDON_MOVEMENT_MODE_HORIZ))) {
2457
2458           vscroll_visible = (priv->vadjust->upper - priv->vadjust->lower >
2459                              priv->vadjust->page_size);
2460
2461           /* even in case we do not have to move we check if this
2462              could be a fake vertical movement */
2463           if (!((vscroll_visible) &&
2464                 (priv->mov_mode&HILDON_MOVEMENT_MODE_VERT)) ||
2465               (ABS (priv->ix - event->x) -
2466                ABS (priv->iy - event->y) >= priv->direction_error_margin))
2467             priv->moved = FALSE;
2468         }
2469       }
2470
2471       if ((priv->moved)&&(priv->child)) {
2472         gint pos_x, pos_y;
2473
2474         pos_x = priv->cx + (event->x - priv->ix);
2475         pos_y = priv->cy + (event->y - priv->iy);
2476
2477         synth_crossing (priv->child, pos_x, pos_y, event->x_root,
2478                         event->y_root, event->time, FALSE);
2479       }
2480
2481       if (priv->moved) {
2482         gboolean result_val;
2483
2484         g_signal_emit (area,
2485                        pannable_area_signals[PANNING_STARTED],
2486                        0, &result_val);
2487
2488         priv->moved = !result_val;
2489       }
2490     }
2491
2492     priv->first_drag = FALSE;
2493
2494     if ((priv->mode != HILDON_PANNABLE_AREA_MODE_PUSH) &&
2495         (priv->mode != HILDON_PANNABLE_AREA_MODE_AUTO)) {
2496
2497       if (!priv->idle_id)
2498         priv->idle_id = gdk_threads_add_timeout ((gint)
2499                                                  (1000.0 / (gdouble) priv->sps),
2500                                                  (GSourceFunc)
2501                                                  hildon_pannable_area_timeout, area);
2502     }
2503   }
2504 }
2505
2506 static void
2507 hildon_pannable_area_handle_move (HildonPannableArea *area,
2508                                   GdkEventMotion * event,
2509                                   gdouble *x,
2510                                   gdouble *y)
2511 {
2512   HildonPannableAreaPrivate *priv = area->priv;
2513   gdouble delta;
2514
2515   switch (priv->mode) {
2516   case HILDON_PANNABLE_AREA_MODE_PUSH:
2517     /* Scroll by the amount of pixels the cursor has moved
2518      * since the last motion event.
2519      */
2520     hildon_pannable_area_motion_event_scroll (area, *x, *y);
2521     priv->x = event->x;
2522     priv->y = event->y;
2523     break;
2524   case HILDON_PANNABLE_AREA_MODE_ACCEL:
2525     /* Set acceleration relative to the initial click */
2526     priv->ex = event->x;
2527     priv->ey = event->y;
2528     priv->vel_x = ((*x > 0) ? 1 : -1) *
2529       (((ABS (*x) /
2530          (gdouble) GTK_WIDGET (area)->allocation.width) *
2531         (priv->vmax - priv->vmin)) + priv->vmin);
2532     priv->vel_y = ((*y > 0) ? 1 : -1) *
2533       (((ABS (*y) /
2534          (gdouble) GTK_WIDGET (area)->allocation.height) *
2535         (priv->vmax - priv->vmin)) + priv->vmin);
2536     break;
2537   case HILDON_PANNABLE_AREA_MODE_AUTO:
2538
2539     delta = event->time - priv->last_time;
2540
2541     if (priv->mov_mode&HILDON_MOVEMENT_MODE_VERT) {
2542       gdouble dist = event->y - priv->y;
2543
2544       hildon_pannable_area_calculate_velocity (&priv->vel_y,
2545                                                delta,
2546                                                dist,
2547                                                priv->vmax,
2548                                                priv->drag_inertia,
2549                                                priv->force,
2550                                                priv->sps);
2551     } else {
2552       *y = 0;
2553       priv->vel_y = 0;
2554     }
2555
2556     if (priv->mov_mode&HILDON_MOVEMENT_MODE_HORIZ) {
2557       gdouble dist = event->x - priv->x;
2558
2559       hildon_pannable_area_calculate_velocity (&priv->vel_x,
2560                                                delta,
2561                                                dist,
2562                                                priv->vmax,
2563                                                priv->drag_inertia,
2564                                                priv->force,
2565                                                priv->sps);
2566     } else {
2567       *x = 0;
2568       priv->vel_x = 0;
2569     }
2570
2571     hildon_pannable_area_motion_event_scroll (area, *x, *y);
2572
2573     if (priv->mov_mode&HILDON_MOVEMENT_MODE_HORIZ)
2574       priv->x = event->x;
2575     if (priv->mov_mode&HILDON_MOVEMENT_MODE_VERT)
2576       priv->y = event->y;
2577
2578     break;
2579   default:
2580     break;
2581   }
2582 }
2583
2584 static gboolean
2585 hildon_pannable_area_motion_notify_cb (GtkWidget * widget,
2586                                        GdkEventMotion * event)
2587 {
2588   HildonPannableArea *area = HILDON_PANNABLE_AREA (widget);
2589   HildonPannableAreaPrivate *priv = area->priv;
2590   gdouble x, y;
2591
2592   if (gtk_bin_get_child (GTK_BIN (widget)) == NULL)
2593     return TRUE;
2594
2595   if ((!priv->enabled) || (!priv->button_pressed) ||
2596       ((event->time == priv->last_time) && (priv->last_type == 2))) {
2597     gdk_window_get_pointer (widget->window, NULL, NULL, 0);
2598     return TRUE;
2599   }
2600
2601   if (priv->last_type == 1) {
2602     priv->first_drag = TRUE;
2603   }
2604
2605   x = event->x - priv->x;
2606   y = event->y - priv->y;
2607
2608   if (!priv->moved) {
2609     hildon_pannable_area_check_move (area, event, &x, &y);
2610   }
2611
2612   if (priv->moved) {
2613     hildon_pannable_area_handle_move (area, event, &x, &y);
2614   } else if (priv->child) {
2615     gboolean in;
2616     gint pos_x, pos_y;
2617
2618     pos_x = priv->cx + (event->x - priv->ix);
2619     pos_y = priv->cy + (event->y - priv->iy);
2620
2621     in = (((0 <= pos_x)&&(priv->child_width >= pos_x)) &&
2622           ((0 <= pos_y)&&(priv->child_height >= pos_y)));
2623
2624     if (((!priv->last_in)&&in)||((priv->last_in)&&(!in))) {
2625
2626       synth_crossing (priv->child, pos_x, pos_y, event->x_root,
2627                       event->y_root, event->time, in);
2628
2629       priv->last_in = in;
2630     }
2631   }
2632
2633   priv->last_time = event->time;
2634   priv->last_type = 2;
2635
2636   if (priv->child) {
2637     /* Send motion notify to child */
2638     event = (GdkEventMotion *) gdk_event_copy ((GdkEvent *) event);
2639     event->x = priv->cx + (event->x - priv->ix);
2640     event->y = priv->cy + (event->y - priv->iy);
2641     event->window = g_object_ref (priv->child);
2642     gdk_event_put ((GdkEvent *) event);
2643     gdk_event_free ((GdkEvent *) event);
2644   }
2645
2646   gdk_window_get_pointer (widget->window, NULL, NULL, 0);
2647
2648   return TRUE;
2649 }
2650
2651 static gboolean
2652 hildon_pannable_leave_notify_event (GtkWidget *widget,
2653                                     GdkEventCrossing *event)
2654 {
2655   HildonPannableArea *area = HILDON_PANNABLE_AREA (widget);
2656   HildonPannableAreaPrivate *priv = area->priv;
2657
2658   if ((priv->child)&&(priv->last_in)) {
2659     priv->last_in = FALSE;
2660
2661     synth_crossing (priv->child, 0, 0, event->x_root,
2662                     event->y_root, event->time, FALSE);
2663   }
2664
2665   return FALSE;
2666 }
2667
2668 static gboolean
2669 hildon_pannable_area_button_release_cb (GtkWidget * widget,
2670                                         GdkEventButton * event)
2671 {
2672   HildonPannableArea *area = HILDON_PANNABLE_AREA (widget);
2673   HildonPannableAreaPrivate *priv = area->priv;
2674   gint x, y;
2675   gdouble dx, dy;
2676   GdkWindow *child;
2677
2678   if  (((event->time == priv->last_time) && (priv->last_type == 3))
2679        || (gtk_bin_get_child (GTK_BIN (widget)) == NULL)
2680        || (!priv->button_pressed) || (!priv->enabled) || (event->button != 1))
2681     return TRUE;
2682
2683   /* if last event was a motion-notify we have to check the movement
2684      and launch the animation */
2685   if (priv->last_type == 2) {
2686
2687     dx = event->x - priv->x;
2688     dy = event->y - priv->y;
2689
2690     hildon_pannable_area_check_move (area, (GdkEventMotion *) event, &dx, &dy);
2691
2692     if (priv->moved) {
2693       gdouble delta = event->time - priv->last_time;
2694
2695       hildon_pannable_area_handle_move (area, (GdkEventMotion *) event, &dx, &dy);
2696
2697       /* move all the way to the last position now */
2698       if (priv->motion_event_scroll_timeout) {
2699         g_source_remove (priv->motion_event_scroll_timeout);
2700         hildon_pannable_area_motion_event_scroll_timeout (HILDON_PANNABLE_AREA (widget));
2701         priv->motion_x = 0;
2702         priv->motion_y = 0;
2703       }
2704
2705       if ((ABS (dx) < 4.0) && (delta >= CURSOR_STOPPED_TIMEOUT))
2706         priv->vel_x = 0;
2707
2708       if ((ABS (dy) < 4.0) && (delta >= CURSOR_STOPPED_TIMEOUT))
2709         priv->vel_y = 0;
2710     }
2711   }
2712
2713   /* If overshoot has been initiated with a finger down, on release set max speed */
2714   if (priv->overshot_dist_y != 0) {
2715     priv->overshooting_y = priv->bounce_steps; /* Hack to stop a bounce in the finger down case */
2716     priv->vel_y = priv->vmax_overshooting;
2717   }
2718
2719   if (priv->overshot_dist_x != 0) {
2720     priv->overshooting_x = priv->bounce_steps; /* Hack to stop a bounce in the finger down case */
2721     priv->vel_x = priv->vmax_overshooting;
2722   }
2723
2724   priv->button_pressed = FALSE;
2725
2726   if  ((ABS (priv->vel_y) >= priv->vmin) ||
2727        (ABS (priv->vel_x) >= priv->vmin)) {
2728
2729     /* we have to move because we are in overshooting position*/
2730     if (!priv->moved) {
2731       gboolean result_val;
2732
2733       g_signal_emit (area,
2734                      pannable_area_signals[PANNING_STARTED],
2735                      0, &result_val);
2736     }
2737
2738     priv->scroll_indicator_alpha = 1.0;
2739
2740     if (ABS (priv->vel_x) > MAX_SPEED_THRESHOLD)
2741       priv->vel_x = (priv->vel_x > 0) ? priv->vmax : -priv->vmax;
2742
2743     if (ABS (priv->vel_y) > MAX_SPEED_THRESHOLD)
2744       priv->vel_y = (priv->vel_y > 0) ? priv->vmax : -priv->vmax;
2745
2746     if (!priv->idle_id)
2747       priv->idle_id = gdk_threads_add_timeout ((gint) (1000.0 / (gdouble) priv->sps),
2748                                                (GSourceFunc)
2749                                                hildon_pannable_area_timeout, widget);
2750   } else {
2751     if (priv->center_on_child_focus_pending) {
2752       hildon_pannable_area_center_on_child_focus (area);
2753     }
2754
2755     if (priv->moved)
2756       g_signal_emit (widget, pannable_area_signals[PANNING_FINISHED], 0);
2757   }
2758
2759   area->priv->center_on_child_focus_pending = FALSE;
2760
2761   priv->scroll_indicator_event_interrupt = 0;
2762   priv->scroll_delay_counter = priv->scrollbar_fade_delay;
2763
2764   hildon_pannable_area_launch_fade_timeout (HILDON_PANNABLE_AREA (widget),
2765                                             priv->scroll_indicator_alpha);
2766
2767   priv->last_time = event->time;
2768   priv->last_type = 3;
2769
2770   if (!priv->child) {
2771     priv->moved = FALSE;
2772     return TRUE;
2773   }
2774
2775   child =
2776     hildon_pannable_area_get_topmost (gtk_bin_get_child (GTK_BIN (widget))->window,
2777                                       event->x, event->y, &x, &y, GDK_BUTTON_RELEASE_MASK);
2778
2779   event = (GdkEventButton *) gdk_event_copy ((GdkEvent *) event);
2780   event->x = x;
2781   event->y = y;
2782
2783   /* Leave the widget if we've moved - This doesn't break selection,
2784    * but stops buttons from being clicked.
2785    */
2786   if ((child != priv->child) || (priv->moved)) {
2787     /* Send synthetic leave event */
2788     synth_crossing (priv->child, x, y, event->x_root,
2789                     event->y_root, event->time, FALSE);
2790     /* insure no click will happen for widgets that do not handle
2791        leave-notify */
2792     event->x = -16384;
2793     event->y = -16384;
2794     /* Send synthetic button release event */
2795     ((GdkEventAny *) event)->window = g_object_ref (priv->child);
2796     gdk_event_put ((GdkEvent *) event);
2797   } else {
2798     /* Send synthetic button release event */
2799     ((GdkEventAny *) event)->window = g_object_ref (child);
2800     gdk_event_put ((GdkEvent *) event);
2801     /* Send synthetic leave event */
2802     synth_crossing (priv->child, x, y, event->x_root,
2803                     event->y_root, event->time, FALSE);
2804   }
2805   g_object_remove_weak_pointer ((GObject *) priv->child,
2806                                 (gpointer) & priv->child);
2807
2808   priv->moved = FALSE;
2809   gdk_event_free ((GdkEvent *) event);
2810
2811   return TRUE;
2812 }
2813
2814 /* utility event handler */
2815 static gboolean
2816 hildon_pannable_area_scroll_cb (GtkWidget *widget,
2817                                 GdkEventScroll *event)
2818 {
2819   GtkAdjustment *adj = NULL;
2820   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (widget)->priv;
2821
2822   if ((!priv->enabled) ||
2823       (gtk_bin_get_child (GTK_BIN (widget)) == NULL))
2824     return TRUE;
2825
2826   priv->scroll_indicator_event_interrupt = 0;
2827   priv->scroll_delay_counter = priv->scrollbar_fade_delay + 20;
2828
2829   hildon_pannable_area_launch_fade_timeout (HILDON_PANNABLE_AREA (widget), 1.0);
2830
2831   /* Stop inertial scrolling */
2832   if (priv->idle_id) {
2833     priv->vel_x = 0.0;
2834     priv->vel_y = 0.0;
2835     priv->overshooting_x = 0;
2836     priv->overshooting_y = 0;
2837
2838     if ((priv->overshot_dist_x>0)||(priv->overshot_dist_y>0)) {
2839       priv->overshot_dist_x = 0;
2840       priv->overshot_dist_y = 0;
2841
2842       gtk_widget_queue_resize (GTK_WIDGET (widget));
2843     }
2844
2845     g_signal_emit (widget, pannable_area_signals[PANNING_FINISHED], 0);
2846
2847     g_source_remove (priv->idle_id);
2848     priv->idle_id = 0;
2849   }
2850
2851   if (event->direction == GDK_SCROLL_UP || event->direction == GDK_SCROLL_DOWN)
2852     adj = priv->vadjust;
2853   else
2854     adj = priv->hadjust;
2855
2856   if (adj)
2857     {
2858       gdouble delta, new_value;
2859
2860       /* from gtkrange.c calculate delta*/
2861       delta = pow (adj->page_size, 2.0 / 3.0);
2862
2863       if (event->direction == GDK_SCROLL_UP ||
2864           event->direction == GDK_SCROLL_LEFT)
2865         delta = - delta;
2866
2867       new_value = CLAMP (adj->value + delta, adj->lower, adj->upper - adj->page_size);
2868
2869       gtk_adjustment_set_value (adj, new_value);
2870     }
2871
2872   return TRUE;
2873 }
2874
2875 static void
2876 hildon_pannable_area_child_mapped (GtkWidget *widget,
2877                                    GdkEvent  *event,
2878                                    gpointer user_data)
2879 {
2880   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (user_data)->priv;
2881
2882   if (priv->event_window != NULL && priv->enabled)
2883     gdk_window_raise (priv->event_window);
2884 }
2885
2886 static void
2887 hildon_pannable_area_add (GtkContainer *container, GtkWidget *child)
2888 {
2889   HildonPannableAreaPrivate *priv = HILDON_PANNABLE_AREA (container)->priv;
2890
2891   g_return_if_fail (gtk_bin_get_child (GTK_BIN (container)) == NULL);
2892
2893   gtk_widget_set_parent (child, GTK_WIDGET (container));
2894   GTK_BIN (container)->child = child;
2895
2896   g_signal_connect_after (child, "map-event",
2897                           G_CALLBACK (hildon_pannable_area_child_mapped),
2898                           container);
2899
2900   if (!gtk_widget_set_scroll_adjustments (child, priv->hadjust, priv->vadjust)) {
2901     g_warning ("%s: cannot add non scrollable widget, "
2902                "wrap it in a viewport", __FUNCTION__);
2903   }
2904 }
2905
2906 /* call this function if you are not panning */
2907 static void
2908 hildon_pannable_area_center_on_child_focus      (HildonPannableArea *area)
2909 {
2910   GtkWidget *focused_child = NULL;
2911   GtkWidget *window = NULL;
2912
2913   window = gtk_widget_get_toplevel (GTK_WIDGET (area));
2914
2915   if (GTK_WIDGET_TOPLEVEL (window)) {
2916     focused_child = gtk_window_get_focus (GTK_WINDOW (window));
2917   }
2918
2919   if (focused_child) {
2920     hildon_pannable_area_scroll_to_child (area, focused_child);
2921   }
2922 }
2923
2924 static void
2925 hildon_pannable_area_set_focus_child            (GtkContainer     *container,
2926                                                  GtkWidget        *child)
2927 {
2928   HildonPannableArea *area = HILDON_PANNABLE_AREA (container);
2929
2930   if (!area->priv->center_on_child_focus) {
2931     return;
2932   }
2933
2934   if (GTK_IS_WIDGET (child)) {
2935     area->priv->center_on_child_focus_pending = TRUE;
2936   }
2937 }
2938
2939 static void
2940 hildon_pannable_area_remove (GtkContainer *container, GtkWidget *child)
2941 {
2942   g_return_if_fail (HILDON_IS_PANNABLE_AREA (container));
2943   g_return_if_fail (child != NULL);
2944   g_return_if_fail (gtk_bin_get_child (GTK_BIN (container)) == child);
2945
2946   gtk_widget_set_scroll_adjustments (child, NULL, NULL);
2947
2948   g_signal_handlers_disconnect_by_func (child,
2949                                         hildon_pannable_area_child_mapped,
2950                                         container);
2951
2952   /* chain parent class handler to remove child */
2953   GTK_CONTAINER_CLASS (hildon_pannable_area_parent_class)->remove (container, child);
2954 }
2955
2956 /*
2957  * This method calculates a factor necessary to determine the initial distance
2958  * to jump in hildon_pannable_area_scroll_to(). For fixed time and frames per
2959  * second, we know in how many frames 'n' we need to reach the destination
2960  * point. We know that, for a distance d,
2961  *
2962  *   d = d_0 + d_1 + ... + d_n
2963  *
2964  * where d_i is the distance travelled in the i-th frame and decel_factor is
2965  * the deceleration factor. This can be rewritten as
2966  *
2967  *   d = d_0 + (d_0 * decel_factor) + ... + (d_n-1 * decel_factor),
2968  *
2969  * since the distance travelled on each frame is the distance travelled in the
2970  * previous frame reduced by the deceleration factor. Reducing this and
2971  * factoring d_0 out, we get
2972  *
2973  *   d = d_0 (1 + decel_factor + ... + decel_factor^(n-1)).
2974  *
2975  * Since the sum is independent of the distance to be travelled, we can define
2976  * vel_factor as
2977  *
2978  *   vel_factor = 1 + decel_factor + ... + decel_factor^(n-1).
2979  *
2980  * That's the gem we calculate in this method.
2981  */
2982 static void
2983 hildon_pannable_calculate_vel_factor (HildonPannableArea * self)
2984 {
2985   HildonPannableAreaPrivate *priv = self->priv;
2986   gfloat fct = 1;
2987   gfloat fct_i = 1;
2988   gint i, n;
2989
2990   n = ceil (priv->sps * priv->scroll_time);
2991
2992   for (i = 1; i < n && fct_i >= RATIO_TOLERANCE; i++) {
2993     fct_i *= priv->decel;
2994     fct += fct_i;
2995   }
2996
2997     priv->vel_factor = fct;
2998 }
2999
3000 /**
3001  * hildon_pannable_area_new:
3002  *
3003  * Create a new pannable area widget
3004  *
3005  * Returns: the newly created #HildonPannableArea
3006  *
3007  * Since: 2.2
3008  */
3009
3010 GtkWidget *
3011 hildon_pannable_area_new (void)
3012 {
3013   return g_object_new (HILDON_TYPE_PANNABLE_AREA, NULL);
3014 }
3015
3016 /**
3017  * hildon_pannable_area_new_full:
3018  * @mode: #HildonPannableAreaMode
3019  * @enabled: Value for the enabled property
3020  * @vel_min: Value for the velocity-min property
3021  * @vel_max: Value for the velocity-max property
3022  * @decel: Value for the deceleration property
3023  * @sps: Value for the sps property
3024  *
3025  * Create a new #HildonPannableArea widget and set various properties
3026  *
3027  * returns: the newly create #HildonPannableArea
3028  *
3029  * Since: 2.2
3030  */
3031
3032 GtkWidget *
3033 hildon_pannable_area_new_full (gint mode, gboolean enabled,
3034                                gdouble vel_min, gdouble vel_max,
3035                                gdouble decel, guint sps)
3036 {
3037   return g_object_new (HILDON_TYPE_PANNABLE_AREA,
3038                        "mode", mode,
3039                        "enabled", enabled,
3040                        "velocity_min", vel_min,
3041                        "velocity_max", vel_max,
3042                        "deceleration", decel, "sps", sps, NULL);
3043 }
3044
3045 /**
3046  * hildon_pannable_area_add_with_viewport:
3047  * @area: A #HildonPannableArea
3048  * @child: Child widget to add to the viewport
3049  *
3050  * Convenience function used to add a child to a #GtkViewport, and add the
3051  * viewport to the scrolled window.
3052  *
3053  * Since: 2.2
3054  */
3055
3056 void
3057 hildon_pannable_area_add_with_viewport (HildonPannableArea * area,
3058                                         GtkWidget * child)
3059 {
3060   GtkBin *bin;
3061   GtkWidget *viewport;
3062
3063   g_return_if_fail (HILDON_IS_PANNABLE_AREA (area));
3064   g_return_if_fail (GTK_IS_WIDGET (child));
3065   g_return_if_fail (child->parent == NULL);
3066
3067   bin = GTK_BIN (area);
3068
3069   if (bin->child != NULL)
3070     {
3071       g_return_if_fail (GTK_IS_VIEWPORT (bin->child));
3072       g_return_if_fail (GTK_BIN (bin->child)->child == NULL);
3073
3074       viewport = bin->child;
3075     }
3076   else
3077     {
3078       HildonPannableAreaPrivate *priv = area->priv;
3079
3080       viewport = gtk_viewport_new (priv->hadjust,
3081                                    priv->vadjust);
3082       gtk_viewport_set_shadow_type (GTK_VIEWPORT (viewport), GTK_SHADOW_NONE);
3083       gtk_container_add (GTK_CONTAINER (area), viewport);
3084     }
3085
3086   gtk_widget_show (viewport);
3087   gtk_container_add (GTK_CONTAINER (viewport), child);
3088 }
3089
3090 /**
3091  * hildon_pannable_area_scroll_to:
3092  * @area: A #HildonPannableArea.
3093  * @x: The x coordinate of the destination point or -1 to ignore this axis.
3094  * @y: The y coordinate of the destination point or -1 to ignore this axis.
3095  *
3096  * Smoothly scrolls @area to ensure that (@x, @y) is a visible point
3097  * on the widget. To move in only one coordinate, you must set the other one
3098  * to -1. Notice that, in %HILDON_PANNABLE_AREA_MODE_PUSH mode, this function
3099  * works just like hildon_pannable_area_jump_to().
3100  *
3101  * This function is useful if you need to present the user with a particular
3102  * element inside a scrollable widget, like #GtkTreeView. For instance,
3103  * the following example shows how to scroll inside a #GtkTreeView to
3104  * make visible an item, indicated by the #GtkTreeIter @iter.
3105  *
3106  * <example>
3107  * <programlisting>
3108  *  GtkTreePath *path;
3109  *  GdkRectangle *rect;
3110  *  <!-- -->
3111  *  path = gtk_tree_model_get_path (model, &amp;iter);
3112  *  gtk_tree_view_get_background_area (GTK_TREE_VIEW (treeview),
3113  *                                     path, NULL, &amp;rect);
3114  *  gtk_tree_view_convert_bin_window_to_tree_coords (GTK_TREE_VIEW (treeview),
3115  *                                                   0, rect.y, NULL, &amp;y);
3116  *  hildon_pannable_area_scroll_to (panarea, -1, y);
3117  *  gtk_tree_path_free (path);
3118  * </programlisting>
3119  * </example>
3120  *
3121  * If you want to present a child widget in simpler scenarios,
3122  * use hildon_pannable_area_scroll_to_child() instead.
3123  *
3124  * There is a precondition to this function: the widget must be
3125  * already realized. Check the hildon_pannable_area_jump_to_child() for
3126  * more tips regarding how to call this function during
3127  * initialization.
3128  *
3129  * Since: 2.2
3130  **/
3131 void
3132 hildon_pannable_area_scroll_to (HildonPannableArea *area,
3133                                 const gint x, const gint y)
3134 {
3135   HildonPannableAreaPrivate *priv;
3136   gint width, height;
3137   gint dist_x, dist_y;
3138   gboolean hscroll_visible, vscroll_visible;
3139
3140   g_return_if_fail (GTK_WIDGET_REALIZED (area));
3141   g_return_if_fail (HILDON_IS_PANNABLE_AREA (area));
3142
3143   priv = area->priv;
3144
3145   vscroll_visible = (priv->vadjust->upper - priv->vadjust->lower >
3146              priv->vadjust->page_size);
3147   hscroll_visible = (priv->hadjust->upper - priv->hadjust->lower >
3148              priv->hadjust->page_size);
3149
3150   if (((!vscroll_visible)&&(!hscroll_visible)) ||
3151       (x == -1 && y == -1)) {
3152     return;
3153   }
3154
3155   if (priv->mode == HILDON_PANNABLE_AREA_MODE_PUSH)
3156     hildon_pannable_area_jump_to (area, x, y);
3157
3158   width = priv->hadjust->upper - priv->hadjust->lower;
3159   height = priv->vadjust->upper - priv->vadjust->lower;
3160
3161   g_return_if_fail (x < width || y < height);
3162
3163   if ((x > -1)&&(hscroll_visible)) {
3164     priv->scroll_to_x = x - priv->hadjust->page_size/2;
3165     dist_x = priv->scroll_to_x - priv->hadjust->value;
3166     if (dist_x == 0) {
3167       priv->scroll_to_x = -1;
3168     } else {
3169       priv->vel_x = - dist_x/priv->vel_factor;
3170     }
3171   } else {
3172     priv->scroll_to_x = -1;
3173   }
3174
3175   if ((y > -1)&&(vscroll_visible)) {
3176     priv->scroll_to_y = y - priv->vadjust->page_size/2;
3177     dist_y = priv->scroll_to_y - priv->vadjust->value;
3178     if (dist_y == 0) {
3179       priv->scroll_to_y = -1;
3180     } else {
3181       priv->vel_y = - dist_y/priv->vel_factor;
3182     }
3183   } else {
3184     priv->scroll_to_y = y;
3185   }
3186
3187   if ((priv->scroll_to_y == -1) && (priv->scroll_to_y == -1)) {
3188     return;
3189   }
3190
3191   hildon_pannable_area_launch_fade_timeout (area, 1.0);
3192
3193   if (!priv->idle_id)
3194     priv->idle_id = gdk_threads_add_timeout ((gint) (1000.0 / (gdouble) priv->sps),
3195                                              (GSourceFunc)
3196                                              hildon_pannable_area_timeout, area);
3197 }
3198
3199 /**
3200  * hildon_pannable_area_jump_to:
3201  * @area: A #HildonPannableArea.
3202  * @x: The x coordinate of the destination point or -1 to ignore this axis.
3203  * @y: The y coordinate of the destination point or -1 to ignore this axis.
3204  *
3205  * Jumps the position of @area to ensure that (@x, @y) is a visible
3206  * point in the widget. In order to move in only one coordinate, you
3207  * must set the other one to -1. See hildon_pannable_area_scroll_to()
3208  * function for an example of how to calculate the position of
3209  * children in scrollable widgets like #GtkTreeview.
3210  *
3211  * There is a precondition to this function: the widget must be
3212  * already realized. Check the hildon_pannable_area_jump_to_child() for
3213  * more tips regarding how to call this function during
3214  * initialization.
3215  *
3216  * Since: 2.2
3217  **/
3218 void
3219 hildon_pannable_area_jump_to (HildonPannableArea *area,
3220                               const gint x, const gint y)
3221 {
3222   HildonPannableAreaPrivate *priv;
3223   gint width, height;
3224   gdouble hv, vv;
3225
3226   g_return_if_fail (HILDON_IS_PANNABLE_AREA (area));
3227   g_return_if_fail (GTK_WIDGET_REALIZED (area));
3228   g_return_if_fail (x >= -1 && y >= -1);
3229
3230   if (x == -1 && y == -1) {
3231     return;
3232   }
3233
3234   priv = area->priv;
3235
3236   width = priv->hadjust->upper - priv->hadjust->lower;
3237   height = priv->vadjust->upper - priv->vadjust->lower;
3238
3239   g_return_if_fail (x < width || y < height);
3240
3241   hv = priv->hadjust->value;
3242   vv = priv->vadjust->value;
3243
3244   if (x != -1) {
3245     gdouble jump_to = x - priv->hadjust->page_size/2;
3246
3247     priv->hadjust->value = CLAMP (jump_to,
3248                                   priv->hadjust->lower,
3249                                   priv->hadjust->upper -
3250                                   priv->hadjust->page_size);
3251   }
3252
3253   if (y != -1) {
3254     gdouble jump_to =  y - priv->vadjust->page_size/2;
3255
3256     priv->vadjust->value = CLAMP (jump_to,
3257                                   priv->vadjust->lower,
3258                                   priv->vadjust->upper -
3259                                   priv->vadjust->page_size);
3260   }
3261
3262   if (hv != priv->hadjust->value)
3263     gtk_adjustment_value_changed (priv->hadjust);
3264
3265   if (vv != priv->vadjust->value)
3266     gtk_adjustment_value_changed (priv->vadjust);
3267
3268   priv->scroll_indicator_alpha = 1.0;
3269
3270   if (priv->scroll_indicator_timeout) {
3271     g_source_remove (priv->scroll_indicator_timeout);
3272     priv->scroll_indicator_timeout = 0;
3273   }
3274
3275   if (priv->idle_id) {
3276     priv->vel_x = 0.0;
3277     priv->vel_y = 0.0;
3278     priv->overshooting_x = 0;
3279     priv->overshooting_y = 0;
3280
3281     if ((priv->overshot_dist_x>0)||(priv->overshot_dist_y>0)) {
3282       priv->overshot_dist_x = 0;
3283       priv->overshot_dist_y = 0;
3284
3285       gtk_widget_queue_resize (GTK_WIDGET (area));
3286     }
3287
3288     g_signal_emit (area, pannable_area_signals[PANNING_FINISHED], 0);
3289     g_source_remove (priv->idle_id);
3290     priv->idle_id = 0;
3291   }
3292 }
3293
3294 /**
3295  * hildon_pannable_area_scroll_to_child:
3296  * @area: A #HildonPannableArea.
3297  * @child: A #GtkWidget, descendant of @area.
3298  *
3299  * Smoothly scrolls until @child is visible inside @area. @child must
3300  * be a descendant of @area. If you need to scroll inside a scrollable
3301  * widget, e.g., #GtkTreeview, see hildon_pannable_area_scroll_to().
3302  *
3303  * There is a precondition to this function: the widget must be
3304  * already realized. Check the hildon_pannable_area_jump_to_child() for
3305  * more tips regarding how to call this function during
3306  * initialization.
3307  *
3308  * Since: 2.2
3309  **/
3310 void
3311 hildon_pannable_area_scroll_to_child (HildonPannableArea *area, GtkWidget *child)
3312 {
3313   GtkWidget *bin_child;
3314   gint x, y;
3315
3316   g_return_if_fail (GTK_WIDGET_REALIZED (area));
3317   g_return_if_fail (HILDON_IS_PANNABLE_AREA (area));
3318   g_return_if_fail (GTK_IS_WIDGET (child));
3319   g_return_if_fail (gtk_widget_is_ancestor (child, GTK_WIDGET (area)));
3320
3321   if (GTK_BIN (area)->child == NULL)
3322     return;
3323
3324   /* We need to get to check the child of the inside the area */
3325   bin_child = GTK_BIN (area)->child;
3326
3327   /* we check if we added a viewport */
3328   if (GTK_IS_VIEWPORT (bin_child)) {
3329     bin_child = GTK_BIN (bin_child)->child;
3330   }
3331
3332   if (gtk_widget_translate_coordinates (child, bin_child, 0, 0, &x, &y))
3333     hildon_pannable_area_scroll_to (area, x, y);
3334 }
3335
3336 /**
3337  * hildon_pannable_area_jump_to_child:
3338  * @area: A #HildonPannableArea.
3339  * @child: A #GtkWidget, descendant of @area.
3340  *
3341  * Jumps to make sure @child is visible inside @area. @child must
3342  * be a descendant of @area. If you want to move inside a scrollable
3343  * widget, like, #GtkTreeview, see hildon_pannable_area_scroll_to().
3344  *
3345  * There is a precondition to this function: the widget must be
3346  * already realized. You can control if the widget is ready with the
3347  * GTK_WIDGET_REALIZED macro. If you want to call this function during
3348  * the initialization process of the widget do it inside a callback to
3349  * the ::realize signal, using g_signal_connect_after() function.
3350  *
3351  * Since: 2.2
3352  **/
3353 void
3354 hildon_pannable_area_jump_to_child (HildonPannableArea *area, GtkWidget *child)
3355 {
3356   GtkWidget *bin_child;
3357   gint x, y;
3358
3359   g_return_if_fail (GTK_WIDGET_REALIZED (area));
3360   g_return_if_fail (HILDON_IS_PANNABLE_AREA (area));
3361   g_return_if_fail (GTK_IS_WIDGET (child));
3362   g_return_if_fail (gtk_widget_is_ancestor (child, GTK_WIDGET (area)));
3363
3364   if (gtk_bin_get_child (GTK_BIN (area)) == NULL)
3365     return;
3366
3367   /* We need to get to check the child of the inside the area */
3368   bin_child = gtk_bin_get_child (GTK_BIN (area));
3369
3370   /* we check if we added a viewport */
3371   if (GTK_IS_VIEWPORT (bin_child)) {
3372     bin_child = gtk_bin_get_child (GTK_BIN (bin_child));
3373   }
3374
3375   if (gtk_widget_translate_coordinates (child, bin_child, 0, 0, &x, &y))
3376     hildon_pannable_area_jump_to (area, x, y);
3377 }
3378
3379 /**
3380  * hildon_pannable_get_child_widget_at:
3381  * @area: A #HildonPannableArea.
3382  * @x: horizontal coordinate of the point
3383  * @y: vertical coordinate of the point
3384  *
3385  * Get the widget at the point (x, y) inside the pannable area. In
3386  * case no widget found it returns NULL.
3387  *
3388  * returns: the #GtkWidget if we find a widget, NULL in any other case
3389  *
3390  * Since: 2.2
3391  **/
3392 GtkWidget*
3393 hildon_pannable_get_child_widget_at (HildonPannableArea *area,
3394                                      gdouble x, gdouble y)
3395 {
3396   GdkWindow *window = NULL;
3397   GtkWidget *child_widget = NULL;
3398
3399   window = hildon_pannable_area_get_topmost
3400     (gtk_bin_get_child (GTK_BIN (area))->window,
3401      x, y, NULL, NULL, GDK_ALL_EVENTS_MASK);
3402
3403   gdk_window_get_user_data (window, (gpointer) &child_widget);
3404
3405   return child_widget;
3406 }
3407
3408
3409 /**
3410  * hildon_pannable_area_get_hadjustment:
3411  * @area: A #HildonPannableArea.
3412  *
3413  * Returns the horizontal adjustment. This adjustment is the internal
3414  * widget adjustment used to control the animations. Do not modify it
3415  * directly to change the position of the pannable, to do that use the
3416  * pannable API. If you modify the object directly it could cause
3417  * artifacts in the animations.
3418  *
3419  * returns: The horizontal #GtkAdjustment
3420  *
3421  * Since: 2.2
3422  **/
3423 GtkAdjustment*
3424 hildon_pannable_area_get_hadjustment            (HildonPannableArea *area)
3425 {
3426
3427   g_return_val_if_fail (HILDON_IS_PANNABLE_AREA (area), NULL);
3428
3429   return area->priv->hadjust;
3430 }
3431
3432 /**
3433  * hildon_pannable_area_get_vadjustment:
3434  * @area: A #HildonPannableArea.
3435  *
3436  * Returns the vertical adjustment. This adjustment is the internal
3437  * widget adjustment used to control the animations. Do not modify it
3438  * directly to change the position of the pannable, to do that use the
3439  * pannable API. If you modify the object directly it could cause
3440  * artifacts in the animations.
3441  *
3442  * returns: The vertical #GtkAdjustment
3443  *
3444  * Since: 2.2
3445  **/
3446 GtkAdjustment*
3447 hildon_pannable_area_get_vadjustment            (HildonPannableArea *area)
3448 {
3449   g_return_val_if_fail (HILDON_IS_PANNABLE_AREA (area), NULL);
3450
3451   return area->priv->vadjust;
3452 }
3453
3454
3455 /**
3456  * hildon_pannable_area_get_size_request_policy:
3457  * @area: A #HildonPannableArea.
3458  *
3459  * This function returns the current size request policy of the
3460  * widget. That policy controls the way the size_request is done in
3461  * the pannable area. Check
3462  * hildon_pannable_area_set_size_request_policy() for a more detailed
3463  * explanation.
3464  *
3465  * returns: the policy is currently being used in the widget
3466  * #HildonSizeRequestPolicy.
3467  *
3468  * Since: 2.2
3469  **/
3470 HildonSizeRequestPolicy
3471 hildon_pannable_area_get_size_request_policy (HildonPannableArea *area)
3472 {
3473   HildonPannableAreaPrivate *priv;
3474
3475   g_return_val_if_fail (HILDON_IS_PANNABLE_AREA (area), FALSE);
3476
3477   priv = area->priv;
3478
3479   return priv->size_request_policy;
3480 }
3481
3482 /**
3483  * hildon_pannable_area_set_size_request_policy:
3484  * @area: A #HildonPannableArea.
3485  * @size_request_policy: One of the allowed #HildonSizeRequestPolicy
3486  *
3487  * This function sets the pannable area size request policy. That
3488  * policy controls the way the size_request is done in the pannable
3489  * area. Pannable can use the size request of its children
3490  * (#HILDON_SIZE_REQUEST_CHILDREN) or the minimum size required for
3491  * the area itself (#HILDON_SIZE_REQUEST_MINIMUM), the latter is the
3492  * default. Recall this size depends on the scrolling policy you are
3493  * requesting to the pannable area, if you set #GTK_POLICY_NEVER this
3494  * parameter will not have any effect with
3495  * #HILDON_SIZE_REQUEST_MINIMUM set.
3496  *
3497  * Since: 2.2
3498  *
3499  * Deprecated: This method and the policy request is deprecated, DO
3500  * NOT use it in future code, the only policy properly supported in
3501  * gtk+ nowadays is the minimum size. Use #gtk_window_set_default_size
3502  * or #gtk_window_set_geometry_hints with the proper size in your case
3503  * to define the height of your dialogs.
3504  **/
3505 void
3506 hildon_pannable_area_set_size_request_policy (HildonPannableArea *area,
3507                                               HildonSizeRequestPolicy size_request_policy)
3508 {
3509   HildonPannableAreaPrivate *priv;
3510
3511   g_return_if_fail (HILDON_IS_PANNABLE_AREA (area));
3512
3513   priv = area->priv;
3514
3515   if (priv->size_request_policy == size_request_policy)
3516     return;
3517
3518   priv->size_request_policy = size_request_policy;
3519
3520   gtk_widget_queue_resize (GTK_WIDGET (area));
3521
3522   g_object_notify (G_OBJECT (area), "size-request-policy");
3523 }
3524
3525 /**
3526  * hildon_pannable_area_get_center_on_child_focus
3527  * @area: A #HildonPannableArea
3528  *
3529  * Gets the @area #HildonPannableArea:center-on-child-focus property
3530  * value.
3531  *
3532  * See #HildonPannableArea:center-on-child-focus for more information.
3533  *
3534  * Returns: the @area #HildonPannableArea:center-on-child-focus value
3535  *
3536  * Since: 2.2
3537  **/
3538 gboolean
3539 hildon_pannable_area_get_center_on_child_focus  (HildonPannableArea *area)
3540 {
3541   g_return_val_if_fail (HILDON_IS_PANNABLE_AREA (area), FALSE);
3542
3543   return area->priv->center_on_child_focus;
3544 }
3545
3546 /**
3547  * hildon_pannable_area_set_center_on_child_focus
3548  * @area: A #HildonPannableArea
3549  * @value: the new value
3550  *
3551  * Sets the @area #HildonPannableArea:center-on-child-focus property
3552  * to @value.
3553  *
3554  * See #HildonPannableArea:center-on-child-focus for more information.
3555  *
3556  * Since: 2.2
3557  **/
3558 void
3559 hildon_pannable_area_set_center_on_child_focus  (HildonPannableArea *area,
3560                                                  gboolean value)
3561 {
3562   g_return_if_fail (HILDON_IS_PANNABLE_AREA (area));
3563
3564   area->priv->center_on_child_focus = value;
3565 }