Changed the postion of context menu to avaliable space
[framework/web/webkit-efl.git] / Source / WebKit2 / UIProcess / tizen / WebContextMenuProxyTizen.h
1 /*
2  * Copyright (C) 2011 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 #ifndef WebContextMenuProxyTizen_h
27 #define WebContextMenuProxyTizen_h
28
29 #include "PageClientImpl.h"
30 #include "WebContextMenuProxy.h"
31 #include <WebCore/IntPoint.h>
32
33 namespace WebKit {
34
35 class WebContextMenuItemData;
36 class WebPageProxy;
37
38 class WebContextMenuProxyTizen : public WebContextMenuProxy {
39 public:
40     static PassRefPtr<WebContextMenuProxyTizen> create(Evas_Object* webView, WebPageProxy* page, PageClientImpl* pageClientImpl)
41     {
42         return adoptRef(new WebContextMenuProxyTizen(webView, page, pageClientImpl));
43     }
44     ~WebContextMenuProxyTizen();
45
46     virtual void showContextMenu(const WebCore::IntPoint&, const Vector<WebContextMenuItemData>&);
47     virtual void hideContextMenu();
48
49 #if ENABLE(TIZEN_WEBKIT2_CONTEXT_MENU_TEXT_SELECTION_MODE)
50     virtual WebCore::IntPoint& positionForSelection();
51 #endif
52
53 private:
54     WebContextMenuProxyTizen(Evas_Object*, WebPageProxy*, PageClientImpl*);
55 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
56     static void contextMenuItemSelectedCallback(void* data, Evas_Object* obj, void* eventInfo);
57     static void contextMenuPopupDismissedCallback(void* data, Evas_Object* obj, void* eventInfo);
58
59 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
60     static Eina_Bool contextMenuTimerCallback(void *data);
61     void startContextMenuTimer();
62 #endif
63     void createEflMenu(const Vector<WebContextMenuItemData>&);
64 #else
65     void createEflMenu();
66 #endif
67     WebPageProxy* m_page;
68     PageClientImpl* m_pageClientImpl;
69     WebCore::IntPoint m_popupPosition;
70
71 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
72     Evas_Object* m_popup;
73     Evas_Object* m_webView;
74     Vector<WebContextMenuItemData> m_items;
75 #endif
76
77 #if ENABLE(TIZEN_WEBKIT2_CONTEXT_MENU_TEXT_SELECTION_MODE)
78     WebCore::IntPoint m_positionForSelection;
79 #endif
80
81 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
82     bool m_isContextMenuForTextSelection;
83     Ecore_Timer* m_contextShowTimer;
84 #endif
85 };
86
87
88 } // namespace WebKit
89
90 #endif // WebContextMenuProxyTizen_h