]> git.lyx.org Git - features.git/blobdiff - src/insets/inset.h
popup fixes from Juergen ; insetgraphics fix from Herbert ; menus fix from Andre...
[features.git] / src / insets / inset.h
index 49e38c05de1ed05762650bbbbe69fd4bf3c368e4..47ef8c9125c1615014a778f17b5e7006ce4aa2ad 100644 (file)
@@ -295,6 +295,12 @@ public:
        // needed for spellchecking text
        ///
        virtual bool allowSpellcheck() { return false; }
+
+       // is this equivalent to a letter?
+       virtual bool isLetter() const { return false; }
+       // is this equivalent to a space?
+       virtual bool isSpace() const { return false; }
+
 protected:
        ///
        mutable int top_x;