mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
0d4d71dfe6
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7334 a592a061-630c-0410-9148-cb99ea01b6c8
75 lines
1.4 KiB
C++
75 lines
1.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GraphicsParams.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
|
|
*
|
|
* Used internally by the lyx::graphics::Image.
|
|
*/
|
|
|
|
#ifndef GRAPHICSPARAMS_H
|
|
#define GRAPHICSPARAMS_H
|
|
|
|
#include "GraphicsTypes.h"
|
|
#include "LString.h"
|
|
|
|
|
|
namespace lyx {
|
|
namespace graphics {
|
|
|
|
/** Parse a string of the form "200pt 500pt 300mm 5in" into a
|
|
* usable bounding box.
|
|
*/
|
|
struct BoundingBox {
|
|
///
|
|
BoundingBox();
|
|
///
|
|
BoundingBox(string const &);
|
|
|
|
/// 0 0 0 0 is empty!
|
|
bool empty() const;
|
|
|
|
unsigned int xl;
|
|
unsigned int yb;
|
|
unsigned int xr;
|
|
unsigned int yt;
|
|
};
|
|
|
|
bool operator==(BoundingBox const &, BoundingBox const &);
|
|
bool operator!=(BoundingBox const &, BoundingBox const &);
|
|
|
|
struct Params
|
|
{
|
|
Params();
|
|
|
|
DisplayType display;
|
|
unsigned int scale;
|
|
|
|
/// The image filename.
|
|
string filename;
|
|
|
|
/** Note that the BoundingBox is always relative to the BoundingBox
|
|
* as stored in the EPS file.
|
|
* Ie, bb.xl and bb.yb == 0 if that corner is not moved.
|
|
*/
|
|
BoundingBox bb;
|
|
|
|
/** The size of the view inside lyx in pixels or the scaling of the
|
|
* image.
|
|
*/
|
|
/// Rotation angle.
|
|
float angle;
|
|
};
|
|
|
|
bool operator==(Params const &, Params const &);
|
|
bool operator!=(Params const &, Params const &);
|
|
|
|
} // namespace graphics
|
|
} // namespace lyx
|
|
|
|
#endif // GRAPHICSPARAMS_H
|