Merge "[Release] Webkit2-efl-123997_0.11.75" into tizen_2.2
[framework/web/webkit-efl.git] / Source / WebKit2 / WebProcess / WebPage / WebContextMenu.h
1 /*
2  * Copyright (C) 2010 Apple Inc. All rights reserved.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB.  If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  *
19  */
20
21 #ifndef WebContextMenu_h
22 #define WebContextMenu_h
23
24 #if ENABLE(CONTEXT_MENUS)
25
26 #include "WebContextMenuItemData.h"
27
28 #include <wtf/PassRefPtr.h>
29 #include <wtf/RefCounted.h>
30
31 namespace WebKit {
32
33 class WebPage;
34
35 class WebContextMenu : public RefCounted<WebContextMenu> {
36 public:
37     static PassRefPtr<WebContextMenu> create(WebPage* page) 
38     {
39         return adoptRef(new WebContextMenu(page));
40     }
41     
42     ~WebContextMenu();
43
44     void show();
45     void itemSelected(const WebContextMenuItemData&);
46 #if ENABLE(TIZEN_CONTEXT_CLICK)
47     Vector<WebContextMenuItemData> items() const;
48 #endif
49
50 private:
51     WebContextMenu(WebPage*);
52     
53     WebPage* m_page;
54 };
55
56 } // namespace WebKit
57
58 #endif // ENABLE(CONTEXT_MENUS)
59 #endif // WebPopupMenu_h