HomeSort by relevance Sort by last modified time
    Searched refs:PaintInfo (Results 76 - 100 of 124) sorted by null

1 2 34 5

  /external/webkit/WebCore/rendering/
RenderDataGrid.cpp 132 void RenderDataGrid::paintObject(PaintInfo& paintInfo, int tx, int ty)
138 RenderBlock::paintObject(paintInfo, tx, ty);
140 if (paintInfo.phase != PaintPhaseForeground)
144 paintColumnHeaders(paintInfo, tx, ty);
147 void RenderDataGrid::paintColumnHeaders(PaintInfo& paintInfo, int tx, int ty)
162 if (columnRect.intersects(paintInfo.rect))
163 paintColumnHeader(column, paintInfo, tx, ty);
167 void RenderDataGrid::paintColumnHeader(DataGridColumn*, PaintInfo&, int, int
    [all...]
RenderThemeChromiumMac.mm 746 bool RenderThemeChromiumMac::paintTextField(RenderObject* o, const RenderObject::PaintInfo& paintInfo, const IntRect& r)
748 LocalCurrentGraphicsContext localContext(paintInfo.context);
757 bool RenderThemeChromiumMac::paintCapsLockIndicator(RenderObject*, const RenderObject::PaintInfo& paintInfo, const IntRect& r)
759 if (paintInfo.context->paintingDisabled())
762 LocalCurrentGraphicsContext localContext(paintInfo.context);
763 wkDrawCapsLockIndicator(paintInfo.context->platformContext(), r);
768 bool RenderThemeChromiumMac::paintTextArea(RenderObject* o, const RenderObject::PaintInfo& paintInfo, const IntRect& r
    [all...]
RenderPath.cpp 214 void RenderPath::paint(PaintInfo& paintInfo, int, int)
216 if (paintInfo.context->paintingDisabled() || style()->visibility() == HIDDEN || m_path.isEmpty())
224 if (!nonLocalBoundingBox.intersects(paintInfo.rect) && !paintInfo.rect.isEmpty())
227 PaintInfo childPaintInfo(paintInfo);
233 PaintInfo savedInfo(childPaintInfo);
InlineTextBox.h 77 virtual void paint(RenderObject::PaintInfo&, int tx, int ty);
RenderBoxModelObject.h 93 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, int height, InlineFlowBox* = 0, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
RenderSVGViewportContainer.cpp 64 void RenderSVGViewportContainer::applyViewportClip(PaintInfo& paintInfo)
67 paintInfo.context->clip(m_viewport);
RenderTextControlSingleLine.h 61 virtual void paint(PaintInfo&, int tx, int ty);
RootInlineBox.cpp 118 void RootInlineBox::paintEllipsisBox(RenderObject::PaintInfo& paintInfo, int tx, int ty) const
120 if (m_hasEllipsisBox && renderer()->shouldPaintWithinRoot(paintInfo) && renderer()->style()->visibility() == VISIBLE &&
121 paintInfo.phase == PaintPhaseForeground)
122 ellipsisBox()->paint(paintInfo, tx, ty);
143 void RootInlineBox::paintCustomHighlight(RenderObject::PaintInfo& paintInfo, int tx, int ty, const AtomicString& highlightType)
145 if (!renderer()->shouldPaintWithinRoot(paintInfo) || renderer()->style()->visibility() != VISIBLE || paintInfo.phase != PaintPhaseForeground)
158 if (inflatedRect.intersects(paintInfo.rect)
    [all...]
SVGMarkerLayoutInfo.cpp 102 void SVGMarkerLayoutInfo::drawMarkers(RenderObject::PaintInfo& paintInfo)
112 layout.marker->draw(paintInfo, layout.matrix);
InlineBox.cpp 162 void InlineBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
164 if (!renderer()->shouldPaintWithinRoot(paintInfo) || (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection))
170 bool preservePhase = paintInfo.phase == PaintPhaseSelection || paintInfo.phase == PaintPhaseTextClip;
171 RenderObject::PaintInfo info(paintInfo);
172 info.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground
    [all...]
RenderSVGRoot.cpp 120 void RenderSVGRoot::paint(PaintInfo& paintInfo, int parentX, int parentY)
122 if (paintInfo.context->paintingDisabled())
128 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection))
129 paintBoxDecorations(paintInfo, borderBoxOriginInContainer.x(), borderBoxOriginInContainer.y());
139 // Make a copy of the PaintInfo because applyTransformToPaintInfo will modify the damage rect.
140 RenderObject::PaintInfo childPaintInfo(paintInfo);
161 finishRenderSVGContent(this, childPaintInfo, filter, paintInfo.context)
    [all...]
RenderSVGText.cpp 159 void RenderSVGText::paint(PaintInfo& paintInfo, int, int)
161 PaintInfo pi(paintInfo);
RenderView.h 66 virtual void paint(PaintInfo&, int tx, int ty);
67 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
EllipsisBox.cpp 30 void EllipsisBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
32 GraphicsContext* context = paintInfo.context;
48 Color foreground = paintInfo.forceBlackText ? Color::black : renderer()->selectionForegroundColor();
67 m_markupBox->paint(paintInfo, tx, ty);
RenderInline.h 94 virtual void paint(PaintInfo&, int tx, int ty);
RenderListBox.cpp 253 void RenderListBox::paintObject(PaintInfo& paintInfo, int tx, int ty)
260 if (paintInfo.phase == PaintPhaseForeground) {
263 paintItemForeground(paintInfo, tx, ty, index);
269 RenderBlock::paintObject(paintInfo, tx, ty);
271 if (paintInfo.phase == PaintPhaseBlockBackground)
272 paintScrollbar(paintInfo, tx, ty);
273 else if (paintInfo.phase == PaintPhaseChildBlockBackground || paintInfo.phase == PaintPhaseChildBlockBackgrounds) {
276 paintItemBackground(paintInfo, tx, ty, index)
    [all...]
RenderMediaControls.cpp 85 bool RenderMediaControls::paintMediaControlsPart(MediaControlElementType part, RenderObject* o, const RenderObject::PaintInfo& paintInfo, const IntRect& r)
91 paintThemePart(SafariTheme::MediaFullscreenButtonPart, paintInfo.context->platformContext(), r, NSRegularControlSize, determineState(o));
98 paintThemePart(captionsVisible ? SafariTheme::MediaHideClosedCaptionsButtonPart : SafariTheme::MediaShowClosedCaptionsButtonPart, paintInfo.context->platformContext(), r, NSRegularControlSize, determineState(o));
106 paintThemePart(audioEnabled ? SafariTheme::MediaMuteButtonPart : SafariTheme::MediaUnMuteButtonPart, paintInfo.context->platformContext(), r, NSRegularControlSize, determineState(o));
113 paintThemePart(canPlay ? SafariTheme::MediaPlayButtonPart : SafariTheme::MediaPauseButtonPart, paintInfo.context->platformContext(), r, NSRegularControlSize, determineState(o));
117 paintThemePart(SafariTheme::MediaSeekBackButtonPart, paintInfo.context->platformContext(), r, NSRegularControlSize, determineState(o));
120 paintThemePart(SafariTheme::MediaSeekForwardButtonPart, paintInfo.context->platformContext(), r, NSRegularControlSize, determineState(o));
124 STPaintProgressIndicator(SafariTheme::MediaType, paintInfo.context->platformContext(), r, NSRegularControlSize, 0, mediaElement->percentLoaded());
128 paintThemePart(SafariTheme::MediaSliderThumbPart, paintInfo.context->platformContext(), r, NSRegularControlSize, determineState(o))
    [all...]
RenderScrollbarPart.cpp 167 RenderObject::PaintInfo paintInfo(graphicsContext, rect, PaintPhaseBlockBackground, false, 0, 0);
168 paint(paintInfo, tx, ty);
169 paintInfo.phase = PaintPhaseChildBlockBackgrounds;
170 paint(paintInfo, tx, ty);
171 paintInfo.phase = PaintPhaseFloat;
172 paint(paintInfo, tx, ty);
173 paintInfo.phase = PaintPhaseForeground;
174 paint(paintInfo, tx, ty);
175 paintInfo.phase = PaintPhaseOutline
    [all...]
RenderTableRow.cpp 182 void RenderTableRow::paint(PaintInfo& paintInfo, int tx, int ty)
190 if (paintInfo.phase == PaintPhaseBlockBackground || paintInfo.phase == PaintPhaseChildBlockBackground) {
192 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, this);
195 child->paint(paintInfo, tx, ty);
RenderText.h 143 virtual void paint(PaintInfo&, int, int) { ASSERT_NOT_REACHED(); }
RenderFieldset.cpp 120 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty)
122 if (!shouldPaintWithinRoot(paintInfo))
129 return RenderBlock::paintBoxDecorations(paintInfo, tx, ty);
136 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Normal);
138 paintFillLayers(paintInfo, style()->backgroundColor(), style()->backgroundLayers(), tx, ty, w, h);
139 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Inset);
146 return paintBorderMinusLegend(paintInfo.context, tx, ty, w, h, style(), legend->x(), legend->width(), legendBottom);
150 GraphicsContext* graphicsContext = paintInfo.context;
158 paintBorder(paintInfo.context, tx, ty, w, h, style(), true, true)
    [all...]
