2000-06-28 13:35:52 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2001-03-22 19:36:21 +00:00
|
|
|
* Copyright 2001 The LyX Team.
|
2000-06-28 13:35:52 +00:00
|
|
|
*
|
2001-03-22 19:36:21 +00:00
|
|
|
* ======================================================
|
2000-06-28 13:35:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef InsetMinipage_H
|
|
|
|
#define InsetMinipage_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "insetcollapsable.h"
|
2001-03-14 14:53:55 +00:00
|
|
|
#include "vspace.h"
|
2001-03-16 15:15:32 +00:00
|
|
|
#include <sigc++/signal_system.h>
|
2000-06-28 13:35:52 +00:00
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
/** The minipage inset
|
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
|
|
|
///
|
|
|
|
InsetMinipage();
|
|
|
|
///
|
2001-03-16 15:15:32 +00:00
|
|
|
~InsetMinipage();
|
|
|
|
///
|
2000-06-28 14:55:57 +00:00
|
|
|
void Write(Buffer const * buf, std::ostream & os) const;
|
2000-06-28 13:35:52 +00:00
|
|
|
///
|
2001-03-20 01:22:46 +00:00
|
|
|
void Read(Buffer const * buf, LyXLex & lex);
|
|
|
|
///
|
2000-10-10 11:50:43 +00:00
|
|
|
Inset * Clone(Buffer const &) 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;
|
|
|
|
///
|
2000-06-28 13:35:52 +00:00
|
|
|
Inset::Code LyxCode() const { return Inset::MINIPAGE_CODE; }
|
|
|
|
///
|
|
|
|
int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
|
|
|
|
///
|
2000-09-14 17:53:12 +00:00
|
|
|
string const EditMessage() const;
|
2000-06-28 13:35:52 +00:00
|
|
|
///
|
|
|
|
bool InsertInsetAllowed(Inset * inset) const;
|
2001-03-14 14:53:55 +00:00
|
|
|
///
|
|
|
|
Position pos() const;
|
|
|
|
///
|
|
|
|
void pos(Position);
|
|
|
|
///
|
|
|
|
InnerPosition innerPos() const;
|
|
|
|
///
|
|
|
|
void innerPos(InnerPosition);
|
|
|
|
///
|
2001-03-22 15:45:15 +00:00
|
|
|
string const & height() const;
|
2001-03-14 14:53:55 +00:00
|
|
|
///
|
2001-03-22 15:45:15 +00:00
|
|
|
void height(string const &);
|
2001-03-14 14:53:55 +00:00
|
|
|
///
|
2001-03-16 15:15:32 +00:00
|
|
|
string const & width() const;
|
|
|
|
///
|
|
|
|
void width(string const &);
|
|
|
|
///
|
|
|
|
SigC::Signal0<void> hideDialog;
|
|
|
|
///
|
|
|
|
void InsetButtonRelease(BufferView * bv, int x, int y, int button);
|
2001-03-22 15:45:15 +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; }
|
2001-03-26 14:47:34 +00:00
|
|
|
///
|
|
|
|
bool ShowInsetDialog(BufferView *) const;
|
2001-03-14 14:53:55 +00:00
|
|
|
private:
|
|
|
|
///
|
|
|
|
Position pos_;
|
|
|
|
///
|
|
|
|
InnerPosition inner_pos_;
|
|
|
|
///
|
2001-03-22 15:45:15 +00:00
|
|
|
string height_;
|
2001-03-14 14:53:55 +00:00
|
|
|
///
|
2001-03-16 15:15:32 +00:00
|
|
|
string width_;
|
2000-06-28 13:35:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|