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 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 bool shouldUseCustomScrollbars(Element*& customScrollbarElement, LocalFrame*
& customScrollbarFrame) const; | 716 bool shouldUseCustomScrollbars(Element*& customScrollbarElement, LocalFrame*
& customScrollbarFrame) const; |
717 | 717 |
718 // Returns true if a scrollbar needs to go from native -> custom or vice ver
sa. | 718 // Returns true if a scrollbar needs to go from native -> custom or vice ver
sa. |
719 bool needsScrollbarReconstruction() const; | 719 bool needsScrollbarReconstruction() const; |
720 | 720 |
721 bool shouldIgnoreOverflowHidden() const; | 721 bool shouldIgnoreOverflowHidden() const; |
722 | 722 |
723 void updateScrollCorner(); | 723 void updateScrollCorner(); |
724 | 724 |
725 AXObjectCache* axObjectCache() const; | 725 AXObjectCache* axObjectCache() const; |
726 void removeFromAXObjectCache(); | |
727 | 726 |
728 void setLayoutSizeInternal(const IntSize&); | 727 void setLayoutSizeInternal(const IntSize&); |
729 | 728 |
730 bool adjustScrollbarExistence(ComputeScrollbarExistenceOption = FirstPass); | 729 bool adjustScrollbarExistence(ComputeScrollbarExistenceOption = FirstPass); |
731 void adjustScrollbarOpacity(); | 730 void adjustScrollbarOpacity(); |
732 void setScrollOffsetFromUpdateScrollbars(const DoubleSize&); | 731 void setScrollOffsetFromUpdateScrollbars(const DoubleSize&); |
733 bool visualViewportSuppliesScrollbars() const; | 732 bool visualViewportSuppliesScrollbars() const; |
734 | 733 |
735 IntRect rectToCopyOnScroll() const; | 734 IntRect rectToCopyOnScroll() const; |
736 | 735 |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
928 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) | 927 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) |
929 setIsVisuallyNonEmpty(); | 928 setIsVisuallyNonEmpty(); |
930 } | 929 } |
931 | 930 |
932 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); | 931 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); |
933 DEFINE_TYPE_CASTS(FrameView, ScrollableArea, scrollableArea, scrollableArea->isF
rameView(), scrollableArea.isFrameView()); | 932 DEFINE_TYPE_CASTS(FrameView, ScrollableArea, scrollableArea, scrollableArea->isF
rameView(), scrollableArea.isFrameView()); |
934 | 933 |
935 } // namespace blink | 934 } // namespace blink |
936 | 935 |
937 #endif // FrameView_h | 936 #endif // FrameView_h |
OLD | NEW |