X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetminipage.h;h=e46de56167fbc2263ae4946be2709e6f69e2b040;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=aff41a6eeceb2680a407b550e31ddd734a46142d;hpb=71f8ac34a96741c40c876c66ae199f9677559a5c;p=lyx.git diff --git a/src/insets/insetminipage.h b/src/insets/insetminipage.h index aff41a6eec..e46de56167 100644 --- a/src/insets/insetminipage.h +++ b/src/insets/insetminipage.h @@ -4,9 +4,9 @@ * * LyX, The Document Processor * - * Copyright 1998 The LyX Team. + * Copyright 2001 The LyX Team. * - *====================================================== + * ====================================================== */ #ifndef InsetMinipage_H @@ -17,26 +17,87 @@ #endif #include "insetcollapsable.h" +#include "lyxlength.h" +#include /** The minipage inset */ class InsetMinipage : public InsetCollapsable { public: + /// + enum Position { + top, + center, + bottom + }; + /// + enum InnerPosition { + inner_center, + inner_top, + inner_bottom, + inner_stretch + }; /// InsetMinipage(); /// - void Write(Buffer const * buf, std::ostream & os) const; + InsetMinipage(InsetMinipage const &, bool same_id = false); + /// + ~InsetMinipage(); + /// + 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; } + /// + int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const; + /// + string const editMessage() const; + /// + bool insetAllowed(Inset::Code) const; /// - Inset * Clone(Buffer const &) const; + Position pos() const; + /// + void pos(Position); + /// + InnerPosition innerPos() const; + /// + void innerPos(InnerPosition); + /// + LyXLength const & pageHeight() const; + /// + void pageHeight(LyXLength const &); + /// + LyXLength const & pageWidth() const; + /// + void pageWidth(LyXLength const &); + /// + SigC::Signal0 hideDialog; + /// + int getMaxWidth(BufferView *, UpdatableInset const *) const; + /// + bool needFullRow() const { return false; } + /// + bool showInsetDialog(BufferView *) const; + /// + int latexTextWidth(BufferView *) const; + +private: /// - Inset::Code LyxCode() const { return Inset::MINIPAGE_CODE; } + Position pos_; /// - int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const; + InnerPosition inner_pos_; /// - string const EditMessage() const; + LyXLength height_; /// - bool InsertInsetAllowed(Inset * inset) const; + LyXLength width_; }; #endif