summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/inc/TableDesignView.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/TableDesignView.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/TableDesignView.hxx')
-rw-r--r--dbaccess/source/ui/inc/TableDesignView.hxx13
1 files changed, 11 insertions, 2 deletions
diff --git a/dbaccess/source/ui/inc/TableDesignView.hxx b/dbaccess/source/ui/inc/TableDesignView.hxx
index f96cdeec374e..0acd72e5a590 100644
--- a/dbaccess/source/ui/inc/TableDesignView.hxx
+++ b/dbaccess/source/ui/inc/TableDesignView.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: TableDesignView.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: oj $ $Date: 2002-07-25 06:59:30 $
+ * 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
@@ -73,6 +73,9 @@
#ifndef _SV_SPLIT_HXX
#include <vcl/split.hxx>
#endif
+#ifndef DBACCESS_TABLEDESIGN_ICLIPBOARDTEST_HXX
+#include "IClipBoardTest.hxx"
+#endif
namespace dbaui
{
@@ -104,6 +107,7 @@ namespace dbaui
};
//==================================================================
class OTableDesignView : public ODataView
+ ,public IClipboardTest
{
enum ChildFocusState
{
@@ -117,6 +121,7 @@ namespace dbaui
OTableController* m_pController;
ChildFocusState m_eChildFocus;
+ IClipboardTest* getActiveChild() const;
protected:
@@ -139,11 +144,15 @@ namespace dbaui
::com::sun::star::lang::Locale getLocale() const { return m_aLocale;}
+ // IClipboardTest
virtual sal_Bool isCutAllowed();
virtual sal_Bool isCopyAllowed();
+ virtual sal_Bool isPasteAllowed();
+ virtual sal_Bool hasChildPathFocus() { return HasChildPathFocus(); }
virtual void copy();
virtual void cut();
virtual void paste();
+
// set the view readonly or not
virtual void setReadOnly(sal_Bool _bReadOnly);