2010-10-12 15:57:08 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2009-10-31 00:36:06 +01:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2009-10-31 00:36:06 +01:00
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* This file is part of OpenOffice.org.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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).
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include <tools/urlobj.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#include <sfx2/filedlghelper.hxx>
|
|
|
|
|
|
|
|
#include "multipat.hxx"
|
2009-11-02 20:49:14 +01:00
|
|
|
#include <dialmgr.hxx>
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
#include "multipat.hrc"
|
2009-11-02 20:49:14 +01:00
|
|
|
#include <cuires.hrc>
|
2009-10-31 00:36:06 +01:00
|
|
|
#include <comphelper/processfactory.hxx>
|
2012-01-02 10:55:27 +00:00
|
|
|
#include <comphelper/string.hxx>
|
2009-10-31 00:36:06 +01:00
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#include <com/sun/star/ui/dialogs/XFolderPicker.hpp>
|
|
|
|
#include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp>
|
|
|
|
|
|
|
|
#include <unotools/localfilehelper.hxx>
|
|
|
|
#include <unotools/pathoptions.hxx>
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::ui::dialogs;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
|
|
|
|
// struct MultiPath_Impl -------------------------------------------------
|
|
|
|
|
|
|
|
struct MultiPath_Impl
|
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_Bool bEmptyAllowed;
|
|
|
|
sal_Bool bIsClassPathMode;
|
2009-10-31 00:36:06 +01:00
|
|
|
bool bIsRadioButtonMode;
|
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
MultiPath_Impl( sal_Bool bAllowed ) :
|
|
|
|
bEmptyAllowed( bAllowed ), bIsClassPathMode( sal_False ), bIsRadioButtonMode( false ) {}
|
2009-10-31 00:36:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// class SvxMultiPathDialog ----------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxMultiPathDialog, SelectHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uLong nCount = pImpl->bIsRadioButtonMode ? aRadioLB.GetEntryCount() : aPathLB.GetEntryCount();
|
2009-10-31 00:36:06 +01:00
|
|
|
bool bIsSelected = pImpl->bIsRadioButtonMode
|
|
|
|
? aRadioLB.FirstSelected() != NULL
|
|
|
|
: aPathLB.GetSelectEntryPos() != LISTBOX_ENTRY_NOTFOUND;
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_Bool bEnable = ( pImpl->bEmptyAllowed || nCount > 1 );
|
2009-10-31 00:36:06 +01:00
|
|
|
aDelBtn.Enable( bEnable && bIsSelected );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
IMPL_LINK( SvxMultiPathDialog, CheckHdl_Impl, svx::SvxRadioButtonListBox *, pBox )
|
|
|
|
{
|
|
|
|
SvLBoxEntry* pEntry =
|
|
|
|
pBox ? pBox->GetEntry( pBox->GetCurMousePoint() ) : aRadioLB.FirstSelected();
|
|
|
|
if ( pEntry )
|
|
|
|
aRadioLB.HandleEntryChecked( pEntry );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxMultiPathDialog, AddHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
|
|
|
rtl::OUString aService( RTL_CONSTASCII_USTRINGPARAM( FOLDER_PICKER_SERVICE_NAME ) );
|
|
|
|
Reference < XMultiServiceFactory > xFactory( ::comphelper::getProcessServiceFactory() );
|
|
|
|
Reference < XFolderPicker > xFolderPicker( xFactory->createInstance( aService ), UNO_QUERY );
|
|
|
|
|
|
|
|
if ( xFolderPicker->execute() == ExecutableDialogResults::OK )
|
|
|
|
{
|
|
|
|
INetURLObject aPath( xFolderPicker->getDirectory() );
|
|
|
|
aPath.removeFinalSlash();
|
|
|
|
String aURL = aPath.GetMainURL( INetURLObject::NO_DECODE );
|
|
|
|
String sInsPath;
|
|
|
|
::utl::LocalFileHelper::ConvertURLToSystemPath( aURL, sInsPath );
|
|
|
|
|
|
|
|
if ( pImpl->bIsRadioButtonMode )
|
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uLong nPos = aRadioLB.GetEntryPos( sInsPath, 1 );
|
2009-10-31 00:36:06 +01:00
|
|
|
if ( 0xffffffff == nPos ) //See svtools/source/contnr/svtabbx.cxx SvTabListBox::GetEntryPos
|
|
|
|
{
|
2012-07-04 23:58:05 +01:00
|
|
|
rtl::OUString sNewEntry( '\t' );
|
2009-10-31 00:36:06 +01:00
|
|
|
sNewEntry += sInsPath;
|
|
|
|
SvLBoxEntry* pEntry = aRadioLB.InsertEntry( sNewEntry );
|
|
|
|
String* pData = new String( aURL );
|
|
|
|
pEntry->SetUserData( pData );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-11-02 20:49:14 +01:00
|
|
|
String sMsg( CUI_RES( RID_MULTIPATH_DBL_ERR ) );
|
2009-10-31 00:36:06 +01:00
|
|
|
sMsg.SearchAndReplaceAscii( "%1", sInsPath );
|
|
|
|
InfoBox( this, sMsg ).Execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( LISTBOX_ENTRY_NOTFOUND != aPathLB.GetEntryPos( sInsPath ) )
|
|
|
|
{
|
2009-11-02 20:49:14 +01:00
|
|
|
String sMsg( CUI_RES( RID_MULTIPATH_DBL_ERR ) );
|
2009-10-31 00:36:06 +01:00
|
|
|
sMsg.SearchAndReplaceAscii( "%1", sInsPath );
|
|
|
|
InfoBox( this, sMsg ).Execute();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nPos = aPathLB.InsertEntry( sInsPath, LISTBOX_APPEND );
|
2009-10-31 00:36:06 +01:00
|
|
|
aPathLB.SetEntryData( nPos, (void*)new String( aURL ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SelectHdl_Impl( NULL );
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(SvxMultiPathDialog, DelHdl_Impl)
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
|
|
|
if ( pImpl->bIsRadioButtonMode )
|
|
|
|
{
|
|
|
|
SvLBoxEntry* pEntry = aRadioLB.FirstSelected();
|
|
|
|
delete (String*)pEntry->GetUserData();
|
|
|
|
bool bChecked = aRadioLB.GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED;
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uLong nPos = aRadioLB.GetEntryPos( pEntry );
|
2009-10-31 00:36:06 +01:00
|
|
|
aRadioLB.RemoveEntry( pEntry );
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uLong nCnt = aRadioLB.GetEntryCount();
|
2009-10-31 00:36:06 +01:00
|
|
|
if ( nCnt )
|
|
|
|
{
|
|
|
|
nCnt--;
|
|
|
|
if ( nPos > nCnt )
|
|
|
|
nPos = nCnt;
|
|
|
|
pEntry = aRadioLB.GetEntry( nPos );
|
|
|
|
if ( bChecked )
|
|
|
|
{
|
|
|
|
aRadioLB.SetCheckButtonState( pEntry, SV_BUTTON_CHECKED );
|
|
|
|
aRadioLB.HandleEntryChecked( pEntry );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aRadioLB.Select( pEntry );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nPos = aPathLB.GetSelectEntryPos();
|
2009-10-31 00:36:06 +01:00
|
|
|
aPathLB.RemoveEntry( nPos );
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nCnt = aPathLB.GetEntryCount();
|
2009-10-31 00:36:06 +01:00
|
|
|
|
|
|
|
if ( nCnt )
|
|
|
|
{
|
|
|
|
nCnt--;
|
|
|
|
|
|
|
|
if ( nPos > nCnt )
|
|
|
|
nPos = nCnt;
|
|
|
|
aPathLB.SelectEntryPos( nPos );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SelectHdl_Impl( NULL );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
SvxMultiPathDialog::SvxMultiPathDialog( Window* pParent, sal_Bool bEmptyAllowed ) :
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2009-11-02 20:49:14 +01:00
|
|
|
ModalDialog( pParent, CUI_RES( RID_SVXDLG_MULTIPATH ) ),
|
|
|
|
|
|
|
|
aPathFL ( this, CUI_RES( FL_MULTIPATH) ),
|
|
|
|
aPathLB ( this, CUI_RES( LB_MULTIPATH ) ),
|
2011-07-14 14:23:22 +01:00
|
|
|
m_aRadioLBContainer(this, CUI_RES(LB_RADIOBUTTON)),
|
|
|
|
aRadioLB(m_aRadioLBContainer),
|
2009-11-02 20:49:14 +01:00
|
|
|
aRadioFT ( this, CUI_RES( FT_RADIOBUTTON ) ),
|
|
|
|
aAddBtn ( this, CUI_RES( BTN_ADD_MULTIPATH ) ),
|
|
|
|
aDelBtn ( this, CUI_RES( BTN_DEL_MULTIPATH ) ),
|
|
|
|
aOKBtn ( this, CUI_RES( BTN_MULTIPATH_OK ) ),
|
|
|
|
aCancelBtn ( this, CUI_RES( BTN_MULTIPATH_CANCEL ) ),
|
|
|
|
aHelpButton ( this, CUI_RES( BTN_MULTIPATH_HELP ) ),
|
2009-10-31 00:36:06 +01:00
|
|
|
pImpl ( new MultiPath_Impl( bEmptyAllowed ) )
|
|
|
|
|
|
|
|
{
|
|
|
|
static long aStaticTabs[]= { 2, 0, 12 };
|
|
|
|
aRadioLB.SvxSimpleTable::SetTabs( aStaticTabs );
|
2009-11-02 20:49:14 +01:00
|
|
|
String sHeader( CUI_RES( STR_HEADER_PATHS ) );
|
2009-10-31 00:36:06 +01:00
|
|
|
aRadioLB.SetQuickHelpText( sHeader );
|
|
|
|
sHeader.Insert( '\t', 0 );
|
|
|
|
aRadioLB.InsertHeaderEntry( sHeader, HEADERBAR_APPEND, HIB_LEFT );
|
|
|
|
|
|
|
|
FreeResource();
|
|
|
|
|
|
|
|
aPathLB.SetSelectHdl( LINK( this, SvxMultiPathDialog, SelectHdl_Impl ) );
|
|
|
|
aRadioLB.SetSelectHdl( LINK( this, SvxMultiPathDialog, SelectHdl_Impl ) );
|
|
|
|
aRadioLB.SetCheckButtonHdl( LINK( this, SvxMultiPathDialog, CheckHdl_Impl ) );
|
|
|
|
aAddBtn.SetClickHdl( LINK( this, SvxMultiPathDialog, AddHdl_Impl ) );
|
|
|
|
aDelBtn.SetClickHdl( LINK( this, SvxMultiPathDialog, DelHdl_Impl ) );
|
|
|
|
|
|
|
|
SelectHdl_Impl( NULL );
|
2011-01-20 12:21:31 +01:00
|
|
|
|
|
|
|
aAddBtn.SetAccessibleRelationMemberOf(&aPathLB);
|
|
|
|
aDelBtn.SetAccessibleRelationMemberOf(&aPathLB);
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SvxMultiPathDialog::~SvxMultiPathDialog()
|
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
sal_uInt16 nPos = aPathLB.GetEntryCount();
|
2009-10-31 00:36:06 +01:00
|
|
|
while ( nPos-- )
|
|
|
|
delete (String*)aPathLB.GetEntryData(nPos);
|
2011-01-14 12:41:27 +01:00
|
|
|
nPos = (sal_uInt16)aRadioLB.GetEntryCount();
|
2009-10-31 00:36:06 +01:00
|
|
|
while ( nPos-- )
|
|
|
|
{
|
|
|
|
SvLBoxEntry* pEntry = aRadioLB.GetEntry( nPos );
|
|
|
|
delete (String*)pEntry->GetUserData();
|
|
|
|
}
|
|
|
|
delete pImpl;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
String SvxMultiPathDialog::GetPath() const
|
|
|
|
{
|
|
|
|
String sNewPath;
|
|
|
|
sal_Unicode cDelim = pImpl->bIsClassPathMode ? CLASSPATH_DELIMITER : SVT_SEARCHPATH_DELIMITER;
|
|
|
|
|
|
|
|
if ( pImpl->bIsRadioButtonMode )
|
|
|
|
{
|
|
|
|
String sWritable;
|
2011-01-14 12:41:27 +01:00
|
|
|
for ( sal_uInt16 i = 0; i < aRadioLB.GetEntryCount(); ++i )
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
|
|
|
SvLBoxEntry* pEntry = aRadioLB.GetEntry(i);
|
|
|
|
if ( aRadioLB.GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED )
|
|
|
|
sWritable = *(String*)pEntry->GetUserData();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( sNewPath.Len() > 0 )
|
|
|
|
sNewPath += cDelim;
|
|
|
|
sNewPath += *(String*)pEntry->GetUserData();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( sNewPath.Len() > 0 )
|
|
|
|
sNewPath += cDelim;
|
|
|
|
sNewPath += sWritable;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
for ( sal_uInt16 i = 0; i < aPathLB.GetEntryCount(); ++i )
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
|
|
|
if ( sNewPath.Len() > 0 )
|
|
|
|
sNewPath += cDelim;
|
|
|
|
sNewPath += *(String*)aPathLB.GetEntryData(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sNewPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SvxMultiPathDialog::SetPath( const String& rPath )
|
|
|
|
{
|
|
|
|
sal_Unicode cDelim = pImpl->bIsClassPathMode ? CLASSPATH_DELIMITER : SVT_SEARCHPATH_DELIMITER;
|
2012-01-02 10:55:27 +00:00
|
|
|
sal_uInt16 nPos, nCount = comphelper::string::getTokenCount(rPath, cDelim);
|
2009-10-31 00:36:06 +01:00
|
|
|
|
2011-01-14 12:41:27 +01:00
|
|
|
for ( sal_uInt16 i = 0; i < nCount; ++i )
|
2009-10-31 00:36:06 +01:00
|
|
|
{
|
|
|
|
String sPath = rPath.GetToken( i, cDelim );
|
|
|
|
String sSystemPath;
|
|
|
|
sal_Bool bIsSystemPath =
|
|
|
|
::utl::LocalFileHelper::ConvertURLToSystemPath( sPath, sSystemPath );
|
|
|
|
|
|
|
|
if ( pImpl->bIsRadioButtonMode )
|
|
|
|
{
|
2012-07-04 23:58:05 +01:00
|
|
|
rtl::OUString sEntry( '\t' );
|
2011-04-28 00:59:28 +02:00
|
|
|
sEntry += (bIsSystemPath ? sSystemPath : sPath);
|
2009-10-31 00:36:06 +01:00
|
|
|
SvLBoxEntry* pEntry = aRadioLB.InsertEntry( sEntry );
|
|
|
|
String* pURL = new String( sPath );
|
|
|
|
pEntry->SetUserData( pURL );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( bIsSystemPath )
|
|
|
|
nPos = aPathLB.InsertEntry( sSystemPath, LISTBOX_APPEND );
|
|
|
|
else
|
|
|
|
nPos = aPathLB.InsertEntry( sPath, LISTBOX_APPEND );
|
|
|
|
aPathLB.SetEntryData( nPos, (void*)new String( sPath ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( pImpl->bIsRadioButtonMode && nCount > 0 )
|
|
|
|
{
|
|
|
|
SvLBoxEntry* pEntry = aRadioLB.GetEntry( nCount - 1 );
|
|
|
|
if ( pEntry )
|
|
|
|
{
|
|
|
|
aRadioLB.SetCheckButtonState( pEntry, SV_BUTTON_CHECKED );
|
|
|
|
aRadioLB.HandleEntryChecked( pEntry );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SelectHdl_Impl( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SvxMultiPathDialog::SetClassPathMode()
|
|
|
|
{
|
2011-01-14 12:41:27 +01:00
|
|
|
pImpl->bIsClassPathMode = sal_True;
|
2009-11-02 20:49:14 +01:00
|
|
|
SetText( CUI_RES( RID_SVXSTR_ARCHIVE_TITLE ));
|
|
|
|
aPathFL.SetText( CUI_RES( RID_SVXSTR_ARCHIVE_HEADLINE ) );
|
2009-10-31 00:36:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
sal_Bool SvxMultiPathDialog::IsClassPathMode() const
|
|
|
|
{
|
|
|
|
return pImpl->bIsClassPathMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SvxMultiPathDialog::EnableRadioButtonMode()
|
|
|
|
{
|
|
|
|
pImpl->bIsRadioButtonMode = true;
|
|
|
|
|
|
|
|
aPathFL.Hide();
|
|
|
|
aPathLB.Hide();
|
|
|
|
|
|
|
|
aRadioLB.ShowTable();
|
|
|
|
aRadioFT.Show();
|
|
|
|
|
|
|
|
Point aNewPos = aAddBtn.GetPosPixel();
|
|
|
|
long nDelta = aNewPos.Y() - aRadioLB.GetPosPixel().Y();
|
|
|
|
aNewPos.Y() -= nDelta;
|
|
|
|
aAddBtn.SetPosPixel( aNewPos );
|
|
|
|
aNewPos = aDelBtn.GetPosPixel();
|
|
|
|
aNewPos.Y() -= nDelta;
|
|
|
|
aDelBtn.SetPosPixel( aNewPos );
|
|
|
|
}
|
|
|
|
|
2010-10-12 15:57:08 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|