3rdparty
qwt
src
qwt_plot_svgitem.cpp
Go to the documentation of this file.
1
/******************************************************************************
2
* Qwt Widget Library
3
* Copyright (C) 1997 Josef Wilgen
4
* Copyright (C) 2002 Uwe Rathmann
5
*
6
* This library is free software; you can redistribute it and/or
7
* modify it under the terms of the Qwt License, Version 1.0
8
*****************************************************************************/
9
10
#include "
qwt_plot_svgitem.h
"
11
#include "
qwt_text.h
"
12
#include "
qwt_graphic.h
"
13
14
#include <qsvgrenderer.h>
15
20
QwtPlotSvgItem::QwtPlotSvgItem
(
const
QString& title )
21
:
QwtPlotGraphicItem
(
QwtText
( title ) )
22
{
23
}
24
29
QwtPlotSvgItem::QwtPlotSvgItem
(
const
QwtText
& title )
30
:
QwtPlotGraphicItem
( title )
31
{
32
}
33
35
QwtPlotSvgItem::~QwtPlotSvgItem
()
36
{
37
}
38
47
bool
QwtPlotSvgItem::loadFile
(
const
QRectF& rect,
48
const
QString& fileName )
49
{
50
QwtGraphic
graphic
;
51
52
QSvgRenderer renderer;
53
54
const
bool
ok
= renderer.load( fileName );
55
if
(
ok
)
56
{
57
QPainter p( &
graphic
);
58
renderer.render( &p );
59
}
60
61
setGraphic
( rect,
graphic
);
62
63
return
ok
;
64
}
65
74
bool
QwtPlotSvgItem::loadData
(
const
QRectF& rect,
75
const
QByteArray&
data
)
76
{
77
QwtGraphic
graphic
;
78
79
QSvgRenderer renderer;
80
81
const
bool
ok
= renderer.load(
data
);
82
if
(
ok
)
83
{
84
QPainter p( &
graphic
);
85
renderer.render( &p );
86
}
87
88
setGraphic
( rect,
graphic
);
89
90
return
ok
;
91
}
QwtPlotSvgItem::loadData
bool loadData(const QRectF &, const QByteArray &)
Definition:
qwt_plot_svgitem.cpp:74
qwt_graphic.h
QwtGraphic
A paint device for scalable graphics.
Definition:
qwt_graphic.h:75
QwtPlotSvgItem::QwtPlotSvgItem
QwtPlotSvgItem(const QString &title=QString())
Constructor.
Definition:
qwt_plot_svgitem.cpp:20
ok
ROSCPP_DECL bool ok()
QwtPlotGraphicItem::setGraphic
void setGraphic(const QRectF &rect, const QwtGraphic &)
Definition:
qwt_plot_graphicitem.cpp:82
QwtPlotGraphicItem::graphic
QwtGraphic graphic() const
Definition:
qwt_plot_graphicitem.cpp:96
QwtText
A class representing a text.
Definition:
qwt_text.h:51
QwtPlotGraphicItem
A plot item, which displays a recorded sequence of QPainter commands.
Definition:
qwt_plot_graphicitem.h:29
mqtt_test.data
dictionary data
Definition:
mqtt_test.py:22
qwt_plot_svgitem.h
qwt_text.h
QwtPlotSvgItem::~QwtPlotSvgItem
virtual ~QwtPlotSvgItem()
Destructor.
Definition:
qwt_plot_svgitem.cpp:35
QwtPlotSvgItem::loadFile
bool loadFile(const QRectF &, const QString &fileName)
Definition:
qwt_plot_svgitem.cpp:47
plotjuggler
Author(s): Davide Faconti
autogenerated on Mon Nov 11 2024 03:23:46