summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2001-02-13 07:05:36 +0000
committerOliver Specht <os@openoffice.org>2001-02-13 07:05:36 +0000
commitadda854d2d7d516e943461da808aae36848542fe (patch)
tree04b58b84f6169c9e263d3f6c312143e9a71993ee /sw/inc
parent6d58c85c28186dd1679117a6e07b5def035c5744 (diff)
footnote comments corrected
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/pagedesc.hxx21
1 files changed, 9 insertions, 12 deletions
diff --git a/sw/inc/pagedesc.hxx b/sw/inc/pagedesc.hxx
index 4684ceb4ec79..70c99baa317f 100644
--- a/sw/inc/pagedesc.hxx
+++ b/sw/inc/pagedesc.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pagedesc.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:14:27 $
+ * last change: $Author: os $ $Date: 2001-02-13 08:05:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -85,7 +85,7 @@ class SfxPoolItem;
class SwTxtFmtColl;
class SwNode;
-//Adjustierung der Trennlinie.
+//Separator line adjustment
enum SwFtnAdj
{
FTNADJ_LEFT,
@@ -93,29 +93,26 @@ enum SwFtnAdj
FTNADJ_RIGHT
};
-//Fussnoteninformationen
+//footnote information
class SwPageFtnInfo
{
- SwTwips nMaxHeight; //Maximalraum auf der Seite.
-// Pen aPen; //Pen fuer Trennstrich.
+ SwTwips nMaxHeight; //maximum height of the footnote area.
ULONG nLineWidth; //width of separator line
Color aLineColor; //color of the separator line
- Fraction aWidth; //Prozentuale Breite des Trennstriches.
- SwFtnAdj eAdj; //Ausrichtung des Trennstriches.
- SwTwips nTopDist; //Abstand zwischen Body und Trennstrich.
- SwTwips nBottomDist; //Abstand zwischen Trennstrich und 1. Fussnote.
+ Fraction aWidth; //percentage width of the separator line.
+ SwFtnAdj eAdj; //line adjustment.
+ SwTwips nTopDist; //distance between body and separator.
+ SwTwips nBottomDist; //distance between separator and first footnote
public:
SwTwips GetHeight() const { return nMaxHeight; }
ULONG GetLineWidth() const { return nLineWidth; }
const Color& GetLineColor() const { return aLineColor;}
-// const Pen& GetPen() const { return aPen; }
const Fraction& GetWidth() const { return aWidth; }
SwFtnAdj GetAdj() const { return eAdj; }
SwTwips GetTopDist()const { return nTopDist; }
SwTwips GetBottomDist() const { return nBottomDist; }
void SetHeight( SwTwips nNew ) { nMaxHeight = nNew; }
-// void SetPen ( const Pen& rNew ) { aPen = rNew; }
void SetLineWidth(ULONG nSet ) { nLineWidth = nSet; }
void SetLineColor(const Color& rCol ) { aLineColor = rCol;}
void SetWidth( const Fraction &rNew){ aWidth = rNew; }