| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 212 |
| 213 void updateLayoutAndStyleForPainting(); | 213 void updateLayoutAndStyleForPainting(); |
| 214 void updateLayoutAndStyleIfNeededRecursive(); | 214 void updateLayoutAndStyleIfNeededRecursive(); |
| 215 | 215 |
| 216 void invalidateTreeIfNeededRecursive(); | 216 void invalidateTreeIfNeededRecursive(); |
| 217 | 217 |
| 218 void incrementVisuallyNonEmptyCharacterCount(unsigned); | 218 void incrementVisuallyNonEmptyCharacterCount(unsigned); |
| 219 void incrementVisuallyNonEmptyPixelCount(const IntSize&); | 219 void incrementVisuallyNonEmptyPixelCount(const IntSize&); |
| 220 void setIsVisuallyNonEmpty() { m_isVisuallyNonEmpty = true; } | 220 void setIsVisuallyNonEmpty() { m_isVisuallyNonEmpty = true; } |
| 221 void enableAutoSizeMode(const IntSize& minSize, const IntSize& maxSize); | 221 void enableAutoSizeMode(const IntSize& minSize, const IntSize& maxSize); |
| 222 void disableAutoSizeMode() { m_autoSizeInfo = 0; } | 222 void disableAutoSizeMode() { m_autoSizeInfo.clear(); } |
| 223 | 223 |
| 224 void forceLayout(bool allowSubtree = false); | 224 void forceLayout(bool allowSubtree = false); |
| 225 void forceLayoutForPagination(const FloatSize& pageSize, const FloatSize& or
iginalPageSize, float maximumShrinkFactor); | 225 void forceLayoutForPagination(const FloatSize& pageSize, const FloatSize& or
iginalPageSize, float maximumShrinkFactor); |
| 226 | 226 |
| 227 bool scrollToFragment(const KURL&); | 227 bool scrollToFragment(const KURL&); |
| 228 bool scrollToAnchor(const String&); | 228 bool scrollToAnchor(const String&); |
| 229 void maintainScrollPositionAtAnchor(Node*); | 229 void maintainScrollPositionAtAnchor(Node*); |
| 230 void scrollElementToRect(Element*, const IntRect&); | 230 void scrollElementToRect(Element*, const IntRect&); |
| 231 void scrollContentsIfNeededRecursive(); | 231 void scrollContentsIfNeededRecursive(); |
| 232 | 232 |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); | 535 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); |
| 536 } | 536 } |
| 537 private: | 537 private: |
| 538 FrameView* m_view; | 538 FrameView* m_view; |
| 539 bool m_originalValue; | 539 bool m_originalValue; |
| 540 }; | 540 }; |
| 541 | 541 |
| 542 } // namespace blink | 542 } // namespace blink |
| 543 | 543 |
| 544 #endif // FrameView_h | 544 #endif // FrameView_h |
| OLD | NEW |