2012-03-06 07:54:22 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file InsetIPA.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Jürgen Spitzmüller
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INSETIPA_H
|
|
|
|
#define INSETIPA_H
|
|
|
|
|
|
|
|
#include "InsetText.h"
|
|
|
|
|
|
|
|
#include "Dimension.h"
|
|
|
|
|
2016-06-02 22:49:36 +00:00
|
|
|
#include "support/unique_ptr.h"
|
|
|
|
|
2012-03-06 07:54:22 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
class RenderPreview;
|
|
|
|
|
|
|
|
namespace graphics {
|
|
|
|
class PreviewLoader;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// An IPA inset with instant preview
|
|
|
|
class InsetIPA : public InsetText {
|
|
|
|
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
InsetIPA(Buffer *);
|
|
|
|
///
|
|
|
|
~InsetIPA();
|
|
|
|
///
|
|
|
|
InsetIPA(InsetIPA const & other);
|
2015-10-11 09:16:09 +00:00
|
|
|
///
|
|
|
|
InsetIPA & operator=(InsetIPA const & other);
|
2012-03-06 07:54:22 +00:00
|
|
|
|
|
|
|
/// \name Methods inherited from Inset class
|
|
|
|
//@{
|
|
|
|
Inset * clone() const { return new InsetIPA(*this); }
|
|
|
|
|
|
|
|
bool neverIndent() const { return true; }
|
|
|
|
|
|
|
|
InsetCode lyxCode() const { return IPA_CODE; }
|
|
|
|
|
|
|
|
docstring layoutName() const { return from_ascii("IPA"); }
|
|
|
|
|
|
|
|
bool descendable(BufferView const & /*bv*/) const { return true; }
|
|
|
|
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
|
|
|
|
|
|
Inset * editXY(Cursor & cur, int x, int y);
|
|
|
|
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
2012-03-09 11:14:39 +00:00
|
|
|
///
|
|
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2012-03-06 09:14:24 +00:00
|
|
|
///
|
|
|
|
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
|
|
|
|
|
2012-03-06 07:54:22 +00:00
|
|
|
void addPreview(DocIterator const & inset_pos,
|
|
|
|
graphics::PreviewLoader & ploader) const;
|
|
|
|
|
|
|
|
bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
|
|
|
|
|
|
|
|
void write(std::ostream & os) const;
|
|
|
|
|
|
|
|
void edit(Cursor & cur, bool front, EntryDirection entry_from);
|
|
|
|
|
|
|
|
///
|
|
|
|
void latex(otexstream &, OutputParams const &) const;
|
|
|
|
///
|
2015-02-15 19:17:21 +00:00
|
|
|
docstring xhtml(XHTMLStream & xs, OutputParams const &) const;
|
|
|
|
///
|
2012-03-06 07:54:22 +00:00
|
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
///
|
|
|
|
bool allowSpellCheck() const { return false; }
|
|
|
|
///
|
|
|
|
bool insetAllowed(InsetCode code) const;
|
|
|
|
//@}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/// Retrieves the preview state. Returns true if preview
|
|
|
|
/// is enabled and the preview image is availabled.
|
|
|
|
bool previewState(BufferView * bv) const;
|
|
|
|
/// Recreates the preview if preview is enabled.
|
|
|
|
void reloadPreview(DocIterator const & pos) const;
|
|
|
|
/// Prepare the preview if preview is enabled.
|
|
|
|
void preparePreview(DocIterator const & pos) const;
|
|
|
|
|
|
|
|
///
|
2016-06-02 22:49:36 +00:00
|
|
|
unique_ptr<RenderPreview> preview_;
|
2012-03-06 07:54:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|