Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: Source/web/PopupMenuImpl.h

Issue 736883002: Implement <select> Popup Menu using PagePopup (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
tkent 2014/12/15 09:26:05 Please use the 3-line header.
keishi 2014/12/16 03:53:24 Done.
2 * Copyright (C) 2012 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 DateTimeChooserImpl_h 31 #ifndef PopupMenuImpl_h
32 #define DateTimeChooserImpl_h 32 #define PopupMenuImpl_h
33 33
34 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 34 #include "core/html/forms/PopupMenuClient.h"
35 #include "core/html/forms/DateTimeChooser.h"
36 #include "core/page/PagePopupClient.h" 35 #include "core/page/PagePopupClient.h"
36 #include "platform/PopupMenu.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class ChromeClientImpl; 40 class ChromeClientImpl;
41 class DateTimeChooserClient;
42 class PagePopup; 41 class PagePopup;
42 class HTMLElement;
43 class HTMLHRElement;
44 class HTMLOptGroupElement;
45 class HTMLOptionElement;
43 46
44 class DateTimeChooserImpl final : public DateTimeChooser, public PagePopupClient { 47 class PopupMenuImpl final : public PopupMenu, public PagePopupClient {
45 public: 48 public:
46 static PassRefPtr<DateTimeChooserImpl> create(ChromeClientImpl*, DateTimeCho oserClient*, const DateTimeChooserParameters&); 49 static PassRefPtr<PopupMenuImpl> create(ChromeClientImpl*, PopupMenuClient*) ;
47 virtual ~DateTimeChooserImpl(); 50 virtual ~PopupMenuImpl();
51 virtual void trace(Visitor*) override;
48 52
49 // DateTimeChooser functions: 53 virtual void show(const FloatQuad& controlPosition, const IntSize& controlSi ze, int index) override;
50 virtual void endChooser() override; 54 virtual void hide() override;
51 virtual AXObject* rootAXObject() override; 55 virtual void updateFromElement() override;
56 virtual void disconnectClient() override;
57
58 void dispose();
52 59
53 private: 60 private:
54 DateTimeChooserImpl(ChromeClientImpl*, DateTimeChooserClient*, const DateTim eChooserParameters&); 61 PopupMenuImpl(ChromeClientImpl*, PopupMenuClient*);
62
63 void addOption(HTMLOptionElement&, SharedBuffer*);
64 void addOptGroup(HTMLOptGroupElement&, SharedBuffer*);
65 void addSeparator(HTMLHRElement&, SharedBuffer*);
66 void addElementStyle(HTMLElement&, SharedBuffer*);
67
55 // PagePopupClient functions: 68 // PagePopupClient functions:
56 virtual IntSize contentSize() override; 69 virtual IntSize contentSize() override;
57 virtual void writeDocument(SharedBuffer*) override; 70 virtual void writeDocument(SharedBuffer*) override;
58 virtual Locale& locale() override; 71 virtual void didWriteDocument(Document*) override;
59 virtual void setValueAndClosePopup(int, const String&) override; 72 virtual void setValueAndClosePopup(int, const String&) override;
60 virtual void setValue(const String&) override; 73 virtual void setValue(const String&) override;
61 virtual void closePopup() override; 74 virtual void closePopup() override;
62 virtual Element& ownerElement() override; 75 virtual Element& ownerElement() override;
63 virtual void didClosePopup() override; 76 virtual void didClosePopup() override;
64 77
65 ChromeClientImpl* m_chromeClient; 78 ChromeClientImpl* m_chromeClient;
66 DateTimeChooserClient* m_client; 79 PopupMenuClient* m_client;
67 PagePopup* m_popup; 80 PagePopup* m_popup;
68 DateTimeChooserParameters m_parameters;
69 OwnPtr<Locale> m_locale;
70 }; 81 };
71 82
72 } 83 }
73 84
74 #endif // ENABLE(INPUT_MULTIPLE_FIELDS_UI) 85 #endif // PopupMenuImpl_h
75
76 #endif // DateTimeChooserImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698