]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseterror.h
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / inseterror.h
index cdc03f41dcae981bc9b287bbff68ce92587f80c2..519da5fe93dff0ddeeac40001ac9138aee86016f 100644 (file)
@@ -1,15 +1,16 @@
 // -*- C++ -*-
 /* This file is part of*
- * ======================================================
+ * ====================================================== 
  *
  *           LyX, The Document Processor
  *      
- *         Copyright (C) 1995 Matthias Ettrich
+ *           Copyright 1995 Matthias Ettrich
+ *           Copyright 1995-2000 The LyX Team. 
  *
- *======================================================*/
+ * ====================================================== */
 
-#ifndef _INSET_ERROR_H
-#define _INSET_ERROR_H
+#ifndef INSET_ERROR_H
+#define INSET_ERROR_H
 
 #ifdef __GNUG__
 #pragma interface
 class InsetError: public Inset {
 public:
        ///
+       explicit
        InsetError(string const & string);
        ///
        InsetError();
        ///
        ~InsetError();
        ///
-       int Ascent(LyXFont const &font) const;
+       int ascent(Painter &, LyXFont const & font) const;
        ///
-       int Descent(LyXFont const &font) const;
+       int descent(Painter &, LyXFont const & font) const;
        ///
-       int Width(LyXFont const &font) const;
+       int width(Painter &, LyXFont const & font) const;
        ///
-       void Draw(LyXFont font, LyXScreen &scr, int baseline, float &x);
+       void draw(Painter &, LyXFont const & font, int baseline, float & x) const;
        ///
-       void Write(FILE *file);
+       void Write(std::ostream &) const;
        ///
-       void Read(LyXLex &lex);
+       void Read(LyXLex & lex);
        ///
-       int Latex(FILE *file, signed char fragile);
+       int Latex(std::ostream &, bool fragile, bool free_spc) const;
        ///
-       int Latex(string &file, signed char fragile);
+       int Ascii(std::ostream &) const;
        ///
-       int Linuxdoc(string &file);
+       int Linuxdoc(std::ostream &) const;
        ///
-       int DocBook(string &file);
+       int DocBook(std::ostream &) const;
        ///
        bool AutoDelete() const;
        /// what appears in the minibuffer when opening
-       char const* EditMessage() {return _("Opened error");}
+       char const * EditMessage() const;
        ///
-       void Edit(int, int);
+       void Edit(BufferView *, int x, int y, unsigned int button);
        ///
-       unsigned char Editable() const;
+       EDITABLE Editable() const;
        ///
-       Inset* Clone();
+       Inset * Clone() const;
        ///
        Inset::Code LyxCode() const { return Inset::NO_CODE; }
        /// We don't want "begin" and "end inset" in lyx-file
@@ -73,8 +75,8 @@ private:
        ///
        string contents;
        ///
-       FL_FORM *form;
+       FL_FORM * form;
        ///
-       FL_OBJECT *strobj;
+       FL_OBJECT * strobj;
 };
 #endif