2000-06-28 13:35:52 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetminipage.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2000-06-28 13:35:52 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS
|
2000-06-28 13:35:52 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef InsetMinipage_H
|
|
|
|
|
#define InsetMinipage_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "insetcollapsable.h"
|
2002-01-17 23:09:31 +00:00
|
|
|
|
#include "lyxlength.h"
|
2002-05-29 16:21:03 +00:00
|
|
|
|
|
|
|
|
|
#include <boost/signals/signal0.hpp>
|
2000-06-28 13:35:52 +00:00
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
/** The minipage inset
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2000-06-28 13:35:52 +00:00
|
|
|
|
*/
|
|
|
|
|
class InsetMinipage : public InsetCollapsable {
|
|
|
|
|
public:
|
2001-03-14 14:53:55 +00:00
|
|
|
|
///
|
|
|
|
|
enum Position {
|
|
|
|
|
top,
|
2001-03-15 19:03:46 +00:00
|
|
|
|
center,
|
2001-03-14 14:53:55 +00:00
|
|
|
|
bottom
|
|
|
|
|
};
|
|
|
|
|
///
|
|
|
|
|
enum InnerPosition {
|
|
|
|
|
inner_center,
|
|
|
|
|
inner_top,
|
|
|
|
|
inner_bottom,
|
|
|
|
|
inner_stretch
|
|
|
|
|
};
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2002-03-03 20:25:07 +00:00
|
|
|
|
InsetMinipage(BufferParams const &);
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2001-07-24 15:07:09 +00:00
|
|
|
|
InsetMinipage(InsetMinipage const &, bool same_id = false);
|
|
|
|
|
///
|
2001-03-16 15:15:32 +00:00
|
|
|
|
~InsetMinipage();
|
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void write(Buffer const * buf, std::ostream & os) const;
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void read(Buffer const * buf, LyXLex & lex);
|
2001-03-20 01:22:46 +00:00
|
|
|
|
///
|
2001-07-24 15:07:09 +00:00
|
|
|
|
Inset * clone(Buffer const &, bool same_id = false) const;
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2001-03-22 19:36:21 +00:00
|
|
|
|
int ascent(BufferView *, LyXFont const &) const;
|
|
|
|
|
///
|
|
|
|
|
int descent(BufferView *, LyXFont const &) const;
|
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
Inset::Code lyxCode() const { return Inset::MINIPAGE_CODE; }
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
string const editMessage() const;
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2001-07-19 08:52:59 +00:00
|
|
|
|
bool insetAllowed(Inset::Code) const;
|
2001-03-14 14:53:55 +00:00
|
|
|
|
///
|
|
|
|
|
Position pos() const;
|
|
|
|
|
///
|
|
|
|
|
void pos(Position);
|
|
|
|
|
///
|
|
|
|
|
InnerPosition innerPos() const;
|
|
|
|
|
///
|
|
|
|
|
void innerPos(InnerPosition);
|
|
|
|
|
///
|
2002-01-17 23:09:31 +00:00
|
|
|
|
LyXLength const & pageHeight() const;
|
2001-03-14 14:53:55 +00:00
|
|
|
|
///
|
2002-01-17 23:09:31 +00:00
|
|
|
|
void pageHeight(LyXLength const &);
|
2001-03-14 14:53:55 +00:00
|
|
|
|
///
|
2002-01-17 23:09:31 +00:00
|
|
|
|
LyXLength const & pageWidth() const;
|
2001-03-16 15:15:32 +00:00
|
|
|
|
///
|
2002-01-17 23:09:31 +00:00
|
|
|
|
void pageWidth(LyXLength const &);
|
2001-03-16 15:15:32 +00:00
|
|
|
|
///
|
2002-05-29 16:21:03 +00:00
|
|
|
|
boost::signal0<void> hideDialog;
|
2001-03-16 15:15:32 +00:00
|
|
|
|
///
|
2001-03-29 15:00:20 +00:00
|
|
|
|
int getMaxWidth(BufferView *, UpdatableInset const *) const;
|
2001-03-22 15:45:15 +00:00
|
|
|
|
///
|
|
|
|
|
bool needFullRow() const { return false; }
|
2002-07-23 21:03:38 +00:00
|
|
|
|
/** returns true if, when outputing LaTeX, font changes should
|
2002-12-01 22:59:25 +00:00
|
|
|
|
be closed before generating this inset. This is needed for
|
|
|
|
|
insets that may contain several paragraphs */
|
2002-07-23 21:03:38 +00:00
|
|
|
|
bool noFontChange() const { return true; }
|
2001-03-26 14:47:34 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
bool showInsetDialog(BufferView *) const;
|
2002-01-19 17:05:24 +00:00
|
|
|
|
///
|
|
|
|
|
int latexTextWidth(BufferView *) const;
|
2001-08-06 14:55:02 +00:00
|
|
|
|
|
2001-03-14 14:53:55 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
Position pos_;
|
|
|
|
|
///
|
|
|
|
|
InnerPosition inner_pos_;
|
|
|
|
|
///
|
2002-01-17 23:09:31 +00:00
|
|
|
|
LyXLength height_;
|
2001-03-14 14:53:55 +00:00
|
|
|
|
///
|
2002-01-17 23:09:31 +00:00
|
|
|
|
LyXLength width_;
|
2000-06-28 13:35:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|