Kaydet (Commit) 8484e526 authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl Kaydeden (comit) Tomaž Vajngerl

tdf#117427 missing API for determining and loading linked graphic

This adds 2 properties to GraphicDescriptor:
"Linked" - to indicate if the graphic is a linked one
"OriginURL" - the URL of the location from where the graphic was
or will be loaded (and is linked to)

Additionally GraphicProvider was extended with a "LoadAsLink"
(media)property, which can be passed using queryGraphic method.
If "LoadAsLink" is set to true, then the Graphic will be created
as a linked one.

In addition the tests for this API was added to VCL (home of this
API implementors).

Change-Id: Ibdabe5e7780d1b372d1e66c3e19b18779fee2c9a
Reviewed-on: https://gerrit.libreoffice.org/54090Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarTomaž Vajngerl <quikee@gmail.com>
üst 3e2fdcf4
......@@ -136,6 +136,18 @@ published service GraphicDescriptor
querying for the GraphicDescriptor</p>
*/
[optional, property] boolean Animated;
/** Indicates that the graphic is an external linked graphic
@since LibreOffice 6.1
*/
[optional, property] boolean Linked;
/** The URL of the location from where the graphic was loaded from
@since LibreOffice 6.1
*/
[optional, property] string OriginURL;
};
} ; } ; } ; } ;
......
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
$(eval $(call gb_CppunitTest_CppunitTest,vcl_apitests))
$(eval $(call gb_CppunitTest_set_include,vcl_apitests,\
$$(INCLUDE) \
))
$(eval $(call gb_CppunitTest_add_exception_objects,vcl_apitests, \
vcl/qa/api/XGraphicTest \
))
$(eval $(call gb_CppunitTest_use_externals,vcl_apitests,boost_headers))
$(eval $(call gb_CppunitTest_use_libraries,vcl_apitests, \
comphelper \
cppu \
cppuhelper \
sal \
svt \
test \
tl \
unotest \
vcl \
))
$(eval $(call gb_CppunitTest_use_api,vcl_apitests,\
offapi \
udkapi \
))
$(eval $(call gb_CppunitTest_use_ure,vcl_apitests))
$(eval $(call gb_CppunitTest_use_vcl,vcl_apitests))
$(eval $(call gb_CppunitTest_use_configuration,vcl_apitests))
$(eval $(call gb_CppunitTest_use_components,vcl_apitests,\
comphelper/util/comphelp \
configmgr/source/configmgr \
filter/source/config/cache/filterconfig1 \
filter/source/storagefilterdetect/storagefd \
i18npool/util/i18npool \
package/source/xstor/xstor \
package/util/package2 \
sfx2/util/sfx \
sot/util/sot \
svl/source/fsstor/fsstorage \
svtools/util/svt \
ucb/source/core/ucb1 \
ucb/source/ucp/file/ucpfile1 \
ucb/source/ucp/tdoc/ucptdoc1 \
unotools/util/utl \
uui/util/uui \
vcl/vcl.common \
))
# vim: set noet sw=4 ts=4:
......@@ -203,6 +203,7 @@ $(eval $(call gb_Module_add_check_targets,vcl,\
CppunitTest_vcl_pdfexport \
CppunitTest_vcl_errorhandler \
CppunitTest_vcl_bitmap_render_test \
CppunitTest_vcl_apitests \
))
......
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <test/bootstrapfixture.hxx>
#include <com/sun/star/uno/Sequence.h>
#include <com/sun/star/graphic/XGraphic.hpp>
#include <com/sun/star/graphic/GraphicType.hpp>
#include <com/sun/star/graphic/GraphicProvider.hpp>
#include <com/sun/star/graphic/XGraphicProvider.hpp>
#include <com/sun/star/beans/PropertyValue.hpp>
#include <com/sun/star/awt/Size.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/propertysequence.hxx>
#include <rtl/uri.hxx>
namespace
{
using namespace css;
class XGraphicTest : public test::BootstrapFixture
{
public:
OUString maDataUrl;
XGraphicTest()
: BootstrapFixture(true, false)
, maDataUrl("/vcl/qa/api/data/")
{
}
OUString getFullUrl(const OUString& sFileName)
{
return m_directories.getURLFromSrc(maDataUrl) + sFileName;
}
void testGraphic();
void testGraphicDescriptor();
void testGraphicProvider();
CPPUNIT_TEST_SUITE(XGraphicTest);
CPPUNIT_TEST(testGraphic);
CPPUNIT_TEST(testGraphicDescriptor);
CPPUNIT_TEST(testGraphicProvider);
CPPUNIT_TEST_SUITE_END();
};
BitmapEx createBitmap()
{
Bitmap aBitmap(Size(100, 50), 24);
aBitmap.Erase(COL_LIGHTRED);
return BitmapEx(aBitmap);
}
void XGraphicTest::testGraphic()
{
Graphic aGraphic;
uno::Reference<graphic::XGraphic> xGraphic = aGraphic.GetXGraphic();
}
void XGraphicTest::testGraphicDescriptor()
{
Graphic aGraphic(createBitmap());
uno::Reference<graphic::XGraphic> xGraphic = aGraphic.GetXGraphic();
uno::Reference<beans::XPropertySet> xGraphicDescriptor(xGraphic, uno::UNO_QUERY_THROW);
//[property] byte GraphicType;
sal_Int8 nType;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("GraphicType") >>= nType);
CPPUNIT_ASSERT_EQUAL(graphic::GraphicType::PIXEL, nType);
//[property] string MimeType;
OUString sMimeType;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("MimeType") >>= sMimeType);
CPPUNIT_ASSERT_EQUAL(OUString("image/x-vclgraphic"), sMimeType);
//[optional, property] ::com::sun::star::awt::Size SizePixel;
awt::Size aSizePixel;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("SizePixel") >>= aSizePixel);
CPPUNIT_ASSERT_EQUAL(sal_Int32(100), aSizePixel.Width);
CPPUNIT_ASSERT_EQUAL(sal_Int32(50), aSizePixel.Height);
//[optional, property] ::com::sun::star::awt::Size Size100thMM;
awt::Size aSize100thMM;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("Size100thMM") >>= aSize100thMM);
CPPUNIT_ASSERT_EQUAL(sal_Int32(0), aSize100thMM.Width);
CPPUNIT_ASSERT_EQUAL(sal_Int32(0), aSize100thMM.Height);
//[optional, property] byte BitsPerPixel;
sal_Int8 nBitsPerPixel;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("BitsPerPixel") >>= nBitsPerPixel);
CPPUNIT_ASSERT_EQUAL(sal_Int8(24), nBitsPerPixel);
//[optional, property] boolean Transparent;
bool bTransparent;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("Transparent") >>= bTransparent);
CPPUNIT_ASSERT_EQUAL(false, bTransparent);
//[optional, property] boolean Alpha;
bool bAlpha;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("Alpha") >>= bAlpha);
CPPUNIT_ASSERT_EQUAL(false, bAlpha);
//[optional, property] boolean Animated;
bool bAnimated;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("Animated") >>= bAnimated);
CPPUNIT_ASSERT_EQUAL(false, bAnimated);
}
void XGraphicTest::testGraphicProvider()
{
OUString aGraphicURL = getFullUrl("TestGraphic.png");
{ // Load lazy
uno::Reference<uno::XComponentContext> xContext(comphelper::getProcessComponentContext());
uno::Reference<graphic::XGraphicProvider> xGraphicProvider;
xGraphicProvider.set(graphic::GraphicProvider::create(xContext), uno::UNO_QUERY_THROW);
auto aMediaProperties(comphelper::InitPropertySequence({
{ "URL", uno::makeAny(aGraphicURL) },
{ "LazyRead", uno::makeAny(true) },
{ "LoadAsLink", uno::makeAny(false) },
}));
uno::Reference<graphic::XGraphic> xGraphic(
xGraphicProvider->queryGraphic(aMediaProperties));
CPPUNIT_ASSERT(xGraphic.is());
Graphic aGraphic(xGraphic);
CPPUNIT_ASSERT_EQUAL(false, aGraphic.isAvailable());
uno::Reference<beans::XPropertySet> xGraphicDescriptor(xGraphic, uno::UNO_QUERY_THROW);
sal_Int8 nType;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("GraphicType") >>= nType);
CPPUNIT_ASSERT_EQUAL(graphic::GraphicType::PIXEL, nType);
awt::Size aSizePixel;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("SizePixel") >>= aSizePixel);
CPPUNIT_ASSERT_EQUAL(sal_Int32(8), aSizePixel.Width);
CPPUNIT_ASSERT_EQUAL(sal_Int32(8), aSizePixel.Height);
bool bLinked;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("Linked") >>= bLinked);
CPPUNIT_ASSERT_EQUAL(false, bLinked);
OUString sOriginURL;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("OriginURL") >>= sOriginURL);
CPPUNIT_ASSERT_EQUAL(OUString(), sOriginURL);
CPPUNIT_ASSERT_EQUAL(false, aGraphic.isAvailable());
}
{ // Load as link
uno::Reference<uno::XComponentContext> xContext(comphelper::getProcessComponentContext());
uno::Reference<graphic::XGraphicProvider> xGraphicProvider;
xGraphicProvider.set(graphic::GraphicProvider::create(xContext), uno::UNO_QUERY_THROW);
auto aMediaProperties(comphelper::InitPropertySequence({
{ "URL", uno::makeAny(aGraphicURL) },
{ "LazyRead", uno::makeAny(false) },
{ "LoadAsLink", uno::makeAny(true) },
}));
uno::Reference<graphic::XGraphic> xGraphic(
xGraphicProvider->queryGraphic(aMediaProperties));
CPPUNIT_ASSERT(xGraphic.is());
Graphic aGraphic(xGraphic);
CPPUNIT_ASSERT_EQUAL(true, aGraphic.isAvailable());
uno::Reference<beans::XPropertySet> xGraphicDescriptor(xGraphic, uno::UNO_QUERY_THROW);
sal_Int8 nType;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("GraphicType") >>= nType);
CPPUNIT_ASSERT_EQUAL(graphic::GraphicType::PIXEL, nType);
awt::Size aSizePixel;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("SizePixel") >>= aSizePixel);
CPPUNIT_ASSERT_EQUAL(sal_Int32(8), aSizePixel.Width);
CPPUNIT_ASSERT_EQUAL(sal_Int32(8), aSizePixel.Height);
bool bLinked;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("Linked") >>= bLinked);
CPPUNIT_ASSERT_EQUAL(true, bLinked);
OUString sOriginURL;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("OriginURL") >>= sOriginURL);
CPPUNIT_ASSERT_EQUAL(aGraphicURL, sOriginURL);
}
{ // Load lazy and as link
uno::Reference<uno::XComponentContext> xContext(comphelper::getProcessComponentContext());
uno::Reference<graphic::XGraphicProvider> xGraphicProvider;
xGraphicProvider.set(graphic::GraphicProvider::create(xContext), uno::UNO_QUERY_THROW);
auto aMediaProperties(comphelper::InitPropertySequence({
{ "URL", uno::makeAny(aGraphicURL) },
{ "LazyRead", uno::makeAny(true) },
{ "LoadAsLink", uno::makeAny(true) },
}));
uno::Reference<graphic::XGraphic> xGraphic(
xGraphicProvider->queryGraphic(aMediaProperties));
CPPUNIT_ASSERT(xGraphic.is());
Graphic aGraphic(xGraphic);
CPPUNIT_ASSERT_EQUAL(false, aGraphic.isAvailable());
uno::Reference<beans::XPropertySet> xGraphicDescriptor(xGraphic, uno::UNO_QUERY_THROW);
sal_Int8 nType;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("GraphicType") >>= nType);
CPPUNIT_ASSERT_EQUAL(graphic::GraphicType::PIXEL, nType);
awt::Size aSizePixel;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("SizePixel") >>= aSizePixel);
CPPUNIT_ASSERT_EQUAL(sal_Int32(8), aSizePixel.Width);
CPPUNIT_ASSERT_EQUAL(sal_Int32(8), aSizePixel.Height);
bool bLinked;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("Linked") >>= bLinked);
CPPUNIT_ASSERT_EQUAL(true, bLinked);
OUString sOriginURL;
CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("OriginURL") >>= sOriginURL);
CPPUNIT_ASSERT_EQUAL(aGraphicURL, sOriginURL);
CPPUNIT_ASSERT_EQUAL(false, aGraphic.isAvailable());
}
}
} // namespace
CPPUNIT_TEST_SUITE_REGISTRATION(XGraphicTest);
CPPUNIT_PLUGIN_IMPLEMENT();
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -1535,7 +1535,10 @@ bool ImpGraphic::loadPrepared()
Graphic aGraphic;
if (mpGfxLink->LoadNative(aGraphic))
{
GraphicExternalLink aLink = maGraphicExternalLink;
*this = *aGraphic.ImplGetImpGraphic();
maGraphicExternalLink = aLink;
return true;
}
return false;
......
......@@ -34,7 +34,6 @@
#include <vcl/svapp.hxx>
#include <memory>
enum class UnoGraphicProperty
{
GraphicType = 1
......@@ -45,6 +44,8 @@ enum class UnoGraphicProperty
, Transparent = 6
, Alpha = 7
, Animated = 8
, Linked = 9
, OriginURL = 10
};
......@@ -241,6 +242,9 @@ rtl::Reference<::comphelper::PropertySetInfo> GraphicDescriptor::createPropertyS
{ OUString( "Transparent" ), static_cast< sal_Int32 >( UnoGraphicProperty::Transparent ), cppu::UnoType< sal_Bool >::get(), beans::PropertyAttribute::READONLY, 0 },
{ OUString( "Alpha" ), static_cast< sal_Int32 >( UnoGraphicProperty::Alpha ), cppu::UnoType< sal_Bool >::get(), beans::PropertyAttribute::READONLY, 0 },
{ OUString( "Animated" ), static_cast< sal_Int32 >( UnoGraphicProperty::Animated ), cppu::UnoType< sal_Bool >::get(), beans::PropertyAttribute::READONLY, 0 },
{ OUString("Linked"), sal_Int32(UnoGraphicProperty::Linked), cppu::UnoType<sal_Bool>::get(), beans::PropertyAttribute::READONLY, 0 },
{ OUString("OriginURL"), sal_Int32(UnoGraphicProperty::OriginURL), cppu::UnoType<OUString>::get(), beans::PropertyAttribute::READONLY, 0 },
{ OUString(), 0, css::uno::Type(), 0, 0 }
};
......@@ -327,7 +331,7 @@ void GraphicDescriptor::_getPropertyValues( const comphelper::PropertyMapEntry**
{
if( mpGraphic->GetType() == GraphicType::Bitmap )
{
const Size aSizePix( mpGraphic->GetBitmapEx().GetSizePixel() );
const Size aSizePix( mpGraphic->GetSizePixel() );
aAWTSize = awt::Size( aSizePix.Width(), aSizePix.Height() );
}
}
......@@ -393,6 +397,22 @@ void GraphicDescriptor::_getPropertyValues( const comphelper::PropertyMapEntry**
*pValues <<= mpGraphic && mpGraphic->IsAnimated();
}
break;
case UnoGraphicProperty::Linked:
{
*pValues <<= mpGraphic && !mpGraphic->getOriginURL().isEmpty();
}
break;
case UnoGraphicProperty::OriginURL:
{
OUString aOriginURL;
if (mpGraphic)
aOriginURL = mpGraphic->getOriginURL();
*pValues <<= aOriginURL;
}
break;
}
++ppEntries;
......
......@@ -305,6 +305,8 @@ uno::Reference< ::graphic::XGraphic > SAL_CALL GraphicProvider::queryGraphic( co
uno::Sequence< ::beans::PropertyValue > aFilterData;
bool bLazyRead = false;
bool bLoadAsLink = false;
for( sal_Int32 i = 0; ( i < rMediaProperties.getLength() ) && !pIStm && !xRet.is(); ++i )
{
const OUString aName( rMediaProperties[ i ].Name );
......@@ -329,7 +331,13 @@ uno::Reference< ::graphic::XGraphic > SAL_CALL GraphicProvider::queryGraphic( co
aValue >>= aFilterData;
}
else if (aName == "LazyRead")
{
aValue >>= bLazyRead;
}
else if (aName == "LoadAsLink")
{
aValue >>= bLoadAsLink;
}
}
// Check for the goal width and height if they are defined
......@@ -384,7 +392,7 @@ uno::Reference< ::graphic::XGraphic > SAL_CALL GraphicProvider::queryGraphic( co
::GraphicFilter& rFilter = ::GraphicFilter::GetGraphicFilter();
{
::Graphic aVCLGraphic;
Graphic aVCLGraphic;
// Define APM Header if goal height and width are defined
WmfExternal aExtHeader;
......@@ -412,6 +420,9 @@ uno::Reference< ::graphic::XGraphic > SAL_CALL GraphicProvider::queryGraphic( co
if( (error == ERRCODE_NONE ) &&
( aVCLGraphic.GetType() != GraphicType::NONE ) )
{
if (!aPath.isEmpty() && bLoadAsLink)
aVCLGraphic.setOriginURL(aPath);
::unographic::Graphic* pUnoGraphic = new ::unographic::Graphic;
pUnoGraphic->init( aVCLGraphic );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment