21#include <QGraphicsPixmapItem>
33 enum {Type = UserType + Image
49 ImageItem(
double x0 = 1,
double y0 = 1, QGraphicsItem* parent =
nullptr,
50 const QUrl& url = QUrl(),
bool visible =
true,
double scaleX = 1,
51 double scaleY = 1,
double dir = 0);
63 ImageItem(
const KConfigGroup* plo,
const QUrl& urlPlo,
64 QGraphicsItem* parent =
nullptr);
77 static bool boundingBox(
const QUrl& url, QString& filename,
double* x1,
78 double* y1,
double* x2,
double* y2);
86 inline double dir()
const {
return m_dir; };
88 virtual void paint(QPainter* painter,
const QStyleOptionGraphicsItem* option,
89 QWidget* widget)
override;
96 void renderPS(QPixmap* pixmap,
int dpiX,
int dpiY);
109 static void renderPS(
const QString& psFile,
const QString& imageFile,
110 int width,
int height,
double x0 = 0,
double y0 = 0,
111 double scaleX = 1,
double scaleY = 1,
112 const char format[] =
"pbmraw");
114 inline double scaleX()
const {
return m_scaleX; };
116 inline double scaleY()
const {
return m_scaleY; };
121 inline void setDir(
double dir) { m_dir = dir; };
141 inline void setUrl(
const QUrl& url) { m_url = url; };
143 virtual int type()
const override {
return Type; };
145 inline const QUrl&
url()
const {
return m_url; };
154 void writePlo(KConfigGroup* plo,
const QUrl& urlPlo,
bool absolute)
const;
161 double m_scaleX, m_scaleY, m_dir;
Decoration item class.
Definition decoitem.h:36
Image item class.
Definition imageitem.h:30
void renderPS(QPixmap *pixmap, int dpiX, int dpiY)
Renders PostScript code to pixmap by use of ghostscript.
void writePlo(KConfigGroup *plo, const QUrl &urlPlo, bool absolute) const
Writes into plot file.
ImageItem(const KConfigGroup *plo, const QUrl &urlPlo, QGraphicsItem *parent=nullptr)
Constructor.
void setDir(double dir)
Sets rotation angle.
Definition imageitem.h:121
static bool boundingBox(const QUrl &url, QString &filename, double *x1, double *y1, double *x2, double *y2)
Reads bounding box coordinates from an EPS file.
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override
Updates position.
ImageItem(const ImageItem &a)
Copy constructor.
static void renderPS(const QString &psFile, const QString &imageFile, int width, int height, double x0=0, double y0=0, double scaleX=1, double scaleY=1, const char format[]="pbmraw")
Renders PostScript code to image file by use of ghostscript.
void update()
Applies changes and forces redrawing.
const QUrl & url() const
Returns URL of PostScript file.
Definition imageitem.h:145
void setProperties(const QTransform &m)
Sets properties according to transformation matrix.
void setScaleY(double f)
Sets vertical scaling factor.
Definition imageitem.h:136
static bool checkBoundingBox(const QUrl &url)
Reads bounding box coordinates from an EPS file.
ImageItem(double x0=1, double y0=1, QGraphicsItem *parent=nullptr, const QUrl &url=QUrl(), bool visible=true, double scaleX=1, double scaleY=1, double dir=0)
Constructor.
double dir() const
Returns rotation angle in deg.
Definition imageitem.h:86
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override
Paints item.
void setProperties()
Sets properties according to transformation matrix.
void setUrl(const QUrl &url)
Sets URL.
Definition imageitem.h:141
virtual int type() const override
Returns specific QGraphicsItem type number.
Definition imageitem.h:143
void setScaleX(double f)
Sets horizontal scaling factor.
Definition imageitem.h:131
double scaleX() const
Returns horizontal scaling factor.
Definition imageitem.h:114
double scaleY() const
Returns vertical scaling factor.
Definition imageitem.h:116
virtual ~ImageItem()
Destructor.