]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetquotes.h
fix #832
[lyx.git] / src / insets / insetquotes.h
index f19a7b77927afe228f7593121185959118c5bd62..5d5a10463ad6a22098cf8c1149a4b25c194fc6c0 100644 (file)
@@ -1,24 +1,22 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetquotes.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team
+ * \author Jean-Marc Lasgouttes
  *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef INSET_QUOTES_H
 #define INSET_QUOTES_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "lyxinset.h"
+#include "inset.h"
 
 class BufferParams;
+class Language;
 
 struct LaTeXFeatures;
 
@@ -26,7 +24,7 @@ struct LaTeXFeatures;
 /** Quotes.
 
   Used for the various quotes. German, English, French, all either
-  double or single **/ 
+  double or single **/
 class InsetQuotes : public Inset {
 public:
        ///
@@ -49,20 +47,20 @@ public:
                ///
                LeftQ,
                ///
-               RightQ 
+               RightQ
        };
        ///
        enum quote_times {
                ///
                SingleQ,
                ///
-               DoubleQ 
+               DoubleQ
        };
-       
+
        /** The constructor works like this:
          \begin{itemize}
-           \item fls <- french single quote left 
-           \item grd <- german double quote right 
+           \item fls <- french single quote left
+           \item grd <- german double quote right
            \item etc.
          \end{itemize}
          */
@@ -78,45 +76,48 @@ public:
        ///
        int width(BufferView *, LyXFont const &) const;
        ///
-       void draw(BufferView *, LyXFont const &, int, float &, bool) const;
+       void draw(BufferView *, LyXFont const &, int, float &) const;
+#if 0
        ///
-       LyXFont ConvertFont(LyXFont const & font) const;
-       //LyXFont ConvertFont(LyXFont font);
+       LyXFont const convertFont(LyXFont const & font) const;
+#endif
        ///
-       void Write(Buffer const *, std::ostream &) const;
+       void write(Buffer const *, std::ostream &) const;
        ///
-       void Read(Buffer const *, LyXLex & lex);
+       void read(Buffer const *, LyXLex & lex);
        ///
-       int Latex(Buffer const *, std::ostream &,
+       int latex(Buffer const *, std::ostream &,
                  bool fragile, bool free_spc) const;
        ///
-       int Ascii(Buffer const *, std::ostream &) const;
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int Linuxdoc(Buffer const *, std::ostream &) const;
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
        ///
-       void Validate(LaTeXFeatures &) const;
+       void validate(LaTeXFeatures &) const;
        ///
-       Inset * Clone() const;
+       virtual Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       Inset::Code LyxCode() const;
+       Inset::Code lyxCode() const;
+       // should this inset be handled like a normal charater
+       bool isChar() const { return true; }
+
 private:
        ///
-       quote_language language;
+       quote_language language_;
        ///
-       quote_side side;
+       quote_side side_;
        ///
-       quote_times times;
+       quote_times times_;
 
        /** The parameters of the constructor are the language, the
            side and the multiplicity of the quote.
         */
        InsetQuotes(quote_language l, quote_side s, quote_times t);
        ///
-       void ParseString(string const &);
+       void parseString(string const &);
        ///
-       string DispString() const;
+       string const dispString(Language const *) const;
 };
 #endif
-