]> git.lyx.org Git - features.git/blobdiff - src/FontList.h
Fix broken Apple speller interface
[features.git] / src / FontList.h
index e99c4a9fa5839c1472d782b3c0937be591dafb6b..2b09c11fb41c09d2019dfe5ed46a1c078fa9a327 100644 (file)
@@ -56,12 +56,14 @@ private:
        paragraph or, in the case of nested paragraphs, from the
        layout in the environment one level up until completely
        resolved.
        paragraph or, in the case of nested paragraphs, from the
        layout in the environment one level up until completely
        resolved.
-       The values Font::IGNORE_* and Font::TOGGLE are NOT
+       The values Font::IGNORE_* and FONT_TOGGLE are NOT
        allowed in these font tables.
        */
        Font font_;
 };
 
        allowed in these font tables.
        */
        Font font_;
 };
 
+class LaTeXFeatures;
+
 ///
 class FontList
 {
 ///
 class FontList
 {
@@ -82,13 +84,15 @@ public:
        ///
        bool empty() const { return list_.empty(); }
        ///
        ///
        bool empty() const { return list_.empty(); }
        ///
+       void clear() { list_.clear(); }
+       ///
        void erase(pos_type pos);
        ///
        iterator fontIterator(pos_type pos);
        ///
        const_iterator fontIterator(pos_type pos) const;
        ///
        void erase(pos_type pos);
        ///
        iterator fontIterator(pos_type pos);
        ///
        const_iterator fontIterator(pos_type pos) const;
        ///
-       Font & get(pos_type pos);
+       Font const & get(pos_type pos);
        ///
        void set(pos_type pos, Font const & font);
        ///
        ///
        void set(pos_type pos, Font const & font);
        ///
@@ -96,18 +100,8 @@ public:
        ///
        void decreasePosAfterPos(pos_type pos);
 
        ///
        void decreasePosAfterPos(pos_type pos);
 
-       /// Returns the height of the highest font in range
-       Font_size highestInRange(
-               pos_type startpos,
-               pos_type endpos,
-               Font_size def_size
-               ) const;
-
-       /// is there a font change in middle of the word?
-       bool hasChangeInRange(
-               pos_type pos, ///< position in the paragraph.
-               int len ///< length of the range to check.
-               ) const;
+       ///
+       void validate(LaTeXFeatures & features) const;
 
 private:
        ///
 
 private:
        ///