2009-10-07 13:02:12 +0200 sj r276751 : #i104579# fixed horz and vert adjustment for master styles (excluding notes master) 2009-10-06 18:09:14 +0200 sj r276724 : #i104579# fixed horz and vert adjustment for master styles 2009-10-05 15:02:38 +0200 sj r276679 : #i104685# fixed text color problem 2009-10-02 14:01:22 +0200 aw r276641 : #i105508# added own flag for ClipOnBounds to SdrBlockTextPrimitive2D and the helper createTextPrimitive; adapted usages; corrected VerticalText stuff; corrected ClipOnBounds for CustomShapes 2009-09-30 11:55:44 +0200 cl r276550 : CWS-TOOLING: rebase CWS impress177 to trunk@276429 (milestone: DEV300:m60) 2009-09-28 17:57:37 +0200 cl r276498 : #i94900# after a paste special make sure the stylesheets for outline shapes are correct 2009-09-24 17:36:29 +0200 af r276425 : #i103464# Restore device more reliably. 2009-09-24 12:29:31 +0200 sj r276417 : #i104685# fixed text color propblem 2009-09-22 16:48:06 +0200 sj r276360 : #i104682# fixed table border line thickness 2009-09-22 16:46:29 +0200 sj r276359 : #i104682# fixed table border line thickness 2009-09-22 10:29:30 +0200 sj r276346 : #104579# fixed horz and vert adjustment for master styles 2009-09-21 14:18:29 +0200 af r276330 : #i100905# Fixed crash when region is split into bands. 2009-09-15 15:44:30 +0200 cl r276181 : #i103179# always hide presentation shapes from master page if rendered as slide background 2009-09-15 10:44:52 +0200 cl r276155 : #i104579# return correct IsEmptyPresObj state 2009-09-14 16:51:41 +0200 cl r276132 : #i96538# restored OOo 3.0 numbering behaviour
89 lines
2.7 KiB
C++
Executable File
89 lines
2.7 KiB
C++
Executable File
/*************************************************************************
|
|
*
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: dx_surfacegraphics.cxx,v $
|
|
* $Revision: 1.4 $
|
|
*
|
|
* This file is part of OpenOffice.org.
|
|
*
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
* only, as published by the Free Software Foundation.
|
|
*
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License version 3 for more details
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
* <http://www.openoffice.org/license.html>
|
|
* for a copy of the LGPLv3 License.
|
|
*
|
|
************************************************************************/
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_canvas.hxx"
|
|
|
|
#include "dx_surfacegraphics.hxx"
|
|
#include "dx_impltools.hxx"
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
namespace dxcanvas
|
|
{
|
|
namespace
|
|
{
|
|
struct GraphicsDeleter
|
|
{
|
|
COMReference<surface_type> mpSurface;
|
|
HDC maHDC;
|
|
|
|
GraphicsDeleter(const COMReference<surface_type>& rSurface, HDC hdc) :
|
|
mpSurface(rSurface),
|
|
maHDC(hdc)
|
|
{}
|
|
|
|
void operator()( Gdiplus::Graphics* pGraphics )
|
|
{
|
|
if(!pGraphics)
|
|
return;
|
|
|
|
pGraphics->Flush(Gdiplus::FlushIntentionSync);
|
|
delete pGraphics;
|
|
|
|
if(mpSurface.is())
|
|
mpSurface->ReleaseDC( maHDC );
|
|
}
|
|
};
|
|
}
|
|
|
|
GraphicsSharedPtr createSurfaceGraphics(const COMReference<surface_type>& rSurface )
|
|
{
|
|
Gdiplus::Graphics* pGraphics;
|
|
GraphicsSharedPtr pRet;
|
|
HDC aHDC;
|
|
if( SUCCEEDED(rSurface->GetDC( &aHDC )) )
|
|
{
|
|
pGraphics = Gdiplus::Graphics::FromHDC( aHDC );
|
|
if(pGraphics)
|
|
{
|
|
tools::setupGraphics( *pGraphics );
|
|
pRet.reset(pGraphics,
|
|
GraphicsDeleter(rSurface, aHDC));
|
|
return pRet;
|
|
}
|
|
else
|
|
rSurface->ReleaseDC( aHDC );
|
|
}
|
|
|
|
throw uno::RuntimeException();
|
|
}
|
|
}
|