mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 16:18:22 +00:00
d80fa17175
The current behaviour of the \origin parameter replaces relative file names with the absolute original names if a document has been moved even if the files have been moved as well. This behaviour is annoying e.g. for editing the LyX docs in a git checkout. Now file names are only replaced if the referenced file sdo not exist.
102 lines
2.5 KiB
C++
102 lines
2.5 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetGraphicsParams.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Baruch Even
|
|
* \author Herbert Voß
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSETGRAPHICSPARAMS_H
|
|
#define INSETGRAPHICSPARAMS_H
|
|
|
|
|
|
#include "graphics/GraphicsParams.h"
|
|
|
|
#include "support/FileName.h"
|
|
|
|
#include <string>
|
|
|
|
namespace lyx {
|
|
|
|
namespace graphics { class Params; }
|
|
|
|
class Lexer;
|
|
class Buffer;
|
|
|
|
|
|
/// This class holds all the parameters needed by insetGraphics.
|
|
class InsetGraphicsParams
|
|
{
|
|
public:
|
|
/// Image filename.
|
|
support::DocFileName filename;
|
|
/// Scaling the Screen inside Lyx
|
|
unsigned int lyxscale;
|
|
/// If to display the image inside LyX
|
|
bool display;
|
|
/// Scaling for output (LaTeX)
|
|
std::string scale;
|
|
/// sizes for output (LaTeX)
|
|
Length width;
|
|
///
|
|
Length height;
|
|
/// Keep the ratio between height and width when resizing.
|
|
bool keepAspectRatio;
|
|
/// draft mode
|
|
bool draft;
|
|
/// scale image before rotating
|
|
bool scaleBeforeRotation;
|
|
|
|
/// The bounding box
|
|
graphics::BoundingBox bbox;
|
|
/// clip image
|
|
bool clip;
|
|
|
|
/// Rotation angle.
|
|
std::string rotateAngle;
|
|
/// Origin point of rotation
|
|
std::string rotateOrigin;
|
|
/// any userdefined special command
|
|
std::string special;
|
|
|
|
///
|
|
InsetGraphicsParams();
|
|
///
|
|
InsetGraphicsParams(InsetGraphicsParams const &);
|
|
///
|
|
InsetGraphicsParams & operator=(InsetGraphicsParams const &);
|
|
/// Save the parameters in the LyX format stream.
|
|
/// Buffer is needed to figure out if a figure is embedded.
|
|
void Write(std::ostream & os, Buffer const & buf) const;
|
|
/// If the token belongs to our parameters, read it.
|
|
bool Read(Lexer & lex, std::string const & token, Buffer const & buf,
|
|
bool allowOrigin);
|
|
/// convert
|
|
// Only a subset of InsetGraphicsParams is needed for display purposes.
|
|
// This function also interrogates lyxrc to ascertain whether
|
|
// to display or not.
|
|
graphics::Params as_grfxParams() const;
|
|
|
|
// FIXME UNICODE. Write functions need to use odostream instead of ostream firstly.
|
|
/// Identification of the graphics template. No template equals empty string.
|
|
std::string groupId;
|
|
private:
|
|
/// Initialize the object to a default status.
|
|
void init();
|
|
/// Copy the other objects content to us, used in copy c-tor and assignment
|
|
void copy(InsetGraphicsParams const & params);
|
|
};
|
|
|
|
///
|
|
bool operator==(InsetGraphicsParams const &, InsetGraphicsParams const &);
|
|
///
|
|
bool operator!=(InsetGraphicsParams const &, InsetGraphicsParams const &);
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|