blob: 1e42b1a1ec5b2061c3365db90b5613e2ca393737 [file] [log] [blame]
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01001/*
2 * Copyright (c) 2008, 2009, Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met:
8 *
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google Inc. nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32#include "config.h"
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010033#include "PopupMenuChromium.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010034
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010035#include "PopupContainer.h"
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010036#include "core/frame/FrameView.h"
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000037#include "core/frame/LocalFrame.h"
Torne (Richard Coles)09380292014-02-21 12:17:33 +000038#include "core/frame/Settings.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010039
Torne (Richard Coles)09380292014-02-21 12:17:33 +000040namespace blink {
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010041
Torne (Richard Coles)09380292014-02-21 12:17:33 +000042using namespace WebCore;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010043
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000044PopupMenuChromium::PopupMenuChromium(LocalFrame& frame, PopupMenuClient* client)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010045 : m_popupClient(client)
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010046 , m_frameView(frame.view())
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010047{
48}
49
50PopupMenuChromium::~PopupMenuChromium()
51{
Torne (Richard Coles)09380292014-02-21 12:17:33 +000052 // When the PopupMenuChromium is destroyed, the client could already have been deleted.
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010053 if (m_popup)
54 m_popup->listBox()->disconnectClient();
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010055 hide();
56}
57
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010058void PopupMenuChromium::show(const FloatQuad& controlPosition, const IntSize& controlSize, int index)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010059{
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010060 if (!m_popup) {
Torne (Richard Coles)09380292014-02-21 12:17:33 +000061 bool deviceSupportsTouch = m_frameView->frame().settings()->deviceSupportsTouch();
62 m_popup = PopupContainer::create(m_popupClient, deviceSupportsTouch);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010063 }
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010064 m_popup->showInRect(controlPosition, controlSize, m_frameView.get(), index);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010065}
66
67void PopupMenuChromium::hide()
68{
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010069 if (m_popup)
70 m_popup->hide();
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010071}
72
73void PopupMenuChromium::updateFromElement()
74{
Torne (Richard Coles)93ac45c2013-05-29 14:40:20 +010075 m_popup->listBox()->updateFromElement();
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010076}
77
78
79void PopupMenuChromium::disconnectClient()
80{
81 m_popupClient = 0;
82}
83
Torne (Richard Coles)09380292014-02-21 12:17:33 +000084} // namespace blink