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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 class KURL; | 47 class KURL; |
48 class Node; | 48 class Node; |
49 class Page; | 49 class Page; |
50 class RenderBox; | 50 class RenderBox; |
51 class RenderEmbeddedObject; | 51 class RenderEmbeddedObject; |
52 class RenderObject; | 52 class RenderObject; |
53 class RenderScrollbarPart; | 53 class RenderScrollbarPart; |
54 class RenderStyle; | 54 class RenderStyle; |
55 class RenderView; | 55 class RenderView; |
56 class RenderWidget; | 56 class RenderWidget; |
| 57 struct CompositedSelectionBound; |
57 | 58 |
58 typedef unsigned long long DOMTimeStamp; | 59 typedef unsigned long long DOMTimeStamp; |
59 | 60 |
60 class FrameView FINAL : public ScrollView { | 61 class FrameView FINAL : public ScrollView { |
61 public: | 62 public: |
62 friend class RenderView; | 63 friend class RenderView; |
63 friend class Internals; | 64 friend class Internals; |
64 | 65 |
65 static PassRefPtr<FrameView> create(LocalFrame*); | 66 static PassRefPtr<FrameView> create(LocalFrame*); |
66 static PassRefPtr<FrameView> create(LocalFrame*, const IntSize& initialSize)
; | 67 static PassRefPtr<FrameView> create(LocalFrame*, const IntSize& initialSize)
; |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 | 378 |
378 void scheduleUpdateWidgetsIfNecessary(); | 379 void scheduleUpdateWidgetsIfNecessary(); |
379 void updateWidgetsTimerFired(Timer<FrameView>*); | 380 void updateWidgetsTimerFired(Timer<FrameView>*); |
380 bool updateWidgets(); | 381 bool updateWidgets(); |
381 | 382 |
382 void scrollToAnchor(); | 383 void scrollToAnchor(); |
383 void scrollPositionChanged(); | 384 void scrollPositionChanged(); |
384 void didScrollTimerFired(Timer<FrameView>*); | 385 void didScrollTimerFired(Timer<FrameView>*); |
385 | 386 |
386 void updateLayersAndCompositingAfterScrollIfNeeded(); | 387 void updateLayersAndCompositingAfterScrollIfNeeded(); |
| 388 |
| 389 static bool computeCompositedSelectionBounds(LocalFrame&, CompositedSelectio
nBound& start, CompositedSelectionBound& end); |
387 void updateCompositedSelectionBoundsIfNeeded(); | 390 void updateCompositedSelectionBoundsIfNeeded(); |
388 | 391 |
389 bool hasCustomScrollbars() const; | 392 bool hasCustomScrollbars() const; |
390 bool shouldUseCustomScrollbars(Element*& customScrollbarElement, LocalFrame*
& customScrollbarFrame); | 393 bool shouldUseCustomScrollbars(Element*& customScrollbarElement, LocalFrame*
& customScrollbarFrame); |
391 | 394 |
392 virtual void updateScrollCorner() OVERRIDE; | 395 virtual void updateScrollCorner() OVERRIDE; |
393 | 396 |
394 FrameView* parentFrameView() const; | 397 FrameView* parentFrameView() const; |
395 | 398 |
396 AXObjectCache* axObjectCache() const; | 399 AXObjectCache* axObjectCache() const; |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); | 538 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); |
536 } | 539 } |
537 private: | 540 private: |
538 FrameView* m_view; | 541 FrameView* m_view; |
539 bool m_originalValue; | 542 bool m_originalValue; |
540 }; | 543 }; |
541 | 544 |
542 } // namespace blink | 545 } // namespace blink |
543 | 546 |
544 #endif // FrameView_h | 547 #endif // FrameView_h |
OLD | NEW |