mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
686f1e276f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9310 a592a061-630c-0410-9148-cb99ea01b6c8
113 lines
2.6 KiB
C++
113 lines
2.6 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insetert.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 INSETERT_H
|
|
#define INSETERT_H
|
|
|
|
|
|
#include "insetcollapsable.h"
|
|
|
|
/** A collapsable text inset for LaTeX insertions.
|
|
|
|
To write full ert (including styles and other insets) in a given
|
|
space.
|
|
|
|
Note that collapsed_ encompasses both the inline and collapsed button
|
|
versions of this inset.
|
|
*/
|
|
|
|
class Language;
|
|
|
|
class InsetERT : public InsetCollapsable {
|
|
public:
|
|
///
|
|
InsetERT(BufferParams const &, CollapseStatus status = Open);
|
|
///
|
|
InsetERT(BufferParams const &,
|
|
Language const *, std::string const & contents, CollapseStatus status);
|
|
///
|
|
~InsetERT();
|
|
///
|
|
InsetBase::Code lyxCode() const { return InsetBase::ERT_CODE; }
|
|
///
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
|
///
|
|
std::string const editMessage() const;
|
|
///
|
|
bool insetAllowed(InsetBase::Code code) const;
|
|
///
|
|
int latex(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int plaintext(Buffer const &, std::ostream &,
|
|
OutputParams const & runparams) const;
|
|
///
|
|
int linuxdoc(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int docbook(Buffer const &, std::ostream &,
|
|
OutputParams const & runparams) const;
|
|
///
|
|
void validate(LaTeXFeatures &) const {}
|
|
///
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
bool showInsetDialog(BufferView *) const;
|
|
///
|
|
void getDrawFont(LyXFont &) const;
|
|
///
|
|
bool forceDefaultParagraphs(InsetBase const *) const { return true; }
|
|
protected:
|
|
InsetERT(InsetERT const &);
|
|
///
|
|
virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
|
|
///
|
|
bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
|
|
private:
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
|
///
|
|
void init();
|
|
///
|
|
void setButtonLabel();
|
|
///
|
|
bool allowSpellCheck() const { return false; }
|
|
};
|
|
|
|
|
|
#include "mailinset.h"
|
|
|
|
class InsetERTMailer : public MailInset {
|
|
public:
|
|
///
|
|
InsetERTMailer(InsetERT & 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 &,
|
|
InsetCollapsable::CollapseStatus &);
|
|
///
|
|
static std::string const params2string(InsetCollapsable::CollapseStatus);
|
|
private:
|
|
///
|
|
static std::string const name_;
|
|
///
|
|
InsetERT & inset_;
|
|
};
|
|
|
|
#endif
|