OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
9 * Copyright (C) 2013 Google Inc. All rights reserved. | 9 * Copyright (C) 2013 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 static bool isActiveFullScreenElement(const Element&); | 59 static bool isActiveFullScreenElement(const Element&); |
60 | 60 |
61 enum RequestType { | 61 enum RequestType { |
62 PrefixedRequest, // Element.webkitRequestFullscreen() | 62 PrefixedRequest, // Element.webkitRequestFullscreen() |
63 PrefixedMozillaRequest, // Element.webkitRequestFullScreen() | 63 PrefixedMozillaRequest, // Element.webkitRequestFullScreen() |
64 PrefixedMozillaAllowKeyboardInputRequest, // Element.webkitRequestFullSc
reen(Element.ALLOW_KEYBOARD_INPUT) | 64 PrefixedMozillaAllowKeyboardInputRequest, // Element.webkitRequestFullSc
reen(Element.ALLOW_KEYBOARD_INPUT) |
65 PrefixedVideoRequest, // HTMLVideoElement.webkitEnterFullscreen() and we
bkitEnterFullScreen() | 65 PrefixedVideoRequest, // HTMLVideoElement.webkitEnterFullscreen() and we
bkitEnterFullScreen() |
66 }; | 66 }; |
67 | 67 |
68 void requestFullScreenForElement(Element&, RequestType); | 68 void requestFullScreenForElement(Element&, RequestType); |
69 void webkitCancelFullScreen(); | 69 void fullyExitFullscreen(); |
| 70 void exitFullscreen(); |
70 | 71 |
71 void webkitWillEnterFullScreenForElement(Element*); | 72 void webkitWillEnterFullScreenForElement(Element*); |
72 void webkitDidEnterFullScreenForElement(Element*); | 73 void webkitDidEnterFullScreenForElement(Element*); |
73 void webkitWillExitFullScreenForElement(Element*); | 74 void webkitWillExitFullScreenForElement(Element*); |
74 void webkitDidExitFullScreenForElement(Element*); | 75 void webkitDidExitFullScreenForElement(Element*); |
75 | 76 |
76 void setFullScreenRenderer(RenderFullScreen*); | 77 void setFullScreenRenderer(RenderFullScreen*); |
77 RenderFullScreen* fullScreenRenderer() const { return m_fullScreenRenderer;
} | 78 RenderFullScreen* fullScreenRenderer() const { return m_fullScreenRenderer;
} |
78 void fullScreenRendererDestroyed(); | 79 void fullScreenRendererDestroyed(); |
79 | 80 |
80 void removeFullScreenElementOfSubtree(Node*, bool amongChildrenOnly = false)
; | 81 void removeFullScreenElementOfSubtree(Node*, bool amongChildrenOnly = false)
; |
81 | 82 |
82 // W3C API | 83 // W3C API |
83 static bool webkitFullscreenEnabled(Document&); | 84 static bool webkitFullscreenEnabled(Document&); |
84 Element* webkitFullscreenElement() const { return !m_fullScreenElementStack.
isEmpty() ? m_fullScreenElementStack.last().get() : 0; } | 85 Element* webkitFullscreenElement() const { return !m_fullScreenElementStack.
isEmpty() ? m_fullScreenElementStack.last().get() : 0; } |
85 void webkitExitFullscreen(); | |
86 | 86 |
| 87 // Mozilla API |
87 bool webkitIsFullScreen() const { return m_fullScreenElement.get(); } | 88 bool webkitIsFullScreen() const { return m_fullScreenElement.get(); } |
88 bool webkitFullScreenKeyboardInputAllowed() const { return m_fullScreenEleme
nt.get() && m_areKeysEnabledInFullScreen; } | 89 bool webkitFullScreenKeyboardInputAllowed() const { return m_fullScreenEleme
nt.get() && m_areKeysEnabledInFullScreen; } |
89 Element* webkitCurrentFullScreenElement() const { return m_fullScreenElement
.get(); } | 90 Element* webkitCurrentFullScreenElement() const { return m_fullScreenElement
.get(); } |
90 | 91 |
91 virtual void documentWasDetached() OVERRIDE; | 92 virtual void documentWasDetached() OVERRIDE; |
92 #if !ENABLE(OILPAN) | 93 #if !ENABLE(OILPAN) |
93 virtual void documentWasDisposed() OVERRIDE; | 94 virtual void documentWasDisposed() OVERRIDE; |
94 #endif | 95 #endif |
95 | 96 |
96 virtual void trace(Visitor*) OVERRIDE; | 97 virtual void trace(Visitor*) OVERRIDE; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 inline FullscreenElementStack* FullscreenElementStack::fromIfExists(Document& do
cument) | 134 inline FullscreenElementStack* FullscreenElementStack::fromIfExists(Document& do
cument) |
134 { | 135 { |
135 if (!document.hasFullscreenElementStack()) | 136 if (!document.hasFullscreenElementStack()) |
136 return 0; | 137 return 0; |
137 return fromIfExistsSlow(document); | 138 return fromIfExistsSlow(document); |
138 } | 139 } |
139 | 140 |
140 } // namespace WebCore | 141 } // namespace WebCore |
141 | 142 |
142 #endif // FullscreenElementStack_h | 143 #endif // FullscreenElementStack_h |
OLD | NEW |