diff options
author | Sascha Ballach <sab@openoffice.org> | 2002-03-14 14:26:29 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2002-03-14 14:26:29 +0000 |
commit | 636664f312734d9ed164f40f3cc6492604b3b0be (patch) | |
tree | b001d5718cf95874a14f394990a8deb75724a068 | |
parent | ed11db424d9063414a45ae8cc89d4dad4fad32a2 (diff) |
#95584#; add TableModelChangeEvent support
-rw-r--r-- | sc/source/ui/inc/AccessibleSpreadsheet.hxx | 10 | ||||
-rw-r--r-- | sc/source/ui/inc/AccessibleTableBase.hxx | 6 |
2 files changed, 11 insertions, 5 deletions
diff --git a/sc/source/ui/inc/AccessibleSpreadsheet.hxx b/sc/source/ui/inc/AccessibleSpreadsheet.hxx index 2c0d4c1fa7ac..3bec67aae46c 100644 --- a/sc/source/ui/inc/AccessibleSpreadsheet.hxx +++ b/sc/source/ui/inc/AccessibleSpreadsheet.hxx @@ -2,9 +2,9 @@ * * $RCSfile: AccessibleSpreadsheet.hxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: sab $ $Date: 2002-03-13 08:59:18 $ + * last change: $Author: sab $ $Date: 2002-03-14 15:26:29 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -227,9 +227,11 @@ private: ScTabViewShell* mpViewShell; ScRangeList* mpMarkedRanges; std::vector<ScMyAddress>* mpSortedMarkedCells; + Rectangle maVisCells; ScSplitPos meSplitPos; ScAddress maActiveCell; sal_Bool mbHasSelection; + sal_Bool mbDelIns; sal_Bool IsDefunc( const com::sun::star::uno::Reference< @@ -243,7 +245,9 @@ private: void CreateSortedMarkedCells(); void AddMarkedRange(const ScRange& rRange); - ScDocument* GetDocument(ScTabViewShell* mpViewShell); + ScDocument* GetDocument(ScTabViewShell* pViewShell); + Rectangle GetVisArea(ScTabViewShell* pViewShell, ScSplitPos eSplitPos); + Rectangle GetVisCells(const Rectangle& rVisArea); }; diff --git a/sc/source/ui/inc/AccessibleTableBase.hxx b/sc/source/ui/inc/AccessibleTableBase.hxx index a4682e63af15..f6eb5ca4af0d 100644 --- a/sc/source/ui/inc/AccessibleTableBase.hxx +++ b/sc/source/ui/inc/AccessibleTableBase.hxx @@ -2,9 +2,9 @@ * * $RCSfile: AccessibleTableBase.hxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: sab $ $Date: 2002-03-12 09:37:40 $ + * last change: $Author: sab $ $Date: 2002-03-14 15:26:29 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -324,6 +324,8 @@ protected: ScRange maRange; ScDocument* mpDoc; + + void CommitTableModelChange(sal_Int32 nStartRow, sal_Int32 nStartCol, sal_Int32 nEndRow, sal_Int32 nEndCol, sal_uInt16 nId); }; |