OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2008, 2009, Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
11 * copyright notice, this list of conditions and the following disclaimer | 11 * copyright notice, this list of conditions and the following disclaimer |
12 * in the documentation and/or other materials provided with the | 12 * in the documentation and/or other materials provided with the |
13 * distribution. | 13 * distribution. |
14 * * Neither the name of Google Inc. nor the names of its | 14 * * Neither the name of Google Inc. nor the names of its |
15 * contributors may be used to endorse or promote products derived from | 15 * contributors may be used to endorse or promote products derived from |
16 * this software without specific prior written permission. | 16 * this software without specific prior written permission. |
17 * | 17 * |
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef PopupMenuChromium_h | 31 #ifndef PopupMenuImpl_h |
32 #define PopupMenuChromium_h | 32 #define PopupMenuImpl_h |
33 | 33 |
| 34 #include "core/page/PagePopupClient.h" |
34 #include "platform/PopupMenu.h" | 35 #include "platform/PopupMenu.h" |
35 #include "wtf/RefPtr.h" | 36 #include "platform/PopupMenuClient.h" |
36 | 37 |
37 namespace blink { | 38 namespace blink { |
38 | 39 |
39 class LocalFrame; | 40 class ChromeClientImpl; |
40 class FrameView; | 41 class PagePopup; |
41 class PopupContainer; | 42 class HTMLElement; |
42 class PopupMenuClient; | 43 class HTMLHRElement; |
| 44 class HTMLOptGroupElement; |
| 45 class HTMLOptionElement; |
43 | 46 |
44 class PopupMenuChromium final : public PopupMenu { | 47 class PopupMenuImpl final : public PopupMenu, public PagePopupClient { |
45 public: | 48 public: |
46 PopupMenuChromium(LocalFrame&, PopupMenuClient*); | 49 static PassRefPtr<PopupMenuImpl> create(ChromeClientImpl*, PopupMenuClient*)
; |
47 virtual ~PopupMenuChromium(); | 50 virtual ~PopupMenuImpl(); |
| 51 virtual void trace(Visitor*) override; |
48 | 52 |
49 virtual void show(const FloatQuad& controlPosition, const IntSize& controlSi
ze, int index) override; | 53 virtual void show(const FloatQuad& controlPosition, const IntSize& controlSi
ze, int index) override; |
50 virtual void hide() override; | 54 virtual void hide() override; |
51 virtual void updateFromElement() override; | 55 virtual void updateFromElement() override; |
52 virtual void disconnectClient() override; | 56 virtual void disconnectClient() override; |
53 | 57 |
54 virtual void trace(Visitor*) override; | 58 void dispose(); |
55 | 59 |
56 private: | 60 private: |
57 void dispose(); | 61 PopupMenuImpl(ChromeClientImpl*, PopupMenuClient*); |
58 | 62 |
59 PopupMenuClient* m_popupClient; | 63 void addOption(HTMLOptionElement&, SharedBuffer*); |
60 RefPtrWillBeMember<FrameView> m_frameView; | 64 void addOptGroup(HTMLOptGroupElement&, SharedBuffer*); |
61 RefPtrWillBeMember<PopupContainer> m_popup; | 65 void addSeparator(HTMLHRElement&, SharedBuffer*); |
| 66 void addElementStyle(HTMLElement&, SharedBuffer*); |
| 67 |
| 68 // PagePopupClient functions: |
| 69 virtual IntSize contentSize() override; |
| 70 virtual void writeDocument(SharedBuffer*) override; |
| 71 virtual void didWriteDocument(Document*) override; |
| 72 virtual void setValueAndClosePopup(int, const String&) override; |
| 73 virtual void setValue(const String&) override; |
| 74 virtual void closePopup() override; |
| 75 virtual Element& ownerElement() override; |
| 76 virtual void didClosePopup() override; |
| 77 |
| 78 ChromeClientImpl* m_chromeClient; |
| 79 PopupMenuClient* m_client; |
| 80 PagePopup* m_popup; |
62 }; | 81 }; |
63 | 82 |
64 } // namespace blink | 83 } |
65 | 84 |
66 #endif | 85 #endif // PopupMenuImpl_h |
OLD | NEW |