]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloat.h
The markDirty() and fitCursor() changes
[lyx.git] / src / insets / insetfloat.h
index 39d60657694c256dab360d4688a7f290a1b9a617..0001b381676f733c13ed66054ed85693ccb080be 100644 (file)
 #include "insetcollapsable.h"
 #include "toc.h"
 
-#include <boost/signals/signal0.hpp>
-
-class Painter;
 
 struct InsetFloatParams {
        ///
-       InsetFloatParams() : placement("htbp"), wide(false) {}
+       InsetFloatParams() : wide(false) {}
+       ///
+       void write(std::ostream & os) const;
+       ///
+       void read(LyXLex & lex);
        ///
        string type;
        ///
@@ -45,6 +46,8 @@ public:
        ///
        ~InsetFloat();
        ///
+       virtual dispatch_result localDispatch(FuncRequest const & cmd); 
+       ///
        void write(Buffer const * buf, std::ostream & os) const;
        ///
        void read(Buffer const * buf, LyXLex & lex);
@@ -81,17 +84,36 @@ public:
        ///
        bool  showInsetDialog(BufferView *) const;
        ///
-       boost::signal0<void> hideDialog;
-       ///
        InsetFloatParams const & params() const { return params_; }
-       ///
-       void writeParams(std::ostream & os) const;
-       ///
-       void readParams(Buffer const * buf, LyXLex & lex);
        
 private:
        ///
        InsetFloatParams params_;
 };
 
+
+#include "mailinset.h"
+
+
+class InsetFloatMailer : public MailInset {
+public:
+       ///
+       InsetFloatMailer(InsetFloat & inset);
+       ///
+       virtual InsetBase & inset() const { return inset_; }
+       ///
+       virtual string const & name() const { return name_; }
+       ///
+       virtual string const inset2string() const;
+       ///
+       static void string2params(string const &, InsetFloatParams &);
+       ///
+       static string const params2string(InsetFloatParams const &);
+private:
+       ///
+       static string const name_;
+       ///
+       InsetFloat & inset_;
+};
+
 #endif