X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFontList.h;h=388a04ee21c33c58382e463dff947ae0fd76d6e5;hb=b8550d11e836e857967a31250e6ca248b2d43f82;hp=e99c4a9fa5839c1472d782b3c0937be591dafb6b;hpb=65b3790153aa39d9dbcdf7ce6c24125607a580a7;p=lyx.git diff --git a/src/FontList.h b/src/FontList.h index e99c4a9fa5..388a04ee21 100644 --- a/src/FontList.h +++ b/src/FontList.h @@ -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. - 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_; }; +class LaTeXFeatures; + /// class FontList { @@ -82,6 +84,8 @@ public: /// bool empty() const { return list_.empty(); } /// + void clear() { list_.clear(); } + /// void erase(pos_type pos); /// iterator fontIterator(pos_type pos); @@ -92,15 +96,26 @@ public: /// void set(pos_type pos, Font const & font); /// + void setRange( + pos_type startpos, + pos_type endpos, + Font const & font); + /// void increasePosAfterPos(pos_type pos); /// void decreasePosAfterPos(pos_type pos); + /// + void setMisspelled( + pos_type startpos, + pos_type endpos, + bool misspelled); + /// Returns the height of the highest font in range - Font_size highestInRange( + FontSize highestInRange( pos_type startpos, pos_type endpos, - Font_size def_size + FontSize def_size ) const; /// is there a font change in middle of the word? @@ -109,6 +124,9 @@ public: int len ///< length of the range to check. ) const; + /// + void validate(LaTeXFeatures & features) const; + private: /// List list_;