mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
db8c16d554
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23289 a592a061-630c-0410-9148-cb99ea01b6c8
114 lines
2.5 KiB
C++
114 lines
2.5 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"
|
|
#include "MailInset.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
/** 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);
|
|
#if 0
|
|
///
|
|
InsetERT(BufferParams const &,
|
|
Language const *, std::string const & contents, CollapseStatus status);
|
|
#endif
|
|
///
|
|
~InsetERT();
|
|
///
|
|
InsetCode lyxCode() const { return ERT_CODE; }
|
|
///
|
|
docstring name() const { return from_ascii("ERT"); }
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
docstring editMessage() const;
|
|
///
|
|
bool insetAllowed(InsetCode code) const;
|
|
///
|
|
int latex(odocstream &, OutputParams const &) const;
|
|
///
|
|
int plaintext(odocstream &, OutputParams const &) const;
|
|
///
|
|
int docbook(odocstream &, OutputParams const &) const;
|
|
///
|
|
void validate(LaTeXFeatures &) const {}
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
bool showInsetDialog(BufferView *) const;
|
|
///
|
|
virtual bool forceEmptyLayout() const { return true; }
|
|
///
|
|
virtual bool allowParagraphCustomization(idx_type) const { return false; }
|
|
/// should paragraph indendation be omitted in any case?
|
|
bool neverIndent() const { return true; }
|
|
protected:
|
|
InsetERT(InsetERT const &);
|
|
///
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
///
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
|
|
|
|
private:
|
|
virtual Inset * clone() const;
|
|
///
|
|
void setButtonLabel();
|
|
///
|
|
bool allowSpellCheck() const { return false; }
|
|
};
|
|
|
|
|
|
class InsetERTMailer : public MailInset {
|
|
public:
|
|
///
|
|
InsetERTMailer(InsetERT & inset);
|
|
///
|
|
virtual Inset & 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_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|