mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
70d0ba9001
mathed is completely broken, but it's difficult to imprevo with such a big patch in the tree. If things don't improve until tomorrow evening, I'll revert this. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8357 a592a061-630c-0410-9148-cb99ea01b6c8
115 lines
2.5 KiB
C++
115 lines
2.5 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insetfloat.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jürgen Vigna
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSETFLOAT_H
|
|
#define INSETFLOAT_H
|
|
|
|
#include "insetcollapsable.h"
|
|
#include "toc.h"
|
|
|
|
|
|
struct InsetFloatParams {
|
|
///
|
|
InsetFloatParams() : wide(false) {}
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
void read(LyXLex & lex);
|
|
///
|
|
std::string type;
|
|
///
|
|
std::string placement;
|
|
///
|
|
bool wide;
|
|
};
|
|
|
|
|
|
/** The float inset
|
|
|
|
*/
|
|
class InsetFloat : public InsetCollapsable {
|
|
public:
|
|
///
|
|
InsetFloat(BufferParams const &, std::string const &);
|
|
///
|
|
~InsetFloat();
|
|
///
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
|
///
|
|
void read(Buffer const & buf, LyXLex & lex);
|
|
///
|
|
void validate(LaTeXFeatures & features) const;
|
|
///
|
|
virtual std::auto_ptr<InsetBase> clone() const;
|
|
///
|
|
InsetOld::Code lyxCode() const { return InsetOld::FLOAT_CODE; }
|
|
///
|
|
int latex(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int linuxdoc(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int docbook(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
std::string const editMessage() const;
|
|
///
|
|
bool insetAllowed(InsetOld::Code) const;
|
|
/** 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; }
|
|
///
|
|
void wide(bool w, BufferParams const &);
|
|
///
|
|
void addToToc(lyx::toc::TocList &, Buffer const &) const;
|
|
///
|
|
bool showInsetDialog(BufferView *) const;
|
|
///
|
|
InsetFloatParams const & params() const { return params_; }
|
|
protected:
|
|
virtual
|
|
DispatchResult
|
|
priv_dispatch(BufferView & bv, FuncRequest const & cmd);
|
|
private:
|
|
///
|
|
InsetFloatParams params_;
|
|
};
|
|
|
|
|
|
#include "mailinset.h"
|
|
|
|
|
|
class InsetFloatMailer : public MailInset {
|
|
public:
|
|
///
|
|
InsetFloatMailer(InsetFloat & inset);
|
|
///
|
|
virtual InsetBase & inset() const { return inset_; }
|
|
///
|
|
virtual std::string const & name() const { return name_; }
|
|
///
|
|
virtual std::string const inset2string(Buffer const &) const;
|
|
///
|
|
static void string2params(std::string const &, InsetFloatParams &);
|
|
///
|
|
static std::string const params2string(InsetFloatParams const &);
|
|
private:
|
|
///
|
|
static std::string const name_;
|
|
///
|
|
InsetFloat & inset_;
|
|
};
|
|
|
|
#endif
|