summaryrefslogtreecommitdiff
path: root/clients
diff options
context:
space:
mode:
authorXiong Zhang <xiong.y.zhang@intel.com>2014-06-12 11:06:26 +0800
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2014-09-22 10:19:44 +0300
commit382de46a2fc769d7cd6871399558d31d3836bbc1 (patch)
treebaac6266c1e0c6ccacf6399b46dbb9acd0e2bbbd /clients
parentd1be3128d0d6b6dc6d301bb2bd674697bd64dafc (diff)
clients: Maximize window when double touch on title bar
Signed-off-by: Xiong Zhang <xiong.y.zhang@intel.com>
Diffstat (limited to 'clients')
-rw-r--r--clients/window.c26
1 files changed, 24 insertions, 2 deletions
diff --git a/clients/window.c b/clients/window.c
index e44d65c9..139c7f90 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -370,6 +370,7 @@ struct window_frame {
uint32_t last_time;
uint32_t did_double, double_click;
+ int32_t last_id, double_id;
};
struct menu {
@@ -2429,7 +2430,23 @@ frame_touch_down_handler(struct widget *widget, struct input *input,
{
struct window_frame *frame = data;
- frame_touch_down(frame->frame, input, id, x, y);
+ frame->double_click = 0;
+ if (time - frame->last_time <= DOUBLE_CLICK_PERIOD &&
+ frame->last_id == id) {
+ frame->double_click = 1;
+ frame->did_double = 1;
+ frame->double_id = id;
+ } else
+ frame->did_double = 0;
+
+ frame->last_time = time;
+ frame->last_id = id;
+
+ if (frame->double_click)
+ frame_double_touch_down(frame->frame, input, id, x, y);
+ else
+ frame_touch_down(frame->frame, input, id, x, y);
+
frame_handle_status(frame, input, time, THEME_LOCATION_CLIENT_AREA);
}
@@ -2440,7 +2457,12 @@ frame_touch_up_handler(struct widget *widget,
{
struct window_frame *frame = data;
- frame_touch_up(frame->frame, input, id);
+ if (frame->double_id == id && frame->did_double) {
+ frame->did_double = 0;
+ frame->double_id = 0;
+ frame_double_touch_up(frame->frame, input, id);
+ } else
+ frame_touch_up(frame->frame, input, id);
frame_handle_status(frame, input, time, THEME_LOCATION_CLIENT_AREA);
}