summaryrefslogtreecommitdiff
path: root/sfx2/source/view/viewimp.hxx
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2001-03-30 14:59:24 +0000
committerMathias Bauer <mba@openoffice.org>2001-03-30 14:59:24 +0000
commit5cde84f31103d943fe2bf6ca48a4fd1ac89f7e85 (patch)
tree019a749bade694acbacbb323cb7c98e2dde3001f /sfx2/source/view/viewimp.hxx
parent1d6dd7700e90c2fe538d4d2d73a05a6f9d90ae25 (diff)
support for modeless TabDialogs
Diffstat (limited to 'sfx2/source/view/viewimp.hxx')
-rw-r--r--sfx2/source/view/viewimp.hxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/sfx2/source/view/viewimp.hxx b/sfx2/source/view/viewimp.hxx
index 0800fc800585..154d0b124b01 100644
--- a/sfx2/source/view/viewimp.hxx
+++ b/sfx2/source/view/viewimp.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: viewimp.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mba $ $Date: 2001-01-25 15:56:13 $
+ * last change: $Author: mba $ $Date: 2001-03-30 15:59:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -77,6 +77,15 @@ class SfxAcceleratorManager;
class SfxOfficeDispatch;
class SfxBaseController;
+struct ModelessDialog_Impl
+{
+ Dialog* pDialog;
+ USHORT nSlotId;
+};
+
+typedef ModelessDialog_Impl* ModelessDialogPtr_Impl;
+SV_DECL_PTRARR( ModelessDialogPtrArr_Impl, ModelessDialogPtr_Impl, 4, 4 );
+
typedef SfxShell* SfxShellPtr_Impl;
SV_DECL_PTRARR( SfxShellArr_Impl, SfxShellPtr_Impl, 4, 4 );
@@ -89,6 +98,7 @@ struct SfxViewShell_Impl
{
BOOL bControllerSet;
SfxShellArr_Impl aArr;
+ ModelessDialogPtrArr_Impl aDialogArr;
SbxObjectRef xSelectionObj;
SvBorder aBorder;
Size aOptimalSize;