]> git.lyx.org Git - lyx.git/blobdiff - src/TextMetrics.h
Improve list of available languages for UI l10n.
[lyx.git] / src / TextMetrics.h
index e5b32a1904650c9e986d87604befa2abb09f70d4..4e9fc0dc2d05fc5955a4790356b2cd1f79fe3eca 100644 (file)
@@ -16,6 +16,7 @@
 
 #include "Font.h"
 #include "InsetList.h"
+#include "LayoutEnums.h"
 #include "ParagraphMetrics.h"
 
 #include "support/types.h"
@@ -136,7 +137,7 @@ private:
        void breakRow(Row & row, int right_margin, pit_type const pit) const;
 
        // Expand the alignment of paragraph \param par at position \param pos
-       int getAlign(Paragraph const & par, pos_type pos) const;
+       LyXAlignment getAlign(Paragraph const & par, pos_type pos) const;
        /** this calculates the specified parameters. needed when setting
         * the cursor and when creating a visible row */
        void computeRowMetrics(pit_type pit, Row & row, int width) const;
@@ -225,7 +226,7 @@ public:
        int leftMargin(int max_width, pit_type pit) const;
 
        /// calculates the position of a completion popup
-       void completionPosAndDim(Cursor const & cur, int & x, int & y, 
+       void completionPosAndDim(Cursor const & cur, int & x, int & y,
                Dimension & dim) const;
 
 private:
@@ -252,7 +253,7 @@ public:
        /// our 'outermost' font.
        /// This is handed down from the surrounding
        /// inset through the pi/mi parameter (pi.base.font)
-       /// It is used in applyOuterFont() and setCharFont() for reasons 
+       /// It is used in applyOuterFont() and setCharFont() for reasons
        /// that are not clear... to hand hand the outermost language and
        /// also for char style apparently.
        Font font_;