summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/imagemgr.cxx
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2001-05-03 16:02:12 +0000
committerMathias Bauer <mba@openoffice.org>2001-05-03 16:02:12 +0000
commita5c9f4d8c51b4c49cfdd1c4b0f99609cfc9bdfb8 (patch)
tree5a1bfc1b4e618881388ac8f49ac11d4707ed63e9 /sfx2/source/appl/imagemgr.cxx
parentd3bbae7f6fc8d8a3f3d75dcfaecd2b1de43962a2 (diff)
GetImage-Hook for framework
Diffstat (limited to 'sfx2/source/appl/imagemgr.cxx')
-rw-r--r--sfx2/source/appl/imagemgr.cxx156
1 files changed, 156 insertions, 0 deletions
diff --git a/sfx2/source/appl/imagemgr.cxx b/sfx2/source/appl/imagemgr.cxx
new file mode 100644
index 000000000000..fd2047a331ff
--- /dev/null
+++ b/sfx2/source/appl/imagemgr.cxx
@@ -0,0 +1,156 @@
+/*************************************************************************
+ *
+ * $RCSfile: imagemgr.cxx,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: mba $ $Date: 2001-05-03 17:02:01 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+// includes --------------------------------------------------------------
+#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
+#include <com/sun/star/uno/Reference.hxx>
+#endif
+#ifndef _COM_SUN_STAR_FRAME_XCONTROLLER_HPP_
+#include <com/sun/star/frame/XController.hpp>
+#endif
+#ifndef _COM_SUN_STAR_FRAME_XFRAME_HPP_
+#include <com/sun/star/frame/XFrame.hpp>
+#endif
+
+#include <tools/urlobj.hxx>
+#include <svtools/imagemgr.hxx>
+#include <comphelper/processfactory.hxx>
+
+#include "imgmgr.hxx"
+#include "app.hxx"
+#include "unoctitm.hxx"
+#include "dispatch.hxx"
+#include "msg.hxx"
+#include "msgpool.hxx"
+#include "viewfrm.hxx"
+#include "module.hxx"
+#include "objsh.hxx"
+
+using namespace ::com::sun::star::uno;
+using namespace ::com::sun::star::frame;
+using namespace ::com::sun::star::lang;
+using namespace ::com::sun::star::util;
+
+Image SAL_CALL GetImage( ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rFrame, const ::rtl::OUString& aURL, BOOL bBig )
+{
+ INetURLObject aObj( aURL );
+ INetProtocol nProtocol = aObj.GetProtocol();
+ switch ( nProtocol )
+ {
+ case INET_PROT_UNO :
+ case INET_PROT_SLOT :
+ {
+ URL aTargetURL;
+ SfxViewFrame* pViewFrame = NULL;
+ Reference < XController > xController;
+ if ( rFrame.is() )
+ xController = rFrame->getController();
+
+ Reference < XDispatchProvider > xProvider( xController, UNO_QUERY );
+ if ( xProvider.is() )
+ {
+ aTargetURL.Complete = aURL;
+ Reference < XURLTransformer > xTrans( ::comphelper::getProcessServiceFactory()->createInstance( rtl::OUString::createFromAscii("com.sun.star.util.URLTransformer" )), UNO_QUERY );
+ xTrans->parseStrict( aTargetURL );
+
+ Reference < XDispatch > xDisp = xProvider->queryDispatch( aTargetURL, ::rtl::OUString(), 0 );
+ if ( xDisp.is() )
+ {
+ Reference< XUnoTunnel > xTunnel( xDisp, UNO_QUERY );
+ SfxOfficeDispatch* pDisp = NULL;
+ if ( xTunnel.is() )
+ {
+ sal_Int64 nImplementation = xTunnel->getSomething(SfxOfficeDispatch::impl_getStaticIdentifier());
+ pDisp = (SfxOfficeDispatch*)(nImplementation);
+ }
+
+ if ( pDisp )
+ pViewFrame = pDisp->GetDispatcher_Impl()->GetFrame();
+ }
+ }
+
+ USHORT nId;
+ if ( nProtocol == INET_PROT_UNO )
+ {
+ SfxSlotPool& rPool = SFX_APP()->GetSlotPool( pViewFrame );
+ const SfxSlot* pSlot = rPool.GetUnoSlot( aTargetURL.Path );
+ if ( pSlot )
+ nId = pSlot->GetSlotId();
+ }
+ else
+ nId = ( USHORT ) aTargetURL.Path.toInt32();
+
+ SfxModule* pModule = pViewFrame ? pViewFrame->GetObjectShell()->GetModule() : NULL;
+ if ( nId )
+ return SFX_IMAGEMANAGER()->SeekImage( nId, pModule );
+ break;
+ }
+
+ case INET_PROT_NOT_VALID :
+ {
+ return Image();
+ break;
+ }
+ }
+
+ return SvImageManager::GetImage( aObj, bBig );
+}
+