c988da288e
Create a merged XFolderPicker2 interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Change-Id: I4a2c2a8d491a8d5633c19ddcea547f0efe75b91d
466 lines
17 KiB
C++
466 lines
17 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 "hldocntp.hxx"
|
|
#include <sfx2/viewfrm.hxx>
|
|
#include <sfx2/docfac.hxx>
|
|
#include <com/sun/star/uno/Reference.h>
|
|
#include <com/sun/star/uno/Sequence.h>
|
|
#include <com/sun/star/beans/PropertyValue.hpp>
|
|
#include <com/sun/star/uno/Exception.hpp>
|
|
#include <unotools/localfilehelper.hxx>
|
|
#include <vcl/image.hxx>
|
|
#include <tools/urlobj.hxx>
|
|
#include <unotools/pathoptions.hxx>
|
|
#include <unotools/dynamicmenuoptions.hxx>
|
|
#include <sfx2/filedlghelper.hxx>
|
|
#include <unotools/ucbstreamhelper.hxx>
|
|
#include <unotools/ucbhelper.hxx>
|
|
|
|
#include "hyperdlg.hrc"
|
|
#include <comphelper/processfactory.hxx>
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
#include <com/sun/star/ui/dialogs/FolderPicker.hpp>
|
|
#include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp>
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
using namespace ::com::sun::star::ui::dialogs;
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::rtl;
|
|
using namespace ::com::sun::star;
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Data-struct for documenttypes in listbox
|
|
|*
|
|
|************************************************************************/
|
|
|
|
struct DocumentTypeData
|
|
{
|
|
String aStrURL;
|
|
String aStrExt;
|
|
DocumentTypeData (String aURL, String aExt) : aStrURL(aURL), aStrExt(aExt)
|
|
{}
|
|
};
|
|
|
|
sal_Bool SvxHyperlinkNewDocTp::ImplGetURLObject( const String& rPath, const String& rBase, INetURLObject& aURLObject ) const
|
|
{
|
|
sal_Bool bIsValidURL = rPath.Len() != 0;
|
|
if ( bIsValidURL )
|
|
{
|
|
aURLObject.SetURL( rPath );
|
|
if ( aURLObject.GetProtocol() == INET_PROT_NOT_VALID ) // test if the source is already a valid url
|
|
{ // if not we have to create a url from a physical file name
|
|
bool wasAbs;
|
|
INetURLObject base(rBase);
|
|
base.setFinalSlash();
|
|
aURLObject = base.smartRel2Abs(
|
|
rPath, wasAbs, true, INetURLObject::ENCODE_ALL,
|
|
RTL_TEXTENCODING_UTF8, true);
|
|
}
|
|
bIsValidURL = aURLObject.GetProtocol() != INET_PROT_NOT_VALID;
|
|
if ( bIsValidURL )
|
|
{
|
|
String aBase( aURLObject.getName( INetURLObject::LAST_SEGMENT, sal_False ) );
|
|
if ( ( aBase.Len() == 0 ) || ( aBase.GetChar( 0 ) == '.' ) )
|
|
bIsValidURL = sal_False;
|
|
}
|
|
if ( bIsValidURL )
|
|
{
|
|
sal_uInt16 nPos = maLbDocTypes.GetSelectEntryPos();
|
|
if ( nPos != LISTBOX_ENTRY_NOTFOUND )
|
|
aURLObject.SetExtension( ((DocumentTypeData*)maLbDocTypes.GetEntryData( nPos ))->aStrExt );
|
|
}
|
|
|
|
}
|
|
return bIsValidURL;
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Contructor / Destructor
|
|
|*
|
|
|************************************************************************/
|
|
|
|
SvxHyperlinkNewDocTp::SvxHyperlinkNewDocTp ( Window *pParent, const SfxItemSet& rItemSet)
|
|
: SvxHyperlinkTabPageBase ( pParent, CUI_RES( RID_SVXPAGE_HYPERLINK_NEWDOCUMENT ), rItemSet ),
|
|
maGrpNewDoc ( this, CUI_RES (GRP_NEWDOCUMENT) ),
|
|
maRbtEditNow ( this, CUI_RES (RB_EDITNOW) ),
|
|
maRbtEditLater ( this, CUI_RES (RB_EDITLATER) ),
|
|
maFtPath ( this, CUI_RES (FT_PATH_NEWDOC) ),
|
|
maCbbPath ( this, INET_PROT_FILE ),
|
|
maBtCreate ( this, CUI_RES (BTN_CREATE) ),
|
|
maFtDocTypes ( this, CUI_RES (FT_DOCUMENT_TYPES) ),
|
|
maLbDocTypes ( this, CUI_RES (LB_DOCUMENT_TYPES) )
|
|
{
|
|
// Set HC bitmaps and disable display of bitmap names.
|
|
maBtCreate.EnableTextDisplay (sal_False);
|
|
|
|
InitStdControls();
|
|
FreeResource();
|
|
|
|
SetExchangeSupport ();
|
|
|
|
maCbbPath.SetPosSizePixel ( LogicToPixel( Point( COL_2 , 25 ), MAP_APPFONT ),
|
|
LogicToPixel( Size ( 176 - COL_DIFF, 60), MAP_APPFONT ) );
|
|
maCbbPath.Show();
|
|
maCbbPath.SetBaseURL(SvtPathOptions().GetWorkPath());
|
|
|
|
// set defaults
|
|
maRbtEditNow.Check();
|
|
|
|
maBtCreate.SetClickHdl ( LINK ( this, SvxHyperlinkNewDocTp, ClickNewHdl_Impl ) );
|
|
|
|
maBtCreate.SetAccessibleRelationMemberOf( &maGrpNewDoc );
|
|
maBtCreate.SetAccessibleRelationLabeledBy( &maFtPath );
|
|
|
|
FillDocumentList ();
|
|
}
|
|
|
|
SvxHyperlinkNewDocTp::~SvxHyperlinkNewDocTp ()
|
|
{
|
|
for ( sal_uInt16 n=0; n<maLbDocTypes.GetEntryCount(); n++ )
|
|
{
|
|
DocumentTypeData* pTypeData = (DocumentTypeData*)
|
|
maLbDocTypes.GetEntryData ( n );
|
|
delete pTypeData;
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Fill the all dialog-controls except controls in groupbox "more..."
|
|
|*
|
|
|************************************************************************/
|
|
|
|
|
|
void SvxHyperlinkNewDocTp::FillDlgFields ( String& /*aStrURL*/ )
|
|
{
|
|
}
|
|
|
|
void SvxHyperlinkNewDocTp::FillDocumentList ()
|
|
{
|
|
EnterWait();
|
|
|
|
uno::Sequence< uno::Sequence< beans::PropertyValue > >
|
|
aDynamicMenuEntries( SvtDynamicMenuOptions().GetMenu( E_NEWMENU ) );
|
|
|
|
sal_uInt32 i, nCount = aDynamicMenuEntries.getLength();
|
|
for ( i = 0; i < nCount; i++ )
|
|
{
|
|
uno::Sequence< beans::PropertyValue >& rDynamicMenuEntry = aDynamicMenuEntries[ i ];
|
|
|
|
rtl::OUString aDocumentUrl, aTitle, aImageId, aTargetName;
|
|
|
|
for ( int e = 0; e < rDynamicMenuEntry.getLength(); e++ )
|
|
{
|
|
if ( rDynamicMenuEntry[ e ].Name == DYNAMICMENU_PROPERTYNAME_URL )
|
|
rDynamicMenuEntry[ e ].Value >>= aDocumentUrl;
|
|
else if ( rDynamicMenuEntry[e].Name == DYNAMICMENU_PROPERTYNAME_TITLE )
|
|
rDynamicMenuEntry[e].Value >>= aTitle;
|
|
else if ( rDynamicMenuEntry[e].Name == DYNAMICMENU_PROPERTYNAME_IMAGEIDENTIFIER )
|
|
rDynamicMenuEntry[e].Value >>= aImageId;
|
|
else if ( rDynamicMenuEntry[e].Name == DYNAMICMENU_PROPERTYNAME_TARGETNAME )
|
|
rDynamicMenuEntry[e].Value >>= aTargetName;
|
|
}
|
|
//#i96822# business cards, labels and database should not be inserted here
|
|
if( aDocumentUrl == "private:factory/swriter?slot=21051" ||
|
|
aDocumentUrl == "private:factory/swriter?slot=21052" ||
|
|
aDocumentUrl == "private:factory/sdatabase?Interactive" )
|
|
continue;
|
|
|
|
// Insert into listbox
|
|
if ( !aDocumentUrl.isEmpty() )
|
|
{
|
|
if ( aDocumentUrl == "private:factory/simpress?slot=6686" ) // SJ: #106216# do not start
|
|
aDocumentUrl = String( RTL_CONSTASCII_USTRINGPARAM( "private:factory/simpress" ) ); // the AutoPilot for impress
|
|
|
|
// insert private-url and default-extension as user-data
|
|
const SfxFilter* pFilter = SfxFilter::GetDefaultFilterFromFactory( aDocumentUrl );
|
|
if ( pFilter )
|
|
{
|
|
// insert doc-name and image
|
|
String aTitleName( aTitle );
|
|
aTitleName.Erase( aTitleName.Search( (sal_Unicode)'~' ), 1 );
|
|
|
|
sal_Int16 nPos = maLbDocTypes.InsertEntry ( aTitleName );
|
|
String aStrDefExt( pFilter->GetDefaultExtension () );
|
|
DocumentTypeData *pTypeData = new DocumentTypeData ( aDocumentUrl, aStrDefExt.Copy( 2, aStrDefExt.Len() ) );
|
|
maLbDocTypes.SetEntryData ( nPos, pTypeData );
|
|
}
|
|
}
|
|
}
|
|
maLbDocTypes.SelectEntryPos ( 0 );
|
|
|
|
LeaveWait();
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* retrieve and prepare data from dialog-fields
|
|
|*
|
|
|************************************************************************/
|
|
|
|
void SvxHyperlinkNewDocTp::GetCurentItemData ( String& aStrURL, String& aStrName,
|
|
String& aStrIntName, String& aStrFrame,
|
|
SvxLinkInsertMode& eMode )
|
|
{
|
|
// get data from dialog-controls
|
|
aStrURL = maCbbPath.GetText();
|
|
INetURLObject aURL;
|
|
if ( ImplGetURLObject( aStrURL, maCbbPath.GetBaseURL(), aURL ) )
|
|
{
|
|
aStrURL = aURL.GetMainURL( INetURLObject::NO_DECODE );
|
|
}
|
|
|
|
GetDataFromCommonFields( aStrName, aStrIntName, aStrFrame, eMode );
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* static method to create Tabpage
|
|
|*
|
|
|************************************************************************/
|
|
|
|
IconChoicePage* SvxHyperlinkNewDocTp::Create( Window* pWindow, const SfxItemSet& rItemSet )
|
|
{
|
|
return( new SvxHyperlinkNewDocTp( pWindow, rItemSet ) );
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Set initial focus
|
|
|*
|
|
|************************************************************************/
|
|
|
|
void SvxHyperlinkNewDocTp::SetInitFocus()
|
|
{
|
|
maCbbPath.GrabFocus();
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Ask page whether an insert is possible
|
|
|*
|
|
\************************************************************************/
|
|
|
|
sal_Bool SvxHyperlinkNewDocTp::AskApply()
|
|
{
|
|
INetURLObject aINetURLObject;
|
|
sal_Bool bRet = ImplGetURLObject( maCbbPath.GetText(), maCbbPath.GetBaseURL(), aINetURLObject );
|
|
if ( !bRet )
|
|
{
|
|
WarningBox aWarning( this, WB_OK, CUI_RESSTR(RID_SVXSTR_HYPDLG_NOVALIDFILENAME) );
|
|
aWarning.Execute();
|
|
}
|
|
return bRet;
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Any action to do after apply-button is pressed
|
|
|*
|
|
\************************************************************************/
|
|
|
|
void SvxHyperlinkNewDocTp::DoApply ()
|
|
{
|
|
EnterWait();
|
|
|
|
// get data from dialog-controls
|
|
String aStrNewName = maCbbPath.GetText();
|
|
|
|
if ( aStrNewName == aEmptyStr )
|
|
aStrNewName = maStrInitURL;
|
|
|
|
///////////////////////////////////////////////////////
|
|
// create a real URL-String
|
|
|
|
INetURLObject aURL;
|
|
if ( ImplGetURLObject( aStrNewName, maCbbPath.GetBaseURL(), aURL ) )
|
|
{
|
|
|
|
///////////////////////////////////////////////////////
|
|
// create Document
|
|
|
|
aStrNewName = aURL.GetURLPath( INetURLObject::NO_DECODE );
|
|
SfxViewFrame *pViewFrame = NULL;
|
|
try
|
|
{
|
|
bool bCreate = true;
|
|
|
|
// check if file exists, warn before we overwrite it
|
|
{
|
|
com::sun::star::uno::Reference < com::sun::star::task::XInteractionHandler > xHandler;
|
|
SvStream* pIStm = ::utl::UcbStreamHelper::CreateStream( aURL.GetMainURL( INetURLObject::NO_DECODE ), STREAM_READ, xHandler );
|
|
|
|
sal_Bool bOk = pIStm && ( pIStm->GetError() == 0);
|
|
|
|
if( pIStm )
|
|
delete pIStm;
|
|
|
|
if( bOk )
|
|
{
|
|
WarningBox aWarning( this, WB_YES_NO, CUI_RESSTR(RID_SVXSTR_HYPERDLG_QUERYOVERWRITE) );
|
|
bCreate = aWarning.Execute() == BUTTON_YES;
|
|
}
|
|
}
|
|
|
|
if( bCreate )
|
|
{
|
|
// current document
|
|
SfxViewFrame* pCurrentDocFrame = SfxViewFrame::Current();
|
|
|
|
if ( aStrNewName != aEmptyStr )
|
|
{
|
|
// get private-url
|
|
sal_uInt16 nPos = maLbDocTypes.GetSelectEntryPos();
|
|
if( nPos == LISTBOX_ENTRY_NOTFOUND )
|
|
nPos=0;
|
|
String aStrDocName ( ( ( DocumentTypeData* )
|
|
maLbDocTypes.GetEntryData( nPos ) )->aStrURL );
|
|
|
|
// create items
|
|
SfxStringItem aName( SID_FILE_NAME, aStrDocName );
|
|
SfxStringItem aReferer( SID_REFERER, rtl::OUString("private:user") );
|
|
SfxStringItem aFrame( SID_TARGETNAME, rtl::OUString("_blank") );
|
|
|
|
rtl::OUString aStrFlags('S');
|
|
if ( maRbtEditLater.IsChecked() )
|
|
{
|
|
aStrFlags += rtl::OUString('H');
|
|
}
|
|
SfxStringItem aFlags (SID_OPTIONS, aStrFlags);
|
|
|
|
// open url
|
|
const SfxPoolItem* pReturn = GetDispatcher()->Execute( SID_OPENDOC,
|
|
SFX_CALLMODE_SYNCHRON,
|
|
&aName, &aFlags,
|
|
&aFrame, &aReferer, 0L );
|
|
|
|
// save new doc
|
|
const SfxViewFrameItem *pItem = PTR_CAST( SfxViewFrameItem, pReturn ); // SJ: pReturn is NULL if the Hyperlink
|
|
if ( pItem ) // creation is cancelled #106216#
|
|
{
|
|
pViewFrame = pItem->GetFrame();
|
|
if (pViewFrame)
|
|
{
|
|
SfxStringItem aNewName( SID_FILE_NAME, aURL.GetMainURL( INetURLObject::NO_DECODE ) );
|
|
|
|
pViewFrame->GetDispatcher()->Execute( SID_SAVEASDOC,
|
|
SFX_CALLMODE_SYNCHRON,
|
|
&aNewName, 0L );
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( maRbtEditNow.IsChecked() && pCurrentDocFrame )
|
|
{
|
|
pCurrentDocFrame->ToTop();
|
|
}
|
|
}
|
|
}
|
|
catch (const uno::Exception&)
|
|
{
|
|
}
|
|
|
|
if ( pViewFrame && maRbtEditLater.IsChecked() )
|
|
{
|
|
SfxObjectShell* pObjShell = pViewFrame->GetObjectShell();
|
|
pObjShell->DoClose();
|
|
}
|
|
}
|
|
|
|
LeaveWait();
|
|
}
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* Click on imagebutton : new
|
|
|*
|
|
|************************************************************************/
|
|
|
|
IMPL_LINK_NOARG(SvxHyperlinkNewDocTp, ClickNewHdl_Impl)
|
|
{
|
|
uno::Reference < XComponentContext > xContext( ::comphelper::getProcessComponentContext() );
|
|
uno::Reference < XFolderPicker2 > xFolderPicker = FolderPicker::create(xContext);
|
|
|
|
String aStrURL;
|
|
String aTempStrURL( maCbbPath.GetText() );
|
|
utl::LocalFileHelper::ConvertSystemPathToURL( aTempStrURL, maCbbPath.GetBaseURL(), aStrURL );
|
|
|
|
String aStrPath = aStrURL;
|
|
sal_Bool bZeroPath = ( aStrPath.Len() == 0 );
|
|
sal_Bool bHandleFileName = bZeroPath; // when path has length of 0, then the rest should always be handled
|
|
// as file name, otherwise we do not yet know
|
|
|
|
if( bZeroPath )
|
|
aStrPath = SvtPathOptions().GetWorkPath();
|
|
else if( !::utl::UCBContentHelper::IsFolder( aStrURL ) )
|
|
bHandleFileName = sal_True;
|
|
|
|
xFolderPicker->setDisplayDirectory( aStrPath );
|
|
DisableClose( sal_True );
|
|
sal_Int16 nResult = xFolderPicker->execute();
|
|
DisableClose( sal_False );
|
|
if( ExecutableDialogResults::OK == nResult )
|
|
{
|
|
sal_Char const sSlash[] = "/";
|
|
|
|
INetURLObject aURL( aStrURL, INET_PROT_FILE );
|
|
String aStrName;
|
|
if( bHandleFileName )
|
|
aStrName = bZeroPath? aTempStrURL : String(aURL.getName());
|
|
|
|
maCbbPath.SetBaseURL( xFolderPicker->getDirectory() );
|
|
String aStrTmp( xFolderPicker->getDirectory() );
|
|
|
|
if( aStrTmp.GetChar( aStrTmp.Len() - 1 ) != sSlash[0] )
|
|
aStrTmp.AppendAscii( sSlash );
|
|
|
|
// append old file name
|
|
if( bHandleFileName )
|
|
aStrTmp += aStrName;
|
|
|
|
INetURLObject aNewURL( aStrTmp );
|
|
|
|
if( aStrName.Len() > 0 && !aNewURL.getExtension().isEmpty() &&
|
|
maLbDocTypes.GetSelectEntryPos() != LISTBOX_ENTRY_NOTFOUND )
|
|
{
|
|
// get private-url
|
|
sal_uInt16 nPos = maLbDocTypes.GetSelectEntryPos();
|
|
aNewURL.setExtension( ( ( DocumentTypeData* ) maLbDocTypes.GetEntryData( nPos ) )->aStrExt );
|
|
}
|
|
|
|
if( aNewURL.GetProtocol() == INET_PROT_FILE )
|
|
{
|
|
utl::LocalFileHelper::ConvertURLToSystemPath( aNewURL.GetMainURL( INetURLObject::NO_DECODE ), aStrTmp );
|
|
}
|
|
else
|
|
{
|
|
aStrTmp = aNewURL.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS );
|
|
}
|
|
|
|
maCbbPath.SetText ( aStrTmp );
|
|
}
|
|
return( 0L );
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|