]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetminipage.h
parlist-a-1.diff
[lyx.git] / src / insets / insetminipage.h
index 2c4cc024686eb60b38d827d1b33f6675c08ca408..5b2fcc52c02612300c554882c410718d41ff401e 100644 (file)
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetminipage.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 InsetMinipage_H
-#define InsetMinipage_H
+#ifndef INSETMINIPAGE_H
+#define INSETMINIPAGE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcollapsable.h"
+#include "lyxlength.h"
 
-class Painter;
+/** The minipage inset
 
-/** The footnote inset
-  
 */
 class InsetMinipage : public InsetCollapsable {
 public:
        ///
-       explicit
-       InsetMinipage();
+       enum Position {
+               top,
+               center,
+               bottom
+       };
+       ///
+       enum InnerPosition {
+               inner_center,
+               inner_top,
+               inner_bottom,
+               inner_stretch
+       };
+
+       ///
+       struct Params {
+               ///
+               Params();
+               ///
+               Position pos;
+               ///
+               InnerPosition inner_pos;
+               ///
+               LyXLength height;
+               ///
+               LyXLength width;
+               ///
+               void write(std::ostream & os) const;
+               ///
+               void read(LyXLex & lex);
+       };
+
+       ///
+       InsetMinipage(BufferParams const &);
+       ///
+       InsetMinipage(InsetMinipage const &, bool same_id = false);
+       ///
+       ~InsetMinipage();
+       ///
+       virtual dispatch_result localDispatch(FuncRequest const & cmd); 
+       ///
+       void write(Buffer const * buf, std::ostream & os) const;
+       ///
+       void read(Buffer const * buf, LyXLex & lex);
+       ///
+       Inset * clone(Buffer const &, bool same_id = false) const;
+       ///
+       int ascent(BufferView *, LyXFont const &) const;
+       ///
+       int descent(BufferView *, LyXFont const &) const;
+       ///
+       Inset::Code lyxCode() const { return Inset::MINIPAGE_CODE; }
        ///
-       ~InsetMinipage() {}
+       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       ///
+       string const editMessage() const;
+       ///
+       bool insetAllowed(Inset::Code) const;
+       ///
+       int getMaxWidth(BufferView *, UpdatableInset const *) const;
+       ///
+       bool needFullRow() const { return false; }
+       /** 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; }
+       ///
+       bool showInsetDialog(BufferView *) const;
+       ///
+       int latexTextWidth(BufferView *) const;
+       ///
+       void params(Params const & p) { params_ = p; }
+       ///
+       Params const & params() const { return params_; }
+private:
+       ///
+       Params params_;
+};
+
+
+#include "mailinset.h"
+
+
+class InsetMinipageMailer : public MailInset {
+public:
        ///
-       void Write(Buffer const * buf, std::ostream & os) const;
+       InsetMinipageMailer(InsetMinipage & inset);
        ///
-       Inset * Clone() const;
+       virtual InsetBase & inset() const { return inset_; }
        ///
-       Inset::Code LyxCode() const { return Inset::MINIPAGE_CODE; }
+       virtual string const & name() const { return name_; }
        ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       virtual string const inset2string() const;
        ///
-       const char * EditMessage() const;
+       static void string2params(string const &, InsetMinipage::Params &);
        ///
-       bool InsertInset(BufferView *, Inset * inset);
+       static string const params2string(InsetMinipage::Params const &);
+private:
        ///
-       bool InsertInsetAllowed(Inset * inset) const;
+       static string const name_;
        ///
-       LyXFont GetDrawFont(BufferView *, LyXParagraph * par, int pos) const;
+       InsetMinipage & inset_;
 };
 
 #endif