Layout engine for QwtPlot.
More...
#include <qwt_plot_layout.h>
Layout engine for QwtPlot.
It is used by the QwtPlot widget to organize its internal widgets or by QwtPlot::print() to render its content to a QPaintDevice like a QPrinter, QPixmap/QImage or QSvgRenderer.
- See also
- QwtPlot::setPlotLayout()
◆ Option
Options to configure the plot layout engine
- See also
- activate(), QwtPlotRenderer
Enumerator |
---|
AlignScales | Unused.
|
IgnoreScrollbars | Ignore the dimension of the scrollbars. There are no scrollbars, when the plot is not rendered to widgets.
|
IgnoreFrames | Ignore all frames.
|
IgnoreLegend | Ignore the legend.
|
IgnoreTitle | Ignore the title.
|
IgnoreFooter | Ignore the footer.
|
◆ activate()
void QwtPlotLayout::activate |
( |
const QwtPlot * |
plot, |
|
|
const QRectF & |
plotRect, |
|
|
Options |
options = Options() |
|
) |
| |
|
virtual |
◆ alignCanvasToScale()
bool QwtPlotLayout::alignCanvasToScale |
( |
int |
axisId | ) |
const |
◆ alignLegend()
QRectF QwtPlotLayout::alignLegend |
( |
const QRectF & |
canvasRect, |
|
|
const QRectF & |
legendRect |
|
) |
| const |
|
protected |
Align the legend to the canvas
- Parameters
-
canvasRect | Geometry of the canvas |
legendRect | Maximum geometry for the legend |
- Returns
- Geometry for the aligned legend
◆ alignScales()
void QwtPlotLayout::alignScales |
( |
Options |
options, |
|
|
QRectF & |
canvasRect, |
|
|
QRectF |
scaleRect[QwtPlot::axisCnt] |
|
) |
| const |
|
protected |
Align the ticks of the axis to the canvas borders using the empty corners.
- Parameters
-
options | Layout options |
canvasRect | Geometry of the canvas ( IN/OUT ) |
scaleRect | Geometries of the scales ( IN/OUT ) |
- See also
- Options
◆ canvasMargin()
int QwtPlotLayout::canvasMargin |
( |
int |
axisId | ) |
const |
◆ canvasRect()
QRectF QwtPlotLayout::canvasRect |
( |
| ) |
const |
◆ expandLineBreaks()
void QwtPlotLayout::expandLineBreaks |
( |
Options |
options, |
|
|
const QRectF & |
rect, |
|
|
int & |
dimTitle, |
|
|
int & |
dimFooter, |
|
|
int |
dimAxes[QwtPlot::axisCnt] |
|
) |
| const |
|
protected |
Expand all line breaks in text labels, and calculate the height of their widgets in orientation of the text.
- Parameters
-
options | Options how to layout the legend |
rect | Bounding rectangle for title, footer, axes and canvas. |
dimTitle | Expanded height of the title widget |
dimFooter | Expanded height of the footer widget |
dimAxes | Expanded heights of the axis in axis orientation. |
- See also
- Options
◆ footerRect()
QRectF QwtPlotLayout::footerRect |
( |
| ) |
const |
◆ invalidate()
void QwtPlotLayout::invalidate |
( |
| ) |
|
|
virtual |
Invalidate the geometry of all components.
- See also
- activate()
◆ layoutLegend()
QRectF QwtPlotLayout::layoutLegend |
( |
Options |
options, |
|
|
const QRectF & |
rect |
|
) |
| const |
|
protected |
Find the geometry for the legend
- Parameters
-
options | Options how to layout the legend |
rect | Rectangle where to place the legend |
- Returns
- Geometry for the legend
- See also
- Options
◆ legendPosition()
- Returns
- Position of the legend
- See also
- setLegendPosition(), QwtPlot::setLegendPosition(), QwtPlot::legendPosition()
◆ legendRatio()
double QwtPlotLayout::legendRatio |
( |
| ) |
const |
◆ legendRect()
QRectF QwtPlotLayout::legendRect |
( |
| ) |
const |
◆ minimumSizeHint()
QSize QwtPlotLayout::minimumSizeHint |
( |
const QwtPlot * |
plot | ) |
const |
|
virtual |
◆ scaleRect()
QRectF QwtPlotLayout::scaleRect |
( |
int |
axis | ) |
const |
◆ setAlignCanvasToScale()
void QwtPlotLayout::setAlignCanvasToScale |
( |
int |
axisId, |
|
|
bool |
on |
|
) |
| |
Change the align-canvas-to-axis-scales setting. The canvas may:
- extend beyond the axis scale ends to maximize its size,
- align with the axis scale ends to control its size.
The axisId parameter is somehow confusing as it identifies a border of the plot and not the axes, that are aligned. F.e when QwtPlot::yLeft is set, the left end of the the x-axes ( QwtPlot::xTop, QwtPlot::xBottom ) is aligned.
- Parameters
-
axisId | Axis index |
on | New align-canvas-to-axis-scales setting |
- See also
- setCanvasMargin(), alignCanvasToScale(), setAlignCanvasToScales()
- Warning
- In case of on == true canvasMargin() will have no effect
◆ setAlignCanvasToScales()
void QwtPlotLayout::setAlignCanvasToScales |
( |
bool |
on | ) |
|
◆ setCanvasMargin()
void QwtPlotLayout::setCanvasMargin |
( |
int |
margin, |
|
|
int |
axis = -1 |
|
) |
| |
Change a margin of the canvas. The margin is the space above/below the scale ticks. A negative margin will be set to -1, excluding the borders of the scales.
- Parameters
-
margin | New margin |
axis | One of QwtPlot::Axis. Specifies where the position of the margin. -1 means margin at all borders. |
- See also
- canvasMargin()
- Warning
- The margin will have no effect when alignCanvasToScale() is true
◆ setCanvasRect()
void QwtPlotLayout::setCanvasRect |
( |
const QRectF & |
rect | ) |
|
|
protected |
◆ setFooterRect()
void QwtPlotLayout::setFooterRect |
( |
const QRectF & |
rect | ) |
|
|
protected |
◆ setLegendPosition() [1/2]
Specify the position of the legend.
- Parameters
-
- See also
- QwtPlot::setLegendPosition()
◆ setLegendPosition() [2/2]
Specify the position of the legend.
- Parameters
-
pos | The legend's position. |
ratio | Ratio between legend and the bounding rectangle of title, footer, canvas and axes. The legend will be shrunk if it would need more space than the given ratio. The ratio is limited to ]0.0 .. 1.0]. In case of <= 0.0 it will be reset to the default ratio. The default vertical/horizontal ratio is 0.33/0.5. |
- See also
- QwtPlot::setLegendPosition()
◆ setLegendRatio()
void QwtPlotLayout::setLegendRatio |
( |
double |
ratio | ) |
|
Specify the relative size of the legend in the plot
- Parameters
-
ratio | Ratio between legend and the bounding rectangle of title, footer, canvas and axes. The legend will be shrunk if it would need more space than the given ratio. The ratio is limited to ]0.0 .. 1.0]. In case of <= 0.0 it will be reset to the default ratio. The default vertical/horizontal ratio is 0.33/0.5. |
◆ setLegendRect()
void QwtPlotLayout::setLegendRect |
( |
const QRectF & |
rect | ) |
|
|
protected |
Set the geometry for the legend.
This method is intended to be used from derived layouts overloading activate()
- Parameters
-
rect | Rectangle for the legend |
- See also
- legendRect(), activate()
◆ setScaleRect()
void QwtPlotLayout::setScaleRect |
( |
int |
axis, |
|
|
const QRectF & |
rect |
|
) |
| |
|
protected |
Set the geometry for an axis.
This method is intended to be used from derived layouts overloading activate()
- Parameters
-
axis | Axis index |
rect | Rectangle for the scale |
- See also
- scaleRect(), activate()
◆ setSpacing()
void QwtPlotLayout::setSpacing |
( |
int |
spacing | ) |
|
Change the spacing of the plot. The spacing is the distance between the plot components.
- Parameters
-
- See also
- setCanvasMargin(), spacing()
◆ setTitleRect()
void QwtPlotLayout::setTitleRect |
( |
const QRectF & |
rect | ) |
|
|
protected |
◆ spacing()
int QwtPlotLayout::spacing |
( |
| ) |
const |
◆ titleRect()
QRectF QwtPlotLayout::titleRect |
( |
| ) |
const |