~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/platform/efl/ContextMenuItemEfl.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2006 Zack Rusin <zack@kde.org>
 
3
 * Copyright (C) 2007 Staikos Computing Services Inc. <info@staikos.net>
 
4
 * Copyright (C) 2008 INdT - Instituto Nokia de Tecnologia
 
5
 * Copyright (C) 2009-2010 ProFUSION embedded systems
 
6
 * Copyright (C) 2011-2012 Samsung Electronics
 
7
 *
 
8
 * Redistribution and use in source and binary forms, with or without
 
9
 * modification, are permitted provided that the following conditions
 
10
 * are met:
 
11
 * 1. Redistributions of source code must retain the above copyright
 
12
 *    notice, this list of conditions and the following disclaimer.
 
13
 * 2. Redistributions in binary form must reproduce the above copyright
 
14
 *    notice, this list of conditions and the following disclaimer in the
 
15
 *    documentation and/or other materials provided with the distribution.
 
16
 *
 
17
 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
 
18
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
19
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
20
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
 
21
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 
22
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
23
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
24
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 
25
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
27
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 */
 
29
 
 
30
#include "config.h"
 
31
 
 
32
#if ENABLE(CONTEXT_MENUS)
 
33
 
 
34
#include "ContextMenuItem.h"
 
35
 
 
36
#include "ContextMenu.h"
 
37
#include "NotImplemented.h"
 
38
 
 
39
namespace WebCore {
 
40
 
 
41
#if USE(CROSS_PLATFORM_CONTEXT_MENUS)
 
42
void* ContextMenuItem::nativeMenuItem() const
 
43
{
 
44
    notImplemented();
 
45
    return 0;
 
46
}
 
47
#else
 
48
ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu*)
 
49
{
 
50
    m_platformDescription.type = type;
 
51
    m_platformDescription.action = action;
 
52
    m_platformDescription.title = title;
 
53
}
 
54
 
 
55
ContextMenuItem::ContextMenuItem(ContextMenuAction, const String&, bool, bool, Vector<ContextMenuItem>&)
 
56
{
 
57
}
 
58
 
 
59
ContextMenuItem::ContextMenuItem(ContextMenu*)
 
60
{
 
61
}
 
62
 
 
63
ContextMenuItem::ContextMenuItem(PlatformMenuItemDescription)
 
64
{
 
65
}
 
66
 
 
67
ContextMenuItem::ContextMenuItem(WebCore::ContextMenuItemType, WebCore::ContextMenuAction, WTF::String const&, bool, bool)
 
68
{
 
69
}
 
70
 
 
71
ContextMenuItem::~ContextMenuItem()
 
72
{
 
73
}
 
74
 
 
75
void ContextMenuItem::setType(ContextMenuItemType type)
 
76
{
 
77
    m_platformDescription.type = type;
 
78
}
 
79
 
 
80
ContextMenuItemType ContextMenuItem::type() const
 
81
{
 
82
    return m_platformDescription.type;
 
83
}
 
84
 
 
85
void ContextMenuItem::setAction(ContextMenuAction action)
 
86
{
 
87
    m_platformDescription.action = action;
 
88
}
 
89
 
 
90
ContextMenuAction ContextMenuItem::action() const
 
91
{
 
92
    return m_platformDescription.action;
 
93
}
 
94
 
 
95
void ContextMenuItem::setTitle(const String& title)
 
96
{
 
97
    m_platformDescription.title = title;
 
98
}
 
99
 
 
100
String ContextMenuItem::title() const
 
101
{
 
102
    return m_platformDescription.title;
 
103
}
 
104
 
 
105
void ContextMenuItem::setChecked(bool checked)
 
106
{
 
107
    m_platformDescription.checked = checked;
 
108
}
 
109
 
 
110
bool ContextMenuItem::checked() const
 
111
{
 
112
    return m_platformDescription.checked;
 
113
}
 
114
 
 
115
void ContextMenuItem::setEnabled(bool enabled)
 
116
{
 
117
    m_platformDescription.enabled = enabled;
 
118
}
 
119
 
 
120
bool ContextMenuItem::enabled() const
 
121
{
 
122
    return m_platformDescription.enabled;
 
123
}
 
124
 
 
125
void ContextMenuItem::setSubMenu(ContextMenu* menu)
 
126
{
 
127
    m_platformDescription.subMenuItems = *menu->platformDescription();
 
128
}
 
129
 
 
130
PlatformMenuDescription ContextMenuItem::platformSubMenu() const
 
131
{
 
132
    return &m_platformDescription.subMenuItems;
 
133
}
 
134
 
 
135
void ContextMenuItem::setSubMenu(Vector<ContextMenuItem>& items)
 
136
{
 
137
    m_platformDescription.subMenuItems = items;
 
138
}
 
139
 
 
140
#endif
 
141
}
 
142
#endif // ENABLE(CONTEXT_MENUS)