]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/FontLoader.h
Disable CheckTeX while buffer is processed
[lyx.git] / src / frontends / FontLoader.h
index 20fe5b886ec2fffeaa8b8cc3b15f00e963e268e7..e876e7820030b3d3bf1b5ac04bf9ceb1c5f50615 100644 (file)
@@ -12,6 +12,8 @@
 #ifndef FONTLOADER_H
 #define FONTLOADER_H
 
+#include "support/strfwd.h"
+
 namespace lyx {
 
 class FontInfo;
@@ -30,12 +32,15 @@ public:
        ~FontLoader();
 
        /// Update fonts after zoom, dpi, font names, or norm change
-       // (basically by deleting all cached values)    
+       // (basically by deleting all cached values)
        void update();
 
        /// Is the given font available ?
        bool available(FontInfo const & f);
 
+       /// Can the given symbol be displayed in general?
+       bool canBeDisplayed(char_type c);
+
        /// Get the Font metrics for this FontInfo
        FontMetrics const & metrics(FontInfo const & f);
 };