2010-10-12 15:59:03 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-14 17:39:53 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2006-09-17 06:04:21 +00:00
|
|
|
|
2004-08-02 14:39:37 +00:00
|
|
|
#include "CollectionView.hxx"
|
|
|
|
#include "CollectionView.hrc"
|
|
|
|
#include <tools/debug.hxx>
|
2008-05-05 14:56:32 +00:00
|
|
|
#include <tools/diagnose_ex.h>
|
2004-08-02 14:39:37 +00:00
|
|
|
#include "moduledbu.hxx"
|
|
|
|
#include "dbu_dlg.hrc"
|
2012-10-02 15:03:12 +02:00
|
|
|
#include <comphelper/processfactory.hxx>
|
2004-08-02 14:39:37 +00:00
|
|
|
#include <comphelper/interaction.hxx>
|
2007-05-10 09:21:03 +00:00
|
|
|
#include <cppuhelper/exc_hlp.hxx>
|
2004-08-02 14:39:37 +00:00
|
|
|
#include <toolkit/helper/vclunohelper.hxx>
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#include <com/sun/star/container/XChild.hpp>
|
|
|
|
#include <com/sun/star/container/XNameContainer.hpp>
|
|
|
|
#include <com/sun/star/beans/PropertyValue.hpp>
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#include "dbustrings.hrc"
|
|
|
|
#include "UITools.hxx"
|
|
|
|
#include <com/sun/star/container/XHierarchicalNameContainer.hpp>
|
|
|
|
#include <com/sun/star/ucb/InteractiveAugmentedIOException.hpp>
|
|
|
|
#include <com/sun/star/ucb/IOErrorCode.hpp>
|
2012-10-02 15:03:12 +02:00
|
|
|
#include <com/sun/star/task/InteractionHandler.hpp>
|
2004-08-02 14:39:37 +00:00
|
|
|
#include <com/sun/star/task/InteractionClassification.hpp>
|
2007-05-10 09:21:03 +00:00
|
|
|
#include <com/sun/star/sdbc/SQLException.hpp>
|
2004-08-02 14:39:37 +00:00
|
|
|
#include <com/sun/star/awt/XWindow.hpp>
|
2009-10-06 07:38:24 +02:00
|
|
|
#include <unotools/viewoptions.hxx>
|
2004-08-02 14:39:37 +00:00
|
|
|
#include <osl/thread.h>
|
2007-05-10 09:21:03 +00:00
|
|
|
#include <connectivity/dbexception.hxx>
|
2004-08-02 14:39:37 +00:00
|
|
|
|
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::ucb;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::container;
|
|
|
|
using namespace ::com::sun::star::task;
|
2007-05-10 09:21:03 +00:00
|
|
|
using namespace ::com::sun::star::sdbc;
|
2004-08-02 14:39:37 +00:00
|
|
|
using namespace comphelper;
|
|
|
|
DBG_NAME(OCollectionView)
|
|
|
|
OCollectionView::OCollectionView( Window * pParent
|
|
|
|
,const Reference< XContent>& _xContent
|
2013-04-07 12:06:47 +02:00
|
|
|
,const OUString& _sDefaultName
|
2012-12-06 14:15:55 +02:00
|
|
|
,const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext)
|
2004-08-02 14:39:37 +00:00
|
|
|
: ModalDialog( pParent, ModuleRes(DLG_COLLECTION_VIEW))
|
2007-04-26 06:55:22 +00:00
|
|
|
, m_aFTCurrentPath( this, ModuleRes( FT_EXPLORERFILE_CURRENTPATH ) )
|
|
|
|
, m_aNewFolder( this, ModuleRes( BTN_EXPLORERFILE_NEWFOLDER ) )
|
|
|
|
, m_aUp( this, ModuleRes( BTN_EXPLORERFILE_UP ) )
|
2011-12-28 20:00:03 +04:00
|
|
|
, m_aView( this, ModuleRes( CTRL_VIEW ), FILEVIEW_SHOW_ONLYTITLE )
|
2007-04-26 06:55:22 +00:00
|
|
|
, m_aFTName( this, ModuleRes( FT_EXPLORERFILE_FILENAME ) )
|
|
|
|
, m_aName( this, ModuleRes( ED_EXPLORERFILE_FILENAME ) )
|
|
|
|
, m_aFL( this, ModuleRes( FL_1 ) )
|
|
|
|
, m_aPB_OK( this, ModuleRes( BTN_EXPLORERFILE_SAVE ) )
|
|
|
|
, m_aPB_CANCEL( this, ModuleRes( PB_CANCEL ) )
|
|
|
|
, m_aPB_HELP( this, ModuleRes( PB_HELP ) )
|
|
|
|
, m_sPath( ModuleRes( STR_PATHNAME ) )
|
2004-08-02 14:39:37 +00:00
|
|
|
, m_xContent(_xContent)
|
2012-12-06 14:15:55 +02:00
|
|
|
, m_xContext(_rxContext)
|
2004-08-02 14:39:37 +00:00
|
|
|
, m_bCreateForm(sal_True)
|
|
|
|
{
|
|
|
|
DBG_CTOR(OCollectionView,NULL);
|
|
|
|
FreeResource();
|
|
|
|
|
|
|
|
OSL_ENSURE(m_xContent.is(),"No valid content!");
|
2013-09-26 12:17:53 +02:00
|
|
|
m_aView.Initialize(m_xContent,OUString());
|
2004-08-02 14:39:37 +00:00
|
|
|
m_aFTCurrentPath.SetStyle( m_aFTCurrentPath.GetStyle() | WB_PATHELLIPSIS );
|
|
|
|
initCurrentPath();
|
|
|
|
|
|
|
|
m_aName.SetText(_sDefaultName);
|
|
|
|
m_aName.GrabFocus();
|
|
|
|
|
|
|
|
m_aNewFolder.SetStyle( m_aNewFolder.GetStyle() | WB_NOPOINTERFOCUS );
|
2013-10-22 14:35:31 +02:00
|
|
|
m_aUp.SetModeImage(Image(ModuleRes(IMG_NAVIGATION_BTN_UP_SC)));
|
|
|
|
m_aNewFolder.SetModeImage(Image(ModuleRes(IMG_NAVIGATION_CREATEFOLDER_SC)));
|
2004-08-02 14:39:37 +00:00
|
|
|
|
|
|
|
m_aView.SetDoubleClickHdl( LINK( this, OCollectionView, Dbl_Click_FileView ) );
|
|
|
|
m_aView.EnableAutoResize();
|
2013-12-02 08:58:21 +01:00
|
|
|
m_aView.EnableDelete(true);
|
2004-08-02 14:39:37 +00:00
|
|
|
m_aUp.SetClickHdl( LINK( this, OCollectionView, Up_Click ) );
|
|
|
|
m_aNewFolder.SetClickHdl( LINK( this, OCollectionView, NewFolder_Click ) );
|
|
|
|
m_aPB_OK.SetClickHdl( LINK( this, OCollectionView, Save_Click ) );
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2004-08-02 14:39:37 +00:00
|
|
|
OCollectionView::~OCollectionView( )
|
|
|
|
{
|
|
|
|
DBG_DTOR(OCollectionView,NULL);
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2004-08-02 14:39:37 +00:00
|
|
|
Reference< XContent> OCollectionView::getSelectedFolder() const
|
|
|
|
{
|
|
|
|
return m_xContent;
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(OCollectionView, Save_Click)
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sName = m_aName.GetText();
|
2011-12-19 18:10:37 -02:00
|
|
|
if ( sName.isEmpty() )
|
2004-08-02 14:39:37 +00:00
|
|
|
return 0;
|
|
|
|
try
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sSubFolder = m_aView.GetCurrentURL();
|
2004-08-02 14:39:37 +00:00
|
|
|
sal_Int32 nIndex = sName.lastIndexOf('/') + 1;
|
|
|
|
if ( nIndex )
|
|
|
|
{
|
|
|
|
if ( nIndex == 1 ) // special handling for root
|
|
|
|
{
|
|
|
|
Reference<XChild> xChild(m_xContent,UNO_QUERY);
|
|
|
|
Reference<XNameAccess> xNameAccess(xChild,UNO_QUERY);
|
|
|
|
while( xNameAccess.is() )
|
|
|
|
{
|
|
|
|
xNameAccess.set(xChild->getParent(),UNO_QUERY);
|
|
|
|
if ( xNameAccess.is() )
|
|
|
|
{
|
|
|
|
m_xContent.set(xNameAccess,UNO_QUERY);
|
|
|
|
xChild.set(m_xContent,UNO_QUERY);
|
|
|
|
}
|
|
|
|
}
|
2013-09-26 12:17:53 +02:00
|
|
|
m_aView.Initialize(m_xContent,OUString());
|
2004-08-02 14:39:37 +00:00
|
|
|
initCurrentPath();
|
|
|
|
}
|
|
|
|
sSubFolder = sName.copy(0,nIndex-1);
|
|
|
|
sName = sName.copy(nIndex);
|
|
|
|
Reference<XHierarchicalNameContainer> xHier(m_xContent,UNO_QUERY);
|
|
|
|
OSL_ENSURE(xHier.is(),"XHierarchicalNameContainer not supported!");
|
2011-12-19 18:10:37 -02:00
|
|
|
if ( !sSubFolder.isEmpty() && xHier.is() )
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
|
|
|
if ( xHier->hasByHierarchicalName(sSubFolder) )
|
|
|
|
{
|
|
|
|
m_xContent.set(xHier->getByHierarchicalName(sSubFolder),UNO_QUERY);
|
|
|
|
}
|
|
|
|
else // sub folder doesn't exist
|
|
|
|
{
|
|
|
|
Sequence< Any > aValues(2);
|
|
|
|
PropertyValue aValue;
|
2013-11-04 13:33:17 +02:00
|
|
|
aValue.Name = "ResourceName";
|
2004-08-02 14:39:37 +00:00
|
|
|
aValue.Value <<= sSubFolder;
|
|
|
|
aValues[0] <<= aValue;
|
|
|
|
|
2013-11-04 13:33:17 +02:00
|
|
|
aValue.Name = "ResourceType";
|
2013-04-07 12:06:47 +02:00
|
|
|
aValue.Value <<= OUString("folder");
|
2004-08-02 14:39:37 +00:00
|
|
|
aValues[1] <<= aValue;
|
|
|
|
|
|
|
|
InteractionClassification eClass = InteractionClassification_ERROR;
|
|
|
|
::com::sun::star::ucb::IOErrorCode eError = IOErrorCode_NOT_EXISTING_PATH;
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sTemp;
|
2004-08-02 14:39:37 +00:00
|
|
|
InteractiveAugmentedIOException aException(sTemp,Reference<XInterface>(),eClass,eError,aValues);
|
|
|
|
|
2012-10-04 14:36:34 +02:00
|
|
|
Reference<XInteractionHandler2> xHandler(
|
2012-12-06 14:15:55 +02:00
|
|
|
InteractionHandler::createWithParent(m_xContext, VCLUnoHelper::GetInterface( this )));
|
2012-10-02 15:03:12 +02:00
|
|
|
OInteractionRequest* pRequest = new OInteractionRequest(makeAny(aException));
|
|
|
|
Reference< XInteractionRequest > xRequest(pRequest);
|
2004-08-02 14:39:37 +00:00
|
|
|
|
2012-10-02 15:03:12 +02:00
|
|
|
OInteractionApprove* pApprove = new OInteractionApprove;
|
|
|
|
pRequest->addContinuation(pApprove);
|
|
|
|
xHandler->handle(xRequest);
|
2004-08-02 14:39:37 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Reference<XNameContainer> xNameContainer(m_xContent,UNO_QUERY);
|
|
|
|
if ( xNameContainer.is() )
|
|
|
|
{
|
|
|
|
Reference< XContent> xContent;
|
|
|
|
if ( xNameContainer->hasByName(sName) )
|
|
|
|
{
|
|
|
|
QueryBox aBox( this, WB_YES_NO, ModuleRes( STR_ALREADYEXISTOVERWRITE ) );
|
|
|
|
if ( aBox.Execute() != RET_YES )
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
m_aName.SetText(sName);
|
2011-01-14 15:00:11 +01:00
|
|
|
EndDialog( sal_True );
|
2004-08-02 14:39:37 +00:00
|
|
|
}
|
|
|
|
}
|
2008-05-05 14:56:32 +00:00
|
|
|
catch( const Exception& )
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
2008-05-05 14:56:32 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2004-08-02 14:39:37 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(OCollectionView, NewFolder_Click)
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Reference<XHierarchicalNameContainer> xNameContainer(m_xContent,UNO_QUERY);
|
2013-09-26 12:17:53 +02:00
|
|
|
if ( dbaui::insertHierachyElement(this,m_xContext,xNameContainer,OUString(),m_bCreateForm) )
|
|
|
|
m_aView.Initialize(m_xContent,OUString());
|
2004-08-02 14:39:37 +00:00
|
|
|
}
|
2007-05-10 09:21:03 +00:00
|
|
|
catch( const SQLException& )
|
|
|
|
{
|
2012-12-06 14:15:55 +02:00
|
|
|
showError( ::dbtools::SQLExceptionInfo( ::cppu::getCaughtException() ), this, m_xContext );
|
2007-05-10 09:21:03 +00:00
|
|
|
}
|
2008-05-05 14:56:32 +00:00
|
|
|
catch( const Exception& )
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
2008-05-05 14:56:32 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2004-08-02 14:39:37 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(OCollectionView, Up_Click)
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Reference<XChild> xChild(m_xContent,UNO_QUERY);
|
|
|
|
if ( xChild.is() )
|
|
|
|
{
|
|
|
|
Reference<XNameAccess> xNameAccess(xChild->getParent(),UNO_QUERY);
|
|
|
|
if ( xNameAccess.is() )
|
|
|
|
{
|
|
|
|
m_xContent.set(xNameAccess,UNO_QUERY);
|
2013-09-26 12:17:53 +02:00
|
|
|
m_aView.Initialize(m_xContent,OUString());
|
2004-08-02 14:39:37 +00:00
|
|
|
initCurrentPath();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m_aUp.Disable();
|
|
|
|
}
|
|
|
|
}
|
2008-05-05 14:56:32 +00:00
|
|
|
catch( const Exception& )
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
2008-05-05 14:56:32 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2004-08-02 14:39:37 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
IMPL_LINK_NOARG(OCollectionView, Dbl_Click_FileView)
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Reference<XNameAccess> xNameAccess(m_xContent,UNO_QUERY);
|
|
|
|
if ( xNameAccess.is() )
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sSubFolder = m_aView.GetCurrentURL();
|
2004-08-02 14:39:37 +00:00
|
|
|
sal_Int32 nIndex = sSubFolder.lastIndexOf('/') + 1;
|
|
|
|
sSubFolder = sSubFolder.getToken(0,'/',nIndex);
|
2011-12-19 18:10:37 -02:00
|
|
|
if ( !sSubFolder.isEmpty() )
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
|
|
|
Reference< XContent> xContent;
|
|
|
|
if ( xNameAccess->hasByName(sSubFolder) )
|
|
|
|
xContent.set(xNameAccess->getByName(sSubFolder),UNO_QUERY);
|
|
|
|
if ( xContent.is() )
|
|
|
|
{
|
|
|
|
m_xContent = xContent;
|
2013-09-26 12:17:53 +02:00
|
|
|
m_aView.Initialize(m_xContent,OUString());
|
2004-08-02 14:39:37 +00:00
|
|
|
initCurrentPath();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-05-05 14:56:32 +00:00
|
|
|
catch( const Exception& )
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
2008-05-05 14:56:32 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2004-08-02 14:39:37 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2004-08-02 14:39:37 +00:00
|
|
|
void OCollectionView::initCurrentPath()
|
|
|
|
{
|
2011-01-14 15:00:11 +01:00
|
|
|
sal_Bool bEnable = sal_False;
|
2004-08-02 14:39:37 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
if ( m_xContent.is() )
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
const OUString sCID = m_xContent->getIdentifier()->getContentIdentifier();
|
|
|
|
const static OUString s_sFormsCID("private:forms");
|
|
|
|
const static OUString s_sReportsCID("private:reports");
|
2013-04-03 20:11:54 -06:00
|
|
|
m_bCreateForm = s_sFormsCID == sCID ;
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sPath("/");
|
2008-10-01 12:28:29 +00:00
|
|
|
if ( m_bCreateForm && sCID.getLength() != s_sFormsCID.getLength())
|
|
|
|
sPath = sCID.copy(s_sFormsCID.getLength());
|
|
|
|
else if ( !m_bCreateForm && sCID.getLength() != s_sReportsCID.getLength() )
|
|
|
|
sPath = sCID.copy(s_sReportsCID.getLength());
|
|
|
|
|
|
|
|
m_aFTCurrentPath.SetText(sPath);
|
2004-08-02 14:39:37 +00:00
|
|
|
Reference<XChild> xChild(m_xContent,UNO_QUERY);
|
|
|
|
bEnable = xChild.is() && Reference<XNameAccess>(xChild->getParent(),UNO_QUERY).is();
|
|
|
|
}
|
|
|
|
}
|
2008-05-05 14:56:32 +00:00
|
|
|
catch( const Exception& )
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
2008-05-05 14:56:32 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2004-08-02 14:39:37 +00:00
|
|
|
}
|
|
|
|
m_aUp.Enable(bEnable);
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString OCollectionView::getName() const
|
2004-08-02 14:39:37 +00:00
|
|
|
{
|
|
|
|
return m_aName.GetText();
|
|
|
|
}
|
|
|
|
|
2013-08-17 23:43:14 +02:00
|
|
|
} // namespace dbaui
|
2004-08-02 14:39:37 +00:00
|
|
|
|
2010-10-12 15:59:03 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|