mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
85a5ea7bfc
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2150 a592a061-630c-0410-9148-cb99ea01b6c8
101 lines
1.8 KiB
C++
101 lines
1.8 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2001 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*/
|
|
|
|
#ifndef InsetMinipage_H
|
|
#define InsetMinipage_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "insetcollapsable.h"
|
|
#include "vspace.h"
|
|
#include <sigc++/signal_system.h>
|
|
|
|
/** The minipage inset
|
|
|
|
*/
|
|
class InsetMinipage : public InsetCollapsable {
|
|
public:
|
|
///
|
|
enum Position {
|
|
top,
|
|
center,
|
|
bottom
|
|
};
|
|
///
|
|
enum InnerPosition {
|
|
inner_center,
|
|
inner_top,
|
|
inner_bottom,
|
|
inner_stretch
|
|
};
|
|
///
|
|
InsetMinipage();
|
|
///
|
|
~InsetMinipage();
|
|
///
|
|
void write(Buffer const * buf, std::ostream & os) const;
|
|
///
|
|
void read(Buffer const * buf, LyXLex & lex);
|
|
///
|
|
virtual Inset * clone(Buffer const &) 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 insertInsetAllowed(Inset * inset) const;
|
|
///
|
|
Position pos() const;
|
|
///
|
|
void pos(Position);
|
|
///
|
|
InnerPosition innerPos() const;
|
|
///
|
|
void innerPos(InnerPosition);
|
|
///
|
|
string const & height() const;
|
|
///
|
|
void height(string const &);
|
|
///
|
|
string const & width() const;
|
|
///
|
|
void width(string const &);
|
|
///
|
|
SigC::Signal0<void> hideDialog;
|
|
///
|
|
void insetButtonRelease(BufferView * bv, int x, int y, int button);
|
|
///
|
|
int getMaxWidth(BufferView *, UpdatableInset const *) const;
|
|
///
|
|
bool needFullRow() const { return false; }
|
|
///
|
|
bool showInsetDialog(BufferView *) const;
|
|
private:
|
|
///
|
|
Position pos_;
|
|
///
|
|
InnerPosition inner_pos_;
|
|
///
|
|
string height_;
|
|
///
|
|
string width_;
|
|
};
|
|
|
|
#endif
|