lyx_mirror/src/insets/InsetFlex.h

72 lines
1.4 KiB
C
Raw Normal View History

// -*- C++ -*-
/**
* \file InsetFlex.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
* \author Martin Vermeer
*
* Full author contact details are available in file CREDITS.
*/
#ifndef INSETFLEX_H
#define INSETFLEX_H
#include "InsetCollapsable.h"
namespace lyx {
/** The Flex inset, e.g., CharStyle, Custom inset or XML short element
*/
class InsetFlex : public InsetCollapsable {
public:
///
InsetFlex(Buffer const &, DocumentClass * dc,
std::string const & layoutName);
///
docstring name() const { return from_utf8(name_); }
///
docstring editMessage() const;
///
InsetCode lyxCode() const { return FLEX_CODE; }
///
void write(std::ostream &) const;
///
void read(Lexer & lex);
///
virtual bool allowParagraphCustomization(idx_type = 0) const { return false; }
///
int plaintext(odocstream &, OutputParams const &) const;
///
int docbook(odocstream &, OutputParams const &) const;
/// the string that is passed to the TOC
void textString(odocstream &) const;
///
void validate(LaTeXFeatures &) const;
/// should paragraph indendation be ommitted in any case?
bool neverIndent() const { return true; }
protected:
InsetFlex(InsetFlex const &);
private:
Inset * clone() const { return new InsetFlex(*this); }
///
std::string name_;
///
std::set<std::string> packages_;
///
std::string preamble_;
};
} // namespace lyx
#endif