summaryrefslogtreecommitdiffstats
path: root/sw/source/ui/inc/unotxvw.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-05-08 13:48:15 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-05-08 13:48:15 +0000
commit3b21e677449516d644e65aa564c1dca84a113e68 (patch)
treed47981cd1dba629cc463af168483ac60d66ede5e /sw/source/ui/inc/unotxvw.hxx
parentINTEGRATION: CWS mbapp3 (1.15.304); FILE MERGED (diff)
downloadcore-3b21e677449516d644e65aa564c1dca84a113e68.tar.gz
core-3b21e677449516d644e65aa564c1dca84a113e68.zip
INTEGRATION: CWS mbapp3 (1.12.304); FILE MERGED
2006/04/28 15:06:26 mba 1.12.304.1: #129055#: new datatransfer functions
Diffstat (limited to 'sw/source/ui/inc/unotxvw.hxx')
-rw-r--r--sw/source/ui/inc/unotxvw.hxx12
1 files changed, 10 insertions, 2 deletions
diff --git a/sw/source/ui/inc/unotxvw.hxx b/sw/source/ui/inc/unotxvw.hxx
index ae30d1b5bd19..f782a6769018 100644
--- a/sw/source/ui/inc/unotxvw.hxx
+++ b/sw/source/ui/inc/unotxvw.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: unotxvw.hxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 10:13:17 $
+ * last change: $Author: hr $ $Date: 2006-05-08 14:48:15 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -82,6 +82,9 @@
#ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_
#include <com/sun/star/lang/XServiceInfo.hpp>
#endif
+#ifndef _COM_SUN_STAR_DATATRANSFER_XTRANSFERABLESUPPLIER_HPP_
+#include <com/sun/star/datatransfer/XTransferableSupplier.hpp>
+#endif
#ifndef _CPPUHELPER_IMPLBASE8_HXX_
#include <cppuhelper/implbase8.hxx> // helper for implementations
#endif
@@ -112,6 +115,7 @@ class SwXTextView :
public ::com::sun::star::text::XRubySelection,
public ::com::sun::star::view::XViewSettingsSupplier,
public ::com::sun::star::beans::XPropertySet,
+ public ::com::sun::star::datatransfer::XTransferableSupplier,
public SfxBaseController
{
SelectionChangeListenerArr aSelChangedListeners;
@@ -183,6 +187,10 @@ public:
virtual BOOL SAL_CALL supportsService(const rtl::OUString& ServiceName) throw( ::com::sun::star::uno::RuntimeException );
virtual ::com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException );
+ //XTransferableSupplier
+ virtual ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::XTransferable > SAL_CALL getTransferable( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual void SAL_CALL insertTransferable( const ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::XTransferable >& xTrans ) throw (::com::sun::star::datatransfer::UnsupportedFlavorException, ::com::sun::star::uno::RuntimeException);
+
void NotifySelChanged();
void NotifyDBChanged();