827c46e7d7
Put the VCL Window class in the vcl namespace. Avoids clash with the X11 Window typedef. Change-Id: Ib1beb7ab4ad75562a42aeb252732a073d25eff1a
196 lines
5.9 KiB
C++
196 lines
5.9 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 "OfficeFolderPicker.hxx"
|
|
|
|
#include "iodlg.hxx"
|
|
|
|
#include <list>
|
|
#include <tools/urlobj.hxx>
|
|
#include <com/sun/star/container/XContentEnumerationAccess.hpp>
|
|
#include <com/sun/star/container/XSet.hpp>
|
|
#include <com/sun/star/uno/Any.hxx>
|
|
#include <cppuhelper/factory.hxx>
|
|
#include <cppuhelper/supportsservice.hxx>
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
#include <unotools/pathoptions.hxx>
|
|
|
|
using namespace ::com::sun::star::container;
|
|
using namespace ::com::sun::star::lang;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
SvtFolderPicker::SvtFolderPicker( const Reference < XMultiServiceFactory >& _rxFactory )
|
|
:SvtFolderPicker_Base( _rxFactory )
|
|
{
|
|
}
|
|
|
|
SvtFolderPicker::~SvtFolderPicker()
|
|
{
|
|
}
|
|
|
|
void SAL_CALL SvtFolderPicker::setTitle( const OUString& _rTitle ) throw (RuntimeException, std::exception)
|
|
{
|
|
OCommonPicker::setTitle( _rTitle );
|
|
}
|
|
|
|
sal_Int16 SAL_CALL SvtFolderPicker::execute( ) throw (RuntimeException, std::exception)
|
|
{
|
|
return OCommonPicker::execute();
|
|
}
|
|
|
|
void SAL_CALL SvtFolderPicker::setDialogTitle( const OUString& _rTitle) throw (RuntimeException, std::exception)
|
|
{
|
|
setTitle( _rTitle );
|
|
}
|
|
|
|
void SAL_CALL SvtFolderPicker::startExecuteModal( const Reference< ::com::sun::star::ui::dialogs::XDialogClosedListener >& xListener ) throw (RuntimeException, std::exception)
|
|
{
|
|
m_xListener = xListener;
|
|
prepareDialog();
|
|
prepareExecute();
|
|
getDialog()->EnableAutocompletion( true );
|
|
getDialog()->StartExecuteModal( LINK( this, SvtFolderPicker, DialogClosedHdl ) );
|
|
}
|
|
|
|
SvtFileDialog* SvtFolderPicker::implCreateDialog( vcl::Window* _pParent )
|
|
{
|
|
return new SvtFileDialog( _pParent, SFXWB_PATHDIALOG );
|
|
}
|
|
|
|
sal_Int16 SvtFolderPicker::implExecutePicker( )
|
|
{
|
|
prepareExecute();
|
|
|
|
// now we are ready to execute the dialog
|
|
getDialog()->EnableAutocompletion( false );
|
|
sal_Int16 nRet = getDialog()->Execute();
|
|
|
|
return nRet;
|
|
}
|
|
|
|
void SvtFolderPicker::prepareExecute()
|
|
{
|
|
// set the default directory
|
|
if ( !m_aDisplayDirectory.isEmpty() )
|
|
getDialog()->SetPath( m_aDisplayDirectory );
|
|
else
|
|
{
|
|
// Default-Standard-Dir setzen
|
|
INetURLObject aStdDirObj( SvtPathOptions().GetWorkPath() );
|
|
getDialog()->SetPath( aStdDirObj.GetMainURL( INetURLObject::NO_DECODE) );
|
|
}
|
|
}
|
|
|
|
IMPL_LINK( SvtFolderPicker, DialogClosedHdl, Dialog*, pDlg )
|
|
{
|
|
if ( m_xListener.is() )
|
|
{
|
|
sal_Int16 nRet = static_cast< sal_Int16 >( pDlg->GetResult() );
|
|
::com::sun::star::ui::dialogs::DialogClosedEvent aEvent( *this, nRet );
|
|
m_xListener->dialogClosed( aEvent );
|
|
m_xListener.clear();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void SAL_CALL SvtFolderPicker::setDisplayDirectory( const OUString& aDirectory )
|
|
throw( IllegalArgumentException, RuntimeException, std::exception )
|
|
{
|
|
m_aDisplayDirectory = aDirectory;
|
|
}
|
|
|
|
OUString SAL_CALL SvtFolderPicker::getDisplayDirectory() throw( RuntimeException, std::exception )
|
|
{
|
|
if ( ! getDialog() )
|
|
return m_aDisplayDirectory;
|
|
|
|
std::vector<OUString> aPathList(getDialog()->GetPathList());
|
|
|
|
if(!aPathList.empty())
|
|
return aPathList[0];
|
|
|
|
return OUString();
|
|
}
|
|
|
|
OUString SAL_CALL SvtFolderPicker::getDirectory() throw( RuntimeException, std::exception )
|
|
{
|
|
if ( ! getDialog() )
|
|
return m_aDisplayDirectory;
|
|
|
|
std::vector<OUString> aPathList(getDialog()->GetPathList());
|
|
|
|
if(!aPathList.empty())
|
|
return aPathList[0];
|
|
|
|
return OUString();
|
|
}
|
|
|
|
void SAL_CALL SvtFolderPicker::setDescription( const OUString& aDescription )
|
|
throw( RuntimeException, std::exception )
|
|
{
|
|
m_aDescription = aDescription;
|
|
}
|
|
|
|
void SvtFolderPicker::cancel() throw (RuntimeException, std::exception)
|
|
{
|
|
OCommonPicker::cancel();
|
|
}
|
|
|
|
/* XServiceInfo */
|
|
OUString SAL_CALL SvtFolderPicker::getImplementationName() throw( RuntimeException, std::exception )
|
|
{
|
|
return impl_getStaticImplementationName();
|
|
}
|
|
|
|
/* XServiceInfo */
|
|
sal_Bool SAL_CALL SvtFolderPicker::supportsService( const OUString& sServiceName ) throw( RuntimeException, std::exception )
|
|
{
|
|
return cppu::supportsService(this, sServiceName);
|
|
}
|
|
|
|
/* XServiceInfo */
|
|
Sequence< OUString > SAL_CALL SvtFolderPicker::getSupportedServiceNames() throw( RuntimeException, std::exception )
|
|
{
|
|
return impl_getStaticSupportedServiceNames();
|
|
}
|
|
|
|
/* Helper for XServiceInfo */
|
|
Sequence< OUString > SvtFolderPicker::impl_getStaticSupportedServiceNames()
|
|
{
|
|
Sequence< OUString > seqServiceNames(1);
|
|
seqServiceNames[0] = "com.sun.star.ui.dialogs.OfficeFolderPicker";
|
|
return seqServiceNames ;
|
|
}
|
|
|
|
/* Helper for XServiceInfo */
|
|
OUString SvtFolderPicker::impl_getStaticImplementationName()
|
|
{
|
|
return OUString( "com.sun.star.svtools.OfficeFolderPicker" );
|
|
}
|
|
|
|
/* Helper for registry */
|
|
Reference< XInterface > SAL_CALL SvtFolderPicker::impl_createInstance( const Reference< XComponentContext >& rxContext )
|
|
throw( Exception )
|
|
{
|
|
Reference< XMultiServiceFactory > xServiceManager (rxContext->getServiceManager(), UNO_QUERY_THROW);
|
|
return Reference< XInterface >( *new SvtFolderPicker( xServiceManager ) );
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|