2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2004-07-06 15:58:39 +00:00
|
|
|
/*************************************************************************
|
|
|
|
|
*
|
2008-04-11 08:01:31 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-07-06 15:58:39 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-07-06 15:58:39 +00:00
|
|
|
*
|
2008-04-11 08:01:31 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-07-06 15:58:39 +00:00
|
|
|
*
|
2008-04-11 08:01:31 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-07-06 15:58:39 +00:00
|
|
|
*
|
2008-04-11 08:01:31 +00:00
|
|
|
* 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.
|
2004-07-06 15:58:39 +00:00
|
|
|
*
|
2008-04-11 08:01:31 +00:00
|
|
|
* 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).
|
2004-07-06 15:58:39 +00:00
|
|
|
*
|
2008-04-11 08:01:31 +00:00
|
|
|
* 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.
|
2004-07-06 15:58:39 +00:00
|
|
|
*
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
2006-09-16 13:16:00 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
|
#include "precompiled_framework.hxx"
|
2004-07-06 15:58:39 +00:00
|
|
|
#include <uiconfiguration/imagemanager.hxx>
|
|
|
|
|
#include <threadhelp/resetableguard.hxx>
|
2010-04-19 19:05:02 +02:00
|
|
|
#include <framework/imagesconfiguration.hxx>
|
2004-07-06 15:58:39 +00:00
|
|
|
#include <uiconfiguration/graphicnameaccess.hxx>
|
|
|
|
|
#include <services.h>
|
2009-09-08 04:57:32 +00:00
|
|
|
#include "imagemanagerimpl.hxx"
|
2004-07-06 15:58:39 +00:00
|
|
|
|
|
|
|
|
#include "properties.h"
|
|
|
|
|
|
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
|
// interface includes
|
|
|
|
|
//_________________________________________________________________________________________________________________
|
2005-03-01 18:39:24 +00:00
|
|
|
#include <com/sun/star/ui/UIElementType.hpp>
|
|
|
|
|
#include <com/sun/star/ui/ConfigurationEvent.hpp>
|
2004-07-06 15:58:39 +00:00
|
|
|
#include <com/sun/star/lang/DisposedException.hpp>
|
|
|
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
|
|
|
#include <com/sun/star/beans/PropertyValue.hpp>
|
|
|
|
|
#include <com/sun/star/embed/ElementModes.hpp>
|
|
|
|
|
#include <com/sun/star/io/XStream.hpp>
|
2005-03-01 18:39:24 +00:00
|
|
|
#include <com/sun/star/ui/ImageType.hpp>
|
2004-07-06 15:58:39 +00:00
|
|
|
|
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
|
// other includes
|
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
|
|
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
|
#include <rtl/ustrbuf.hxx>
|
|
|
|
|
#include <osl/mutex.hxx>
|
|
|
|
|
#include <comphelper/sequence.hxx>
|
|
|
|
|
#include <tools/urlobj.hxx>
|
|
|
|
|
#include <unotools/ucbstreamhelper.hxx>
|
|
|
|
|
#include <vcl/pngread.hxx>
|
|
|
|
|
#include <vcl/pngwrite.hxx>
|
2009-09-08 04:57:32 +00:00
|
|
|
#include <rtl/logfile.hxx>
|
2004-07-06 15:58:39 +00:00
|
|
|
|
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
|
// namespaces
|
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
|
|
|
|
|
|
using ::rtl::OUString;
|
|
|
|
|
using ::com::sun::star::uno::Sequence;
|
|
|
|
|
using ::com::sun::star::uno::XInterface;
|
|
|
|
|
using ::com::sun::star::uno::Exception;
|
|
|
|
|
using ::com::sun::star::uno::RuntimeException;
|
|
|
|
|
using ::com::sun::star::uno::UNO_QUERY;
|
|
|
|
|
using ::com::sun::star::uno::Any;
|
|
|
|
|
using ::com::sun::star::uno::makeAny;
|
|
|
|
|
using ::com::sun::star::graphic::XGraphic;
|
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
using namespace ::com::sun::star::io;
|
|
|
|
|
using namespace ::com::sun::star::embed;
|
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
|
using namespace ::com::sun::star::container;
|
|
|
|
|
using namespace ::com::sun::star::beans;
|
2005-03-01 18:39:24 +00:00
|
|
|
using namespace ::com::sun::star::ui;
|
2004-07-06 15:58:39 +00:00
|
|
|
|
|
|
|
|
// Image sizes for our toolbars/menus
|
|
|
|
|
const sal_Int32 IMAGE_SIZE_NORMAL = 16;
|
|
|
|
|
const sal_Int32 IMAGE_SIZE_LARGE = 26;
|
2005-03-01 18:39:24 +00:00
|
|
|
const sal_Int16 MAX_IMAGETYPE_VALUE = ::com::sun::star::ui::ImageType::COLOR_HIGHCONTRAST|
|
|
|
|
|
::com::sun::star::ui::ImageType::SIZE_LARGE;
|
2004-07-06 15:58:39 +00:00
|
|
|
|
|
|
|
|
namespace framework
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
typedef GraphicNameAccess CmdToXGraphicNameAccess;
|
|
|
|
|
|
|
|
|
|
//*****************************************************************************************************************
|
|
|
|
|
// XInterface, XTypeProvider, XServiceInfo
|
|
|
|
|
//*****************************************************************************************************************
|
2007-08-02 16:04:28 +00:00
|
|
|
DEFINE_XSERVICEINFO_MULTISERVICE ( ImageManager ,
|
|
|
|
|
::cppu::OWeakObject ,
|
|
|
|
|
SERVICENAME_IMAGEMANAGER ,
|
|
|
|
|
IMPLEMENTATIONNAME_IMAGEMANAGER
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
DEFINE_INIT_SERVICE ( ImageManager, {} )
|
|
|
|
|
|
2004-07-06 15:58:39 +00:00
|
|
|
ImageManager::ImageManager( uno::Reference< XMultiServiceFactory > xServiceManager ) :
|
|
|
|
|
ThreadHelpBase( &Application::GetSolarMutex() )
|
2009-09-08 04:57:32 +00:00
|
|
|
, m_pImpl( new ImageManagerImpl(xServiceManager,static_cast< OWeakObject* >(this),false) )
|
2004-07-06 15:58:39 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImageManager::~ImageManager()
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->clear();
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XComponent
|
|
|
|
|
void SAL_CALL ImageManager::dispose() throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->dispose();
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SAL_CALL ImageManager::addEventListener( const uno::Reference< XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->addEventListener(xListener);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SAL_CALL ImageManager::removeEventListener( const uno::Reference< XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
|
|
|
|
/* SAFE AREA ----------------------------------------------------------------------------------------------- */
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->removeEventListener(xListener);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Non-UNO methods
|
|
|
|
|
void ImageManager::setStorage( const uno::Reference< XStorage >& Storage )
|
|
|
|
|
throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
ResetableGuard aLock( m_pImpl->m_aLock );
|
2004-07-06 15:58:39 +00:00
|
|
|
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->m_xUserConfigStorage = Storage;
|
|
|
|
|
m_pImpl->implts_initialize();
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XInitialization
|
|
|
|
|
void SAL_CALL ImageManager::initialize( const Sequence< Any >& aArguments ) throw ( Exception, RuntimeException )
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->initialize(aArguments);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XImageManager
|
|
|
|
|
void SAL_CALL ImageManager::reset()
|
|
|
|
|
throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* SAFE AREA ----------------------------------------------------------------------------------------------- */
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->reset();
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Sequence< ::rtl::OUString > SAL_CALL ImageManager::getAllImageNames( ::sal_Int16 nImageType )
|
|
|
|
|
throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
return m_pImpl->getAllImageNames( nImageType );
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::sal_Bool SAL_CALL ImageManager::hasImage( ::sal_Int16 nImageType, const ::rtl::OUString& aCommandURL )
|
|
|
|
|
throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
return m_pImpl->hasImage(nImageType,aCommandURL);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Sequence< uno::Reference< XGraphic > > SAL_CALL ImageManager::getImages(
|
|
|
|
|
::sal_Int16 nImageType,
|
|
|
|
|
const Sequence< ::rtl::OUString >& aCommandURLSequence )
|
|
|
|
|
throw ( ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException )
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
return m_pImpl->getImages(nImageType,aCommandURLSequence);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SAL_CALL ImageManager::replaceImages(
|
|
|
|
|
::sal_Int16 nImageType,
|
|
|
|
|
const Sequence< ::rtl::OUString >& aCommandURLSequence,
|
|
|
|
|
const Sequence< uno::Reference< XGraphic > >& aGraphicsSequence )
|
|
|
|
|
throw ( ::com::sun::star::lang::IllegalArgumentException,
|
|
|
|
|
::com::sun::star::lang::IllegalAccessException,
|
|
|
|
|
::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->replaceImages(nImageType,aCommandURLSequence,aGraphicsSequence);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SAL_CALL ImageManager::removeImages( ::sal_Int16 nImageType, const Sequence< ::rtl::OUString >& aCommandURLSequence )
|
|
|
|
|
throw ( ::com::sun::star::lang::IllegalArgumentException,
|
|
|
|
|
::com::sun::star::lang::IllegalAccessException,
|
|
|
|
|
::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->removeImages(nImageType,aCommandURLSequence);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SAL_CALL ImageManager::insertImages( ::sal_Int16 nImageType, const Sequence< ::rtl::OUString >& aCommandURLSequence, const Sequence< uno::Reference< XGraphic > >& aGraphicSequence )
|
|
|
|
|
throw ( ::com::sun::star::container::ElementExistException,
|
|
|
|
|
::com::sun::star::lang::IllegalArgumentException,
|
|
|
|
|
::com::sun::star::lang::IllegalAccessException,
|
|
|
|
|
::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->insertImages(nImageType,aCommandURLSequence,aGraphicSequence);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XUIConfiguration
|
2005-03-01 18:39:24 +00:00
|
|
|
void SAL_CALL ImageManager::addConfigurationListener( const uno::Reference< ::com::sun::star::ui::XUIConfigurationListener >& xListener )
|
2004-07-06 15:58:39 +00:00
|
|
|
throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->addConfigurationListener(xListener);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
2005-03-01 18:39:24 +00:00
|
|
|
void SAL_CALL ImageManager::removeConfigurationListener( const uno::Reference< ::com::sun::star::ui::XUIConfigurationListener >& xListener )
|
2004-07-06 15:58:39 +00:00
|
|
|
throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
|
|
|
|
/* SAFE AREA ----------------------------------------------------------------------------------------------- */
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->removeConfigurationListener(xListener);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XUIConfigurationPersistence
|
|
|
|
|
void SAL_CALL ImageManager::reload()
|
|
|
|
|
throw ( ::com::sun::star::uno::Exception,
|
|
|
|
|
::com::sun::star::uno::RuntimeException )
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->reload();
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SAL_CALL ImageManager::store()
|
|
|
|
|
throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->store();
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SAL_CALL ImageManager::storeToStorage( const uno::Reference< XStorage >& Storage )
|
|
|
|
|
throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
m_pImpl->storeToStorage(Storage);
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sal_Bool SAL_CALL ImageManager::isModified()
|
|
|
|
|
throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
return m_pImpl->isModified();
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sal_Bool SAL_CALL ImageManager::isReadOnly() throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
|
{
|
2009-09-08 04:57:32 +00:00
|
|
|
return m_pImpl->isReadOnly();
|
2004-07-06 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace framework
|
2010-10-12 15:53:47 +02:00
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|