Bug 347374 - pointer events not working on unpainted geometry, events

not respecting fill rule or dasharray.  r+sr=roc
This commit is contained in:
tor%cs.brown.edu 2006-08-07 16:41:58 +00:00
Родитель 308c11720f
Коммит 59eacee13b
3 изменённых файлов: 37 добавлений и 30 удалений

Просмотреть файл

@ -380,10 +380,8 @@ nsSVGGeometryFrame::SetupCairoStrokeGeometry(cairo_t *aCtx)
} }
} }
nsresult void
nsSVGGeometryFrame::SetupCairoStroke(nsISVGRendererCanvas *aCanvas, nsSVGGeometryFrame::SetupCairoStrokeHitGeometry(cairo_t *aCtx)
cairo_t *aCtx,
void **aClosure)
{ {
SetupCairoStrokeGeometry(aCtx); SetupCairoStrokeGeometry(aCtx);
@ -394,6 +392,14 @@ nsSVGGeometryFrame::SetupCairoStroke(nsISVGRendererCanvas *aCanvas,
cairo_set_dash(aCtx, dashArray, count, GetStrokeDashoffset()); cairo_set_dash(aCtx, dashArray, count, GetStrokeDashoffset());
delete [] dashArray; delete [] dashArray;
} }
}
nsresult
nsSVGGeometryFrame::SetupCairoStroke(nsISVGRendererCanvas *aCanvas,
cairo_t *aCtx,
void **aClosure)
{
SetupCairoStrokeHitGeometry(aCtx);
if (GetStateBits() & NS_STATE_SVG_STROKE_PSERVER) { if (GetStateBits() & NS_STATE_SVG_STROKE_PSERVER) {
nsSVGPaintServerFrame *ps = NS_STATIC_CAST(nsSVGPaintServerFrame*, nsSVGPaintServerFrame *ps = NS_STATIC_CAST(nsSVGPaintServerFrame*,

Просмотреть файл

@ -96,6 +96,9 @@ public:
// Set up a cairo context for measuring a stroked path // Set up a cairo context for measuring a stroked path
void SetupCairoStrokeGeometry(cairo_t *aCtx); void SetupCairoStrokeGeometry(cairo_t *aCtx);
// Set up a cairo context for hit testing a stroked path
void SetupCairoStrokeHitGeometry(cairo_t *aCtx);
// Setup/Cleanup a cairo context for stroking path // Setup/Cleanup a cairo context for stroking path
nsresult SetupCairoStroke(nsISVGRendererCanvas *aCanvas, nsresult SetupCairoStroke(nsISVGRendererCanvas *aCanvas,
cairo_t *aCtx, cairo_t *aCtx,

Просмотреть файл

@ -339,17 +339,23 @@ nsSVGPathGeometryFrame::GetFrameForPointSVG(float x, float y, nsIFrame** hit)
double xx = x, yy = y; double xx = x, yy = y;
cairo_device_to_user(ctx, &xx, &yy); cairo_device_to_user(ctx, &xx, &yy);
if (IsClipChild()) { PRUint32 fillRule;
if (GetClipRule() == NS_STYLE_FILL_RULE_EVENODD) if (IsClipChild())
cairo_set_fill_rule(ctx, CAIRO_FILL_RULE_EVEN_ODD); fillRule = GetClipRule();
else else
cairo_set_fill_rule(ctx, CAIRO_FILL_RULE_WINDING); fillRule = GetStyleSVG()->mFillRule;
}
if (fillRule == NS_STYLE_FILL_RULE_EVENODD)
cairo_set_fill_rule(ctx, CAIRO_FILL_RULE_EVEN_ODD);
else
cairo_set_fill_rule(ctx, CAIRO_FILL_RULE_WINDING);
if (mask & HITTEST_MASK_FILL) if (mask & HITTEST_MASK_FILL)
isHit = cairo_in_fill(ctx, xx, yy); isHit = cairo_in_fill(ctx, xx, yy);
if (!isHit && (mask & HITTEST_MASK_STROKE)) if (!isHit && (mask & HITTEST_MASK_STROKE)) {
SetupCairoStrokeHitGeometry(ctx);
isHit = cairo_in_stroke(ctx, xx, yy); isHit = cairo_in_stroke(ctx, xx, yy);
}
cairo_destroy(ctx); cairo_destroy(ctx);
@ -417,31 +423,23 @@ nsSVGPathGeometryFrame::UpdateCoveredRegion()
{ {
mRect.Empty(); mRect.Empty();
PRBool hasFill = HasFill(); cairo_t *ctx = cairo_create(nsSVGUtils::GetCairoComputationalSurface());
PRBool hasStroke = HasStroke();
if (hasFill || hasStroke) { GeneratePath(ctx, nsnull);
cairo_t *ctx = cairo_create(nsSVGUtils::GetCairoComputationalSurface());
GeneratePath(ctx, nsnull); double xmin, ymin, xmax, ymax;
double xmin, ymin, xmax, ymax; SetupCairoStrokeGeometry(ctx);
cairo_stroke_extents(ctx, &xmin, &ymin, &xmax, &ymax);
if (!IsDegeneratePath(xmin, ymin, xmax, ymax)) {
cairo_user_to_device(ctx, &xmin, &ymin);
cairo_user_to_device(ctx, &xmax, &ymax);
if (hasStroke) { mRect = nsSVGUtils::ToBoundingPixelRect(xmin, ymin, xmax, ymax);
SetupCairoStrokeGeometry(ctx);
cairo_stroke_extents(ctx, &xmin, &ymin, &xmax, &ymax);
} else
cairo_fill_extents(ctx, &xmin, &ymin, &xmax, &ymax);
if (!IsDegeneratePath(xmin, ymin, xmax, ymax)) {
cairo_user_to_device(ctx, &xmin, &ymin);
cairo_user_to_device(ctx, &xmax, &ymax);
mRect = nsSVGUtils::ToBoundingPixelRect(xmin, ymin, xmax, ymax);
}
cairo_destroy(ctx);
} }
cairo_destroy(ctx);
// Add in markers // Add in markers
mRect = GetCoveredRegion(); mRect = GetCoveredRegion();