callcatcher: update list, add README, remove some newly unused code
This commit is contained in:
@@ -78,34 +78,6 @@ namespace cppcanvas
|
||||
class TransparencyGroupAction : public Action, private ::boost::noncopyable
|
||||
{
|
||||
public:
|
||||
/** Create new transparency group action.
|
||||
|
||||
@param rGroupMtf
|
||||
Metafile that groups all actions to be rendered
|
||||
transparent
|
||||
|
||||
@param rParms
|
||||
Render parameters
|
||||
|
||||
@param rDstPoint
|
||||
Left, top edge of destination, in current state
|
||||
coordinate system
|
||||
|
||||
@param rDstSize
|
||||
Size of the transparency group object, in current
|
||||
state coordinate system.
|
||||
|
||||
@param nAlpha
|
||||
Alpha value, must be in the range [0,1]
|
||||
*/
|
||||
TransparencyGroupAction( MtfAutoPtr& rGroupMtf,
|
||||
const Renderer::Parameters& rParms,
|
||||
const ::basegfx::B2DPoint& rDstPoint,
|
||||
const ::basegfx::B2DVector& rDstSize,
|
||||
double nAlpha,
|
||||
const CanvasSharedPtr& rCanvas,
|
||||
const OutDevState& rState );
|
||||
|
||||
/** Create new transparency group action.
|
||||
|
||||
@param rGroupMtf
|
||||
@@ -180,40 +152,6 @@ namespace cppcanvas
|
||||
aLocalTransformation );
|
||||
}
|
||||
|
||||
SAL_WNODEPRECATED_DECLARATIONS_PUSH
|
||||
TransparencyGroupAction::TransparencyGroupAction( MtfAutoPtr& rGroupMtf,
|
||||
const Renderer::Parameters& rParms,
|
||||
const ::basegfx::B2DPoint& rDstPoint,
|
||||
const ::basegfx::B2DVector& rDstSize,
|
||||
double nAlpha,
|
||||
const CanvasSharedPtr& rCanvas,
|
||||
const OutDevState& rState ) :
|
||||
mpGroupMtf( rGroupMtf ),
|
||||
mpAlphaGradient(),
|
||||
maParms( rParms ),
|
||||
maDstSize( rDstSize ),
|
||||
mxBufferBitmap(),
|
||||
maLastTransformation(),
|
||||
mpCanvas( rCanvas ),
|
||||
maState(),
|
||||
mnAlpha( nAlpha )
|
||||
{
|
||||
tools::initRenderState(maState,rState);
|
||||
implSetupTransform( maState, rDstPoint );
|
||||
|
||||
// correct clip (which is relative to original transform)
|
||||
tools::modifyClip( maState,
|
||||
rState,
|
||||
rCanvas,
|
||||
rDstPoint,
|
||||
NULL,
|
||||
NULL );
|
||||
|
||||
maLastSubset.mnSubsetBegin = 0;
|
||||
maLastSubset.mnSubsetEnd = -1;
|
||||
}
|
||||
SAL_WNODEPRECATED_DECLARATIONS_POP
|
||||
|
||||
SAL_WNODEPRECATED_DECLARATIONS_PUSH
|
||||
TransparencyGroupAction::TransparencyGroupAction( MtfAutoPtr& rGroupMtf,
|
||||
GradientAutoPtr& rAlphaGradient,
|
||||
|
Reference in New Issue
Block a user