summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/inc/TableDesignControl.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-03-19 16:57:12 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-03-19 16:57:12 +0000
commit2facbebb88fe72614d566c3187c8f86c5c61f8bd (patch)
tree911e686d46d917817914961e4fb3e00a89371174 /dbaccess/source/ui/inc/TableDesignControl.hxx
parent#i4082# impl debug feature for parse nodes (diff)
downloadcore-2facbebb88fe72614d566c3187c8f86c5c61f8bd.tar.gz
core-2facbebb88fe72614d566c3187c8f86c5c61f8bd.zip
MWS_SRX644: migrate branch mws_srx644 -> HEAD
Diffstat (limited to 'dbaccess/source/ui/inc/TableDesignControl.hxx')
-rw-r--r--dbaccess/source/ui/inc/TableDesignControl.hxx20
1 files changed, 14 insertions, 6 deletions
diff --git a/dbaccess/source/ui/inc/TableDesignControl.hxx b/dbaccess/source/ui/inc/TableDesignControl.hxx
index f2ccc5471a9b..2d44dcadc06b 100644
--- a/dbaccess/source/ui/inc/TableDesignControl.hxx
+++ b/dbaccess/source/ui/inc/TableDesignControl.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: TableDesignControl.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: oj $ $Date: 2002-09-24 09:18:57 $
+ * last change: $Author: hr $ $Date: 2003-03-19 17:52:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -71,6 +71,12 @@
#ifndef _DBAUI_MODULE_DBU_HXX_
#include "moduledbu.hxx"
#endif
+#ifndef DBACCESS_TABLEDESIGN_ICLIPBOARDTEST_HXX
+#include "IClipBoardTest.hxx"
+#endif
+#ifndef DBAUI_TYPEINFO_HXX
+#include "TypeInfo.hxx"
+#endif
#define TABPAGESIZE 70
namespace dbaui
@@ -79,6 +85,7 @@ namespace dbaui
class OTypeInfo;
//==================================================================
class OTableRowView : public ::svt::EditBrowseBox
+ ,public IClipboardTest
{
friend class OTableDesignUndoAct;
@@ -96,7 +103,7 @@ namespace dbaui
OTableRowView(Window* pParent);
virtual ~OTableRowView();
- virtual void SetData( long nRow, USHORT nColId, const OTypeInfo* _pTypeInfo ) = 0;
+ virtual void SetData( long nRow, USHORT nColId, const TOTypeInfoSP& _pTypeInfo ) = 0;
virtual void SetData( long nRow, USHORT nColId, const ::com::sun::star::uno::Any& _rNewData ) = 0;
virtual ::com::sun::star::uno::Any GetData( long nRow, USHORT nColId ) = 0;
virtual void SetControlText( long nRow, USHORT nColId, const String& rText ) = 0;
@@ -106,9 +113,10 @@ namespace dbaui
USHORT GetCurUndoActId(){ return m_nCurUndoActId; }
- virtual void Cut();
- virtual void Copy();
- virtual void Paste();
+ // IClipboardTest
+ virtual void cut();
+ virtual void copy();
+ virtual void paste();
protected:
void Paste( long nRow );