diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-01-29 13:04:28 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-01-29 13:04:28 +0000 |
commit | cda1d9bd4c20675edb74c46750ab57becb464ad4 (patch) | |
tree | 5fb48add1fa04e9824b4e824cd8bbcc8d5b11847 /svx/inc | |
parent | cf14019e64827db3dadf6fe8906ae2b78b22663d (diff) |
INTEGRATION: CWS reportdesign02 (1.4.120); FILE MERGED
2007/12/20 07:49:51 oj 1.4.120.2: RESYNC: (1.4-1.5); FILE MERGED
2007/10/29 11:40:31 oj 1.4.120.1: #i77919# enable view to draw only left and right border, used by the report builder
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/svx/svdpntv.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/svx/inc/svx/svdpntv.hxx b/svx/inc/svx/svdpntv.hxx index 69866eaefddc..c908fe202339 100644 --- a/svx/inc/svx/svdpntv.hxx +++ b/svx/inc/svx/svdpntv.hxx @@ -4,9 +4,9 @@ * * $RCSfile: svdpntv.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: ihi $ $Date: 2007-11-26 14:49:38 $ + * last change: $Author: rt $ $Date: 2008-01-29 14:04:28 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -261,6 +261,7 @@ protected: // is this a preview renderer? unsigned mbPreviewRenderer : 1; + unsigned bBordVisibleOnlyLeftRight : 1; public: // #114898# @@ -451,6 +452,7 @@ public: BOOL IsPageVisible() const { return bPageVisible; } // Seite (weisse Flaeche) malen oder nicht BOOL IsPageBorderVisible() const { return bPageBorderVisible; } // Seite (weisse Flaeche) malen oder nicht BOOL IsBordVisible() const { return bBordVisible; } // Seitenrandlinie malen oder nicht + BOOL IsBordVisibleOnlyLeftRight() const { return bBordVisibleOnlyLeftRight; } // draw only left and right border BOOL IsGridVisible() const { return bGridVisible; } // Rastergitter malen oder nicht BOOL IsGridFront() const { return bGridFront ; } // Rastergitter ueber die Objekte druebermalen oder dahinter BOOL IsHlplVisible() const { return bHlplVisible; } // Hilfslinien der Seiten malen oder nicht @@ -460,6 +462,7 @@ public: void SetPageVisible(bool bOn = true) { bPageVisible=bOn; InvalidateAllWin(); } void SetPageBorderVisible(bool bOn = true) { bPageBorderVisible=bOn; InvalidateAllWin(); } void SetBordVisible(bool bOn = true) { bBordVisible=bOn; InvalidateAllWin(); } + void SetBordVisibleOnlyLeftRight(bool bOn = true) { bBordVisibleOnlyLeftRight=bOn; InvalidateAllWin(); } void SetGridVisible(bool bOn = true) { bGridVisible=bOn; InvalidateAllWin(); } void SetGridFront(bool bOn = true) { bGridFront =bOn; InvalidateAllWin(); } void SetHlplVisible(bool bOn = true) { bHlplVisible=bOn; InvalidateAllWin(); } |