mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
897436efbb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18550 a592a061-630c-0410-9148-cb99ea01b6c8
201 lines
4.8 KiB
C++
201 lines
4.8 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetExternal.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Asger Alstrup Nielsen
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_EXTERNAL_H
|
|
#define INSET_EXTERNAL_H
|
|
|
|
#include "Inset.h"
|
|
#include "ExternalTransforms.h"
|
|
|
|
#include "support/FileName.h"
|
|
#include "support/Translator.h"
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
#include <boost/signals/trackable.hpp>
|
|
|
|
#include "MailInset.h"
|
|
|
|
|
|
/** No two InsetExternalParams variables can have the same temporary file.
|
|
* This class has copy-semantics but the copy constructor
|
|
* and assignment operator simply call the default constructor.
|
|
* Use of this class enables us to use the compiler-generated
|
|
* copy constructor and assignment operator for the
|
|
* InsetExternalParams class.
|
|
*/
|
|
namespace lyx {
|
|
|
|
namespace external {
|
|
|
|
class TempName {
|
|
public:
|
|
TempName();
|
|
TempName(TempName const &);
|
|
~TempName();
|
|
TempName & operator=(TempName const &);
|
|
support::FileName const & operator()() const { return tempname_; }
|
|
private:
|
|
support::FileName tempname_;
|
|
};
|
|
|
|
/// How is the image to be displayed on the LyX screen?
|
|
enum DisplayType {
|
|
DefaultDisplay,
|
|
MonochromeDisplay,
|
|
GrayscaleDisplay,
|
|
ColorDisplay,
|
|
PreviewDisplay,
|
|
NoDisplay
|
|
};
|
|
|
|
|
|
/// The translator between the Display enum and corresponding lyx string.
|
|
Translator<DisplayType, std::string> const & displayTranslator();
|
|
|
|
} // namespace external
|
|
|
|
|
|
/// hold parameters settable from the GUI
|
|
class InsetExternalParams {
|
|
public:
|
|
InsetExternalParams();
|
|
|
|
void write(Buffer const &, std::ostream &) const;
|
|
bool read(Buffer const &, Lexer &);
|
|
|
|
/// The name of the tempfile used for manipulations.
|
|
support::FileName const & tempname() const { return tempname_(); }
|
|
|
|
/// The template currently in use.
|
|
void settemplate(std::string const &);
|
|
std::string const & templatename() const { return templatename_; }
|
|
|
|
/// The external file.
|
|
support::DocFileName filename;
|
|
/// How the inset is to be displayed by LyX.
|
|
external::DisplayType display;
|
|
/// The scale of the displayed graphic (if shown).
|
|
unsigned int lyxscale;
|
|
|
|
external::ClipData clipdata;
|
|
external::ExtraData extradata;
|
|
external::ResizeData resizedata;
|
|
external::RotationData rotationdata;
|
|
|
|
/** if \c true, simply output the filename, maybe wrapped in a
|
|
* box, rather than generate and display the image etc.
|
|
*/
|
|
bool draft;
|
|
|
|
private:
|
|
external::TempName tempname_;
|
|
std::string templatename_;
|
|
};
|
|
|
|
|
|
class RenderBase;
|
|
|
|
///
|
|
class InsetExternal : public Inset, public boost::signals::trackable
|
|
{
|
|
public:
|
|
InsetExternal();
|
|
///
|
|
virtual ~InsetExternal();
|
|
///
|
|
virtual Inset::Code lyxCode() const { return EXTERNAL_CODE; }
|
|
///
|
|
virtual EDITABLE editable() const { return IS_EDITABLE; }
|
|
|
|
///
|
|
bool metrics(MetricsInfo &, Dimension &) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
virtual void write(Buffer const &, std::ostream &) const;
|
|
///
|
|
virtual void read(Buffer const &, Lexer & lex);
|
|
|
|
/// \returns the number of rows (\n's) of generated code.
|
|
int latex(Buffer const &, odocstream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int plaintext(Buffer const &, odocstream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int docbook(Buffer const &, odocstream &,
|
|
OutputParams const &) const;
|
|
|
|
/// Update needed features for this inset.
|
|
virtual void validate(LaTeXFeatures & features) const;
|
|
|
|
///
|
|
InsetExternalParams const & params() const;
|
|
///
|
|
void setParams(InsetExternalParams const &, Buffer const &);
|
|
///
|
|
void addPreview(graphics::PreviewLoader &) const;
|
|
///
|
|
void edit(Cursor & cur, bool left);
|
|
///
|
|
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
|
|
|
|
protected:
|
|
InsetExternal(InsetExternal const &);
|
|
///
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
private:
|
|
virtual std::auto_ptr<Inset> doClone() const;
|
|
|
|
/** This method is connected to the graphics loader, so we are
|
|
* informed when the image has been loaded.
|
|
*/
|
|
void statusChanged() const;
|
|
|
|
/** Slot receiving a signal that the external file has changed
|
|
* and the preview should be regenerated.
|
|
*/
|
|
void fileChanged() const;
|
|
|
|
/// The current params
|
|
InsetExternalParams params_;
|
|
/// The thing that actually draws the image on LyX's screen.
|
|
boost::scoped_ptr<RenderBase> renderer_;
|
|
};
|
|
|
|
|
|
class InsetExternalMailer : public MailInset {
|
|
public:
|
|
///
|
|
InsetExternalMailer(InsetExternal & 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 &, Buffer const &,
|
|
InsetExternalParams &);
|
|
///
|
|
static std::string const params2string(InsetExternalParams const &,
|
|
Buffer const &);
|
|
private:
|
|
///
|
|
static std::string const name_;
|
|
///
|
|
InsetExternal & inset_;
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|