2003-10-07 22:59:58 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file ExternalTransforms.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Angus Leeming
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef EXTERNALTRANSFORMS_H
|
|
|
|
#define EXTERNALTRANSFORMS_H
|
|
|
|
|
2007-04-28 12:58:49 +00:00
|
|
|
#include "Length.h"
|
2003-10-07 22:59:58 +00:00
|
|
|
|
|
|
|
#include "graphics/GraphicsParams.h"
|
|
|
|
|
|
|
|
#include <boost/any.hpp>
|
|
|
|
#include <boost/function.hpp>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2007-04-26 11:30:54 +00:00
|
|
|
class Lexer;
|
2003-10-07 22:59:58 +00:00
|
|
|
|
|
|
|
namespace external {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The data containers
|
|
|
|
*/
|
|
|
|
class ClipData {
|
|
|
|
public:
|
|
|
|
ClipData() : clip(false) {}
|
|
|
|
|
2015-07-16 20:04:08 +00:00
|
|
|
/// The bounding box
|
2006-10-21 00:16:43 +00:00
|
|
|
graphics::BoundingBox bbox;
|
2015-07-16 20:04:08 +00:00
|
|
|
/// clip image
|
2003-10-07 22:59:58 +00:00
|
|
|
bool clip;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ExtraData {
|
|
|
|
public:
|
|
|
|
std::string const get(std::string const & id) const;
|
|
|
|
void set(std::string const & id, std::string const & contents);
|
|
|
|
|
|
|
|
typedef std::map<std::string, std::string>::const_iterator const_iterator;
|
|
|
|
const_iterator begin() const { return data_.begin(); }
|
|
|
|
const_iterator end() const { return data_.end(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::map<std::string, std::string> data_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ResizeData {
|
|
|
|
public:
|
2005-01-04 10:59:49 +00:00
|
|
|
ResizeData() : scale(), keepAspectRatio(false) {}
|
2003-10-07 22:59:58 +00:00
|
|
|
bool no_resize() const;
|
|
|
|
|
2003-12-04 16:53:53 +00:00
|
|
|
bool usingScale() const;
|
|
|
|
|
2005-01-04 10:59:49 +00:00
|
|
|
std::string scale;
|
2007-04-28 12:58:49 +00:00
|
|
|
Length width;
|
|
|
|
Length height;
|
2003-10-07 22:59:58 +00:00
|
|
|
bool keepAspectRatio;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class RotationData {
|
|
|
|
public:
|
|
|
|
enum OriginType {
|
|
|
|
DEFAULT,
|
|
|
|
TOPLEFT,
|
|
|
|
BOTTOMLEFT,
|
|
|
|
BASELINELEFT,
|
|
|
|
CENTER,
|
|
|
|
TOPCENTER,
|
|
|
|
BOTTOMCENTER,
|
|
|
|
BASELINECENTER,
|
|
|
|
TOPRIGHT,
|
|
|
|
BOTTOMRIGHT,
|
|
|
|
BASELINERIGHT
|
|
|
|
};
|
|
|
|
|
2005-01-04 10:59:49 +00:00
|
|
|
RotationData() : angle("0"), origin_(DEFAULT) {}
|
2003-10-07 22:59:58 +00:00
|
|
|
bool no_rotation() const;
|
|
|
|
|
2005-01-04 10:59:49 +00:00
|
|
|
std::string const adjAngle() const;
|
|
|
|
std::string angle;
|
2003-10-07 22:59:58 +00:00
|
|
|
|
|
|
|
void origin(OriginType o) { origin_ = o; }
|
|
|
|
OriginType origin() const { return origin_; }
|
|
|
|
|
|
|
|
void origin(std::string const &);
|
|
|
|
std::string const originString() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
OriginType origin_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-12-04 16:53:53 +00:00
|
|
|
/** \c RotationDataType is a wrapper for RotationData::OriginType
|
|
|
|
* It can be forward-declared and passed as a function argument without
|
|
|
|
* having to expose this header file.
|
|
|
|
*/
|
|
|
|
class RotationDataType {
|
|
|
|
RotationData::OriginType val_;
|
|
|
|
public:
|
|
|
|
RotationDataType(RotationData::OriginType val) : val_(val) {}
|
|
|
|
operator RotationData::OriginType() const { return val_; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-10-07 22:59:58 +00:00
|
|
|
/*
|
|
|
|
* Transformers generating commands
|
|
|
|
*/
|
|
|
|
class TransformCommand {
|
|
|
|
public:
|
|
|
|
typedef std::auto_ptr<TransformCommand const> ptr_type;
|
|
|
|
virtual ~TransformCommand() {}
|
|
|
|
|
|
|
|
/// The string from the External Template that we seek to replace.
|
|
|
|
std::string const front_placeholder() const
|
|
|
|
{ return front_placeholder_impl(); }
|
|
|
|
std::string const back_placeholder() const
|
|
|
|
{ return back_placeholder_impl(); }
|
|
|
|
|
|
|
|
/// The appropriate replacements for the placeholder strings.
|
|
|
|
std::string const front() const { return front_impl(); }
|
|
|
|
std::string const back() const { return back_impl(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual std::string const front_placeholder_impl() const = 0;
|
|
|
|
virtual std::string const back_placeholder_impl() const = 0;
|
|
|
|
|
|
|
|
virtual std::string const front_impl() const = 0;
|
|
|
|
virtual std::string const back_impl() const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ResizeCommand : public TransformCommand {
|
|
|
|
protected:
|
|
|
|
ResizeData data;
|
|
|
|
ResizeCommand(ResizeData const & data_) : data(data_) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual std::string const front_placeholder_impl() const
|
|
|
|
{ return "$$ResizeFront"; }
|
|
|
|
virtual std::string const back_placeholder_impl() const
|
|
|
|
{ return "$$ResizeBack"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ResizeLatexCommand : public ResizeCommand {
|
|
|
|
public:
|
|
|
|
static ptr_type factory(ResizeData const & data)
|
|
|
|
{ return ptr_type(new ResizeLatexCommand(data)); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
ResizeLatexCommand(ResizeData const & data_)
|
|
|
|
: ResizeCommand(data_) {}
|
|
|
|
virtual std::string const front_impl() const;
|
|
|
|
virtual std::string const back_impl() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class RotationCommand : public TransformCommand {
|
|
|
|
protected:
|
|
|
|
RotationData data;
|
|
|
|
RotationCommand(RotationData const & data_) : data(data_) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual std::string const front_placeholder_impl() const
|
|
|
|
{ return "$$RotateFront"; }
|
|
|
|
virtual std::string const back_placeholder_impl() const
|
|
|
|
{ return "$$RotateBack"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class RotationLatexCommand : public RotationCommand {
|
|
|
|
public:
|
|
|
|
static ptr_type factory(RotationData const & data)
|
|
|
|
{ return ptr_type(new RotationLatexCommand(data)); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
RotationLatexCommand(RotationData const & data_)
|
|
|
|
: RotationCommand(data_) {}
|
|
|
|
virtual std::string const front_impl() const;
|
|
|
|
virtual std::string const back_impl() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Transformers generating options
|
|
|
|
*/
|
|
|
|
class TransformOption {
|
|
|
|
public:
|
|
|
|
typedef std::auto_ptr<TransformOption const> ptr_type;
|
|
|
|
virtual ~TransformOption() {}
|
|
|
|
|
|
|
|
/// The string from the External Template that we seek to replace.
|
|
|
|
std::string const placeholder() const { return placeholder_impl(); }
|
|
|
|
|
|
|
|
/// The appropriate replacement for the placeholder string.
|
|
|
|
std::string const option() const { return option_impl(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual std::string const placeholder_impl() const = 0;
|
|
|
|
virtual std::string const option_impl() const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ClipOption : public TransformOption {
|
|
|
|
protected:
|
|
|
|
ClipData data;
|
|
|
|
ClipOption(ClipData const & data_) : data(data_) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual std::string const placeholder_impl() const
|
|
|
|
{ return "$$Clip"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ClipLatexOption : public ClipOption {
|
|
|
|
public:
|
|
|
|
static ptr_type factory(ClipData const & data)
|
|
|
|
{ return ptr_type(new ClipLatexOption(data)); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
ClipLatexOption(ClipData const & data_)
|
|
|
|
: ClipOption(data_) {}
|
|
|
|
virtual std::string const option_impl() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ExtraOption : public TransformOption {
|
|
|
|
public:
|
|
|
|
static ptr_type factory(std::string const & data)
|
|
|
|
{ return ptr_type(new ExtraOption(data)); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
ExtraOption(std::string const & data_) : data(data_) {}
|
|
|
|
|
|
|
|
virtual std::string const placeholder_impl() const
|
|
|
|
{ return "$$Extra"; }
|
|
|
|
virtual std::string const option_impl() const
|
|
|
|
{ return data; }
|
|
|
|
std::string data;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ResizeOption : public TransformOption {
|
|
|
|
protected:
|
|
|
|
ResizeData data;
|
|
|
|
ResizeOption(ResizeData const & data_) : data(data_) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual std::string const placeholder_impl() const
|
|
|
|
{ return "$$Resize"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ResizeLatexOption : public ResizeOption {
|
|
|
|
public:
|
|
|
|
static ptr_type factory(ResizeData const & data)
|
|
|
|
{ return ptr_type(new ResizeLatexOption(data)); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
ResizeLatexOption(ResizeData const & data_)
|
|
|
|
: ResizeOption(data_) {}
|
|
|
|
virtual std::string const option_impl() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class RotationOption : public TransformOption {
|
|
|
|
protected:
|
|
|
|
RotationData data;
|
|
|
|
RotationOption(RotationData const & data_) : data(data_) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual std::string const placeholder_impl() const
|
|
|
|
{ return "$$Rotate"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class RotationLatexOption : public RotationOption {
|
|
|
|
public:
|
|
|
|
static ptr_type factory(RotationData const & data)
|
|
|
|
{ return ptr_type(new RotationLatexOption(data)); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
RotationLatexOption(RotationData const & data_)
|
|
|
|
: RotationOption(data_) {}
|
|
|
|
virtual std::string const option_impl() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Option sanitizers
|
|
|
|
*/
|
|
|
|
std::string const sanitizeLatexOption(std::string const & input);
|
|
|
|
std::string const sanitizeDocBookOption(std::string const & input);
|
|
|
|
|
|
|
|
|
|
|
|
enum TransformID {
|
|
|
|
Rotate,
|
|
|
|
Resize,
|
|
|
|
Clip,
|
|
|
|
Extra
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-09-26 13:34:57 +00:00
|
|
|
typedef boost::function<TransformOption::ptr_type(ClipData)>
|
2003-10-07 22:59:58 +00:00
|
|
|
ClipOptionFactory;
|
2004-09-26 13:34:57 +00:00
|
|
|
typedef boost::function<TransformOption::ptr_type(std::string)>
|
2003-10-07 22:59:58 +00:00
|
|
|
ExtraOptionFactory;
|
2004-09-26 13:34:57 +00:00
|
|
|
typedef boost::function<TransformOption::ptr_type(ResizeData)>
|
2003-10-07 22:59:58 +00:00
|
|
|
ResizeOptionFactory;
|
2004-09-26 13:34:57 +00:00
|
|
|
typedef boost::function<TransformOption::ptr_type(RotationData)>
|
2003-10-07 22:59:58 +00:00
|
|
|
RotationOptionFactory;
|
2004-09-26 13:34:57 +00:00
|
|
|
typedef boost::function<TransformCommand::ptr_type(ResizeData)>
|
2003-10-07 22:59:58 +00:00
|
|
|
ResizeCommandFactory;
|
2004-09-26 13:34:57 +00:00
|
|
|
typedef boost::function<TransformCommand::ptr_type(RotationData)>
|
2003-10-07 22:59:58 +00:00
|
|
|
RotationCommandFactory;
|
|
|
|
|
|
|
|
|
2005-01-19 15:03:31 +00:00
|
|
|
class TransformStore
|
2003-10-07 22:59:58 +00:00
|
|
|
{
|
2005-01-19 15:03:31 +00:00
|
|
|
public:
|
2003-10-07 22:59:58 +00:00
|
|
|
TransformStore() {}
|
|
|
|
|
|
|
|
/** Stores \c factory and a reminder of what \c data this \c factory
|
|
|
|
* operates on.
|
|
|
|
*/
|
|
|
|
template <typename Factory>
|
|
|
|
TransformStore(TransformID id_, Factory const & factory)
|
|
|
|
: id(id_), any_factory(boost::any(factory)) {}
|
|
|
|
|
|
|
|
typedef TransformCommand::ptr_type ComPtr;
|
|
|
|
typedef TransformOption::ptr_type OptPtr;
|
|
|
|
|
|
|
|
ComPtr getCommandTransformer(RotationData const &) const;
|
|
|
|
ComPtr getCommandTransformer(ResizeData const &) const;
|
|
|
|
OptPtr getOptionTransformer(RotationData const &) const;
|
|
|
|
OptPtr getOptionTransformer(ResizeData const &) const;
|
|
|
|
OptPtr getOptionTransformer(ClipData const &) const;
|
|
|
|
OptPtr getOptionTransformer(std::string const &) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
TransformID id;
|
|
|
|
boost::any any_factory;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace external
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // NOT EXTERNALTRANSFORMS_H
|