mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
4d5046100f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4766 a592a061-630c-0410-9148-cb99ea01b6c8
85 lines
1.8 KiB
C++
85 lines
1.8 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1998 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*/
|
|
|
|
#ifndef InsetFloat_H
|
|
#define InsetFloat_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "insetcollapsable.h"
|
|
#include "toc.h"
|
|
|
|
#include <boost/signals/signal0.hpp>
|
|
|
|
class Painter;
|
|
|
|
/** The float inset
|
|
|
|
*/
|
|
class InsetFloat : public InsetCollapsable {
|
|
public:
|
|
///
|
|
InsetFloat(BufferParams const &, string const &);
|
|
///
|
|
InsetFloat(InsetFloat const &, bool same_id = false);
|
|
///
|
|
~InsetFloat();
|
|
///
|
|
void write(Buffer const * buf, std::ostream & os) const;
|
|
///
|
|
void read(Buffer const * buf, LyXLex & lex);
|
|
///
|
|
void validate(LaTeXFeatures & features) const;
|
|
///
|
|
Inset * clone(Buffer const &, bool same_id = false) const;
|
|
///
|
|
Inset::Code lyxCode() const { return Inset::FLOAT_CODE; }
|
|
///
|
|
int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
|
|
///
|
|
int docbook(Buffer const *, std::ostream &, bool mixcont) const;
|
|
///
|
|
string const editMessage() const;
|
|
///
|
|
bool insetAllowed(Inset::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; }
|
|
///
|
|
string const & type() const;
|
|
///
|
|
void placement(string const & p);
|
|
///
|
|
string const & placement() const;
|
|
///
|
|
void wide(bool w);
|
|
///
|
|
bool wide() const;
|
|
///
|
|
void addToToc(toc::TocList &, Buffer const *) const;
|
|
///
|
|
bool showInsetDialog(BufferView *) const;
|
|
///
|
|
boost::signal0<void> hideDialog;
|
|
private:
|
|
///
|
|
string floatType_;
|
|
///
|
|
string floatPlacement_;
|
|
///
|
|
bool wide_;
|
|
};
|
|
|
|
#endif
|