]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloat.h
fix #832
[lyx.git] / src / insets / insetfloat.h
index 4668c68f143323f8fe133d885a9e0220aeb9cd84..568dfa12895c8a07fcbf457dd26e24ed934a994b 100644 (file)
@@ -1,32 +1,51 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetfloat.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 1998 The LyX Team.
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
  *
- * ======================================================
+ * Full author contact details are available in file CREDITS
  */
 
-#ifndef InsetFloat_H
-#define InsetFloat_H
-
-#ifdef __GNUG__
-#pragma interface
-#endif
+#ifndef INSETFLOAT_H
+#define INSETFLOAT_H
 
 #include "insetcollapsable.h"
+#include "toc.h"
+
+
+struct InsetFloatParams {
+       ///
+       InsetFloatParams() : wide(false) {}
+       ///
+       void write(std::ostream & os) const;
+       ///
+       void read(LyXLex & lex);
+       ///
+       string type;
+       ///
+       string placement;
+       ///
+       bool wide;
+};
 
-class Painter;
 
 /** The float inset
-  
+
 */
 class InsetFloat : public InsetCollapsable {
 public:
        ///
-       InsetFloat(string const &);
+       InsetFloat(BufferParams const &, string const &);
+       ///
+       InsetFloat(InsetFloat const &, bool same_id = false);
+       ///
+       ~InsetFloat();
+       ///
+       virtual dispatch_result localDispatch(FuncRequest const & cmd); 
        ///
        void write(Buffer const * buf, std::ostream & os) const;
        ///
@@ -40,30 +59,52 @@ public:
        ///
        int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
-       int docBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
        ///
        string const editMessage() const;
        ///
-       bool insertInsetAllowed(Inset * inset) const;
+       bool insetAllowed(Inset::Code) const;
+       /** returns true if, when outputing LaTeX, font changes should
+           be closed before generating this inset. This is needed for
+           insets that may contain several paragraphs */
+       bool noFontChange() const { return true; }
+       ///
+       void wide(bool w, BufferParams const &);
+       ///
+       void addToToc(toc::TocList &, Buffer const *) const;
+       ///
+       bool  showInsetDialog(BufferView *) const;
+       ///
+       InsetFloatParams const & params() const { return params_; }
+       
+private:
+       ///
+       InsetFloatParams params_;
+};
+
+
+#include "mailinset.h"
+
+
+class InsetFloatMailer : public MailInset {
+public:
        ///
-       void insetButtonRelease(BufferView * bv, int x, int y, int button);
+       InsetFloatMailer(InsetFloat & inset);
        ///
-       string const & type() const;
+       virtual InsetBase & inset() const { return inset_; }
        ///
-       void placement(string const & p);
+       virtual string const & name() const { return name_; }
        ///
-       string const & placement() const;
+       virtual string const inset2string() const;
        ///
-       void wide(bool w);
+       static void string2params(string const &, InsetFloatParams &);
        ///
-       bool wide() const;
+       static string const params2string(InsetFloatParams const &);
 private:
        ///
-       string floatType_;
-       ///
-       string floatPlacement_;
+       static string const name_;
        ///
-       bool wide_;
+       InsetFloat & inset_;
 };
 
 #endif