1 /*
2 * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
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 #include "config.h"
21 #include "QtAbstractWebPopup.h"
22
23 #include "PopupMenuClient.h"
24
25
26 namespace WebCore {
27
QtAbstractWebPopup()28 QtAbstractWebPopup::QtAbstractWebPopup()
29 : m_popupClient(0)
30 , m_pageClient(0)
31 , m_currentIndex(-1)
32 {
33 }
34
~QtAbstractWebPopup()35 QtAbstractWebPopup::~QtAbstractWebPopup()
36 {
37 }
38
popupDidHide()39 void QtAbstractWebPopup::popupDidHide()
40 {
41 Q_ASSERT(m_popupClient);
42 m_popupClient->popupDidHide();
43 }
44
valueChanged(int index)45 void QtAbstractWebPopup::valueChanged(int index)
46 {
47 Q_ASSERT(m_popupClient);
48 m_popupClient->valueChanged(index);
49 }
50
itemType(int idx) const51 QtAbstractWebPopup::ItemType QtAbstractWebPopup::itemType(int idx) const
52 {
53 if (m_popupClient->itemIsSeparator(idx))
54 return Separator;
55 if (m_popupClient->itemIsLabel(idx))
56 return Group;
57 return Option;
58 }
59
60 } // namespace WebCore
61