1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/*
* Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
* Copyright (C) 2012, Samsung Electronics. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef Chrome_h
#define Chrome_h
#include "core/loader/NavigationPolicy.h"
#include "core/page/FocusType.h"
#include "platform/Cursor.h"
#include "platform/HostWindow.h"
#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
namespace WebCore {
class ChromeClient;
class ColorChooser;
class ColorChooserClient;
class DateTimeChooser;
class DateTimeChooserClient;
class FileChooser;
class FloatRect;
class LocalFrame;
class HTMLInputElement;
class HitTestResult;
class IntRect;
class Node;
class Page;
class PopupMenu;
class PopupMenuClient;
class PopupOpeningObserver;
class SearchPopupMenu;
struct DateTimeChooserParameters;
struct ViewportDescription;
struct WindowFeatures;
class Chrome FINAL : public HostWindow {
public:
virtual ~Chrome();
static PassOwnPtr<Chrome> create(Page*, ChromeClient*);
ChromeClient& client() { return *m_client; }
// HostWindow methods.
virtual void invalidateContentsAndRootView(const IntRect&) OVERRIDE;
virtual void invalidateContentsForSlowScroll(const IntRect&) OVERRIDE;
virtual void scroll(const IntSize&, const IntRect&, const IntRect&) OVERRIDE;
virtual IntRect rootViewToScreen(const IntRect&) const OVERRIDE;
virtual blink::WebScreenInfo screenInfo() const OVERRIDE;
virtual void scheduleAnimation() OVERRIDE;
void contentsSizeChanged(LocalFrame*, const IntSize&) const;
void setCursor(const Cursor&);
void setWindowRect(const FloatRect&) const;
FloatRect windowRect() const;
FloatRect pageRect() const;
void focus() const;
bool canTakeFocus(FocusType) const;
void takeFocus(FocusType) const;
void focusedNodeChanged(Node*) const;
void show(NavigationPolicy = NavigationPolicyIgnore) const;
bool canRunModal() const;
bool canRunModalNow() const;
void runModal() const;
void setWindowFeatures(const WindowFeatures&) const;
bool toolbarsVisible() const;
bool statusbarVisible() const;
bool scrollbarsVisible() const;
bool menubarVisible() const;
bool canRunBeforeUnloadConfirmPanel();
bool runBeforeUnloadConfirmPanel(const String& message, LocalFrame*);
void closeWindowSoon();
void runJavaScriptAlert(LocalFrame*, const String&);
bool runJavaScriptConfirm(LocalFrame*, const String&);
bool runJavaScriptPrompt(LocalFrame*, const String& message, const String& defaultValue, String& result);
void setStatusbarText(LocalFrame*, const String&);
IntRect windowResizerRect() const;
void mouseDidMoveOverElement(const HitTestResult&, unsigned modifierFlags);
void setToolTip(const HitTestResult&);
void print(LocalFrame*);
PassOwnPtr<ColorChooser> createColorChooser(LocalFrame*, ColorChooserClient*, const Color& initialColor);
PassRefPtrWillBeRawPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClient*, const DateTimeChooserParameters&);
void openTextDataListChooser(HTMLInputElement&);
void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>);
void enumerateChosenDirectory(FileChooser*);
void dispatchViewportPropertiesDidChange(const ViewportDescription&) const;
bool hasOpenedPopup() const;
PassRefPtr<PopupMenu> createPopupMenu(LocalFrame&, PopupMenuClient*) const;
void registerPopupOpeningObserver(PopupOpeningObserver*);
void unregisterPopupOpeningObserver(PopupOpeningObserver*);
void willBeDestroyed();
private:
Chrome(Page*, ChromeClient*);
void notifyPopupOpeningObservers() const;
Page* m_page;
ChromeClient* m_client;
Vector<PopupOpeningObserver*> m_popupOpeningObservers;
};
}
#endif // Chrome_h
|