diff options
Diffstat (limited to 'WebCore/page/Frame.h')
| -rw-r--r-- | WebCore/page/Frame.h | 40 |
1 files changed, 24 insertions, 16 deletions
diff --git a/WebCore/page/Frame.h b/WebCore/page/Frame.h index 652269a..ca9a6d4 100644 --- a/WebCore/page/Frame.h +++ b/WebCore/page/Frame.h @@ -41,6 +41,7 @@ #include "ScrollBehavior.h" #include "SelectionController.h" #include "TextGranularity.h" +#include "UserScriptTypes.h" #if PLATFORM(WIN) #include "FrameWin.h" @@ -66,6 +67,7 @@ namespace WebCore { class Editor; class EventHandler; class FrameLoader; + class RedirectScheduler; class FrameLoaderClient; class FrameTree; class FrameView; @@ -79,10 +81,6 @@ namespace WebCore { class VisibleSelection; class Widget; -#if FRAME_LOADS_USER_STYLESHEET - class UserStyleSheetLoader; -#endif - template <typename T> class Timer; class Frame : public RefCounted<Frame> { @@ -97,6 +95,7 @@ namespace WebCore { void init(); Page* page() const; + void detachFromPage(); HTMLFrameOwnerElement* ownerElement() const; void pageDestroyed(); @@ -112,6 +111,7 @@ namespace WebCore { Editor* editor() const; EventHandler* eventHandler() const; FrameLoader* loader() const; + RedirectScheduler* redirectScheduler() const; SelectionController* selection() const; FrameTree* tree() const; AnimationController* animation() const; @@ -128,6 +128,10 @@ namespace WebCore { void createView(const IntSize&, const Color&, bool, const IntSize &, bool, ScrollbarMode = ScrollbarAuto, ScrollbarMode = ScrollbarAuto); + void injectUserScripts(UserScriptInjectionTime); + + private: + void injectUserScriptsForWorld(DOMWrapperWorld*, const UserScriptVector&, UserScriptInjectionTime); private: Frame(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*); @@ -139,11 +143,6 @@ namespace WebCore { Settings* settings() const; // can be NULL - #if FRAME_LOADS_USER_STYLESHEET - void setUserStyleSheetLocation(const KURL&); - void setUserStyleSheet(const String& styleSheetData); - #endif - void setPrinting(bool printing, float minPageWidth, float maxPageWidth, bool adjustViewSize); bool inViewSourceMode() const; @@ -156,6 +155,14 @@ namespace WebCore { void setDocument(PassRefPtr<Document>); +#if ENABLE(ORIENTATION_EVENTS) + // Orientation is the interface orientation in degrees. Some examples are: + // 0 is straight up; -90 is when the device is rotated 90 clockwise; + // 90 is when rotated counter clockwise. + void sendOrientationChangeEvent(int orientation); + int orientation() const { return m_orientation; } +#endif + void clearTimers(); static void clearTimers(FrameView*, Document*); @@ -193,7 +200,7 @@ namespace WebCore { public: void focusWindow(); void unfocusWindow(); - bool shouldClose(RegisteredEventListenerVector* alternateEventListeners = 0); + bool shouldClose(); void scheduleClose(); void setJSStatusBarText(const String&); @@ -267,7 +274,8 @@ namespace WebCore { void clearTypingStyle(); FloatRect selectionBounds(bool clipToVisibleContent = true) const; - void selectionTextRects(Vector<FloatRect>&, bool clipToVisibleContent = true) const; + enum SelectionRectRespectTransforms { RespectTransforms = true, IgnoreTransforms = false }; + void selectionTextRects(Vector<FloatRect>&, SelectionRectRespectTransforms respectTransforms, bool clipToVisibleContent = true) const; HTMLFormElement* currentForm() const; @@ -329,6 +337,7 @@ namespace WebCore { Page* m_page; mutable FrameTree m_treeNode; mutable FrameLoader m_loader; + mutable RedirectScheduler m_redirectScheduler; mutable RefPtr<DOMWindow> m_domWindow; HashSet<DOMWindow*> m_liveFormerWindows; @@ -357,6 +366,10 @@ namespace WebCore { Timer<Frame> m_lifeSupportTimer; +#if ENABLE(ORIENTATION_EVENTS) + int m_orientation; +#endif + bool m_caretVisible; bool m_caretPaint; @@ -365,11 +378,6 @@ namespace WebCore { bool m_needsReapplyStyles; bool m_isDisconnected; bool m_excludeFromTextSearch; - - #if FRAME_LOADS_USER_STYLESHEET - UserStyleSheetLoader* m_userStyleSheetLoader; - #endif - }; } // namespace WebCore |
