mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
2e57f2ff0a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7360 a592a061-630c-0410-9148-cb99ea01b6c8
91 lines
2.0 KiB
C++
91 lines
2.0 KiB
C++
// -*- C++ -*-
|
|
|
|
/**
|
|
* \file formula.h
|
|
*
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_FORMULA_H
|
|
#define INSET_FORMULA_H
|
|
|
|
#include "formulabase.h"
|
|
#include "math_atom.h"
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
|
|
/// The main LyX math inset
|
|
class InsetFormula : public InsetFormulaBase {
|
|
public:
|
|
///
|
|
InsetFormula(bool chemistry = false);
|
|
///
|
|
explicit InsetFormula(BufferView *);
|
|
///
|
|
explicit InsetFormula(string const & data);
|
|
///
|
|
InsetFormula(InsetFormula const &);
|
|
///
|
|
~InsetFormula();
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
///
|
|
void write(Buffer const *, std::ostream &) const;
|
|
///
|
|
void read(Buffer const *, LyXLex & lex);
|
|
///
|
|
int latex(Buffer const *, std::ostream &,
|
|
LatexRunParams const &) const;
|
|
///
|
|
int ascii(Buffer const *, std::ostream &, int linelen) const;
|
|
///
|
|
int linuxdoc(Buffer const *, std::ostream &) const;
|
|
///
|
|
int docbook(Buffer const *, std::ostream &, bool mixcont) const;
|
|
|
|
///
|
|
virtual std::auto_ptr<InsetBase> clone() const;
|
|
///
|
|
void validate(LaTeXFeatures & features) const;
|
|
///
|
|
InsetOld::Code lyxCode() const;
|
|
///
|
|
bool insetAllowed(InsetOld::Code code) const;
|
|
///
|
|
void getLabelList(std::vector<string> &) const;
|
|
///
|
|
MathAtom const & par() const { return par_; }
|
|
///
|
|
MathAtom & par() { return par_; }
|
|
///
|
|
void generatePreview() const;
|
|
///
|
|
void addPreview(lyx::graphics::PreviewLoader &) const;
|
|
///
|
|
void mutate(string const & type);
|
|
|
|
private:
|
|
/// available in AMS only?
|
|
bool ams() const;
|
|
|
|
/// contents
|
|
MathAtom par_;
|
|
|
|
/// Use the Pimpl idiom to hide the internals of the previewer.
|
|
class PreviewImpl;
|
|
friend class PreviewImpl;
|
|
/// The pointer never changes although *preview_'s contents may.
|
|
boost::scoped_ptr<PreviewImpl> const preview_;
|
|
};
|
|
#endif
|