]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspecialchar.h
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetspecialchar.h
index 80691341865cdfe3874a9c4776dd432118ff3e85..d8ec503700e640e19cbb4a2dfad97d7d790151a7 100644 (file)
@@ -1,21 +1,21 @@
 // -*- C++ -*-
-/* This file is part of*
- * ====================================================== 
+/**
+ * \file insetspecialchar.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *      
- *         Copyright (C) 1997 Asger Alstrup
+ * \author Asger Alstrup Nielsen
+ * \author Jean-Marc Lasgouttes
+ * \author Lars Gullik Bjønnes
  *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef INSET_SPECIALCHAR_H
 #define INSET_SPECIALCHAR_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "lyxinset.h"
+#include "inset.h"
 #include "LString.h"
 
 struct LaTeXFeatures;
@@ -28,61 +28,61 @@ public:
        enum Kind {
                /// Optional hyphenation point (\-)
                HYPHENATION,
+               /// Ligature break point (\textcompwordmark)
+               LIGATURE_BREAK,
                /// ... (\ldots)
                LDOTS,
                /// End of sentence punctuation (\@)
                END_OF_SENTENCE,
                /// Menu separator
                MENU_SEPARATOR,
-#if 0
-               /// Newline
-               NEWLINE,
-#endif
-               /// Protected Separator
-               PROTECTED_SEPARATOR
        };
 
        ///
        InsetSpecialChar() {}
        ///
+       explicit
        InsetSpecialChar(Kind k);
        ///
-       int ascent(Painter &, LyXFont const &) const;
+       Kind kind() const;
        ///
-       int descent(Painter &, LyXFont const &) const;
+       void dimension(BufferView *, LyXFont const &, Dimension &) const;
        ///
-       int width(Painter &, LyXFont const &) const;
+       void draw(BufferView *, LyXFont const &, int, float &) const;
        ///
-       void draw(Painter &, LyXFont const &, int baseline, float & x) const;
-       ///
-       void Write(ostream &) const;
+       void write(Buffer const *, std::ostream &) const;
        /// Will not be used when lyxf3
-       void Read(LyXLex & lex);
-       /// 
-       int Latex(ostream &, signed char fragile) const;
+       void read(Buffer const *, LyXLex & lex);
+       ///
+       int latex(Buffer const *, std::ostream &,
+                 LatexRunParams const &) const;
        ///
-       int Latex(string & file, signed char fragile) const;
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int Linuxdoc(string & file) const;
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(string & file) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
        ///
-       Inset * Clone() const;
-       ///  
-       Inset::Code LyxCode() const
-       {
-               return Inset::SPECIALCHAR_CODE;
-       }
+       virtual Inset * clone(Buffer const &, bool same_id = false) const;
+       ///
+       Inset::Code lyxCode() const { return Inset::SPECIALCHAR_CODE; }
        /// We don't need \begin_inset and \end_inset
-       bool DirectWrite() const 
-       {
-               return true;
-       };
+       bool directWrite() const { return true; }
        ///
-       void Validate(LaTeXFeatures &) const;
+       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