]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlatexaccent.h
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetlatexaccent.h
index 0295d89f1c69dd818d7d990550a0e1f123d68166..dfb139efb3a78d7003e10df71aaa09b15f2495e1 100644 (file)
@@ -1,78 +1,73 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetlatexaccent.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) 1995 Matthias Ettrich
+ * \author Lars Gullik Bjønnes
  *
- *======================================================*/
+ * Full author contact details are available in file CREDITS
+ */
 
-#ifndef _INSET_LATEX_ACCENT_H
-#define _INSET_LATEX_ACCENT_H
+#ifndef INSET_LATEX_ACCENT_H
+#define INSET_LATEX_ACCENT_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "lyxinset.h"
+#include "inset.h"
 #include "LString.h"
-#include "lyxlex.h"
+
+class LyXLex;
 
 /** Insertion of accents
-  
+
   Proper handling of accented characters.
   This is class is supposed to handle all LaTeX accents, it
   is also possible that the class will change a bit so that
   it also can handle other special characters (e.g. Hstroke)
   Initiated by Ivan Schreter, later modified by Lgb.
   */
-class InsetLatexAccent: public Inset {
+class InsetLatexAccent : public Inset {
 public:
        ///
-       InsetLatexAccent(); 
+       InsetLatexAccent();
        ///
+       explicit
        InsetLatexAccent(string const & string);
        ///
-       InsetLatexAccent(InsetLatexAccent const&);
-       ///
-       ~InsetLatexAccent();
-       ///
-       int Ascent(LyXFont const &font) const;
-       ///
-       int Descent(LyXFont const &font) const;
-       ///
-       int Width(LyXFont const &font) const;
+       void dimension(BufferView *, LyXFont const &, Dimension &) const;
        ///
-       bool DisplayISO8859_9(LyXFont font, LyXScreen &scr,
-                             int baseline, float &x);
+       void draw(BufferView *, LyXFont const &, int, float &) const;
        ///
-       void Draw(LyXFont font, LyXScreen &scr, int baseline, float &x);
+       int lbearing(LyXFont const & font) const;
        ///
-       void Write(FILE *file);
+       int rbearing(LyXFont const & font) const;
        ///
-       void Read(LyXLex &lex);
+       bool displayISO8859_9(BufferView *, LyXFont const & font,
+                             int baseline, float & x) const;
        ///
-       int Latex(FILE *file, signed char fragile);
+       void write(Buffer const *, std::ostream &) const;
        ///
-       int Latex(string &file, signed char fragile);
+       void read(Buffer const *, LyXLex & lex);
        ///
-       int Linuxdoc(string &file);
+       int latex(Buffer const *, std::ostream &,
+                 LatexRunParams const &) const;
        ///
-       int DocBook(string &file);
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       bool Deletable() const;
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       bool DirectWrite() const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
        ///
-       Inset* Clone();
+       bool directWrite() const;
        ///
-       Inset::Code LyxCode()const;
+       virtual Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       bool IsEqual(Inset* other);
+       Inset::Code lyxCode()const;
        ///
-       inline bool CanDisplay();
-private:
+       inline bool canDisplay();
+       // should this inset be handled like a normal charater
+       bool isChar() const { return true; }
+
        /// all the accent types
        enum ACCENT_TYPES{
                ///
@@ -112,13 +107,14 @@ private:
                ///
                DOT_LESS_I,
                ///
-               DOT_LESS_J, // 18
+               DOT_LESS_J, // 18
                ///
-               lSLASH,
+               lSLASH,
                ///
-               LSLASH
+               LSLASH
        };
-       
+private:
+       friend std::ostream & operator<<(std::ostream &, ACCENT_TYPES);
        /// Check if we know the modifier and can display it ok on screen.
        void checkContents();
        ///
@@ -127,21 +123,21 @@ private:
        bool  candisp;
        /// modifier type
        ACCENT_TYPES  modtype;
-       
-       /// remove dot from 'i' and 'j' or transform l,L into lslash,LSLaSH
+
+       /// remove dot from 'i' and 'j' or transform l, L into lslash, LSLaSH
        bool  remdot;
        /// add something to ascent - accent at the top
        bool  plusasc;
        /// add something to descent - underlined char
        bool  plusdesc;
        /// international char
-       char  ic;    
+       mutable char  ic;
 };
 
-bool InsetLatexAccent::CanDisplay()
+
+bool InsetLatexAccent::canDisplay()
 {
        return candisp;
 }
 
 #endif
-