]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspecialchar.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetspecialchar.h
index 05fb3ecf38841b03d6b04e7e998bdccfcfa2614b..833256b703350837c30a290c838e9ecf773d6a2f 100644 (file)
@@ -28,6 +28,8 @@ public:
        enum Kind {
                /// Optional hyphenation point (\-)
                HYPHENATION,
+               /// Ligature break point (\textcompwordmark)
+               LIGATURE_BREAK,
                /// ... (\ldots)
                LDOTS,
                /// End of sentence punctuation (\@)
@@ -44,6 +46,8 @@ public:
        explicit
        InsetSpecialChar(Kind k);
        ///
+       Kind kind() const;
+       ///
        int ascent(BufferView *, LyXFont const &) const;
        ///
        int descent(BufferView *, LyXFont const &) const;
@@ -63,9 +67,9 @@ public:
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int docBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &) const;
        ///
-       virtual Inset * clone(Buffer const &) const;
+       virtual Inset * clone(Buffer const &, bool same_id = false) const;
        ///  
        Inset::Code lyxCode() const
        {
@@ -78,9 +82,19 @@ public:
        };
        ///
        void validate(LaTeXFeatures &) const;
+       
+       // should this inset be handled like a normal charater
+       bool isChar() const;
+       /// is this equivalent to a letter?
+       bool isLetter() const;
+       /// is this equivalent to a space (which is BTW different from
+       // a line separator)?
+       bool isSpace() const;
+       // should we break lines after this inset?
+       bool isLineSeparator() const;
 private:
        /// And which kind is this?
-       Kind kind;
+       Kind kind_;
 };
 
 #endif