2002-02-27 09:59:52 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file GraphicsParams.h
|
|
|
|
* Copyright 2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
|
|
*
|
2002-03-21 17:27:08 +00:00
|
|
|
* Used internally by the GraphicsCache.
|
2002-02-27 09:59:52 +00:00
|
|
|
* Only a subset of InsetGraphicsParams is needed for display purposes.
|
|
|
|
* The GraphicsParams c-tor also interrogates lyxrc to ascertain whether
|
|
|
|
* to display or not.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GRAPHICSPARAMS_H
|
|
|
|
#define GRAPHICSPARAMS_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "LString.h"
|
|
|
|
#include "lyxlength.h"
|
|
|
|
|
|
|
|
class InsetGraphicsParams;
|
|
|
|
|
|
|
|
namespace grfx {
|
|
|
|
|
|
|
|
/** 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;
|
2002-02-28 11:50:42 +00:00
|
|
|
|
|
|
|
unsigned int xl;
|
|
|
|
unsigned int yb;
|
|
|
|
unsigned int xr;
|
|
|
|
unsigned int yt;
|
2002-02-27 09:59:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool operator==(BoundingBox const &, BoundingBox const &);
|
|
|
|
bool operator!=(BoundingBox const &, BoundingBox const &);
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
struct GParams
|
2002-02-27 09:59:52 +00:00
|
|
|
{
|
2002-03-26 12:43:21 +00:00
|
|
|
GParams(InsetGraphicsParams const &, string const &);
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
|
|
/// How is the image to be displayed on the LyX screen?
|
|
|
|
enum DisplayType {
|
|
|
|
COLOR,
|
|
|
|
GRAYSCALE,
|
|
|
|
MONOCHROME,
|
|
|
|
/// We aren't going to display it at all!
|
|
|
|
NONE
|
|
|
|
};
|
|
|
|
|
|
|
|
DisplayType display;
|
|
|
|
|
|
|
|
/// The image filename.
|
|
|
|
string filename;
|
|
|
|
|
|
|
|
BoundingBox bb;
|
|
|
|
|
|
|
|
/** The size of the view inside lyx in pixels or the scaling of the
|
|
|
|
* image.
|
|
|
|
*/
|
|
|
|
unsigned int width;
|
|
|
|
unsigned int height;
|
|
|
|
unsigned int scale;
|
|
|
|
|
|
|
|
/// Rotation angle.
|
|
|
|
int angle;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool operator==(GParams const &, GParams const &);
|
|
|
|
bool operator!=(GParams const &, GParams const &);
|
|
|
|
|
|
|
|
} // namespace grfx
|
|
|
|
|
|
|
|
#endif // GRAPHICSPARAMS_H
|