Lines Matching refs:shape

73             shape;  variable
90 shape = div.firstChild;
91 shape.style['behavior'] = 'url(#default#VML)';
92 PIE.supportsVML = (typeof shape['adj'] === "object");
2266 shape = shapes[ name ],
2269 if( !shape ) {
2270 shape = shapes[ name ] = PIE.Util.createVmlElement( 'shape' );
2272 shape.appendChild( shape[ subElName ] = PIE.Util.createVmlElement( subElName ) );
2283 parent.appendChild( shape );
2285 s = shape.style;
2290 return shape;
2301 shape = shapes && shapes[ name ]; variable
2302 if( shape ) {
2303 shape.parentNode.removeChild( shape );
2306 return !!shape;
2664 shape, w, h, s, alpha;
2669 shape = this.getShape( 'bgColor', 'fill', this.getBox(), 1 );
2672 shape.stroked = false;
2673 shape.coordsize = w * 2 + ',' + h * 2;
2674 shape.coordorigin = '1,1';
2675 shape.path = this.getBoxPath( null, 2 );
2676 s = shape.style;
2679 shape.fill.color = color.colorValue( el );
2683 shape.fill.opacity = alpha;
2697 img, shape, w, h, s, i;
2708 shape = this.getShape( 'bgImage' + i, 'fill', this.getBox(), 2 );
2710 shape.stroked = false;
2711 shape.fill.type = 'tile';
2712 shape.fillcolor = 'none';
2713 shape.coordsize = w * 2 + ',' + h * 2;
2714 shape.coordorigin = '1,1';
2715 shape.path = this.getBoxPath( 0, 2 );
2716 s = shape.style;
2721 this.addLinearGradient( shape, img );
2724 shape.fill.src = img.imgUrl;
2725 this.positionBgImage( shape, i );
2741 positionBgImage: function( shape, index ) { argument
2743 PIE.Util.withImageSize( shape.fill.src, function( size ) {
2752 var fill = shape.fill,
2785shape.style.clip = 'rect(' + clipT + 'px,' + clipR + 'px,' + clipB + 'px,' + clipL + 'px)';
2797 addLinearGradient: function( shape, info ) { argument
2802 fill = shape.fill,
2939 shape, stroke, s,
2948shape = this.getShape( 'borderPiece' + i, seg.stroke ? 'stroke' : 'fill', this.getBox() );
2949 shape.coordsize = w * 2 + ',' + h * 2;
2950 shape.coordorigin = '1,1';
2951 shape.path = seg.path;
2952 s = shape.style;
2956 shape.filled = !!seg.fill;
2957 shape.stroked = !!seg.stroke;
2959 stroke = shape.stroke;
2965 shape.fill.color = seg.fill.colorValue( el );
3356 shadowInfo, shape, fill, ss, xOff, yOff, spread, blur, shrink, color, alpha, path,
3361 var shape = me.getShape( 'shadow' + index + corner, 'fill', box, len - index ),
3362 fill = shape.fill;
3365 shape['coordsize'] = w * 2 + ',' + h * 2;
3366 shape['coordorigin'] = '1,1';
3369 shape['stroked'] = false;
3370 shape['filled'] = true;
3379 shape.path = path;
3382 ss = shape.style;
3388 return shape;
3423 shape = getShadowShape( i, corner, xOff, yOff, color, blur, path );
3424 fill = shape.fill;
3431shape.style.clip = 'rect(' + ( ( isBottom ? totalH / 2 : 0 ) + clipAdjust ) + 'px,' +
3438 shape = getShadowShape( i, '', xOff, yOff, color, blur, path );
3439 fill = shape.fill;
3444 shape = getShadowShape( i, '', xOff, yOff, color, blur, path );
3449 shape.fill.opacity = alpha;
3483 var shape = this.getShape( 'img', 'fill', this.getBox() ),
3484 fill = shape.fill,
3505 shape.stroked = false;
3509 shape.coordsize = w * 2 + ',' + h * 2;
3510 shape.coordorigin = '1,1';
3511 shape.path = this.getBoxPath( {
3517 s = shape.style;