178 lines
6.3 KiB
C++
178 lines
6.3 KiB
C++
/* -*- 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/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
|
|
#include "pppoptimizerdialog.hxx"
|
|
#include "optimizerdialog.hxx"
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::util;
|
|
using namespace ::com::sun::star::lang;
|
|
using namespace ::com::sun::star::frame;
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
#define SERVICE_NAME "com.sun.star.comp.PresentationMinimizer"
|
|
#include <cppuhelper/supportsservice.hxx>
|
|
#include <rtl/ustrbuf.hxx>
|
|
|
|
PPPOptimizerDialog::PPPOptimizerDialog( const Reference< XComponentContext > &xContext ) :
|
|
mxContext( xContext ),
|
|
mpOptimizerDialog( NULL )
|
|
{
|
|
}
|
|
|
|
PPPOptimizerDialog::~PPPOptimizerDialog()
|
|
{
|
|
}
|
|
|
|
void SAL_CALL PPPOptimizerDialog::initialize( const Sequence< Any >& aArguments )
|
|
throw ( Exception, RuntimeException, std::exception )
|
|
{
|
|
if( aArguments.getLength() != 1 )
|
|
throw IllegalArgumentException();
|
|
|
|
aArguments[ 0 ] >>= mxFrame;
|
|
if ( mxFrame.is() )
|
|
mxController = mxFrame->getController();
|
|
}
|
|
|
|
OUString SAL_CALL PPPOptimizerDialog::getImplementationName()
|
|
throw (RuntimeException, std::exception)
|
|
{
|
|
return PPPOptimizerDialog_getImplementationName();
|
|
}
|
|
|
|
sal_Bool SAL_CALL PPPOptimizerDialog::supportsService( const OUString& ServiceName )
|
|
throw ( RuntimeException, std::exception )
|
|
{
|
|
return cppu::supportsService(this, ServiceName);
|
|
}
|
|
|
|
Sequence< OUString > SAL_CALL PPPOptimizerDialog::getSupportedServiceNames()
|
|
throw (RuntimeException, std::exception)
|
|
{
|
|
return PPPOptimizerDialog_getSupportedServiceNames();
|
|
}
|
|
|
|
Reference< com::sun::star::frame::XDispatch > SAL_CALL PPPOptimizerDialog::queryDispatch(
|
|
const URL& aURL, const OUString& /* aTargetFrameName */, sal_Int32 /* nSearchFlags */ ) throw( RuntimeException, std::exception )
|
|
{
|
|
Reference < XDispatch > xRet;
|
|
if ( aURL.Protocol.equalsIgnoreAsciiCase( "vnd.com.sun.star.comp.PresentationMinimizer:" ) )
|
|
xRet = this;
|
|
|
|
return xRet;
|
|
}
|
|
|
|
Sequence< Reference< com::sun::star::frame::XDispatch > > SAL_CALL PPPOptimizerDialog::queryDispatches(
|
|
const Sequence< com::sun::star::frame::DispatchDescriptor >& aDescripts ) throw( RuntimeException, std::exception )
|
|
{
|
|
Sequence< Reference< com::sun::star::frame::XDispatch> > aReturn( aDescripts.getLength() );
|
|
Reference< com::sun::star::frame::XDispatch>* pReturn = aReturn.getArray();
|
|
const com::sun::star::frame::DispatchDescriptor* pDescripts = aDescripts.getConstArray();
|
|
for (sal_Int32 i = 0; i < aDescripts.getLength(); ++i, ++pReturn, ++pDescripts )
|
|
{
|
|
*pReturn = queryDispatch( pDescripts->FeatureURL, pDescripts->FrameName, pDescripts->SearchFlags );
|
|
}
|
|
return aReturn;
|
|
}
|
|
|
|
void SAL_CALL PPPOptimizerDialog::dispatch( const URL& rURL,
|
|
const Sequence< PropertyValue >& rArguments )
|
|
throw( RuntimeException, std::exception )
|
|
{
|
|
|
|
if ( mxController.is() && rURL.Protocol.equalsIgnoreAsciiCase( "vnd.com.sun.star.comp.PresentationMinimizer:" ) )
|
|
{
|
|
if ( rURL.Path == "execute" )
|
|
{
|
|
try
|
|
{
|
|
sal_Int64 nFileSizeSource = 0;
|
|
sal_Int64 nFileSizeDest = 0;
|
|
mpOptimizerDialog = new OptimizerDialog( mxContext, mxFrame, this );
|
|
mpOptimizerDialog->execute();
|
|
|
|
const Any* pVal( mpOptimizerDialog->maStats.GetStatusValue( TK_FileSizeSource ) );
|
|
if ( pVal )
|
|
*pVal >>= nFileSizeSource;
|
|
pVal = mpOptimizerDialog->maStats.GetStatusValue( TK_FileSizeDestination );
|
|
if ( pVal )
|
|
*pVal >>= nFileSizeDest;
|
|
|
|
if ( nFileSizeSource && nFileSizeDest )
|
|
{
|
|
OUStringBuffer sBuf( "Your Presentation has been minimized from:" );
|
|
sBuf.append( OUString::number( nFileSizeSource >> 10 ) );
|
|
sBuf.append( "KB to " );
|
|
sBuf.append( OUString::number( nFileSizeDest >> 10 ) );
|
|
sBuf.append( "KB." );
|
|
OUString sResult( sBuf.makeStringAndClear() );
|
|
SAL_INFO("sdext.minimizer", sResult );
|
|
}
|
|
delete mpOptimizerDialog, mpOptimizerDialog = NULL;
|
|
}
|
|
catch( ... )
|
|
{
|
|
|
|
}
|
|
}
|
|
else if ( rURL.Path == "statusupdate" )
|
|
{
|
|
if ( mpOptimizerDialog )
|
|
mpOptimizerDialog->UpdateStatus( rArguments );
|
|
}
|
|
}
|
|
}
|
|
|
|
void SAL_CALL PPPOptimizerDialog::addStatusListener( const Reference< XStatusListener >&, const URL& )
|
|
throw( RuntimeException, std::exception )
|
|
{
|
|
// TODO
|
|
// OSL_FAIL( "PPPOptimizerDialog::addStatusListener()\nNot implemented yet!" );
|
|
}
|
|
|
|
void SAL_CALL PPPOptimizerDialog::removeStatusListener( const Reference< XStatusListener >&, const URL& )
|
|
throw( RuntimeException, std::exception )
|
|
{
|
|
// TODO
|
|
// OSL_FAIL( "PPPOptimizerDialog::removeStatusListener()\nNot implemented yet!" );
|
|
}
|
|
|
|
OUString PPPOptimizerDialog_getImplementationName()
|
|
{
|
|
return OUString( "com.sun.star.comp.PresentationMinimizerImp" );
|
|
}
|
|
|
|
Sequence< OUString > PPPOptimizerDialog_getSupportedServiceNames()
|
|
{
|
|
Sequence < OUString > aRet(1);
|
|
OUString* pArray = aRet.getArray();
|
|
pArray[0] = SERVICE_NAME;
|
|
return aRet;
|
|
}
|
|
|
|
Reference< XInterface > PPPOptimizerDialog_createInstance( const Reference< XComponentContext > & rSMgr)
|
|
throw( Exception )
|
|
{
|
|
return static_cast<cppu::OWeakObject*>(new PPPOptimizerDialog( rSMgr ));
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|