cd7bdd5c7c6a853c838fb1968645854a078dd4ce
[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     void createEflMenu(const Vector<WebContextMenuItemData>&);
58 #else
59     void createEflMenu();
60 #endif
61     WebPageProxy* m_page;
62     PageClientImpl* m_pageClientImpl;
63     WebCore::IntPoint m_popupPosition;
64
65 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
66     Evas_Object* m_popup;
67     Evas_Object* m_webView;
68     Vector<WebContextMenuItemData> m_items;
69 #endif
70
71 #if ENABLE(TIZEN_WEBKIT2_CONTEXT_MENU_TEXT_SELECTION_MODE)
72     WebCore::IntPoint m_positionForSelection;
73 #endif
74
75 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
76     bool m_isContextMenuForTextSelection;
77 #endif
78 };
79
80
81 } // namespace WebKit
82
83 #endif // WebContextMenuProxyTizen_h