2010-10-27 12:33:13 +01: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 .
|
|
|
|
*/
|
2013-11-05 02:18:53 +01:00
|
|
|
#ifndef INCLUDED_DBACCESS_SOURCE_UI_INC_TABLECOPYHELPER_HXX
|
|
|
|
#define INCLUDED_DBACCESS_SOURCE_UI_INC_TABLECOPYHELPER_HXX
|
2005-01-21 16:17:17 +00:00
|
|
|
|
|
|
|
#include "AppElementType.hxx"
|
2005-09-23 11:33:55 +00:00
|
|
|
#include "commontypes.hxx"
|
2005-01-21 16:17:17 +00:00
|
|
|
#include <svx/dataaccessdescriptor.hxx>
|
|
|
|
#include <sot/storage.hxx>
|
|
|
|
#include <svtools/transfer.hxx>
|
|
|
|
#include <com/sun/star/sdbc/XConnection.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XResultSet.hpp>
|
|
|
|
#include <functional>
|
|
|
|
|
2012-10-18 16:28:20 +02:00
|
|
|
class SvTreeListEntry;
|
2005-01-21 16:17:17 +00:00
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
class OGenericUnoController;
|
|
|
|
/// unary_function Functor object for class DataFlavorExVector::value_type returntype is bool
|
|
|
|
struct TAppSupportedSotFunctor : ::std::unary_function<DataFlavorExVector::value_type,bool>
|
|
|
|
{
|
|
|
|
ElementType eEntryType;
|
|
|
|
sal_Bool bQueryDrop;
|
|
|
|
TAppSupportedSotFunctor(const ElementType& _eEntryType,sal_Bool _bQueryDrop)
|
|
|
|
: eEntryType(_eEntryType)
|
|
|
|
, bQueryDrop(_bQueryDrop)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator()(const DataFlavorExVector::value_type& _aType)
|
|
|
|
{
|
|
|
|
switch (_aType.mnSotId)
|
|
|
|
{
|
|
|
|
case SOT_FORMAT_RTF: // RTF data descriptions
|
|
|
|
case SOT_FORMATSTR_ID_HTML: // HTML data descriptions
|
|
|
|
case SOT_FORMATSTR_ID_DBACCESS_TABLE: // table descriptor
|
|
|
|
return (E_TABLE == eEntryType);
|
|
|
|
case SOT_FORMATSTR_ID_DBACCESS_QUERY: // query descriptor
|
|
|
|
case SOT_FORMATSTR_ID_DBACCESS_COMMAND: // SQL command
|
|
|
|
return ((E_QUERY == eEntryType) || ( !bQueryDrop && E_TABLE == eEntryType));
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class OTableCopyHelper
|
|
|
|
{
|
2007-09-26 13:50:04 +00:00
|
|
|
private:
|
2008-01-30 07:47:36 +00:00
|
|
|
OGenericUnoController* m_pController;
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString m_sTableNameForAppend;
|
2008-01-30 07:47:36 +00:00
|
|
|
|
2005-01-21 16:17:17 +00:00
|
|
|
public:
|
|
|
|
// is needed to describe the drop target
|
|
|
|
struct DropDescriptor
|
|
|
|
{
|
|
|
|
::svx::ODataAccessDescriptor aDroppedData;
|
2011-03-05 18:05:38 +00:00
|
|
|
|
2007-09-26 13:50:04 +00:00
|
|
|
//for transfor the tablename
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sDefaultTableName;
|
2011-03-05 18:05:38 +00:00
|
|
|
|
2013-09-02 09:03:31 +01:00
|
|
|
OUString aUrl;
|
2005-01-21 16:17:17 +00:00
|
|
|
SotStorageStreamRef aHtmlRtfStorage;
|
|
|
|
ElementType nType;
|
2012-10-18 16:28:20 +02:00
|
|
|
SvTreeListEntry* pDroppedAt;
|
2005-01-21 16:17:17 +00:00
|
|
|
sal_Int8 nAction;
|
|
|
|
sal_Bool bHtml;
|
|
|
|
sal_Bool bError;
|
|
|
|
|
2014-02-01 14:44:44 -06:00
|
|
|
DropDescriptor()
|
|
|
|
: nType(E_TABLE)
|
|
|
|
, pDroppedAt(NULL)
|
|
|
|
, nAction(DND_ACTION_NONE)
|
|
|
|
, bHtml(sal_False)
|
|
|
|
, bError(sal_False)
|
|
|
|
{ }
|
2005-01-21 16:17:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
OTableCopyHelper(OGenericUnoController* _pControler);
|
|
|
|
|
|
|
|
/** pastes a table into the data source
|
|
|
|
@param _rPasteData
|
|
|
|
The data helper.
|
|
|
|
@param _sDestDataSourceName
|
|
|
|
The name of the dest data source.
|
|
|
|
*/
|
|
|
|
void pasteTable( const TransferableDataHelper& _rTransData
|
2013-04-07 12:06:47 +02:00
|
|
|
,const OUString& _sDestDataSourceName
|
2005-09-23 11:33:55 +00:00
|
|
|
,const SharedConnection& _xConnection);
|
2005-01-21 16:17:17 +00:00
|
|
|
|
|
|
|
/** pastes a table into the data source
|
|
|
|
@param _nFormatId
|
|
|
|
The format which should be copied.
|
|
|
|
@param _rPasteData
|
|
|
|
The data helper.
|
|
|
|
@param _sDestDataSourceName
|
|
|
|
The name of the dest data source.
|
|
|
|
*/
|
|
|
|
void pasteTable( SotFormatStringId _nFormatId
|
|
|
|
,const TransferableDataHelper& _rTransData
|
2013-04-07 12:06:47 +02:00
|
|
|
,const OUString& _sDestDataSourceName
|
2005-09-23 11:33:55 +00:00
|
|
|
,const SharedConnection& _xConnection);
|
2005-01-21 16:17:17 +00:00
|
|
|
|
|
|
|
/** copies a table which was constructed by tags like HTML or RTF
|
|
|
|
@param _rDesc
|
|
|
|
The Drop descriptor
|
|
|
|
@param _bCheck
|
|
|
|
If set to <TRUE/> than the controller checks only if a copy is possible.
|
|
|
|
@param _xConnection
|
|
|
|
The connection
|
|
|
|
*/
|
2005-09-23 11:33:55 +00:00
|
|
|
sal_Bool copyTagTable( DropDescriptor& _rDesc,
|
|
|
|
sal_Bool _bCheck,
|
|
|
|
const SharedConnection& _xConnection);
|
2005-01-21 16:17:17 +00:00
|
|
|
|
|
|
|
/** copies a table which was constructed by tags like HTML or RTF
|
|
|
|
@param _rDesc
|
|
|
|
The Drop descriptor
|
|
|
|
@param _bCheck
|
|
|
|
If set to <TRUE/> than the controller checks only if a copy is possible.
|
|
|
|
@param _xConnection
|
|
|
|
The connection
|
|
|
|
*/
|
|
|
|
void asyncCopyTagTable( DropDescriptor& _rDesc
|
2013-04-07 12:06:47 +02:00
|
|
|
,const OUString& _sDestDataSourceName
|
2005-09-23 11:33:55 +00:00
|
|
|
,const SharedConnection& _xConnection);
|
2005-01-21 16:17:17 +00:00
|
|
|
|
|
|
|
/** copies a table which was constructed by tags like HTML or RTF
|
|
|
|
@param _aDroppedData
|
|
|
|
The dropped data
|
|
|
|
@param _rDesc
|
|
|
|
IN/OUT parameter
|
|
|
|
@param _xConnection
|
|
|
|
The connection
|
|
|
|
*/
|
2005-09-23 11:33:55 +00:00
|
|
|
sal_Bool copyTagTable(const TransferableDataHelper& _aDroppedData,
|
|
|
|
DropDescriptor& _rAsyncDrop,
|
|
|
|
const SharedConnection& _xConnection);
|
2005-01-21 16:17:17 +00:00
|
|
|
|
|
|
|
/// returns <TRUE/> if the clipboard supports a table format, otherwise <FALSE/>.
|
|
|
|
sal_Bool isTableFormat(const TransferableDataHelper& _rClipboard) const;
|
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
inline void SetTableNameForAppend( const OUString& _rDefaultTableName ) { m_sTableNameForAppend = _rDefaultTableName; }
|
|
|
|
inline void ResetTableNameForAppend() { SetTableNameForAppend( OUString() ); }
|
|
|
|
inline const OUString& GetTableNameForAppend() const { return m_sTableNameForAppend ;}
|
2007-09-26 13:50:04 +00:00
|
|
|
|
2008-01-30 07:47:36 +00:00
|
|
|
private:
|
|
|
|
/** pastes a table into the data source
|
|
|
|
@param _rPasteData
|
|
|
|
The data descriptor.
|
|
|
|
@param _sDestDataSourceName
|
|
|
|
The name of the dest data source.
|
|
|
|
*/
|
|
|
|
void pasteTable(
|
|
|
|
const ::svx::ODataAccessDescriptor& _rPasteData,
|
2013-04-07 12:06:47 +02:00
|
|
|
const OUString& _sDestDataSourceName,
|
2008-01-30 07:47:36 +00:00
|
|
|
const SharedConnection& _xDestConnection
|
|
|
|
);
|
|
|
|
|
|
|
|
/** insert a table into the data source. The source can eihter be a table or a query
|
|
|
|
*/
|
|
|
|
void insertTable(
|
2013-04-07 12:06:47 +02:00
|
|
|
const OUString& i_rSourceDataSource,
|
2010-01-11 12:15:28 +01:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection>& i_rSourceConnection,
|
2013-04-07 12:06:47 +02:00
|
|
|
const OUString& i_rCommand,
|
2010-01-11 12:15:28 +01:00
|
|
|
const sal_Int32 i_nCommandType,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet >& i_rSourceRows,
|
|
|
|
const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& i_rSelection,
|
|
|
|
const sal_Bool i_bBookmarkSelection,
|
2013-04-07 12:06:47 +02:00
|
|
|
const OUString& i_rDestDataSource,
|
2010-01-11 12:15:28 +01:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection>& i_rDestConnection
|
2008-01-30 07:47:36 +00:00
|
|
|
);
|
2007-09-26 13:50:04 +00:00
|
|
|
|
2005-01-21 16:17:17 +00:00
|
|
|
};
|
|
|
|
} // namespace dbaui
|
2013-11-05 02:18:53 +01:00
|
|
|
#endif // INCLUDED_DBACCESS_SOURCE_UI_INC_TABLECOPYHELPER_HXX
|
2005-01-21 16:17:17 +00:00
|
|
|
|
2010-10-27 12:33:13 +01:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|