| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) |
| 3 (C) 1998 Waldo Bastian (bastian@kde.org) | 3 (C) 1998 Waldo Bastian (bastian@kde.org) |
| 4 (C) 1998, 1999 Torben Weis (weis@kde.org) | 4 (C) 1998, 1999 Torben Weis (weis@kde.org) |
| 5 (C) 1999 Lars Knoll (knoll@kde.org) | 5 (C) 1999 Lars Knoll (knoll@kde.org) |
| 6 (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 8 | 8 |
| 9 This library is free software; you can redistribute it and/or | 9 This library is free software; you can redistribute it and/or |
| 10 modify it under the terms of the GNU Library General Public | 10 modify it under the terms of the GNU Library General Public |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 void setInProgrammaticScroll(bool programmaticScroll) { m_inProgrammaticScro
ll = programmaticScroll; } | 293 void setInProgrammaticScroll(bool programmaticScroll) { m_inProgrammaticScro
ll = programmaticScroll; } |
| 294 | 294 |
| 295 void setHasSoftwareFilters(bool hasSoftwareFilters) { m_hasSoftwareFilters =
hasSoftwareFilters; } | 295 void setHasSoftwareFilters(bool hasSoftwareFilters) { m_hasSoftwareFilters =
hasSoftwareFilters; } |
| 296 bool hasSoftwareFilters() const { return m_hasSoftwareFilters; } | 296 bool hasSoftwareFilters() const { return m_hasSoftwareFilters; } |
| 297 | 297 |
| 298 virtual bool isActive() const OVERRIDE; | 298 virtual bool isActive() const OVERRIDE; |
| 299 | 299 |
| 300 // DEPRECATED: Use viewportConstrainedVisibleContentRect() instead. | 300 // DEPRECATED: Use viewportConstrainedVisibleContentRect() instead. |
| 301 IntSize scrollOffsetForFixedPosition() const; | 301 IntSize scrollOffsetForFixedPosition() const; |
| 302 | 302 |
| 303 virtual bool shouldPlaceVerticalScrollbarOnLeft() const OVERRIDE; | |
| 304 | |
| 305 // Override scrollbar notifications to update the AXObject cache. | 303 // Override scrollbar notifications to update the AXObject cache. |
| 306 virtual void didAddScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE; | 304 virtual void didAddScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE; |
| 307 virtual void willRemoveScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE; | 305 virtual void willRemoveScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE; |
| 308 | 306 |
| 309 virtual bool shouldAttemptToScrollUsingFastPath() const OVERRIDE; | 307 virtual bool shouldAttemptToScrollUsingFastPath() const OVERRIDE; |
| 310 // FIXME: This should probably be renamed as the 'inSubtreeLayout' parameter | 308 // FIXME: This should probably be renamed as the 'inSubtreeLayout' parameter |
| 311 // passed around the FrameView layout methods can be true while this returns | 309 // passed around the FrameView layout methods can be true while this returns |
| 312 // false. | 310 // false. |
| 313 bool isSubtreeLayout() const { return !!m_layoutSubtreeRoot; } | 311 bool isSubtreeLayout() const { return !!m_layoutSubtreeRoot; } |
| 314 | 312 |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); | 556 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); |
| 559 } | 557 } |
| 560 private: | 558 private: |
| 561 FrameView* m_view; | 559 FrameView* m_view; |
| 562 bool m_originalValue; | 560 bool m_originalValue; |
| 563 }; | 561 }; |
| 564 | 562 |
| 565 } // namespace WebCore | 563 } // namespace WebCore |
| 566 | 564 |
| 567 #endif // FrameView_h | 565 #endif // FrameView_h |
| OLD | NEW |