dfed306fa7289c83ca62e1a38e51af86ace47ef4
[framework/web/webkit-efl.git] / Source / WebKit2 / UIProcess / API / efl / tizen / TextSelectionHandle.cpp
1 /*
2  * Copyright (C) 2012 Samsung Electronics
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27
28 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
29 #include "TextSelectionHandle.h"
30
31 #include <Edje.h>
32
33 using namespace WebCore;
34
35 namespace WebKit {
36
37 Ecore_Job* TextSelectionHandle::s_job = 0;
38
39 TextSelectionHandle::TextSelectionHandle(Evas_Object* object, const char* themePath, const char* part, bool isLeft, TextSelection* textSelection)
40     : m_isLeft(isLeft)
41     , m_widget(object)
42     , m_textSelection(textSelection)
43     , m_position(IntPoint(0, 0))
44     , m_isMouseDowned(false)
45     , m_isTop(false)
46 {
47     Evas* evas = evas_object_evas_get(object);
48     m_icon = edje_object_add(evas);
49
50     if (!m_icon)
51         return;
52
53     if (!edje_object_file_set(m_icon, themePath, part))
54         return;
55
56     edje_object_signal_emit(m_icon, "edje,focus,in", "edje");
57     edje_object_signal_emit(m_icon, "elm,state,bottom", "elm");
58     evas_object_smart_member_add(m_icon, object);
59
60     evas_object_propagate_events_set(m_icon, false);
61     evas_object_event_callback_add(m_icon, EVAS_CALLBACK_MOUSE_DOWN, onMouseDown, this);
62     evas_object_event_callback_add(m_icon, EVAS_CALLBACK_MOUSE_MOVE, onMouseMove, this);
63     evas_object_event_callback_add(m_icon, EVAS_CALLBACK_MOUSE_UP, onMouseUp, this);
64 }
65
66 TextSelectionHandle::~TextSelectionHandle()
67 {
68     evas_object_event_callback_del(m_icon, EVAS_CALLBACK_MOUSE_DOWN, onMouseDown);
69     evas_object_event_callback_del(m_icon, EVAS_CALLBACK_MOUSE_MOVE, onMouseMove);
70     evas_object_event_callback_del(m_icon, EVAS_CALLBACK_MOUSE_UP, onMouseUp);
71     evas_object_del(m_icon);
72     if (s_job) {
73         ecore_job_del(s_job);
74         s_job = 0;
75     }
76 }
77
78 void TextSelectionHandle::move(const IntPoint& point, const IntRect& selectionRect)
79 {
80     IntPoint movePoint = point;
81     int x, y, deviceWidth, deviceHeight;
82     evas_object_geometry_get(m_widget, &x, &y, &deviceWidth, &deviceHeight);
83     IntRect handleRect = getHandleRect();
84
85     if ((movePoint.y() + handleRect.height()) > (y + deviceHeight)) {
86         movePoint.setY(movePoint.y() - selectionRect.height());
87         edje_object_signal_emit(m_icon, "elm,state,top", "elm");
88         m_isTop = true;
89     } else {
90         edje_object_signal_emit(m_icon, "elm,state,bottom", "elm");
91         m_isTop = false;
92     }
93
94     evas_object_move(m_icon, movePoint.x(), movePoint.y());
95     m_position = movePoint;
96 }
97
98 void TextSelectionHandle::show()
99 {
100     evas_object_show(m_icon);
101 }
102
103 void TextSelectionHandle::hide()
104 {
105     evas_object_hide(m_icon);
106 }
107
108 #if ENABLE(TIZEN_WEBKIT2_FOR_MOVING_TEXT_SELECTION_HANDLE_FROM_OSP)
109 const IntRect TextSelectionHandle::getHandleRect()
110 {
111     int x, y;
112     evas_object_geometry_get(m_icon, &x, &y, 0, 0);
113
114     int partX, partY, partWidth, partHeight;
115     edje_object_part_geometry_get(m_icon, "handle", &partX, &partY, &partWidth, &partHeight);
116
117     WebCore::IntRect handleRect(x + partX, y + partY, partWidth, partHeight);
118     return handleRect;
119 }
120 #endif
121
122 // callbacks
123 void TextSelectionHandle::mouseDown(const IntPoint& point)
124 {
125 #if ENABLE(TIZEN_WEBKIT2_FOR_MOVING_TEXT_SELECTION_HANDLE_FROM_OSP)
126     edje_object_signal_emit(m_icon, "mouse,down,1", "handle");
127 #endif
128
129     setIsMouseDowned(true);
130     setFirstDownMousePosition(point);
131     setMousePosition(point);
132     m_textSelection->handleMouseDown(this, m_mousePosition);
133 }
134
135 void TextSelectionHandle::mouseMove(const IntPoint& point)
136 {
137     if (!m_textSelection->isMagnifierVisible())
138         return;
139
140     setMousePosition(point);
141
142     if (!s_job)
143        s_job = ecore_job_add(update, this);
144 }
145
146 void TextSelectionHandle::mouseUp()
147 {
148 #if ENABLE(TIZEN_WEBKIT2_FOR_MOVING_TEXT_SELECTION_HANDLE_FROM_OSP)
149     edje_object_signal_emit(m_icon, "mouse,up,1", "handle");
150 #endif
151
152     m_textSelection->handleMouseUp(this, m_mousePosition);
153 }
154
155 void TextSelectionHandle::onMouseDown(void* data, Evas*, Evas_Object*, void* eventInfo)
156 {
157     Evas_Event_Mouse_Down* event = static_cast<Evas_Event_Mouse_Down*>(eventInfo);
158     TextSelectionHandle* handle = static_cast<TextSelectionHandle*>(data);
159
160     handle->mouseDown(IntPoint(event->canvas.x, event->canvas.y));
161 }
162
163 void TextSelectionHandle::onMouseMove(void* data, Evas*, Evas_Object*, void* eventInfo)
164 {
165     Evas_Event_Mouse_Move* event = static_cast<Evas_Event_Mouse_Move*>(eventInfo);
166     TextSelectionHandle* handle = static_cast<TextSelectionHandle*>(data);
167
168     handle->mouseMove(IntPoint(event->cur.canvas.x, event->cur.canvas.y));
169 }
170
171 void TextSelectionHandle::onMouseUp(void* data, Evas*, Evas_Object*, void* eventInfo)
172 {
173     TextSelectionHandle* handle = static_cast<TextSelectionHandle*>(data);
174
175     handle->mouseUp();
176 }
177
178 // job
179 void TextSelectionHandle::update(void* data)
180 {
181     TextSelectionHandle* handle = static_cast<TextSelectionHandle*>(data);
182     int deltaX = handle->m_mousePosition.x() - handle->m_firstDownMousePosition.x();
183     int deltaY = handle->m_mousePosition.y() - handle->m_firstDownMousePosition.y();
184
185     if (deltaX || deltaY) {
186         WebCore::IntPoint movePosition;
187
188         movePosition.setX(handle->m_basePositionForMove.x() + deltaX);
189         movePosition.setY(handle->m_basePositionForMove.y() + deltaY);
190
191         handle->m_textSelection->handleMouseMove(handle, movePosition);
192     }
193     TextSelectionHandle::s_job = 0;
194 }
195
196 } // namespace WebKit
197
198 #endif // TIZEN_WEBKIT2_TEXT_SELECTION