Searched refs:ScrollView (Results 1 - 25 of 68) sorted by relevance

123

/macosx-10.9.5/WebCore-7537.78.1/platform/efl/
H A DScrollViewEfl.cpp35 #include "ScrollView.h"
50 void ScrollView::platformInit()
54 void ScrollView::platformDestroy()
H A DScrollbarEfl.h62 virtual void setParent(ScrollView*);
H A DWidgetEfl.cpp88 ScrollView* view = root();
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DScrollViewQt.cpp33 #include "ScrollView.h"
37 void ScrollView::platformAddChild(Widget*)
41 void ScrollView::platformRemoveChild(Widget* child)
H A DScrollbarThemeQStyle.h43 virtual void paintScrollCorner(ScrollView*, GraphicsContext*, const IntRect& cornerRect);
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dscrollview.rb11 class ScrollView < TkWindow class in class:Tk.BWidget
16 class Tk::BWidget::ScrollView
17 TkCommandNames = ['ScrollView'.freeze].freeze
18 WidgetClassName = 'ScrollView'.freeze
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DWidget.cpp30 #include "ScrollView.h"
46 void Widget::setParent(ScrollView* view)
56 ScrollView* Widget::root() const
62 return const_cast<ScrollView*>(static_cast<const ScrollView*>(top));
74 if (const ScrollView* parentScrollView = parent()) {
83 if (const ScrollView* parentScrollView = parent()) {
92 if (const ScrollView* parentScrollView = parent()) {
101 if (const ScrollView* parentScrollView = parent()) {
110 if (const ScrollView* parentScrollVie
[all...]
H A DScrollView.cpp27 #include "ScrollView.h"
43 ScrollView::ScrollView() function in class:WebCore::ScrollView
63 ScrollView::~ScrollView()
68 void ScrollView::addChild(PassRefPtr<Widget> prpChild)
78 void ScrollView::removeChild(Widget* child)
87 void ScrollView::setHasHorizontalScrollbar(bool hasBar)
102 void ScrollView::setHasVerticalScrollbar(bool hasBar)
118 PassRefPtr<Scrollbar> ScrollView
[all...]
H A DScrollbarThemeClient.h38 class ScrollView;
49 virtual ScrollView* parent() const = 0;
50 virtual ScrollView* root() const = 0;
H A DScrollbarThemeComposite.h43 virtual void paintScrollCorner(ScrollView*, GraphicsContext*, const IntRect& cornerRect);
44 virtual void paintOverhangAreas(ScrollView*, GraphicsContext*, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect);
H A DScrollView.h47 class ScrollView : public Widget, public ScrollableArea { class in namespace:WebCore
49 ~ScrollView();
63 // The window thats hosts the ScrollView. The ScrollView will communicate scrolls and repaints to the
152 // ScrollView is the main frame; in that case, visibleContentScaleFactor is equal to the page's pageScaleFactor.
167 // Functions for getting/setting the size of the document contained inside the ScrollView (as an IntSize or as individual width and height
243 virtual void setParent(ScrollView*); // Overridden to update the overlapping scrollbar count.
306 ScrollView();
414 }; // class ScrollView
416 inline ScrollView* toScrollVie
[all...]
H A DScrollbarTheme.h37 class ScrollView;
86 virtual void paintScrollCorner(ScrollView*, GraphicsContext* context, const IntRect& cornerRect) { defaultPaintScrollCorner(context, cornerRect); }
90 virtual void paintOverhangAreas(ScrollView*, GraphicsContext*, const IntRect&, const IntRect&, const IntRect&) { }
H A DTheme.h40 class ScrollView;
100 virtual void paint(ControlPart, ControlStates, GraphicsContext*, const IntRect& /*zoomedRect*/, float /*zoomFactor*/, ScrollView*) const { }
H A DWidget.h101 class ScrollView;
107 // (1) Scrollable areas (ScrollView)
117 // ScrollView - Mac
171 virtual void setParent(ScrollView* view);
172 ScrollView* parent() const { return m_parent; }
173 ScrollView* root() const;
223 // Virtual methods to convert points to/from the containing ScrollView
247 ScrollView* m_parent;
H A DScrollbar.h65 virtual ScrollView* parent() const { return Widget::parent(); }
66 virtual ScrollView* root() const { return Widget::root(); }
148 virtual void setParent(ScrollView*);
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DScrollViewMac.mm27 #import "ScrollView.h"
46 inline NSScrollView<WebCoreFrameScrollView> *ScrollView::scrollView() const
53 NSView *ScrollView::documentView() const
61 void ScrollView::platformAddChild(Widget* child)
78 void ScrollView::platformRemoveChild(Widget* child)
83 void ScrollView::platformSetScrollbarModes()
90 void ScrollView::platformScrollbarModes(ScrollbarMode& horizontal, ScrollbarMode& vertical) const
97 void ScrollView::platformSetCanBlitOnScroll(bool canBlitOnScroll)
104 bool ScrollView::platformCanBlitOnScroll() const
109 IntRect ScrollView
[all...]
H A DThemeMac.h54 virtual void paint(ControlPart, ControlStates, GraphicsContext*, const IntRect&, float zoomFactor, ScrollView*) const;
58 static NSView* ensuredView(ScrollView*);
/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityScrollView.h35 class ScrollView;
39 static PassRefPtr<AccessibilityScrollView> create(ScrollView*);
41 ScrollView* scrollView() const { return m_scrollView; }
51 explicit AccessibilityScrollView(ScrollView*);
81 ScrollView* m_scrollView;
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DScrollViewGtk.cpp32 #include "ScrollView.h"
43 static bool shouldCreateMainFrameScrollbar(const ScrollView* scrollView)
59 PassRefPtr<Scrollbar> ScrollView::createScrollbar(ScrollbarOrientation orientation)
66 IntRect ScrollView::visibleContentRect(VisibleContentRectIncludesScrollbars scrollbarInclusion) const
95 void ScrollView::setScrollbarModes(ScrollbarMode horizontalMode, ScrollbarMode verticalMode, bool horizontalLock, bool verticalLock)
97 // FIXME: Restructure the ScrollView abstraction so that we do not have to
98 // copy this verbatim from ScrollView.cpp. Until then, we should make sure this
121 // We don't need to report policy changes on ScrollView's unless this
H A DWidgetGtk.cpp36 #include "ScrollView.h"
61 ScrollView* view = root();
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DWidgetBlackBerry.cpp27 #include "ScrollView.h"
52 ScrollView* theRoot = root();
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DWidgetWin.cpp73 ScrollView* view = root();
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderScrollbarTheme.h35 class ScrollView;
47 virtual void paintScrollCorner(ScrollView*, GraphicsContext* context, const IntRect& cornerRect);
/macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/
H A Dscrollview.tcl17 namespace eval ScrollView {
18 Widget::define ScrollView scrollview
20 Widget::tkinclude ScrollView canvas :cmd \
25 Widget::declare ScrollView {
40 bind BwScrollView <B1-Motion> [list ScrollView::_set_view %W motion %x %y]
41 bind BwScrollView <ButtonPress-1> [list ScrollView::_set_view %W set %x %y]
42 bind BwScrollView <Configure> [list ScrollView::_resize %W]
43 bind BwScrollView <Destroy> [list ScrollView::_destroy %W]
48 # Command ScrollView::create
50 proc ScrollView
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DAutoscrollController.cpp39 #include "ScrollView.h"
297 bool east = m_panScrollStartPos.x() < (lastKnownMousePosition.x() - ScrollView::noPanScrollRadius);
298 bool west = m_panScrollStartPos.x() > (lastKnownMousePosition.x() + ScrollView::noPanScrollRadius);
299 bool north = m_panScrollStartPos.y() > (lastKnownMousePosition.y() + ScrollView::noPanScrollRadius);
300 bool south = m_panScrollStartPos.y() < (lastKnownMousePosition.y() - ScrollView::noPanScrollRadius);

Completed in 393 milliseconds

123