]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlength.h
Fix natbib bug spotted by JMarc.
[lyx.git] / src / lyxlength.h
index 86fc8867690fae2c44a173b9ff93a280ef9e3ec4..dcf7198c1827a7c73c5ff1d7f804b4dd5ab9c294 100644 (file)
@@ -36,10 +36,12 @@ public:
                EX, ///< Height of a small "x" for the current font.
                EM, ///< Width of capital "M" in current font.
                MU, ///< Math unit (18mu = 1em) for positioning in math mode
-               PW, ///< Percent of columnwidth both "%" or "%c"
-               PE, ///< FIXME
-               PP, ///< Percent of pagewidth
-               PL, ///< Percent of linewidth
+               PTW, //< Percent of TextWidth
+               PCW, //< Percent of ColumnWidth
+               PPW, //< Percent of PageWidth
+               PLW, //< Percent of LineWidth
+               PTH, //< Percent of TextHeight          // Herbert 2002-05-16
+               PPH, //< Percent of PaperHeight         // Herbert 2002-05-16
                UNIT_NONE ///< no unit
        };
 
@@ -61,12 +63,14 @@ public:
        void unit(LyXLength::UNIT unit);
        ///
        bool zero() const;
+       ///
+       bool empty() const;
        /// return string representation
        string const asString() const;
        /// return string representation for LaTeX
        string const asLatexString() const;
        /// return the on-screen size of this length
-       int inPixels(int default_width, int default_height) const;
+       int inPixels(int text_width, int em_width = 0) const;
        /// return the on-screen size of this length of an image
        int inBP() const;