summaryrefslogtreecommitdiff
path: root/sw/inc/viewopt.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-16 09:20:10 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-16 09:20:10 +0000
commit4735049eefe2ebdf323bd560e14fd512b6385d38 (patch)
tree62df096202adc1a245dc9f61afeacabc66cbc068 /sw/inc/viewopt.hxx
parentbb1a5ff23c91b41be82ebadb157540e5fed43ef2 (diff)
INTEGRATION: CWS eforms2 (1.19.104); FILE MERGED
2004/10/08 12:58:24 dvo 1.19.104.2: RESYNC: (1.19-1.21); FILE MERGED 2004/07/23 13:29:50 fme 1.19.104.1: #114856# FormView view option
Diffstat (limited to 'sw/inc/viewopt.hxx')
-rw-r--r--sw/inc/viewopt.hxx12
1 files changed, 10 insertions, 2 deletions
diff --git a/sw/inc/viewopt.hxx b/sw/inc/viewopt.hxx
index a723637d9f8d..cdc7aff86d10 100644
--- a/sw/inc/viewopt.hxx
+++ b/sw/inc/viewopt.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: viewopt.hxx,v $
*
- * $Revision: 1.21 $
+ * $Revision: 1.22 $
*
- * last change: $Author: rt $ $Date: 2004-08-23 08:42:25 $
+ * last change: $Author: obo $ $Date: 2004-11-16 10:20:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -203,6 +203,9 @@ protected:
BOOL bStarOneSetting : 1;// prevent from UI automatics (no scrollbars in readonly documents)
BOOL bIsPagePreview : 1; // the preview mustn't print field/footnote/... shadings
BOOL bSelectionInReadonly : 1; //determines whether selection is switched on in readonly documents
+ // --> FME 2004-06-29 #114856# Formular view
+ BOOL bFormView : 1;
+ // <--
BOOL bBookview : 1; // view mode for page preview
// Maszstab
@@ -453,6 +456,11 @@ public:
BOOL IsSelectionInReadonly() const {return bSelectionInReadonly;}
void SetSelectionInReadonly(BOOL bSet) {bSelectionInReadonly = bSet;}
+ // --> FME 2004-06-29 #114856# Formular view
+ BOOL IsFormView() const { return bFormView; }
+ void SetFormView( BOOL bSet ) { bFormView = bSet; }
+ // <--
+
inline BOOL IsPagePrevBookview() const { return bBookview; }
inline void SetPagePrevBookview(BOOL bSet) { bBookview = bSet; }