summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/inc/TableDesignView.hxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-04-24 13:34:10 +0000
committerOcke Janssen <oj@openoffice.org>2001-04-24 13:34:10 +0000
commit0849a2d21010072e992e4baea006b42d329f4243 (patch)
tree2046598d1025cc992570dc6a079d57f896b4d4cd /dbaccess/source/ui/inc/TableDesignView.hxx
parentimpl menu (diff)
downloadcore-0849a2d21010072e992e4baea006b42d329f4243.tar.gz
core-0849a2d21010072e992e4baea006b42d329f4243.zip
impl views and a menu
Diffstat (limited to 'dbaccess/source/ui/inc/TableDesignView.hxx')
-rw-r--r--dbaccess/source/ui/inc/TableDesignView.hxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/dbaccess/source/ui/inc/TableDesignView.hxx b/dbaccess/source/ui/inc/TableDesignView.hxx
index d62fb9f81faa..2305ee044723 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.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: oj $ $Date: 2001-03-22 07:45:19 $
+ * last change: $Author: oj $ $Date: 2001-04-24 14:34:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -103,10 +103,17 @@ namespace dbaui
//==================================================================
class OTableDesignView : public ODataView
{
+ enum ChildFocusState
+ {
+ DESCRIPTION,
+ EDITOR,
+ NONE
+ };
private:
::com::sun::star::lang::Locale m_aLocale;
OTableBorderWindow* m_pWin;
OTableController* m_pController;
+ ChildFocusState m_eChildFocus;
protected:
@@ -120,6 +127,9 @@ namespace dbaui
OTableController* _pController);
virtual ~OTableDesignView();
+ // window overloads
+ virtual long PreNotify( NotifyEvent& rNEvt );
+
OTableEditorCtrl* GetEditorCtrl() const { return m_pWin->GetEditorCtrl(); }
OTableFieldDescWin* GetDescWin() const { return m_pWin->GetDescWin(); }
OTableController* getController() const { return m_pController; }