RenderLineBoxList.cpp 147 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, RenderObject::PaintInfo& paintInfo, int tx, int ty) const
150 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection && paintInfo.phase != PaintPhaseOutline
151 && paintInfo.phase != PaintPhaseSelfOutline && paintInfo.phase != PaintPhaseChildOutlines && paintInfo.phase != PaintPhaseTextClip
152 && paintInfo.phase != PaintPhaseMask)
165 int yPos = firstLineBox()->topVisibleOverflow() - renderer->maximalOutlineSize(paintInfo.phase)
    [all...]
RenderReplaced.cpp 95 void RenderReplaced::paint(PaintInfo& paintInfo, int tx, int ty)
97 if (!shouldPaint(paintInfo, tx, ty))
103 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection))
104 paintBoxDecorations(paintInfo, tx, ty);
106 if (paintInfo.phase == PaintPhaseMask) {
107 paintMask(paintInfo, tx, ty);
111 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth()
    [all...]
InlineFlowBox.cpp 624 void InlineFlowBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
627 overflowRect.inflate(renderer()->maximalOutlineSize(paintInfo.phase));
630 if (!paintInfo.rect.intersects(overflowRect))
633 if (paintInfo.phase != PaintPhaseChildOutlines) {
634 if (paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) {
658 paintInfo.outlineObjects->add(inlineFlow);
660 } else if (paintInfo.phase == PaintPhaseMask) {
661 paintMask(paintInfo, tx, ty)
    [all...]
RenderObject.h 483 struct PaintInfo {
484 PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, bool newForceBlackText,
506 virtual void paint(PaintInfo&, int tx, int ty);
    [all...]

Completed in 785 milliseconds

1 2 34 5