~ubuntu-branches/ubuntu/oneiric/qwt/oneiric-proposed

« back to all changes in this revision

Viewing changes to qwt-5.1.0/doc/html/class_qwt_plot.html

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2008-05-26 10:26:31 UTC
  • mfrom: (1.1.3 upstream) (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080526102631-bp95mfccnrb957nx
Tags: 5.1.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
 
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3
 
<title>Qwt User&apos;s Guide: QwtPlot Class Reference</title>
4
 
<link href="doxygen.css" rel="stylesheet" type="text/css">
5
 
<link href="tabs.css" rel="stylesheet" type="text/css">
6
 
</head><body>
7
 
<!-- Generated by Doxygen 1.5.0 -->
8
 
<div class="tabs">
9
 
  <ul>
10
 
    <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
11
 
    <li id="current"><a href="classes.html"><span>Classes</span></a></li>
12
 
    <li><a href="files.html"><span>Files</span></a></li>
13
 
    <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
14
 
  </ul></div>
15
 
<div class="tabs">
16
 
  <ul>
17
 
    <li><a href="classes.html"><span>Alphabetical&nbsp;List</span></a></li>
18
 
    <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
19
 
    <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
20
 
    <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
21
 
  </ul></div>
22
 
<h1>QwtPlot Class Reference</h1><!-- doxytag: class="QwtPlot" --><!-- doxytag: inherits="QwtPlotDict" -->Inheritance diagram for QwtPlot:<p><center><img src="class_qwt_plot__inherit__graph.png" border="0" usemap="#_qwt_plot__inherit__map" alt="Inheritance graph"></center>
23
 
<map name="_qwt_plot__inherit__map">
24
 
<area href="class_qwt_plot_dict.html" shape="rect" coords="7,8,97,32" alt="">
25
 
</map>
26
 
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center>Collaboration diagram for QwtPlot:<p><center><img src="class_qwt_plot__coll__graph.png" border="0" usemap="#_qwt_plot__coll__map" alt="Collaboration graph"></center>
27
 
<map name="_qwt_plot__coll__map">
28
 
<area href="class_qwt_plot_dict.html" shape="rect" coords="7,8,97,32" alt="">
29
 
</map>
30
 
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center><a href="class_qwt_plot-members.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2>
31
 
A 2-D plotting widget. 
32
 
<p>
33
 
<a class="el" href="class_qwt_plot.html">QwtPlot</a> is a widget for plotting two-dimensional graphs. An unlimited number of plot items can be displayed on its canvas. Plot items might be curves (<a class="el" href="class_qwt_plot_curve.html">QwtPlotCurve</a>), markers (<a class="el" href="class_qwt_plot_marker.html">QwtPlotMarker</a>), the grid (<a class="el" href="class_qwt_plot_grid.html">QwtPlotGrid</a>), or anything else derived from <a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a>. A plot can have up to four axes, with each plot item attached to an x- and a y axis. The scales at the axes can be explicitely set (<a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a>), or are calculated from the plot items, using algorithms (<a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a>) which can be configured separately for each axis.<p>
34
 
<div align="center">
35
 
<img src="plot.png" alt="plot.png">
36
 
</div>
37
 
<p>
38
 
<dl class="user" compact><dt><b>Example</b></dt><dd>The following example shows (schematically) the most simple way to use <a class="el" href="class_qwt_plot.html">QwtPlot</a>. By default, only the left and bottom axes are visible and their scales are computed automatically. <div class="fragment"><pre class="fragment">
39
 
#include &lt;qwt_plot.h&gt;
40
 
#include &lt;qwt_plot_curve.h&gt;
41
 
 
42
 
QwtPlot *myPlot;
43
 
double x[100], y1[100], y2[100];        // x and y values
44
 
 
45
 
myPlot = new QwtPlot("Two Curves", parent);
46
 
 
47
 
// add curves
48
 
QwtPlotCurve *curve1 = new QwtPlotCurve("Curve 1");
49
 
QwtPlotCurve *curve2 = new QwtPlotCurve("Curve 2");
50
 
 
51
 
getSomeValues(x, y1, y2);
52
 
 
53
 
// copy the data into the curves
54
 
curve1-&gt;setData(x, y1, 100);
55
 
curve2-&gt;setData(x, y2, 100);
56
 
 
57
 
curve1-&gt;attach(myPlot);
58
 
curve2-&gt;attach(myPlot);
59
 
 
60
 
// finally, refresh the plot
61
 
myPlot-&gt;replot();
62
 
</pre></div> </dd></dl>
63
 
 
64
 
<p>
65
 
 
66
 
<p>
67
 
Definition at line <a class="el" href="qwt__plot_8h-source.html#l00077">77</a> of file <a class="el" href="qwt__plot_8h-source.html">qwt_plot.h</a>.<table border="0" cellpadding="0" cellspacing="0">
68
 
<tr><td></td></tr>
69
 
<tr><td colspan="2"><br><h2>Public Types</h2></td></tr>
70
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#81df699dcf9dde0752c0726b5f31e271">Axis</a> { <br>
71
 
&nbsp;&nbsp;<b>yLeft</b>, 
72
 
<br>
73
 
&nbsp;&nbsp;<b>yRight</b>, 
74
 
<br>
75
 
&nbsp;&nbsp;<b>xBottom</b>, 
76
 
<br>
77
 
&nbsp;&nbsp;<b>xTop</b>, 
78
 
<br>
79
 
&nbsp;&nbsp;<b>axisCnt</b>
80
 
<br>
81
 
 }</td></tr>
82
 
 
83
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#31aacb65b5c049dde8c34a0d8482661b">LegendPosition</a> { <br>
84
 
&nbsp;&nbsp;<b>LeftLegend</b>, 
85
 
<br>
86
 
&nbsp;&nbsp;<b>RightLegend</b>, 
87
 
<br>
88
 
&nbsp;&nbsp;<b>BottomLegend</b>, 
89
 
<br>
90
 
&nbsp;&nbsp;<b>TopLegend</b>, 
91
 
<br>
92
 
&nbsp;&nbsp;<b>ExternalLegend</b>
93
 
<br>
94
 
 }</td></tr>
95
 
 
96
 
<tr><td colspan="2"><br><h2>Public Slots</h2></td></tr>
97
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#e2191d8ad33164b83aa2a14563f132a5">clear</a> ()</td></tr>
98
 
 
99
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#7b094e29b8e92b00e36517d0d7633c4b">replot</a> ()</td></tr>
100
 
 
101
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ea78ab565d05b69b8730a4af2a11f07e">autoRefresh</a> ()</td></tr>
102
 
 
103
 
<tr><td colspan="2"><br><h2>Signals</h2></td></tr>
104
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#52b75d5548fbe04539b6297de53a2222">legendClicked</a> (<a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a> *plotItem)</td></tr>
105
 
 
106
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#bd9e17629dd7c142fed017ea5e347149">legendChecked</a> (<a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a> *plotItem, bool on)</td></tr>
107
 
 
108
 
<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
109
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#cde7121614da027e9a1dbc4591613ca7">QwtPlot</a> (QWidget *=NULL)</td></tr>
110
 
 
111
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#12888a2101ba2091db0e4710c6a109cb">QwtPlot</a> (const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;title, QWidget *p=NULL)</td></tr>
112
 
 
113
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#2b60620e3681810946dcc66002aad016">~QwtPlot</a> ()</td></tr>
114
 
 
115
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="e7e93c7112d16cbd299cf3cbc0bf9f9f"></a><!-- doxytag: member="QwtPlot::applyProperties" ref="e7e93c7112d16cbd299cf3cbc0bf9f9f" args="(const QString &amp;)" -->
116
 
void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#e7e93c7112d16cbd299cf3cbc0bf9f9f">applyProperties</a> (const QString &amp;)</td></tr>
117
 
 
118
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="864f78bcebc9cb767e8decca266cc3e4"></a><!-- doxytag: member="QwtPlot::grabProperties" ref="864f78bcebc9cb767e8decca266cc3e4" args="() const" -->
119
 
QString&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#864f78bcebc9cb767e8decca266cc3e4">grabProperties</a> () const</td></tr>
120
 
 
121
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#654934ec2ad167101dacb5174f5172d6">setAutoReplot</a> (bool tf=true)</td></tr>
122
 
 
123
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#3a639850b65bc4dbf22b3f3170d61804">autoReplot</a> () const</td></tr>
124
 
 
125
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#d6270719d1ca5ac5952ab5e7fec3f84a">print</a> (QPaintDevice &amp;p, const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;=<a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a>()) const</td></tr>
126
 
 
127
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#034ba0fb75a71f0a3000636bf1c2388b">print</a> (QPainter *, const QRect &amp;rect, const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;=<a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a>()) const</td></tr>
128
 
 
129
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="class_qwt_plot_layout.html">QwtPlotLayout</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#9156b14a6f67f6279a16fea063ce1d14">plotLayout</a> ()</td></tr>
130
 
 
131
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="class_qwt_plot_layout.html">QwtPlotLayout</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#d4b695580cdf504dd0996177c56ebe0b">plotLayout</a> () const</td></tr>
132
 
 
133
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#26f01ba1c3c85308db6cac67c5f1159c">setMargin</a> (int margin)</td></tr>
134
 
 
135
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a1cd0fa079f2057df3ddb33355bf9536">margin</a> () const</td></tr>
136
 
 
137
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#9a7f0b219b404e5bed5dfca26c5c06a7">setTitle</a> (const QString &amp;)</td></tr>
138
 
 
139
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#032ced8ddfad7483a372214954203719">setTitle</a> (const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;t)</td></tr>
140
 
 
141
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="class_qwt_text.html">QwtText</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#fb56eb977718774dff0fb4127f200bb0">title</a> () const</td></tr>
142
 
 
143
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="class_qwt_text_label.html">QwtTextLabel</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#c39356b86ed70ebf256a8ae964910206">titleLabel</a> ()</td></tr>
144
 
 
145
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="class_qwt_text_label.html">QwtTextLabel</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#09dcd60b8f2ce62904f4c21dcbfe2fa1">titleLabel</a> () const</td></tr>
146
 
 
147
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="class_qwt_plot_canvas.html">QwtPlotCanvas</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#afcc82150034fbeb393ceb9f54ba2f1a">canvas</a> ()</td></tr>
148
 
 
149
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="class_qwt_plot_canvas.html">QwtPlotCanvas</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#0e45633c978e7514af0d7ad032359670">canvas</a> () const</td></tr>
150
 
 
151
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#1a56902d2109fcf709ad1dbd35f0b859">setCanvasBackground</a> (const QColor &amp;c)</td></tr>
152
 
 
153
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">const QColor &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#0094df4164c97de505e3dc6ad7be3385">canvasBackground</a> () const</td></tr>
154
 
 
155
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#5af96e90be286753d524bdb042917618">setCanvasLineWidth</a> (int w)</td></tr>
156
 
 
157
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#d310af5a2b55bfc8b064c70afc8eb5e8">canvasLineWidth</a> () const</td></tr>
158
 
 
159
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#44dc140e8503bb44da7921841f31051c">canvasMap</a> (int axisId) const</td></tr>
160
 
 
161
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#b98066e62e3a9f574f8f1d482974ef5c">invTransform</a> (int axisId, int pos) const </td></tr>
162
 
 
163
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#d7b0d371abcd3c86a7ee77f97eca06c5">transform</a> (int axisId, double value) const</td></tr>
164
 
 
165
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#619b65bb95090ab5a528e33a5014ae4f">axisScaleEngine</a> (int axisId)</td></tr>
166
 
 
167
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#358673463a8df0a65e58cd9d37223ff9">axisScaleEngine</a> (int axisId) const</td></tr>
168
 
 
169
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#bf09452377b53e584a5086354a134d78">setAxisScaleEngine</a> (int axisId, <a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> *)</td></tr>
170
 
 
171
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#8138eee4eb6989a1f6d93bd34b9c4cfa">setAxisAutoScale</a> (int axisId)</td></tr>
172
 
 
173
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#2f306d8f8ca37352a9c42ff55d5f960f">axisAutoScale</a> (int axisId) const</td></tr>
174
 
 
175
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#b644f7a0a0566ff776c89cc225ce37d7">enableAxis</a> (int axisId, bool tf=true)</td></tr>
176
 
 
177
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a6d08ba153cb46662692611b5c38bbe0">axisEnabled</a> (int axisId) const</td></tr>
178
 
 
179
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#9a14e57652c016f40388a68e556917e3">setAxisFont</a> (int axisId, const QFont &amp;f)</td></tr>
180
 
 
181
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">QFont&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#0469c6a1fcbc4d6f32c66b08b50b7e13">axisFont</a> (int axisId) const</td></tr>
182
 
 
183
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#cef5ea818944b93b8695d0c16924eed6">setAxisScale</a> (int axisId, double min, double max, double step=0)</td></tr>
184
 
 
185
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#2365da57b983eb39752fa4f6378c225a">setAxisScaleDiv</a> (int axisId, const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> &amp;)</td></tr>
186
 
 
187
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#956a14b08e016eb83768ff4187d3849d">setAxisScaleDraw</a> (int axisId, <a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> *)</td></tr>
188
 
 
189
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">double&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#85856d20d3904b0028b2f1ff7c65d113">axisStepSize</a> (int axisId) const</td></tr>
190
 
 
191
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#029086e7b26fcfeff5430d25a4df4f3e">axisScaleDiv</a> (int axisId) const</td></tr>
192
 
 
193
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#f20f32c68fdd8ae4adfeabf21eb6068b">axisScaleDiv</a> (int axisId)</td></tr>
194
 
 
195
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#aedfff42d8aee875d7bec082e1382f9f">axisScaleDraw</a> (int axisId) const</td></tr>
196
 
 
197
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#bbb49f1730c3ea9f636c032f81e5a87e">axisScaleDraw</a> (int axisId)</td></tr>
198
 
 
199
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="class_qwt_scale_widget.html">QwtScaleWidget</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#8436c30175884d7643d68fd0dd236cd8">axisWidget</a> (int axisId) const</td></tr>
200
 
 
201
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="class_qwt_scale_widget.html">QwtScaleWidget</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#e3386e1d38f70864c4c019c0eb6a3d9d">axisWidget</a> (int axisId)</td></tr>
202
 
 
203
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#19f1b67fa79b80c712cf5f52b97ea0c5">setAxisLabelAlignment</a> (int axisId, Qt::Alignment)</td></tr>
204
 
 
205
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#d5fa7aa01c88eab38ad64b131584f977">setAxisLabelRotation</a> (int axisId, double rotation)</td></tr>
206
 
 
207
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#5d60f1836e05e5cc5c7fe9570d6a608a">setAxisTitle</a> (int axisId, const QString &amp;)</td></tr>
208
 
 
209
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#d134a193ab40ce33743365558d0303c4">setAxisTitle</a> (int axisId, const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;)</td></tr>
210
 
 
211
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="class_qwt_text.html">QwtText</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#0132283508f41bc16e559a6688b8e106">axisTitle</a> (int axisId) const</td></tr>
212
 
 
213
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a45b271684d6202061f1afcfa70e7cf6">setAxisMaxMinor</a> (int axisId, int maxMinor)</td></tr>
214
 
 
215
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#663fd43f9ccecc4f5390dcd01baa46c0">axisMaxMajor</a> (int axisId) const</td></tr>
216
 
 
217
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#34df698558c9bd9c38bdd8ff04cc6c41">setAxisMaxMajor</a> (int axisId, int maxMajor)</td></tr>
218
 
 
219
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#14afbe0622b1b30c0ad5f725e1fc6b2a">axisMaxMinor</a> (int axisId) const</td></tr>
220
 
 
221
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#6e23cad2bce7b04a09f18fa139341d5c">insertLegend</a> (<a class="el" href="class_qwt_legend.html">QwtLegend</a> *, <a class="el" href="class_qwt_plot.html#31aacb65b5c049dde8c34a0d8482661b">LegendPosition</a>=QwtPlot::RightLegend, double ratio=-1.0)</td></tr>
222
 
 
223
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="class_qwt_legend.html">QwtLegend</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ab1f2cf0e567e09a4c4bce3181c03ba0">legend</a> ()</td></tr>
224
 
 
225
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="class_qwt_legend.html">QwtLegend</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#f8ac9c9332b8625699d38d3d79354c57">legend</a> () const</td></tr>
226
 
 
227
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#99ad643676cf0cd5f11478f154102df2">polish</a> ()</td></tr>
228
 
 
229
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual QSize&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#2f57c941dd36f96c395b339474418fba">sizeHint</a> () const</td></tr>
230
 
 
231
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual QSize&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#1f013570f561aba1af14b5c98da2132b">minimumSizeHint</a> () const</td></tr>
232
 
 
233
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#d470068832406086d6823109d8d7f050">updateLayout</a> ()</td></tr>
234
 
 
235
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual bool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#f40d1bfdd9b6cd94e9981db8b254b961">event</a> (QEvent *)</td></tr>
236
 
 
237
 
<tr><td colspan="2"><br><h2>Protected Slots</h2></td></tr>
238
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#e1b53fe373a12b1558fca37fdc2f0a54">legendItemClicked</a> ()</td></tr>
239
 
 
240
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#d41768a65a7cc426091c89d54e3c2ab2">legendItemChecked</a> (bool)</td></tr>
241
 
 
242
 
<tr><td colspan="2"><br><h2>Protected Member Functions</h2></td></tr>
243
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#dd1b88d8312e2671652d23f8181f2433">drawCanvas</a> (QPainter *)</td></tr>
244
 
 
245
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#e36e68025f4f8b460d690ea7c7a04d9e">drawItems</a> (QPainter *, const QRect &amp;, const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> maps[axisCnt], const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;) const</td></tr>
246
 
 
247
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#6455596162a69876a3504c0017531cf3">updateTabOrder</a> ()</td></tr>
248
 
 
249
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#1fb2dbc3697a66024d48c08b1d18f8a5">updateAxes</a> ()</td></tr>
250
 
 
251
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#a4d5f73681880b9770bb6a604c415987">resizeEvent</a> (QResizeEvent *e)</td></tr>
252
 
 
253
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#9790ac102d566d744b9cfe9bb5e52a67">printLegendItem</a> (QPainter *, const QWidget *, const QRect &amp;) const</td></tr>
254
 
 
255
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#37a3264b7e3bc692f35474a82a6ab28b">printTitle</a> (QPainter *, const QRect &amp;) const</td></tr>
256
 
 
257
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#d881d5918384f5a0f112c2faa68ab031">printScale</a> (QPainter *, int axisId, int startDist, int endDist, int baseDist, const QRect &amp;) const</td></tr>
258
 
 
259
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#d42514cf3728466a720d2a1290f13a53">printCanvas</a> (QPainter *, const QRect &amp;boundingRect, const QRect &amp;canvasRect, const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> maps[axisCnt], const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;) const</td></tr>
260
 
 
261
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#4a082258f60aef10b3bcdab1574d2ae2">printLegend</a> (QPainter *, const QRect &amp;) const</td></tr>
262
 
 
263
 
<tr><td colspan="2"><br><h2>Static Protected Member Functions</h2></td></tr>
264
 
<tr><td class="memItemLeft" nowrap align="right" valign="top">static bool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#c02c033b024a4ecbefcf1b0e93c91205">axisValid</a> (int axisId)</td></tr>
265
 
 
266
 
<tr><td colspan="2"><br><h2>Friends</h2></td></tr>
267
 
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ccdb72255f819eb70751e070294496fd"></a><!-- doxytag: member="QwtPlot::QwtPlotCanvas" ref="ccdb72255f819eb70751e070294496fd" args="" -->
268
 
class&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_qwt_plot.html#ccdb72255f819eb70751e070294496fd">QwtPlotCanvas</a></td></tr>
269
 
 
270
 
</table>
271
 
<hr><h2>Member Enumeration Documentation</h2>
272
 
<a class="anchor" name="81df699dcf9dde0752c0726b5f31e271"></a><!-- doxytag: member="QwtPlot::Axis" ref="81df699dcf9dde0752c0726b5f31e271" args="" -->
273
 
<div class="memitem">
274
 
<div class="memproto">
275
 
      <table class="memname">
276
 
        <tr>
277
 
          <td class="memname">enum <a class="el" href="class_qwt_plot.html#81df699dcf9dde0752c0726b5f31e271">QwtPlot::Axis</a>          </td>
278
 
        </tr>
279
 
      </table>
280
 
</div>
281
 
<div class="memdoc">
282
 
 
283
 
<p>
284
 
Axis index. 
285
 
<p>
286
 
 
287
 
<p>
288
 
Definition at line <a class="el" href="qwt__plot_8h-source.html#l00087">87</a> of file <a class="el" href="qwt__plot_8h-source.html">qwt_plot.h</a>.
289
 
</div>
290
 
</div><p>
291
 
<a class="anchor" name="31aacb65b5c049dde8c34a0d8482661b"></a><!-- doxytag: member="QwtPlot::LegendPosition" ref="31aacb65b5c049dde8c34a0d8482661b" args="" -->
292
 
<div class="memitem">
293
 
<div class="memproto">
294
 
      <table class="memname">
295
 
        <tr>
296
 
          <td class="memname">enum <a class="el" href="class_qwt_plot.html#31aacb65b5c049dde8c34a0d8482661b">QwtPlot::LegendPosition</a>          </td>
297
 
        </tr>
298
 
      </table>
299
 
</div>
300
 
<div class="memdoc">
301
 
 
302
 
<p>
303
 
Position of the legend, relative to the canvas. 
304
 
<p>
305
 
ExternalLegend means that only the content of the legend will be handled by <a class="el" href="class_qwt_plot.html">QwtPlot</a>, but not its geometry. This might be interesting if an application wants to have a legend in an external window. 
306
 
<p>
307
 
Definition at line <a class="el" href="qwt__plot_8h-source.html#l00105">105</a> of file <a class="el" href="qwt__plot_8h-source.html">qwt_plot.h</a>.
308
 
</div>
309
 
</div><p>
310
 
<hr><h2>Constructor &amp; Destructor Documentation</h2>
311
 
<a class="anchor" name="cde7121614da027e9a1dbc4591613ca7"></a><!-- doxytag: member="QwtPlot::QwtPlot" ref="cde7121614da027e9a1dbc4591613ca7" args="(QWidget *=NULL)" -->
312
 
<div class="memitem">
313
 
<div class="memproto">
314
 
      <table class="memname">
315
 
        <tr>
316
 
          <td class="memname">QwtPlot::QwtPlot           </td>
317
 
          <td>(</td>
318
 
          <td class="paramtype">QWidget *&nbsp;</td>
319
 
          <td class="paramname"> <em>parent</em> = <code>NULL</code>          </td>
320
 
          <td>&nbsp;)&nbsp;</td>
321
 
          <td width="100%"><code> [explicit]</code></td>
322
 
        </tr>
323
 
      </table>
324
 
</div>
325
 
<div class="memdoc">
326
 
 
327
 
<p>
328
 
Constructor. 
329
 
<p>
330
 
<dl compact><dt><b>Parameters:</b></dt><dd>
331
 
  <table border="0" cellspacing="2" cellpadding="0">
332
 
    <tr><td valign="top"></td><td valign="top"><em>parent</em>&nbsp;</td><td>Parent widget </td></tr>
333
 
  </table>
334
 
</dl>
335
 
 
336
 
<p>
337
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00052">52</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
338
 
</div>
339
 
</div><p>
340
 
<a class="anchor" name="12888a2101ba2091db0e4710c6a109cb"></a><!-- doxytag: member="QwtPlot::QwtPlot" ref="12888a2101ba2091db0e4710c6a109cb" args="(const QwtText &amp;title, QWidget *p=NULL)" -->
341
 
<div class="memitem">
342
 
<div class="memproto">
343
 
      <table class="memname">
344
 
        <tr>
345
 
          <td class="memname">QwtPlot::QwtPlot           </td>
346
 
          <td>(</td>
347
 
          <td class="paramtype">const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;&nbsp;</td>
348
 
          <td class="paramname"> <em>title</em>, </td>
349
 
        </tr>
350
 
        <tr>
351
 
          <td class="paramkey"></td>
352
 
          <td></td>
353
 
          <td class="paramtype">QWidget *&nbsp;</td>
354
 
          <td class="paramname"> <em>parent</em> = <code>NULL</code></td><td>&nbsp;</td>
355
 
        </tr>
356
 
        <tr>
357
 
          <td></td>
358
 
          <td>)</td>
359
 
          <td></td><td></td><td width="100%"><code> [explicit]</code></td>
360
 
        </tr>
361
 
      </table>
362
 
</div>
363
 
<div class="memdoc">
364
 
 
365
 
<p>
366
 
Constructor. 
367
 
<p>
368
 
<dl compact><dt><b>Parameters:</b></dt><dd>
369
 
  <table border="0" cellspacing="2" cellpadding="0">
370
 
    <tr><td valign="top"></td><td valign="top"><em>title</em>&nbsp;</td><td>Title text </td></tr>
371
 
    <tr><td valign="top"></td><td valign="top"><em>parent</em>&nbsp;</td><td>Parent widget </td></tr>
372
 
  </table>
373
 
</dl>
374
 
 
375
 
<p>
376
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00063">63</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
377
 
<p>
378
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00222">title()</a>.
379
 
</div>
380
 
</div><p>
381
 
<a class="anchor" name="2b60620e3681810946dcc66002aad016"></a><!-- doxytag: member="QwtPlot::~QwtPlot" ref="2b60620e3681810946dcc66002aad016" args="()" -->
382
 
<div class="memitem">
383
 
<div class="memproto">
384
 
      <table class="memname">
385
 
        <tr>
386
 
          <td class="memname">QwtPlot::~QwtPlot           </td>
387
 
          <td>(</td>
388
 
          <td class="paramname">          </td>
389
 
          <td>&nbsp;)&nbsp;</td>
390
 
          <td width="100%"><code> [virtual]</code></td>
391
 
        </tr>
392
 
      </table>
393
 
</div>
394
 
<div class="memdoc">
395
 
 
396
 
<p>
397
 
Destructor. 
398
 
<p>
399
 
 
400
 
<p>
401
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00084">84</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
402
 
<p>
403
 
References <a class="el" href="qwt__plot__dict_8cpp-source.html#l00129">QwtPlotDict::autoDelete()</a>, and <a class="el" href="qwt__plot__dict_8cpp-source.html#l00161">QwtPlotDict::detachItems()</a>.
404
 
</div>
405
 
</div><p>
406
 
<hr><h2>Member Function Documentation</h2>
407
 
<a class="anchor" name="654934ec2ad167101dacb5174f5172d6"></a><!-- doxytag: member="QwtPlot::setAutoReplot" ref="654934ec2ad167101dacb5174f5172d6" args="(bool tf=true)" -->
408
 
<div class="memitem">
409
 
<div class="memproto">
410
 
      <table class="memname">
411
 
        <tr>
412
 
          <td class="memname">void QwtPlot::setAutoReplot           </td>
413
 
          <td>(</td>
414
 
          <td class="paramtype">bool&nbsp;</td>
415
 
          <td class="paramname"> <em>tf</em> = <code>true</code>          </td>
416
 
          <td>&nbsp;)&nbsp;</td>
417
 
          <td width="100%"></td>
418
 
        </tr>
419
 
      </table>
420
 
</div>
421
 
<div class="memdoc">
422
 
 
423
 
<p>
424
 
Set or reset the autoReplot option. 
425
 
<p>
426
 
If the autoReplot option is set, the plot will be updated implicitly by manipulating member functions. Since this may be time-consuming, it is recommended to leave this option switched off and call <a class="el" href="class_qwt_plot.html#7b094e29b8e92b00e36517d0d7633c4b">replot()</a> explicitly if necessary.<p>
427
 
The autoReplot option is set to false by default, which means that the user has to call <a class="el" href="class_qwt_plot.html#7b094e29b8e92b00e36517d0d7633c4b">replot()</a> in order to make changes visible. <dl compact><dt><b>Parameters:</b></dt><dd>
428
 
  <table border="0" cellspacing="2" cellpadding="0">
429
 
    <tr><td valign="top"></td><td valign="top"><em>tf</em>&nbsp;</td><td><code>true</code> or <code>false</code>. Defaults to <code>true</code>. </td></tr>
430
 
  </table>
431
 
</dl>
432
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#7b094e29b8e92b00e36517d0d7633c4b">replot()</a> </dd></dl>
433
 
 
434
 
<p>
435
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00184">184</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
436
 
<p>
437
 
Referenced by <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00157">QwtPlotPrintFilter::apply()</a>, <a class="el" href="qwt__plot__canvas_8cpp-source.html#l00250">QwtPlotCanvas::drawContents()</a>, <a class="el" href="qwt__plot__panner_8cpp-source.html#l00130">QwtPlotPanner::moveCanvas()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00363">replot()</a>, <a class="el" href="qwt__plot__zoomer_8cpp-source.html#l00379">QwtPlotZoomer::rescale()</a>, <a class="el" href="qwt__plot__magnifier_8cpp-source.html#l00120">QwtPlotMagnifier::rescale()</a>, and <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00366">QwtPlotPrintFilter::reset()</a>.
438
 
</div>
439
 
</div><p>
440
 
<a class="anchor" name="3a639850b65bc4dbf22b3f3170d61804"></a><!-- doxytag: member="QwtPlot::autoReplot" ref="3a639850b65bc4dbf22b3f3170d61804" args="() const" -->
441
 
<div class="memitem">
442
 
<div class="memproto">
443
 
      <table class="memname">
444
 
        <tr>
445
 
          <td class="memname">bool QwtPlot::autoReplot           </td>
446
 
          <td>(</td>
447
 
          <td class="paramname">          </td>
448
 
          <td>&nbsp;)&nbsp;</td>
449
 
          <td width="100%"> const</td>
450
 
        </tr>
451
 
      </table>
452
 
</div>
453
 
<div class="memdoc">
454
 
 
455
 
<p>
456
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true if the autoReplot option is set. </dd></dl>
457
 
 
458
 
<p>
459
 
 
460
 
<p>
461
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00190">190</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
462
 
<p>
463
 
Referenced by <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00157">QwtPlotPrintFilter::apply()</a>, <a class="el" href="qwt__plot__canvas_8cpp-source.html#l00250">QwtPlotCanvas::drawContents()</a>, <a class="el" href="qwt__plot__panner_8cpp-source.html#l00130">QwtPlotPanner::moveCanvas()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00363">replot()</a>, <a class="el" href="qwt__plot__zoomer_8cpp-source.html#l00379">QwtPlotZoomer::rescale()</a>, <a class="el" href="qwt__plot__magnifier_8cpp-source.html#l00120">QwtPlotMagnifier::rescale()</a>, and <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00366">QwtPlotPrintFilter::reset()</a>.
464
 
</div>
465
 
</div><p>
466
 
<a class="anchor" name="d6270719d1ca5ac5952ab5e7fec3f84a"></a><!-- doxytag: member="QwtPlot::print" ref="d6270719d1ca5ac5952ab5e7fec3f84a" args="(QPaintDevice &amp;p, const QwtPlotPrintFilter &amp;=QwtPlotPrintFilter()) const" -->
467
 
<div class="memitem">
468
 
<div class="memproto">
469
 
      <table class="memname">
470
 
        <tr>
471
 
          <td class="memname">void QwtPlot::print           </td>
472
 
          <td>(</td>
473
 
          <td class="paramtype">QPaintDevice &amp;&nbsp;</td>
474
 
          <td class="paramname"> <em>paintDev</em>, </td>
475
 
        </tr>
476
 
        <tr>
477
 
          <td class="paramkey"></td>
478
 
          <td></td>
479
 
          <td class="paramtype">const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;&nbsp;</td>
480
 
          <td class="paramname"> <em>pfilter</em> = <code><a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a>()</code></td><td>&nbsp;</td>
481
 
        </tr>
482
 
        <tr>
483
 
          <td></td>
484
 
          <td>)</td>
485
 
          <td></td><td></td><td width="100%"> const</td>
486
 
        </tr>
487
 
      </table>
488
 
</div>
489
 
<div class="memdoc">
490
 
 
491
 
<p>
492
 
Print the plot to a <code>QPaintDevice</code> (<code>QPrinter</code>) This function prints the contents of a <a class="el" href="class_qwt_plot.html">QwtPlot</a> instance to <code>QPaintDevice</code> object. The size is derived from its device metrics. 
493
 
<p>
494
 
<dl compact><dt><b>Parameters:</b></dt><dd>
495
 
  <table border="0" cellspacing="2" cellpadding="0">
496
 
    <tr><td valign="top"></td><td valign="top"><em>paintDev</em>&nbsp;</td><td>device to paint on, often a printer </td></tr>
497
 
    <tr><td valign="top"></td><td valign="top"><em>pfilter</em>&nbsp;</td><td>print filter </td></tr>
498
 
  </table>
499
 
</dl>
500
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#d6270719d1ca5ac5952ab5e7fec3f84a">QwtPlot::print</a> <p>
501
 
<a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> </dd></dl>
502
 
 
503
 
<p>
504
 
Definition at line <a class="el" href="qwt__plot__print_8cpp-source.html#l00043">43</a> of file <a class="el" href="qwt__plot__print_8cpp-source.html">qwt_plot_print.cpp</a>.
505
 
</div>
506
 
</div><p>
507
 
<a class="anchor" name="034ba0fb75a71f0a3000636bf1c2388b"></a><!-- doxytag: member="QwtPlot::print" ref="034ba0fb75a71f0a3000636bf1c2388b" args="(QPainter *, const QRect &amp;rect, const QwtPlotPrintFilter &amp;=QwtPlotPrintFilter()) const" -->
508
 
<div class="memitem">
509
 
<div class="memproto">
510
 
      <table class="memname">
511
 
        <tr>
512
 
          <td class="memname">void QwtPlot::print           </td>
513
 
          <td>(</td>
514
 
          <td class="paramtype">QPainter *&nbsp;</td>
515
 
          <td class="paramname"> <em>painter</em>, </td>
516
 
        </tr>
517
 
        <tr>
518
 
          <td class="paramkey"></td>
519
 
          <td></td>
520
 
          <td class="paramtype">const QRect &amp;&nbsp;</td>
521
 
          <td class="paramname"> <em>plotRect</em>, </td>
522
 
        </tr>
523
 
        <tr>
524
 
          <td class="paramkey"></td>
525
 
          <td></td>
526
 
          <td class="paramtype">const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;&nbsp;</td>
527
 
          <td class="paramname"> <em>pfilter</em> = <code><a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a>()</code></td><td>&nbsp;</td>
528
 
        </tr>
529
 
        <tr>
530
 
          <td></td>
531
 
          <td>)</td>
532
 
          <td></td><td></td><td width="100%"> const<code> [virtual]</code></td>
533
 
        </tr>
534
 
      </table>
535
 
</div>
536
 
<div class="memdoc">
537
 
 
538
 
<p>
539
 
Paint the plot into a given rectangle. Paint the contents of a <a class="el" href="class_qwt_plot.html">QwtPlot</a> instance into a given rectangle. 
540
 
<p>
541
 
<dl compact><dt><b>Parameters:</b></dt><dd>
542
 
  <table border="0" cellspacing="2" cellpadding="0">
543
 
    <tr><td valign="top"></td><td valign="top"><em>painter</em>&nbsp;</td><td>Painter </td></tr>
544
 
    <tr><td valign="top"></td><td valign="top"><em>plotRect</em>&nbsp;</td><td>Bounding rectangle </td></tr>
545
 
    <tr><td valign="top"></td><td valign="top"><em>pfilter</em>&nbsp;</td><td>Print filter </td></tr>
546
 
  </table>
547
 
</dl>
548
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> </dd></dl>
549
 
 
550
 
<p>
551
 
Definition at line <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">73</a> of file <a class="el" href="qwt__plot__print_8cpp-source.html">qwt_plot_print.cpp</a>.
552
 
<p>
553
 
References <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00157">QwtPlotPrintFilter::apply()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00177">axisEnabled()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00235">axisScaleDiv()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00144">axisScaleEngine()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, <a class="el" href="qwt__plot__layout_8cpp-source.html#l00253">QwtPlotLayout::canvasMargin()</a>, <a class="el" href="qwt__plot__layout_8cpp-source.html#l00442">QwtPlotLayout::canvasRect()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00375">QwtScaleWidget::endBorderDist()</a>, <a class="el" href="qwt__scale__div_8h-source.html#l00111">QwtScaleDiv::hBound()</a>, <a class="el" href="qwt__legend_8cpp-source.html#l00617">QwtLegend::isEmpty()</a>, <a class="el" href="qwt__scale__div_8h-source.html#l00102">QwtScaleDiv::lBound()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00257">legend()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00681">margin()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00384">QwtScaleWidget::margin()</a>, <a class="el" href="qwt__painter_8cpp-source.html#l00160">QwtPainter::metricsMap()</a>, <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00108">QwtPlotPrintFilter::options()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00228">plotLayout()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00467">printCanvas()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00280">printLegend()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00359">printScale()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00256">printTitle()</a>, <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00366">QwtPlotPrintFilter::reset()</a>, <a class="el" href="qwt__painter_8cpp-source.html#l00152">QwtPainter::resetMetricsMap()</a>, <a class="el" href="qwt__plot__layout_8cpp-source.html#l00427">QwtPlotLayout::scaleRect()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00248">QwtScaleWidget::setMargin()</a>, <a class="el" href="qwt__painter_8cpp-source.html#l00133">QwtPainter::setMetricsMap()</a>, <a class="el" href="qwt__scale__map_8cpp-source.html#l00194">QwtScaleMap::setPaintXInterval()</a>, <a class="el" href="qwt__scale__map_8cpp-source.html#l00153">QwtScaleMap::setScaleInterval()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00366">QwtScaleWidget::startBorderDist()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00240">titleLabel()</a>.
554
 
</div>
555
 
</div><p>
556
 
<a class="anchor" name="9156b14a6f67f6279a16fea063ce1d14"></a><!-- doxytag: member="QwtPlot::plotLayout" ref="9156b14a6f67f6279a16fea063ce1d14" args="()" -->
557
 
<div class="memitem">
558
 
<div class="memproto">
559
 
      <table class="memname">
560
 
        <tr>
561
 
          <td class="memname"><a class="el" href="class_qwt_plot_layout.html">QwtPlotLayout</a> * QwtPlot::plotLayout           </td>
562
 
          <td>(</td>
563
 
          <td class="paramname">          </td>
564
 
          <td>&nbsp;)&nbsp;</td>
565
 
          <td width="100%"></td>
566
 
        </tr>
567
 
      </table>
568
 
</div>
569
 
<div class="memdoc">
570
 
 
571
 
<p>
572
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the plot's title </dd></dl>
573
 
 
574
 
<p>
575
 
 
576
 
<p>
577
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00228">228</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
578
 
<p>
579
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00612">canvasMap()</a>, and <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>.
580
 
</div>
581
 
</div><p>
582
 
<a class="anchor" name="d4b695580cdf504dd0996177c56ebe0b"></a><!-- doxytag: member="QwtPlot::plotLayout" ref="d4b695580cdf504dd0996177c56ebe0b" args="() const" -->
583
 
<div class="memitem">
584
 
<div class="memproto">
585
 
      <table class="memname">
586
 
        <tr>
587
 
          <td class="memname">const <a class="el" href="class_qwt_plot_layout.html">QwtPlotLayout</a> * QwtPlot::plotLayout           </td>
588
 
          <td>(</td>
589
 
          <td class="paramname">          </td>
590
 
          <td>&nbsp;)&nbsp;</td>
591
 
          <td width="100%"> const</td>
592
 
        </tr>
593
 
      </table>
594
 
</div>
595
 
<div class="memdoc">
596
 
 
597
 
<p>
598
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the plot's titel label. </dd></dl>
599
 
 
600
 
<p>
601
 
 
602
 
<p>
603
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00234">234</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
604
 
</div>
605
 
</div><p>
606
 
<a class="anchor" name="26f01ba1c3c85308db6cac67c5f1159c"></a><!-- doxytag: member="QwtPlot::setMargin" ref="26f01ba1c3c85308db6cac67c5f1159c" args="(int margin)" -->
607
 
<div class="memitem">
608
 
<div class="memproto">
609
 
      <table class="memname">
610
 
        <tr>
611
 
          <td class="memname">void QwtPlot::setMargin           </td>
612
 
          <td>(</td>
613
 
          <td class="paramtype">int&nbsp;</td>
614
 
          <td class="paramname"> <em>margin</em>          </td>
615
 
          <td>&nbsp;)&nbsp;</td>
616
 
          <td width="100%"></td>
617
 
        </tr>
618
 
      </table>
619
 
</div>
620
 
<div class="memdoc">
621
 
 
622
 
<p>
623
 
Change the margin of the plot. The margin is the space around all components.<p>
624
 
<dl compact><dt><b>Parameters:</b></dt><dd>
625
 
  <table border="0" cellspacing="2" cellpadding="0">
626
 
    <tr><td valign="top"></td><td valign="top"><em>margin</em>&nbsp;</td><td>new margin </td></tr>
627
 
  </table>
628
 
</dl>
629
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot_layout.html#67fc75a6f4c4d368d629841df1c5e6a5">QwtPlotLayout::setMargin()</a>, <a class="el" href="class_qwt_plot.html#a1cd0fa079f2057df3ddb33355bf9536">margin()</a>, <a class="el" href="class_qwt_plot.html#9156b14a6f67f6279a16fea063ce1d14">plotLayout()</a> </dd></dl>
630
 
 
631
 
<p>
632
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00665">665</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
633
 
<p>
634
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00413">updateLayout()</a>.
635
 
</div>
636
 
</div><p>
637
 
<a class="anchor" name="a1cd0fa079f2057df3ddb33355bf9536"></a><!-- doxytag: member="QwtPlot::margin" ref="a1cd0fa079f2057df3ddb33355bf9536" args="() const" -->
638
 
<div class="memitem">
639
 
<div class="memproto">
640
 
      <table class="memname">
641
 
        <tr>
642
 
          <td class="memname">int QwtPlot::margin           </td>
643
 
          <td>(</td>
644
 
          <td class="paramname">          </td>
645
 
          <td>&nbsp;)&nbsp;</td>
646
 
          <td width="100%"> const</td>
647
 
        </tr>
648
 
      </table>
649
 
</div>
650
 
<div class="memdoc">
651
 
 
652
 
<p>
653
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>margin </dd></dl>
654
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#26f01ba1c3c85308db6cac67c5f1159c">setMargin()</a>, <a class="el" href="class_qwt_plot_layout.html#cd383d112d14e13d0c9a4371ef4ce7de">QwtPlotLayout::margin()</a>, <a class="el" href="class_qwt_plot.html#9156b14a6f67f6279a16fea063ce1d14">plotLayout()</a> </dd></dl>
655
 
 
656
 
<p>
657
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00681">681</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
658
 
<p>
659
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00612">canvasMap()</a>, and <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>.
660
 
</div>
661
 
</div><p>
662
 
<a class="anchor" name="9a7f0b219b404e5bed5dfca26c5c06a7"></a><!-- doxytag: member="QwtPlot::setTitle" ref="9a7f0b219b404e5bed5dfca26c5c06a7" args="(const QString &amp;)" -->
663
 
<div class="memitem">
664
 
<div class="memproto">
665
 
      <table class="memname">
666
 
        <tr>
667
 
          <td class="memname">void QwtPlot::setTitle           </td>
668
 
          <td>(</td>
669
 
          <td class="paramtype">const QString &amp;&nbsp;</td>
670
 
          <td class="paramname"> <em>title</em>          </td>
671
 
          <td>&nbsp;)&nbsp;</td>
672
 
          <td width="100%"></td>
673
 
        </tr>
674
 
      </table>
675
 
</div>
676
 
<div class="memdoc">
677
 
 
678
 
<p>
679
 
Change the plot's title <dl compact><dt><b>Parameters:</b></dt><dd>
680
 
  <table border="0" cellspacing="2" cellpadding="0">
681
 
    <tr><td valign="top"></td><td valign="top"><em>title</em>&nbsp;</td><td>New title </td></tr>
682
 
  </table>
683
 
</dl>
684
 
 
685
 
<p>
686
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00199">199</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
687
 
<p>
688
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00413">updateLayout()</a>.
689
 
<p>
690
 
Referenced by <a class="el" href="qwt__plot__xml_8cpp-source.html#l00012">applyProperties()</a>.
691
 
</div>
692
 
</div><p>
693
 
<a class="anchor" name="032ced8ddfad7483a372214954203719"></a><!-- doxytag: member="QwtPlot::setTitle" ref="032ced8ddfad7483a372214954203719" args="(const QwtText &amp;t)" -->
694
 
<div class="memitem">
695
 
<div class="memproto">
696
 
      <table class="memname">
697
 
        <tr>
698
 
          <td class="memname">void QwtPlot::setTitle           </td>
699
 
          <td>(</td>
700
 
          <td class="paramtype">const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;&nbsp;</td>
701
 
          <td class="paramname"> <em>title</em>          </td>
702
 
          <td>&nbsp;)&nbsp;</td>
703
 
          <td width="100%"></td>
704
 
        </tr>
705
 
      </table>
706
 
</div>
707
 
<div class="memdoc">
708
 
 
709
 
<p>
710
 
Change the plot's title <dl compact><dt><b>Parameters:</b></dt><dd>
711
 
  <table border="0" cellspacing="2" cellpadding="0">
712
 
    <tr><td valign="top"></td><td valign="top"><em>title</em>&nbsp;</td><td>New title </td></tr>
713
 
  </table>
714
 
</dl>
715
 
 
716
 
<p>
717
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00212">212</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
718
 
<p>
719
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00222">title()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00413">updateLayout()</a>.
720
 
</div>
721
 
</div><p>
722
 
<a class="anchor" name="fb56eb977718774dff0fb4127f200bb0"></a><!-- doxytag: member="QwtPlot::title" ref="fb56eb977718774dff0fb4127f200bb0" args="() const" -->
723
 
<div class="memitem">
724
 
<div class="memproto">
725
 
      <table class="memname">
726
 
        <tr>
727
 
          <td class="memname"><a class="el" href="class_qwt_text.html">QwtText</a> QwtPlot::title           </td>
728
 
          <td>(</td>
729
 
          <td class="paramname">          </td>
730
 
          <td>&nbsp;)&nbsp;</td>
731
 
          <td width="100%"> const</td>
732
 
        </tr>
733
 
      </table>
734
 
</div>
735
 
<div class="memdoc">
736
 
 
737
 
<p>
738
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the plot's title </dd></dl>
739
 
 
740
 
<p>
741
 
 
742
 
<p>
743
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00222">222</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
744
 
<p>
745
 
Referenced by <a class="el" href="qwt__plot__xml_8cpp-source.html#l00021">grabProperties()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00063">QwtPlot()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00572">setAxisTitle()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00212">setTitle()</a>.
746
 
</div>
747
 
</div><p>
748
 
<a class="anchor" name="c39356b86ed70ebf256a8ae964910206"></a><!-- doxytag: member="QwtPlot::titleLabel" ref="c39356b86ed70ebf256a8ae964910206" args="()" -->
749
 
<div class="memitem">
750
 
<div class="memproto">
751
 
      <table class="memname">
752
 
        <tr>
753
 
          <td class="memname"><a class="el" href="class_qwt_text_label.html">QwtTextLabel</a> * QwtPlot::titleLabel           </td>
754
 
          <td>(</td>
755
 
          <td class="paramname">          </td>
756
 
          <td>&nbsp;)&nbsp;</td>
757
 
          <td width="100%"></td>
758
 
        </tr>
759
 
      </table>
760
 
</div>
761
 
<div class="memdoc">
762
 
 
763
 
<p>
764
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the plot's titel label. </dd></dl>
765
 
 
766
 
<p>
767
 
 
768
 
<p>
769
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00240">240</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
770
 
<p>
771
 
Referenced by <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00157">QwtPlotPrintFilter::apply()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00256">printTitle()</a>, and <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00366">QwtPlotPrintFilter::reset()</a>.
772
 
</div>
773
 
</div><p>
774
 
<a class="anchor" name="09dcd60b8f2ce62904f4c21dcbfe2fa1"></a><!-- doxytag: member="QwtPlot::titleLabel" ref="09dcd60b8f2ce62904f4c21dcbfe2fa1" args="() const" -->
775
 
<div class="memitem">
776
 
<div class="memproto">
777
 
      <table class="memname">
778
 
        <tr>
779
 
          <td class="memname">const <a class="el" href="class_qwt_text_label.html">QwtTextLabel</a> * QwtPlot::titleLabel           </td>
780
 
          <td>(</td>
781
 
          <td class="paramname">          </td>
782
 
          <td>&nbsp;)&nbsp;</td>
783
 
          <td width="100%"> const</td>
784
 
        </tr>
785
 
      </table>
786
 
</div>
787
 
<div class="memdoc">
788
 
 
789
 
<p>
790
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the plot's titel label. </dd></dl>
791
 
 
792
 
<p>
793
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00248">248</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
794
 
</div>
795
 
</div><p>
796
 
<a class="anchor" name="afcc82150034fbeb393ceb9f54ba2f1a"></a><!-- doxytag: member="QwtPlot::canvas" ref="afcc82150034fbeb393ceb9f54ba2f1a" args="()" -->
797
 
<div class="memitem">
798
 
<div class="memproto">
799
 
      <table class="memname">
800
 
        <tr>
801
 
          <td class="memname"><a class="el" href="class_qwt_plot_canvas.html">QwtPlotCanvas</a> * QwtPlot::canvas           </td>
802
 
          <td>(</td>
803
 
          <td class="paramname">          </td>
804
 
          <td>&nbsp;)&nbsp;</td>
805
 
          <td width="100%"></td>
806
 
        </tr>
807
 
      </table>
808
 
</div>
809
 
<div class="memdoc">
810
 
 
811
 
<p>
812
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the plot's canvas </dd></dl>
813
 
 
814
 
<p>
815
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00275">275</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
816
 
<p>
817
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00716">canvasBackground()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00744">canvasLineWidth()</a>, <a class="el" href="qwt__plot__curve_8cpp-source.html#l00483">QwtPlotCurve::draw()</a>, <a class="el" href="qwt__plot__layout_8cpp-source.html#l00463">QwtPlotLayout::minimumSizeHint()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00467">printCanvas()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00363">replot()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00694">setCanvasBackground()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00733">setCanvasLineWidth()</a>.
818
 
</div>
819
 
</div><p>
820
 
<a class="anchor" name="0e45633c978e7514af0d7ad032359670"></a><!-- doxytag: member="QwtPlot::canvas" ref="0e45633c978e7514af0d7ad032359670" args="() const" -->
821
 
<div class="memitem">
822
 
<div class="memproto">
823
 
      <table class="memname">
824
 
        <tr>
825
 
          <td class="memname">const <a class="el" href="class_qwt_plot_canvas.html">QwtPlotCanvas</a> * QwtPlot::canvas           </td>
826
 
          <td>(</td>
827
 
          <td class="paramname">          </td>
828
 
          <td>&nbsp;)&nbsp;</td>
829
 
          <td width="100%"> const</td>
830
 
        </tr>
831
 
      </table>
832
 
</div>
833
 
<div class="memdoc">
834
 
 
835
 
<p>
836
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the plot's canvas </dd></dl>
837
 
 
838
 
<p>
839
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00283">283</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
840
 
</div>
841
 
</div><p>
842
 
<a class="anchor" name="1a56902d2109fcf709ad1dbd35f0b859"></a><!-- doxytag: member="QwtPlot::setCanvasBackground" ref="1a56902d2109fcf709ad1dbd35f0b859" args="(const QColor &amp;c)" -->
843
 
<div class="memitem">
844
 
<div class="memproto">
845
 
      <table class="memname">
846
 
        <tr>
847
 
          <td class="memname">void QwtPlot::setCanvasBackground           </td>
848
 
          <td>(</td>
849
 
          <td class="paramtype">const QColor &amp;&nbsp;</td>
850
 
          <td class="paramname"> <em>c</em>          </td>
851
 
          <td>&nbsp;)&nbsp;</td>
852
 
          <td width="100%"></td>
853
 
        </tr>
854
 
      </table>
855
 
</div>
856
 
<div class="memdoc">
857
 
 
858
 
<p>
859
 
Change the background of the plotting area. 
860
 
<p>
861
 
Sets c to QColorGroup::Background of all colorgroups of the palette of the canvas. Using <a class="el" href="class_qwt_plot.html#afcc82150034fbeb393ceb9f54ba2f1a">canvas()</a>-&gt;setPalette() is a more powerful way to set these colors. <dl compact><dt><b>Parameters:</b></dt><dd>
862
 
  <table border="0" cellspacing="2" cellpadding="0">
863
 
    <tr><td valign="top"></td><td valign="top"><em>c</em>&nbsp;</td><td>new background color </td></tr>
864
 
  </table>
865
 
</dl>
866
 
 
867
 
<p>
868
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00694">694</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
869
 
<p>
870
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00275">canvas()</a>.
871
 
<p>
872
 
Referenced by <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00157">QwtPlotPrintFilter::apply()</a>, and <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00366">QwtPlotPrintFilter::reset()</a>.
873
 
</div>
874
 
</div><p>
875
 
<a class="anchor" name="0094df4164c97de505e3dc6ad7be3385"></a><!-- doxytag: member="QwtPlot::canvasBackground" ref="0094df4164c97de505e3dc6ad7be3385" args="() const" -->
876
 
<div class="memitem">
877
 
<div class="memproto">
878
 
      <table class="memname">
879
 
        <tr>
880
 
          <td class="memname">const QColor &amp; QwtPlot::canvasBackground           </td>
881
 
          <td>(</td>
882
 
          <td class="paramname">          </td>
883
 
          <td>&nbsp;)&nbsp;</td>
884
 
          <td width="100%"> const</td>
885
 
        </tr>
886
 
      </table>
887
 
</div>
888
 
<div class="memdoc">
889
 
 
890
 
<p>
891
 
Nothing else than: <a class="el" href="class_qwt_plot.html#afcc82150034fbeb393ceb9f54ba2f1a">canvas()</a>-&gt;palette().color( QPalette::Normal, QColorGroup::Background);<p>
892
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the background color of the plotting area. </dd></dl>
893
 
 
894
 
<p>
895
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00716">716</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
896
 
<p>
897
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00275">canvas()</a>.
898
 
<p>
899
 
Referenced by <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00157">QwtPlotPrintFilter::apply()</a>.
900
 
</div>
901
 
</div><p>
902
 
<a class="anchor" name="5af96e90be286753d524bdb042917618"></a><!-- doxytag: member="QwtPlot::setCanvasLineWidth" ref="5af96e90be286753d524bdb042917618" args="(int w)" -->
903
 
<div class="memitem">
904
 
<div class="memproto">
905
 
      <table class="memname">
906
 
        <tr>
907
 
          <td class="memname">void QwtPlot::setCanvasLineWidth           </td>
908
 
          <td>(</td>
909
 
          <td class="paramtype">int&nbsp;</td>
910
 
          <td class="paramname"> <em>w</em>          </td>
911
 
          <td>&nbsp;)&nbsp;</td>
912
 
          <td width="100%"></td>
913
 
        </tr>
914
 
      </table>
915
 
</div>
916
 
<div class="memdoc">
917
 
 
918
 
<p>
919
 
Change the border width of the plotting area Nothing else than <a class="el" href="class_qwt_plot.html#afcc82150034fbeb393ceb9f54ba2f1a">canvas()</a>-&gt;setLineWidth(w), left for compatibility only. 
920
 
<p>
921
 
<dl compact><dt><b>Parameters:</b></dt><dd>
922
 
  <table border="0" cellspacing="2" cellpadding="0">
923
 
    <tr><td valign="top"></td><td valign="top"><em>w</em>&nbsp;</td><td>new border width </td></tr>
924
 
  </table>
925
 
</dl>
926
 
 
927
 
<p>
928
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00733">733</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
929
 
<p>
930
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00275">canvas()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00413">updateLayout()</a>.
931
 
</div>
932
 
</div><p>
933
 
<a class="anchor" name="d310af5a2b55bfc8b064c70afc8eb5e8"></a><!-- doxytag: member="QwtPlot::canvasLineWidth" ref="d310af5a2b55bfc8b064c70afc8eb5e8" args="() const" -->
934
 
<div class="memitem">
935
 
<div class="memproto">
936
 
      <table class="memname">
937
 
        <tr>
938
 
          <td class="memname">int QwtPlot::canvasLineWidth           </td>
939
 
          <td>(</td>
940
 
          <td class="paramname">          </td>
941
 
          <td>&nbsp;)&nbsp;</td>
942
 
          <td width="100%"> const</td>
943
 
        </tr>
944
 
      </table>
945
 
</div>
946
 
<div class="memdoc">
947
 
 
948
 
<p>
949
 
Nothing else than: <a class="el" href="class_qwt_plot.html#afcc82150034fbeb393ceb9f54ba2f1a">canvas()</a>-&gt;lineWidth(), left for compatibility only. <dl class="return" compact><dt><b>Returns:</b></dt><dd>the border width of the plotting area </dd></dl>
950
 
 
951
 
<p>
952
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00744">744</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
953
 
<p>
954
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00275">canvas()</a>.
955
 
</div>
956
 
</div><p>
957
 
<a class="anchor" name="44dc140e8503bb44da7921841f31051c"></a><!-- doxytag: member="QwtPlot::canvasMap" ref="44dc140e8503bb44da7921841f31051c" args="(int axisId) const" -->
958
 
<div class="memitem">
959
 
<div class="memproto">
960
 
      <table class="memname">
961
 
        <tr>
962
 
          <td class="memname"><a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a> QwtPlot::canvasMap           </td>
963
 
          <td>(</td>
964
 
          <td class="paramtype">int&nbsp;</td>
965
 
          <td class="paramname"> <em>axisId</em>          </td>
966
 
          <td>&nbsp;)&nbsp;</td>
967
 
          <td width="100%"> const<code> [virtual]</code></td>
968
 
        </tr>
969
 
      </table>
970
 
</div>
971
 
<div class="memdoc">
972
 
 
973
 
<p>
974
 
<dl compact><dt><b>Parameters:</b></dt><dd>
975
 
  <table border="0" cellspacing="2" cellpadding="0">
976
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>Axis </td></tr>
977
 
  </table>
978
 
</dl>
979
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>Map for the axis on the canvas. With this map pixel coordinates can translated to plot coordinates and vice versa. </dd></dl>
980
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a>, <a class="el" href="class_qwt_plot.html#d7b0d371abcd3c86a7ee77f97eca06c5">transform()</a>, <a class="el" href="class_qwt_plot.html#b98066e62e3a9f574f8f1d482974ef5c">invTransform()</a> </dd></dl>
981
 
 
982
 
<p>
983
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00612">612</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
984
 
<p>
985
 
References <a class="el" href="qwt__plot__axis_8cpp-source.html#l00177">axisEnabled()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00235">axisScaleDiv()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00144">axisScaleEngine()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, <a class="el" href="qwt__plot__layout_8cpp-source.html#l00253">QwtPlotLayout::canvasMargin()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00375">QwtScaleWidget::endBorderDist()</a>, <a class="el" href="qwt__scale__div_8h-source.html#l00111">QwtScaleDiv::hBound()</a>, <a class="el" href="qwt__scale__div_8h-source.html#l00102">QwtScaleDiv::lBound()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00681">margin()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00228">plotLayout()</a>, <a class="el" href="qwt__scale__map_8cpp-source.html#l00180">QwtScaleMap::setPaintInterval()</a>, <a class="el" href="qwt__scale__map_8cpp-source.html#l00153">QwtScaleMap::setScaleInterval()</a>, <a class="el" href="qwt__scale__map_8cpp-source.html#l00130">QwtScaleMap::setTransformation()</a>, and <a class="el" href="qwt__scale__widget_8cpp-source.html#l00366">QwtScaleWidget::startBorderDist()</a>.
986
 
<p>
987
 
Referenced by <a class="el" href="qwt__plot__curve_8cpp-source.html#l01190">QwtPlotCurve::closestPoint()</a>, <a class="el" href="qwt__plot__curve_8cpp-source.html#l00483">QwtPlotCurve::draw()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00554">drawCanvas()</a>, <a class="el" href="qwt__plot__picker_8cpp-source.html#l00332">QwtPlotPicker::invTransform()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00349">invTransform()</a>, <a class="el" href="qwt__plot__panner_8cpp-source.html#l00130">QwtPlotPanner::moveCanvas()</a>, <a class="el" href="qwt__plot__picker_8cpp-source.html#l00351">QwtPlotPicker::transform()</a>, and <a class="el" href="qwt__plot__axis_8cpp-source.html#l00365">transform()</a>.
988
 
</div>
989
 
</div><p>
990
 
<a class="anchor" name="b98066e62e3a9f574f8f1d482974ef5c"></a><!-- doxytag: member="QwtPlot::invTransform" ref="b98066e62e3a9f574f8f1d482974ef5c" args="(int axisId, int pos) const " -->
991
 
<div class="memitem">
992
 
<div class="memproto">
993
 
      <table class="memname">
994
 
        <tr>
995
 
          <td class="memname">double QwtPlot::invTransform           </td>
996
 
          <td>(</td>
997
 
          <td class="paramtype">int&nbsp;</td>
998
 
          <td class="paramname"> <em>axisId</em>, </td>
999
 
        </tr>
1000
 
        <tr>
1001
 
          <td class="paramkey"></td>
1002
 
          <td></td>
1003
 
          <td class="paramtype">int&nbsp;</td>
1004
 
          <td class="paramname"> <em>pos</em></td><td>&nbsp;</td>
1005
 
        </tr>
1006
 
        <tr>
1007
 
          <td></td>
1008
 
          <td>)</td>
1009
 
          <td></td><td></td><td width="100%"> const</td>
1010
 
        </tr>
1011
 
      </table>
1012
 
</div>
1013
 
<div class="memdoc">
1014
 
 
1015
 
<p>
1016
 
Transform the x or y coordinate of a position in the drawing region into a value. <dl compact><dt><b>Parameters:</b></dt><dd>
1017
 
  <table border="0" cellspacing="2" cellpadding="0">
1018
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1019
 
    <tr><td valign="top"></td><td valign="top"><em>pos</em>&nbsp;</td><td>position </td></tr>
1020
 
  </table>
1021
 
</dl>
1022
 
<dl class="warning" compact><dt><b>Warning:</b></dt><dd>The position can be an x or a y coordinate, depending on the specified axis. </dd></dl>
1023
 
 
1024
 
<p>
1025
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00349">349</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1026
 
<p>
1027
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00612">canvasMap()</a>.
1028
 
</div>
1029
 
</div><p>
1030
 
<a class="anchor" name="d7b0d371abcd3c86a7ee77f97eca06c5"></a><!-- doxytag: member="QwtPlot::transform" ref="d7b0d371abcd3c86a7ee77f97eca06c5" args="(int axisId, double value) const" -->
1031
 
<div class="memitem">
1032
 
<div class="memproto">
1033
 
      <table class="memname">
1034
 
        <tr>
1035
 
          <td class="memname">int QwtPlot::transform           </td>
1036
 
          <td>(</td>
1037
 
          <td class="paramtype">int&nbsp;</td>
1038
 
          <td class="paramname"> <em>axisId</em>, </td>
1039
 
        </tr>
1040
 
        <tr>
1041
 
          <td class="paramkey"></td>
1042
 
          <td></td>
1043
 
          <td class="paramtype">double&nbsp;</td>
1044
 
          <td class="paramname"> <em>value</em></td><td>&nbsp;</td>
1045
 
        </tr>
1046
 
        <tr>
1047
 
          <td></td>
1048
 
          <td>)</td>
1049
 
          <td></td><td></td><td width="100%"> const</td>
1050
 
        </tr>
1051
 
      </table>
1052
 
</div>
1053
 
<div class="memdoc">
1054
 
 
1055
 
<p>
1056
 
Transform a value into a coordinate in the plotting region. 
1057
 
<p>
1058
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1059
 
  <table border="0" cellspacing="2" cellpadding="0">
1060
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1061
 
    <tr><td valign="top"></td><td valign="top"><em>value</em>&nbsp;</td><td>value </td></tr>
1062
 
  </table>
1063
 
</dl>
1064
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>X or y coordinate in the plotting region corresponding to the value. </dd></dl>
1065
 
 
1066
 
<p>
1067
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00365">365</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1068
 
<p>
1069
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00612">canvasMap()</a>.
1070
 
</div>
1071
 
</div><p>
1072
 
<a class="anchor" name="619b65bb95090ab5a528e33a5014ae4f"></a><!-- doxytag: member="QwtPlot::axisScaleEngine" ref="619b65bb95090ab5a528e33a5014ae4f" args="(int axisId)" -->
1073
 
<div class="memitem">
1074
 
<div class="memproto">
1075
 
      <table class="memname">
1076
 
        <tr>
1077
 
          <td class="memname"><a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> * QwtPlot::axisScaleEngine           </td>
1078
 
          <td>(</td>
1079
 
          <td class="paramtype">int&nbsp;</td>
1080
 
          <td class="paramname"> <em>axisId</em>          </td>
1081
 
          <td>&nbsp;)&nbsp;</td>
1082
 
          <td width="100%"></td>
1083
 
        </tr>
1084
 
      </table>
1085
 
</div>
1086
 
<div class="memdoc">
1087
 
 
1088
 
<p>
1089
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>Scale engine for a specific axis </dd></dl>
1090
 
 
1091
 
<p>
1092
 
 
1093
 
<p>
1094
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00144">144</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1095
 
<p>
1096
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1097
 
<p>
1098
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00612">canvasMap()</a>, and <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>.
1099
 
</div>
1100
 
</div><p>
1101
 
<a class="anchor" name="358673463a8df0a65e58cd9d37223ff9"></a><!-- doxytag: member="QwtPlot::axisScaleEngine" ref="358673463a8df0a65e58cd9d37223ff9" args="(int axisId) const" -->
1102
 
<div class="memitem">
1103
 
<div class="memproto">
1104
 
      <table class="memname">
1105
 
        <tr>
1106
 
          <td class="memname">const <a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> * QwtPlot::axisScaleEngine           </td>
1107
 
          <td>(</td>
1108
 
          <td class="paramtype">int&nbsp;</td>
1109
 
          <td class="paramname"> <em>axisId</em>          </td>
1110
 
          <td>&nbsp;)&nbsp;</td>
1111
 
          <td width="100%"> const</td>
1112
 
        </tr>
1113
 
      </table>
1114
 
</div>
1115
 
<div class="memdoc">
1116
 
 
1117
 
<p>
1118
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>Scale engine for a specific axis </dd></dl>
1119
 
 
1120
 
<p>
1121
 
 
1122
 
<p>
1123
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00153">153</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1124
 
<p>
1125
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1126
 
</div>
1127
 
</div><p>
1128
 
<a class="anchor" name="bf09452377b53e584a5086354a134d78"></a><!-- doxytag: member="QwtPlot::setAxisScaleEngine" ref="bf09452377b53e584a5086354a134d78" args="(int axisId, QwtScaleEngine *)" -->
1129
 
<div class="memitem">
1130
 
<div class="memproto">
1131
 
      <table class="memname">
1132
 
        <tr>
1133
 
          <td class="memname">void QwtPlot::setAxisScaleEngine           </td>
1134
 
          <td>(</td>
1135
 
          <td class="paramtype">int&nbsp;</td>
1136
 
          <td class="paramname"> <em>axisId</em>, </td>
1137
 
        </tr>
1138
 
        <tr>
1139
 
          <td class="paramkey"></td>
1140
 
          <td></td>
1141
 
          <td class="paramtype"><a class="el" href="class_qwt_scale_engine.html">QwtScaleEngine</a> *&nbsp;</td>
1142
 
          <td class="paramname"> <em>scaleEngine</em></td><td>&nbsp;</td>
1143
 
        </tr>
1144
 
        <tr>
1145
 
          <td></td>
1146
 
          <td>)</td>
1147
 
          <td></td><td></td><td width="100%"></td>
1148
 
        </tr>
1149
 
      </table>
1150
 
</div>
1151
 
<div class="memdoc">
1152
 
 
1153
 
<p>
1154
 
Change the scale engine for an axis<p>
1155
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1156
 
  <table border="0" cellspacing="2" cellpadding="0">
1157
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1158
 
    <tr><td valign="top"></td><td valign="top"><em>scaleEngine</em>&nbsp;</td><td>Scale engine</td></tr>
1159
 
  </table>
1160
 
</dl>
1161
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#619b65bb95090ab5a528e33a5014ae4f">axisScaleEngine()</a> </dd></dl>
1162
 
 
1163
 
<p>
1164
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00128">128</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1165
 
<p>
1166
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00163">autoRefresh()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1167
 
</div>
1168
 
</div><p>
1169
 
<a class="anchor" name="8138eee4eb6989a1f6d93bd34b9c4cfa"></a><!-- doxytag: member="QwtPlot::setAxisAutoScale" ref="8138eee4eb6989a1f6d93bd34b9c4cfa" args="(int axisId)" -->
1170
 
<div class="memitem">
1171
 
<div class="memproto">
1172
 
      <table class="memname">
1173
 
        <tr>
1174
 
          <td class="memname">void QwtPlot::setAxisAutoScale           </td>
1175
 
          <td>(</td>
1176
 
          <td class="paramtype">int&nbsp;</td>
1177
 
          <td class="paramname"> <em>axisId</em>          </td>
1178
 
          <td>&nbsp;)&nbsp;</td>
1179
 
          <td width="100%"></td>
1180
 
        </tr>
1181
 
      </table>
1182
 
</div>
1183
 
<div class="memdoc">
1184
 
 
1185
 
<p>
1186
 
Enable autoscaling for a specified axis. 
1187
 
<p>
1188
 
This member function is used to switch back to autoscaling mode after a fixed scale has been set. Autoscaling is enabled by default.<p>
1189
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1190
 
  <table border="0" cellspacing="2" cellpadding="0">
1191
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1192
 
  </table>
1193
 
</dl>
1194
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#cef5ea818944b93b8695d0c16924eed6">QwtPlot::setAxisScale()</a>, <a class="el" href="class_qwt_plot.html#2365da57b983eb39752fa4f6378c225a">QwtPlot::setAxisScaleDiv()</a> </dd></dl>
1195
 
 
1196
 
<p>
1197
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00396">396</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1198
 
<p>
1199
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00163">autoRefresh()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1200
 
</div>
1201
 
</div><p>
1202
 
<a class="anchor" name="2f306d8f8ca37352a9c42ff55d5f960f"></a><!-- doxytag: member="QwtPlot::axisAutoScale" ref="2f306d8f8ca37352a9c42ff55d5f960f" args="(int axisId) const" -->
1203
 
<div class="memitem">
1204
 
<div class="memproto">
1205
 
      <table class="memname">
1206
 
        <tr>
1207
 
          <td class="memname">bool QwtPlot::axisAutoScale           </td>
1208
 
          <td>(</td>
1209
 
          <td class="paramtype">int&nbsp;</td>
1210
 
          <td class="paramname"> <em>axisId</em>          </td>
1211
 
          <td>&nbsp;)&nbsp;</td>
1212
 
          <td width="100%"> const</td>
1213
 
        </tr>
1214
 
      </table>
1215
 
</div>
1216
 
<div class="memdoc">
1217
 
 
1218
 
<p>
1219
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd><code>true</code> if autoscaling is enabled </dd></dl>
1220
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1221
 
  <table border="0" cellspacing="2" cellpadding="0">
1222
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1223
 
  </table>
1224
 
</dl>
1225
 
 
1226
 
<p>
1227
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00164">164</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1228
 
<p>
1229
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1230
 
<p>
1231
 
Referenced by <a class="el" href="qwt__plot__axis_8cpp-source.html#l00579">updateAxes()</a>.
1232
 
</div>
1233
 
</div><p>
1234
 
<a class="anchor" name="b644f7a0a0566ff776c89cc225ce37d7"></a><!-- doxytag: member="QwtPlot::enableAxis" ref="b644f7a0a0566ff776c89cc225ce37d7" args="(int axisId, bool tf=true)" -->
1235
 
<div class="memitem">
1236
 
<div class="memproto">
1237
 
      <table class="memname">
1238
 
        <tr>
1239
 
          <td class="memname">void QwtPlot::enableAxis           </td>
1240
 
          <td>(</td>
1241
 
          <td class="paramtype">int&nbsp;</td>
1242
 
          <td class="paramname"> <em>axisId</em>, </td>
1243
 
        </tr>
1244
 
        <tr>
1245
 
          <td class="paramkey"></td>
1246
 
          <td></td>
1247
 
          <td class="paramtype">bool&nbsp;</td>
1248
 
          <td class="paramname"> <em>tf</em> = <code>true</code></td><td>&nbsp;</td>
1249
 
        </tr>
1250
 
        <tr>
1251
 
          <td></td>
1252
 
          <td>)</td>
1253
 
          <td></td><td></td><td width="100%"></td>
1254
 
        </tr>
1255
 
      </table>
1256
 
</div>
1257
 
<div class="memdoc">
1258
 
 
1259
 
<p>
1260
 
Enable or disable a specified axis. 
1261
 
<p>
1262
 
When an axis is disabled, this only means that it is not visible on the screen. Curves, markers and can be attached to disabled axes, and transformation of screen coordinates into values works as normal.<p>
1263
 
Only xBottom and yLeft are enabled by default. <dl compact><dt><b>Parameters:</b></dt><dd>
1264
 
  <table border="0" cellspacing="2" cellpadding="0">
1265
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1266
 
    <tr><td valign="top"></td><td valign="top"><em>tf</em>&nbsp;</td><td><code>true</code> (enabled) or <code>false</code> (disabled) </td></tr>
1267
 
  </table>
1268
 
</dl>
1269
 
 
1270
 
<p>
1271
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00332">332</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1272
 
<p>
1273
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00413">updateLayout()</a>.
1274
 
</div>
1275
 
</div><p>
1276
 
<a class="anchor" name="a6d08ba153cb46662692611b5c38bbe0"></a><!-- doxytag: member="QwtPlot::axisEnabled" ref="a6d08ba153cb46662692611b5c38bbe0" args="(int axisId) const" -->
1277
 
<div class="memitem">
1278
 
<div class="memproto">
1279
 
      <table class="memname">
1280
 
        <tr>
1281
 
          <td class="memname">bool QwtPlot::axisEnabled           </td>
1282
 
          <td>(</td>
1283
 
          <td class="paramtype">int&nbsp;</td>
1284
 
          <td class="paramname"> <em>axisId</em>          </td>
1285
 
          <td>&nbsp;)&nbsp;</td>
1286
 
          <td width="100%"> const</td>
1287
 
        </tr>
1288
 
      </table>
1289
 
</div>
1290
 
<div class="memdoc">
1291
 
 
1292
 
<p>
1293
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd><code>true</code> if a specified axis is enabled </dd></dl>
1294
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1295
 
  <table border="0" cellspacing="2" cellpadding="0">
1296
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1297
 
  </table>
1298
 
</dl>
1299
 
 
1300
 
<p>
1301
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00177">177</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1302
 
<p>
1303
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1304
 
<p>
1305
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00612">canvasMap()</a>, <a class="el" href="qwt__plot__layout_8cpp-source.html#l00463">QwtPlotLayout::minimumSizeHint()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00359">printScale()</a>, <a class="el" href="qwt__plot__picker_8cpp-source.html#l00032">QwtPlotPicker::QwtPlotPicker()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00303">sizeHint()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00413">updateLayout()</a>.
1306
 
</div>
1307
 
</div><p>
1308
 
<a class="anchor" name="9a14e57652c016f40388a68e556917e3"></a><!-- doxytag: member="QwtPlot::setAxisFont" ref="9a14e57652c016f40388a68e556917e3" args="(int axisId, const QFont &amp;f)" -->
1309
 
<div class="memitem">
1310
 
<div class="memproto">
1311
 
      <table class="memname">
1312
 
        <tr>
1313
 
          <td class="memname">void QwtPlot::setAxisFont           </td>
1314
 
          <td>(</td>
1315
 
          <td class="paramtype">int&nbsp;</td>
1316
 
          <td class="paramname"> <em>axisId</em>, </td>
1317
 
        </tr>
1318
 
        <tr>
1319
 
          <td class="paramkey"></td>
1320
 
          <td></td>
1321
 
          <td class="paramtype">const QFont &amp;&nbsp;</td>
1322
 
          <td class="paramname"> <em>f</em></td><td>&nbsp;</td>
1323
 
        </tr>
1324
 
        <tr>
1325
 
          <td></td>
1326
 
          <td>)</td>
1327
 
          <td></td><td></td><td width="100%"></td>
1328
 
        </tr>
1329
 
      </table>
1330
 
</div>
1331
 
<div class="memdoc">
1332
 
 
1333
 
<p>
1334
 
Change the font of an axis. 
1335
 
<p>
1336
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1337
 
  <table border="0" cellspacing="2" cellpadding="0">
1338
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1339
 
    <tr><td valign="top"></td><td valign="top"><em>f</em>&nbsp;</td><td>font </td></tr>
1340
 
  </table>
1341
 
</dl>
1342
 
<dl class="warning" compact><dt><b>Warning:</b></dt><dd>This function changes the font of the tick labels, not of the axis title. </dd></dl>
1343
 
 
1344
 
<p>
1345
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00381">381</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1346
 
<p>
1347
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, and <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>.
1348
 
</div>
1349
 
</div><p>
1350
 
<a class="anchor" name="0469c6a1fcbc4d6f32c66b08b50b7e13"></a><!-- doxytag: member="QwtPlot::axisFont" ref="0469c6a1fcbc4d6f32c66b08b50b7e13" args="(int axisId) const" -->
1351
 
<div class="memitem">
1352
 
<div class="memproto">
1353
 
      <table class="memname">
1354
 
        <tr>
1355
 
          <td class="memname">QFont QwtPlot::axisFont           </td>
1356
 
          <td>(</td>
1357
 
          <td class="paramtype">int&nbsp;</td>
1358
 
          <td class="paramname"> <em>axisId</em>          </td>
1359
 
          <td>&nbsp;)&nbsp;</td>
1360
 
          <td width="100%"> const</td>
1361
 
        </tr>
1362
 
      </table>
1363
 
</div>
1364
 
<div class="memdoc">
1365
 
 
1366
 
<p>
1367
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the font of the scale labels for a specified axis </dd></dl>
1368
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1369
 
  <table border="0" cellspacing="2" cellpadding="0">
1370
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1371
 
  </table>
1372
 
</dl>
1373
 
 
1374
 
<p>
1375
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00189">189</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1376
 
<p>
1377
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, and <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>.
1378
 
</div>
1379
 
</div><p>
1380
 
<a class="anchor" name="cef5ea818944b93b8695d0c16924eed6"></a><!-- doxytag: member="QwtPlot::setAxisScale" ref="cef5ea818944b93b8695d0c16924eed6" args="(int axisId, double min, double max, double step=0)" -->
1381
 
<div class="memitem">
1382
 
<div class="memproto">
1383
 
      <table class="memname">
1384
 
        <tr>
1385
 
          <td class="memname">void QwtPlot::setAxisScale           </td>
1386
 
          <td>(</td>
1387
 
          <td class="paramtype">int&nbsp;</td>
1388
 
          <td class="paramname"> <em>axisId</em>, </td>
1389
 
        </tr>
1390
 
        <tr>
1391
 
          <td class="paramkey"></td>
1392
 
          <td></td>
1393
 
          <td class="paramtype">double&nbsp;</td>
1394
 
          <td class="paramname"> <em>min</em>, </td>
1395
 
        </tr>
1396
 
        <tr>
1397
 
          <td class="paramkey"></td>
1398
 
          <td></td>
1399
 
          <td class="paramtype">double&nbsp;</td>
1400
 
          <td class="paramname"> <em>max</em>, </td>
1401
 
        </tr>
1402
 
        <tr>
1403
 
          <td class="paramkey"></td>
1404
 
          <td></td>
1405
 
          <td class="paramtype">double&nbsp;</td>
1406
 
          <td class="paramname"> <em>stepSize</em> = <code>0</code></td><td>&nbsp;</td>
1407
 
        </tr>
1408
 
        <tr>
1409
 
          <td></td>
1410
 
          <td>)</td>
1411
 
          <td></td><td></td><td width="100%"></td>
1412
 
        </tr>
1413
 
      </table>
1414
 
</div>
1415
 
<div class="memdoc">
1416
 
 
1417
 
<p>
1418
 
Disable autoscaling and specify a fixed scale for a selected axis. 
1419
 
<p>
1420
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1421
 
  <table border="0" cellspacing="2" cellpadding="0">
1422
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1423
 
    <tr><td valign="top"></td><td valign="top"><em>min</em>&nbsp;</td><td></td></tr>
1424
 
    <tr><td valign="top"></td><td valign="top"><em>max</em>&nbsp;</td><td>minimum and maximum of the scale </td></tr>
1425
 
    <tr><td valign="top"></td><td valign="top"><em>stepSize</em>&nbsp;</td><td>Major step size. If <code>step == 0</code>, the step size is calculated automatically using the maxMajor setting. </td></tr>
1426
 
  </table>
1427
 
</dl>
1428
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#34df698558c9bd9c38bdd8ff04cc6c41">setAxisMaxMajor()</a>, <a class="el" href="class_qwt_plot.html#8138eee4eb6989a1f6d93bd34b9c4cfa">setAxisAutoScale()</a> </dd></dl>
1429
 
 
1430
 
<p>
1431
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00414">414</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1432
 
<p>
1433
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00163">autoRefresh()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1434
 
<p>
1435
 
Referenced by <a class="el" href="qwt__plot__panner_8cpp-source.html#l00130">QwtPlotPanner::moveCanvas()</a>, <a class="el" href="qwt__plot__zoomer_8cpp-source.html#l00379">QwtPlotZoomer::rescale()</a>, and <a class="el" href="qwt__plot__magnifier_8cpp-source.html#l00120">QwtPlotMagnifier::rescale()</a>.
1436
 
</div>
1437
 
</div><p>
1438
 
<a class="anchor" name="2365da57b983eb39752fa4f6378c225a"></a><!-- doxytag: member="QwtPlot::setAxisScaleDiv" ref="2365da57b983eb39752fa4f6378c225a" args="(int axisId, const QwtScaleDiv &amp;)" -->
1439
 
<div class="memitem">
1440
 
<div class="memproto">
1441
 
      <table class="memname">
1442
 
        <tr>
1443
 
          <td class="memname">void QwtPlot::setAxisScaleDiv           </td>
1444
 
          <td>(</td>
1445
 
          <td class="paramtype">int&nbsp;</td>
1446
 
          <td class="paramname"> <em>axisId</em>, </td>
1447
 
        </tr>
1448
 
        <tr>
1449
 
          <td class="paramkey"></td>
1450
 
          <td></td>
1451
 
          <td class="paramtype">const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> &amp;&nbsp;</td>
1452
 
          <td class="paramname"> <em>scaleDiv</em></td><td>&nbsp;</td>
1453
 
        </tr>
1454
 
        <tr>
1455
 
          <td></td>
1456
 
          <td>)</td>
1457
 
          <td></td><td></td><td width="100%"></td>
1458
 
        </tr>
1459
 
      </table>
1460
 
</div>
1461
 
<div class="memdoc">
1462
 
 
1463
 
<p>
1464
 
Disable autoscaling and specify a fixed scale for a selected axis. 
1465
 
<p>
1466
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1467
 
  <table border="0" cellspacing="2" cellpadding="0">
1468
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1469
 
    <tr><td valign="top"></td><td valign="top"><em>scaleDiv</em>&nbsp;</td><td>Scale division </td></tr>
1470
 
  </table>
1471
 
</dl>
1472
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#cef5ea818944b93b8695d0c16924eed6">setAxisScale()</a>, <a class="el" href="class_qwt_plot.html#8138eee4eb6989a1f6d93bd34b9c4cfa">setAxisAutoScale()</a> </dd></dl>
1473
 
 
1474
 
<p>
1475
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00437">437</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1476
 
<p>
1477
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00163">autoRefresh()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1478
 
</div>
1479
 
</div><p>
1480
 
<a class="anchor" name="956a14b08e016eb83768ff4187d3849d"></a><!-- doxytag: member="QwtPlot::setAxisScaleDraw" ref="956a14b08e016eb83768ff4187d3849d" args="(int axisId, QwtScaleDraw *)" -->
1481
 
<div class="memitem">
1482
 
<div class="memproto">
1483
 
      <table class="memname">
1484
 
        <tr>
1485
 
          <td class="memname">void QwtPlot::setAxisScaleDraw           </td>
1486
 
          <td>(</td>
1487
 
          <td class="paramtype">int&nbsp;</td>
1488
 
          <td class="paramname"> <em>axisId</em>, </td>
1489
 
        </tr>
1490
 
        <tr>
1491
 
          <td class="paramkey"></td>
1492
 
          <td></td>
1493
 
          <td class="paramtype"><a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> *&nbsp;</td>
1494
 
          <td class="paramname"> <em>scaleDraw</em></td><td>&nbsp;</td>
1495
 
        </tr>
1496
 
        <tr>
1497
 
          <td></td>
1498
 
          <td>)</td>
1499
 
          <td></td><td></td><td width="100%"></td>
1500
 
        </tr>
1501
 
      </table>
1502
 
</div>
1503
 
<div class="memdoc">
1504
 
 
1505
 
<p>
1506
 
Set a scale draw. 
1507
 
<p>
1508
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1509
 
  <table border="0" cellspacing="2" cellpadding="0">
1510
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1511
 
    <tr><td valign="top"></td><td valign="top"><em>scaleDraw</em>&nbsp;</td><td>object responsible for drawing scales.</td></tr>
1512
 
  </table>
1513
 
</dl>
1514
 
By passing scaleDraw it is possible to extend <a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> functionality and let it take place in <a class="el" href="class_qwt_plot.html">QwtPlot</a>. Please note that scaleDraw has to be created with new and will be deleted by the corresponding QwtScale member ( like a child object ).<p>
1515
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a>, <a class="el" href="class_qwt_scale_widget.html">QwtScaleWidget</a> </dd></dl>
1516
 
<dl class="warning" compact><dt><b>Warning:</b></dt><dd>The attributes of scaleDraw will be overwritten by those of the previous <a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a>. </dd></dl>
1517
 
 
1518
 
<p>
1519
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00465">465</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1520
 
<p>
1521
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00163">autoRefresh()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, and <a class="el" href="qwt__scale__widget_8cpp-source.html#l00321">QwtScaleWidget::setScaleDraw()</a>.
1522
 
</div>
1523
 
</div><p>
1524
 
<a class="anchor" name="85856d20d3904b0028b2f1ff7c65d113"></a><!-- doxytag: member="QwtPlot::axisStepSize" ref="85856d20d3904b0028b2f1ff7c65d113" args="(int axisId) const" -->
1525
 
<div class="memitem">
1526
 
<div class="memproto">
1527
 
      <table class="memname">
1528
 
        <tr>
1529
 
          <td class="memname">double QwtPlot::axisStepSize           </td>
1530
 
          <td>(</td>
1531
 
          <td class="paramtype">int&nbsp;</td>
1532
 
          <td class="paramname"> <em>axisId</em>          </td>
1533
 
          <td>&nbsp;)&nbsp;</td>
1534
 
          <td width="100%"> const</td>
1535
 
        </tr>
1536
 
      </table>
1537
 
</div>
1538
 
<div class="memdoc">
1539
 
 
1540
 
<p>
1541
 
Return the step size parameter, that has been set in setAxisScale. This doesn't need to be the step size of the current scale.<p>
1542
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1543
 
  <table border="0" cellspacing="2" cellpadding="0">
1544
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1545
 
  </table>
1546
 
</dl>
1547
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>step size parameter value</dd></dl>
1548
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#cef5ea818944b93b8695d0c16924eed6">setAxisScale</a> </dd></dl>
1549
 
 
1550
 
<p>
1551
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00300">300</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1552
 
<p>
1553
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1554
 
</div>
1555
 
</div><p>
1556
 
<a class="anchor" name="029086e7b26fcfeff5430d25a4df4f3e"></a><!-- doxytag: member="QwtPlot::axisScaleDiv" ref="029086e7b26fcfeff5430d25a4df4f3e" args="(int axisId) const" -->
1557
 
<div class="memitem">
1558
 
<div class="memproto">
1559
 
      <table class="memname">
1560
 
        <tr>
1561
 
          <td class="memname">const <a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> * QwtPlot::axisScaleDiv           </td>
1562
 
          <td>(</td>
1563
 
          <td class="paramtype">int&nbsp;</td>
1564
 
          <td class="paramname"> <em>axisId</em>          </td>
1565
 
          <td>&nbsp;)&nbsp;</td>
1566
 
          <td width="100%"> const</td>
1567
 
        </tr>
1568
 
      </table>
1569
 
</div>
1570
 
<div class="memdoc">
1571
 
 
1572
 
<p>
1573
 
Return the scale division of a specified axis. 
1574
 
<p>
1575
 
axisScaleDiv(axisId)-&gt;lBound(), axisScaleDiv(axisId)-&gt;hBound() are the current limits of the axis scale.<p>
1576
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1577
 
  <table border="0" cellspacing="2" cellpadding="0">
1578
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1579
 
  </table>
1580
 
</dl>
1581
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>Scale division</dd></dl>
1582
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a>, <a class="el" href="class_qwt_plot.html#2365da57b983eb39752fa4f6378c225a">setAxisScaleDiv</a> </dd></dl>
1583
 
 
1584
 
<p>
1585
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00235">235</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1586
 
<p>
1587
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1588
 
<p>
1589
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00612">canvasMap()</a>, <a class="el" href="qwt__plot__panner_8cpp-source.html#l00130">QwtPlotPanner::moveCanvas()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>, <a class="el" href="qwt__plot__zoomer_8cpp-source.html#l00379">QwtPlotZoomer::rescale()</a>, <a class="el" href="qwt__plot__magnifier_8cpp-source.html#l00120">QwtPlotMagnifier::rescale()</a>, <a class="el" href="qwt__plot__picker_8cpp-source.html#l00143">QwtPlotPicker::scaleRect()</a>, <a class="el" href="qwt__plot__scaleitem_8cpp-source.html#l00108">QwtPlotScaleItem::setScaleDivFromAxis()</a>, <a class="el" href="qwt__plot__scaleitem_8cpp-source.html#l00220">QwtPlotScaleItem::setScaleDraw()</a>, and <a class="el" href="qwt__plot__axis_8cpp-source.html#l00579">updateAxes()</a>.
1590
 
</div>
1591
 
</div><p>
1592
 
<a class="anchor" name="f20f32c68fdd8ae4adfeabf21eb6068b"></a><!-- doxytag: member="QwtPlot::axisScaleDiv" ref="f20f32c68fdd8ae4adfeabf21eb6068b" args="(int axisId)" -->
1593
 
<div class="memitem">
1594
 
<div class="memproto">
1595
 
      <table class="memname">
1596
 
        <tr>
1597
 
          <td class="memname"><a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a> * QwtPlot::axisScaleDiv           </td>
1598
 
          <td>(</td>
1599
 
          <td class="paramtype">int&nbsp;</td>
1600
 
          <td class="paramname"> <em>axisId</em>          </td>
1601
 
          <td>&nbsp;)&nbsp;</td>
1602
 
          <td width="100%"></td>
1603
 
        </tr>
1604
 
      </table>
1605
 
</div>
1606
 
<div class="memdoc">
1607
 
 
1608
 
<p>
1609
 
Return the scale division of a specified axis. 
1610
 
<p>
1611
 
axisScaleDiv(axisId)-&gt;lBound(), axisScaleDiv(axisId)-&gt;hBound() are the current limits of the axis scale.<p>
1612
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1613
 
  <table border="0" cellspacing="2" cellpadding="0">
1614
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1615
 
  </table>
1616
 
</dl>
1617
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>Scale division</dd></dl>
1618
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_div.html">QwtScaleDiv</a>, <a class="el" href="class_qwt_plot.html#2365da57b983eb39752fa4f6378c225a">setAxisScaleDiv</a> </dd></dl>
1619
 
 
1620
 
<p>
1621
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00254">254</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1622
 
<p>
1623
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1624
 
</div>
1625
 
</div><p>
1626
 
<a class="anchor" name="aedfff42d8aee875d7bec082e1382f9f"></a><!-- doxytag: member="QwtPlot::axisScaleDraw" ref="aedfff42d8aee875d7bec082e1382f9f" args="(int axisId) const" -->
1627
 
<div class="memitem">
1628
 
<div class="memproto">
1629
 
      <table class="memname">
1630
 
        <tr>
1631
 
          <td class="memname">const <a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> * QwtPlot::axisScaleDraw           </td>
1632
 
          <td>(</td>
1633
 
          <td class="paramtype">int&nbsp;</td>
1634
 
          <td class="paramname"> <em>axisId</em>          </td>
1635
 
          <td>&nbsp;)&nbsp;</td>
1636
 
          <td width="100%"> const</td>
1637
 
        </tr>
1638
 
      </table>
1639
 
</div>
1640
 
<div class="memdoc">
1641
 
 
1642
 
<p>
1643
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the scale draw of a specified axis </dd></dl>
1644
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1645
 
  <table border="0" cellspacing="2" cellpadding="0">
1646
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1647
 
  </table>
1648
 
</dl>
1649
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>specified scaleDraw for axis, or NULL if axis is invalid. </dd></dl>
1650
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> </dd></dl>
1651
 
 
1652
 
<p>
1653
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00268">268</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1654
 
<p>
1655
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, and <a class="el" href="qwt__scale__widget_8cpp-source.html#l00339">QwtScaleWidget::scaleDraw()</a>.
1656
 
</div>
1657
 
</div><p>
1658
 
<a class="anchor" name="bbb49f1730c3ea9f636c032f81e5a87e"></a><!-- doxytag: member="QwtPlot::axisScaleDraw" ref="bbb49f1730c3ea9f636c032f81e5a87e" args="(int axisId)" -->
1659
 
<div class="memitem">
1660
 
<div class="memproto">
1661
 
      <table class="memname">
1662
 
        <tr>
1663
 
          <td class="memname"><a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> * QwtPlot::axisScaleDraw           </td>
1664
 
          <td>(</td>
1665
 
          <td class="paramtype">int&nbsp;</td>
1666
 
          <td class="paramname"> <em>axisId</em>          </td>
1667
 
          <td>&nbsp;)&nbsp;</td>
1668
 
          <td width="100%"></td>
1669
 
        </tr>
1670
 
      </table>
1671
 
</div>
1672
 
<div class="memdoc">
1673
 
 
1674
 
<p>
1675
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the scale draw of a specified axis </dd></dl>
1676
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1677
 
  <table border="0" cellspacing="2" cellpadding="0">
1678
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1679
 
  </table>
1680
 
</dl>
1681
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>specified scaleDraw for axis, or NULL if axis is invalid. </dd></dl>
1682
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_draw.html">QwtScaleDraw</a> </dd></dl>
1683
 
 
1684
 
<p>
1685
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00282">282</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1686
 
<p>
1687
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, and <a class="el" href="qwt__scale__widget_8cpp-source.html#l00339">QwtScaleWidget::scaleDraw()</a>.
1688
 
</div>
1689
 
</div><p>
1690
 
<a class="anchor" name="8436c30175884d7643d68fd0dd236cd8"></a><!-- doxytag: member="QwtPlot::axisWidget" ref="8436c30175884d7643d68fd0dd236cd8" args="(int axisId) const" -->
1691
 
<div class="memitem">
1692
 
<div class="memproto">
1693
 
      <table class="memname">
1694
 
        <tr>
1695
 
          <td class="memname">const <a class="el" href="class_qwt_scale_widget.html">QwtScaleWidget</a> * QwtPlot::axisWidget           </td>
1696
 
          <td>(</td>
1697
 
          <td class="paramtype">int&nbsp;</td>
1698
 
          <td class="paramname"> <em>axisId</em>          </td>
1699
 
          <td>&nbsp;)&nbsp;</td>
1700
 
          <td width="100%"> const</td>
1701
 
        </tr>
1702
 
      </table>
1703
 
</div>
1704
 
<div class="memdoc">
1705
 
 
1706
 
<p>
1707
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>specified axis, or NULL if axisId is invalid. </dd></dl>
1708
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1709
 
  <table border="0" cellspacing="2" cellpadding="0">
1710
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1711
 
  </table>
1712
 
</dl>
1713
 
 
1714
 
<p>
1715
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">100</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1716
 
<p>
1717
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1718
 
<p>
1719
 
Referenced by <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00157">QwtPlotPrintFilter::apply()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00189">axisFont()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00268">axisScaleDraw()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00312">axisTitle()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00612">canvasMap()</a>, <a class="el" href="qwt__plot__layout_8cpp-source.html#l00463">QwtPlotLayout::minimumSizeHint()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00359">printScale()</a>, <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00366">QwtPlotPrintFilter::reset()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00381">setAxisFont()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00497">setAxisLabelRotation()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00465">setAxisScaleDraw()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00561">setAxisTitle()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00303">sizeHint()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00579">updateAxes()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00413">updateLayout()</a>.
1720
 
</div>
1721
 
</div><p>
1722
 
<a class="anchor" name="e3386e1d38f70864c4c019c0eb6a3d9d"></a><!-- doxytag: member="QwtPlot::axisWidget" ref="e3386e1d38f70864c4c019c0eb6a3d9d" args="(int axisId)" -->
1723
 
<div class="memitem">
1724
 
<div class="memproto">
1725
 
      <table class="memname">
1726
 
        <tr>
1727
 
          <td class="memname"><a class="el" href="class_qwt_scale_widget.html">QwtScaleWidget</a> * QwtPlot::axisWidget           </td>
1728
 
          <td>(</td>
1729
 
          <td class="paramtype">int&nbsp;</td>
1730
 
          <td class="paramname"> <em>axisId</em>          </td>
1731
 
          <td>&nbsp;)&nbsp;</td>
1732
 
          <td width="100%"></td>
1733
 
        </tr>
1734
 
      </table>
1735
 
</div>
1736
 
<div class="memdoc">
1737
 
 
1738
 
<p>
1739
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>specified axis, or NULL if axisId is invalid. </dd></dl>
1740
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1741
 
  <table border="0" cellspacing="2" cellpadding="0">
1742
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1743
 
  </table>
1744
 
</dl>
1745
 
 
1746
 
<p>
1747
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00112">112</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1748
 
<p>
1749
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1750
 
</div>
1751
 
</div><p>
1752
 
<a class="anchor" name="19f1b67fa79b80c712cf5f52b97ea0c5"></a><!-- doxytag: member="QwtPlot::setAxisLabelAlignment" ref="19f1b67fa79b80c712cf5f52b97ea0c5" args="(int axisId, Qt::Alignment)" -->
1753
 
<div class="memitem">
1754
 
<div class="memproto">
1755
 
      <table class="memname">
1756
 
        <tr>
1757
 
          <td class="memname">void QwtPlot::setAxisLabelAlignment           </td>
1758
 
          <td>(</td>
1759
 
          <td class="paramtype">int&nbsp;</td>
1760
 
          <td class="paramname"> <em>axisId</em>, </td>
1761
 
        </tr>
1762
 
        <tr>
1763
 
          <td class="paramkey"></td>
1764
 
          <td></td>
1765
 
          <td class="paramtype">Qt::Alignment&nbsp;</td>
1766
 
          <td class="paramname"> <em>alignment</em></td><td>&nbsp;</td>
1767
 
        </tr>
1768
 
        <tr>
1769
 
          <td></td>
1770
 
          <td>)</td>
1771
 
          <td></td><td></td><td width="100%"></td>
1772
 
        </tr>
1773
 
      </table>
1774
 
</div>
1775
 
<div class="memdoc">
1776
 
 
1777
 
<p>
1778
 
Change the alignment of the tick labels <dl compact><dt><b>Parameters:</b></dt><dd>
1779
 
  <table border="0" cellspacing="2" cellpadding="0">
1780
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1781
 
    <tr><td valign="top"></td><td valign="top"><em>alignment</em>&nbsp;</td><td>Or'd Qt::AlignmentFlags &lt;see qnamespace.h&gt; </td></tr>
1782
 
  </table>
1783
 
</dl>
1784
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_draw.html#3df0a1fe4a498ef028a5348e54bfaa7f">QwtScaleDraw::setLabelAlignment()</a> </dd></dl>
1785
 
 
1786
 
<p>
1787
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00483">483</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1788
 
</div>
1789
 
</div><p>
1790
 
<a class="anchor" name="d5fa7aa01c88eab38ad64b131584f977"></a><!-- doxytag: member="QwtPlot::setAxisLabelRotation" ref="d5fa7aa01c88eab38ad64b131584f977" args="(int axisId, double rotation)" -->
1791
 
<div class="memitem">
1792
 
<div class="memproto">
1793
 
      <table class="memname">
1794
 
        <tr>
1795
 
          <td class="memname">void QwtPlot::setAxisLabelRotation           </td>
1796
 
          <td>(</td>
1797
 
          <td class="paramtype">int&nbsp;</td>
1798
 
          <td class="paramname"> <em>axisId</em>, </td>
1799
 
        </tr>
1800
 
        <tr>
1801
 
          <td class="paramkey"></td>
1802
 
          <td></td>
1803
 
          <td class="paramtype">double&nbsp;</td>
1804
 
          <td class="paramname"> <em>rotation</em></td><td>&nbsp;</td>
1805
 
        </tr>
1806
 
        <tr>
1807
 
          <td></td>
1808
 
          <td>)</td>
1809
 
          <td></td><td></td><td width="100%"></td>
1810
 
        </tr>
1811
 
      </table>
1812
 
</div>
1813
 
<div class="memdoc">
1814
 
 
1815
 
<p>
1816
 
Rotate all tick labels <dl compact><dt><b>Parameters:</b></dt><dd>
1817
 
  <table border="0" cellspacing="2" cellpadding="0">
1818
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1819
 
    <tr><td valign="top"></td><td valign="top"><em>rotation</em>&nbsp;</td><td>Angle in degrees. When changing the label rotation, the label alignment might be adjusted too. </td></tr>
1820
 
  </table>
1821
 
</dl>
1822
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_scale_draw.html#bf5881339fddde65a00c1dd391023320">QwtScaleDraw::setLabelRotation()</a>, <a class="el" href="class_qwt_plot.html#19f1b67fa79b80c712cf5f52b97ea0c5">QwtPlot::setAxisLabelAlignment</a> </dd></dl>
1823
 
 
1824
 
<p>
1825
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00497">497</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1826
 
<p>
1827
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, and <a class="el" href="qwt__scale__widget_8cpp-source.html#l00310">QwtScaleWidget::setLabelRotation()</a>.
1828
 
</div>
1829
 
</div><p>
1830
 
<a class="anchor" name="5d60f1836e05e5cc5c7fe9570d6a608a"></a><!-- doxytag: member="QwtPlot::setAxisTitle" ref="5d60f1836e05e5cc5c7fe9570d6a608a" args="(int axisId, const QString &amp;)" -->
1831
 
<div class="memitem">
1832
 
<div class="memproto">
1833
 
      <table class="memname">
1834
 
        <tr>
1835
 
          <td class="memname">void QwtPlot::setAxisTitle           </td>
1836
 
          <td>(</td>
1837
 
          <td class="paramtype">int&nbsp;</td>
1838
 
          <td class="paramname"> <em>axisId</em>, </td>
1839
 
        </tr>
1840
 
        <tr>
1841
 
          <td class="paramkey"></td>
1842
 
          <td></td>
1843
 
          <td class="paramtype">const QString &amp;&nbsp;</td>
1844
 
          <td class="paramname"> <em>title</em></td><td>&nbsp;</td>
1845
 
        </tr>
1846
 
        <tr>
1847
 
          <td></td>
1848
 
          <td>)</td>
1849
 
          <td></td><td></td><td width="100%"></td>
1850
 
        </tr>
1851
 
      </table>
1852
 
</div>
1853
 
<div class="memdoc">
1854
 
 
1855
 
<p>
1856
 
Change the title of a specified axis. 
1857
 
<p>
1858
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1859
 
  <table border="0" cellspacing="2" cellpadding="0">
1860
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1861
 
    <tr><td valign="top"></td><td valign="top"><em>title</em>&nbsp;</td><td>axis title </td></tr>
1862
 
  </table>
1863
 
</dl>
1864
 
 
1865
 
<p>
1866
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00561">561</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1867
 
<p>
1868
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, and <a class="el" href="qwt__scale__widget_8cpp-source.html#l00150">QwtScaleWidget::setTitle()</a>.
1869
 
</div>
1870
 
</div><p>
1871
 
<a class="anchor" name="d134a193ab40ce33743365558d0303c4"></a><!-- doxytag: member="QwtPlot::setAxisTitle" ref="d134a193ab40ce33743365558d0303c4" args="(int axisId, const QwtText &amp;)" -->
1872
 
<div class="memitem">
1873
 
<div class="memproto">
1874
 
      <table class="memname">
1875
 
        <tr>
1876
 
          <td class="memname">void QwtPlot::setAxisTitle           </td>
1877
 
          <td>(</td>
1878
 
          <td class="paramtype">int&nbsp;</td>
1879
 
          <td class="paramname"> <em>axisId</em>, </td>
1880
 
        </tr>
1881
 
        <tr>
1882
 
          <td class="paramkey"></td>
1883
 
          <td></td>
1884
 
          <td class="paramtype">const <a class="el" href="class_qwt_text.html">QwtText</a> &amp;&nbsp;</td>
1885
 
          <td class="paramname"> <em>title</em></td><td>&nbsp;</td>
1886
 
        </tr>
1887
 
        <tr>
1888
 
          <td></td>
1889
 
          <td>)</td>
1890
 
          <td></td><td></td><td width="100%"></td>
1891
 
        </tr>
1892
 
      </table>
1893
 
</div>
1894
 
<div class="memdoc">
1895
 
 
1896
 
<p>
1897
 
Change the title of a specified axis. 
1898
 
<p>
1899
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1900
 
  <table border="0" cellspacing="2" cellpadding="0">
1901
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1902
 
    <tr><td valign="top"></td><td valign="top"><em>title</em>&nbsp;</td><td>axis title </td></tr>
1903
 
  </table>
1904
 
</dl>
1905
 
 
1906
 
<p>
1907
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00572">572</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1908
 
<p>
1909
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00150">QwtScaleWidget::setTitle()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00222">title()</a>.
1910
 
</div>
1911
 
</div><p>
1912
 
<a class="anchor" name="0132283508f41bc16e559a6688b8e106"></a><!-- doxytag: member="QwtPlot::axisTitle" ref="0132283508f41bc16e559a6688b8e106" args="(int axisId) const" -->
1913
 
<div class="memitem">
1914
 
<div class="memproto">
1915
 
      <table class="memname">
1916
 
        <tr>
1917
 
          <td class="memname"><a class="el" href="class_qwt_text.html">QwtText</a> QwtPlot::axisTitle           </td>
1918
 
          <td>(</td>
1919
 
          <td class="paramtype">int&nbsp;</td>
1920
 
          <td class="paramname"> <em>axisId</em>          </td>
1921
 
          <td>&nbsp;)&nbsp;</td>
1922
 
          <td width="100%"> const</td>
1923
 
        </tr>
1924
 
      </table>
1925
 
</div>
1926
 
<div class="memdoc">
1927
 
 
1928
 
<p>
1929
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the title of a specified axis </dd></dl>
1930
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1931
 
  <table border="0" cellspacing="2" cellpadding="0">
1932
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1933
 
  </table>
1934
 
</dl>
1935
 
 
1936
 
<p>
1937
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00312">312</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1938
 
<p>
1939
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, and <a class="el" href="qwt__scale__widget_8cpp-source.html#l00357">QwtScaleWidget::title()</a>.
1940
 
</div>
1941
 
</div><p>
1942
 
<a class="anchor" name="a45b271684d6202061f1afcfa70e7cf6"></a><!-- doxytag: member="QwtPlot::setAxisMaxMinor" ref="a45b271684d6202061f1afcfa70e7cf6" args="(int axisId, int maxMinor)" -->
1943
 
<div class="memitem">
1944
 
<div class="memproto">
1945
 
      <table class="memname">
1946
 
        <tr>
1947
 
          <td class="memname">void QwtPlot::setAxisMaxMinor           </td>
1948
 
          <td>(</td>
1949
 
          <td class="paramtype">int&nbsp;</td>
1950
 
          <td class="paramname"> <em>axisId</em>, </td>
1951
 
        </tr>
1952
 
        <tr>
1953
 
          <td class="paramkey"></td>
1954
 
          <td></td>
1955
 
          <td class="paramtype">int&nbsp;</td>
1956
 
          <td class="paramname"> <em>maxMinor</em></td><td>&nbsp;</td>
1957
 
        </tr>
1958
 
        <tr>
1959
 
          <td></td>
1960
 
          <td>)</td>
1961
 
          <td></td><td></td><td width="100%"></td>
1962
 
        </tr>
1963
 
      </table>
1964
 
</div>
1965
 
<div class="memdoc">
1966
 
 
1967
 
<p>
1968
 
Set the maximum number of minor scale intervals for a specified axis<p>
1969
 
<dl compact><dt><b>Parameters:</b></dt><dd>
1970
 
  <table border="0" cellspacing="2" cellpadding="0">
1971
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
1972
 
    <tr><td valign="top"></td><td valign="top"><em>maxMinor</em>&nbsp;</td><td>maximum number of minor steps </td></tr>
1973
 
  </table>
1974
 
</dl>
1975
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#14afbe0622b1b30c0ad5f725e1fc6b2a">axisMaxMinor()</a> </dd></dl>
1976
 
 
1977
 
<p>
1978
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00510">510</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
1979
 
<p>
1980
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00163">autoRefresh()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
1981
 
</div>
1982
 
</div><p>
1983
 
<a class="anchor" name="663fd43f9ccecc4f5390dcd01baa46c0"></a><!-- doxytag: member="QwtPlot::axisMaxMajor" ref="663fd43f9ccecc4f5390dcd01baa46c0" args="(int axisId) const" -->
1984
 
<div class="memitem">
1985
 
<div class="memproto">
1986
 
      <table class="memname">
1987
 
        <tr>
1988
 
          <td class="memname">int QwtPlot::axisMaxMajor           </td>
1989
 
          <td>(</td>
1990
 
          <td class="paramtype">int&nbsp;</td>
1991
 
          <td class="paramname"> <em>axisId</em>          </td>
1992
 
          <td>&nbsp;)&nbsp;</td>
1993
 
          <td width="100%"> const</td>
1994
 
        </tr>
1995
 
      </table>
1996
 
</div>
1997
 
<div class="memdoc">
1998
 
 
1999
 
<p>
2000
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the maximum number of major ticks for a specified axis </dd></dl>
2001
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2002
 
  <table border="0" cellspacing="2" cellpadding="0">
2003
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index sa <a class="el" href="class_qwt_plot.html#34df698558c9bd9c38bdd8ff04cc6c41">setAxisMaxMajor()</a> </td></tr>
2004
 
  </table>
2005
 
</dl>
2006
 
 
2007
 
<p>
2008
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00203">203</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
2009
 
<p>
2010
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
2011
 
</div>
2012
 
</div><p>
2013
 
<a class="anchor" name="34df698558c9bd9c38bdd8ff04cc6c41"></a><!-- doxytag: member="QwtPlot::setAxisMaxMajor" ref="34df698558c9bd9c38bdd8ff04cc6c41" args="(int axisId, int maxMajor)" -->
2014
 
<div class="memitem">
2015
 
<div class="memproto">
2016
 
      <table class="memname">
2017
 
        <tr>
2018
 
          <td class="memname">void QwtPlot::setAxisMaxMajor           </td>
2019
 
          <td>(</td>
2020
 
          <td class="paramtype">int&nbsp;</td>
2021
 
          <td class="paramname"> <em>axisId</em>, </td>
2022
 
        </tr>
2023
 
        <tr>
2024
 
          <td class="paramkey"></td>
2025
 
          <td></td>
2026
 
          <td class="paramtype">int&nbsp;</td>
2027
 
          <td class="paramname"> <em>maxMajor</em></td><td>&nbsp;</td>
2028
 
        </tr>
2029
 
        <tr>
2030
 
          <td></td>
2031
 
          <td>)</td>
2032
 
          <td></td><td></td><td width="100%"></td>
2033
 
        </tr>
2034
 
      </table>
2035
 
</div>
2036
 
<div class="memdoc">
2037
 
 
2038
 
<p>
2039
 
Set the maximum number of major scale intervals for a specified axis<p>
2040
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2041
 
  <table border="0" cellspacing="2" cellpadding="0">
2042
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
2043
 
    <tr><td valign="top"></td><td valign="top"><em>maxMajor</em>&nbsp;</td><td>maximum number of major steps </td></tr>
2044
 
  </table>
2045
 
</dl>
2046
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#663fd43f9ccecc4f5390dcd01baa46c0">axisMaxMajor()</a> </dd></dl>
2047
 
 
2048
 
<p>
2049
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00537">537</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
2050
 
<p>
2051
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00163">autoRefresh()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
2052
 
</div>
2053
 
</div><p>
2054
 
<a class="anchor" name="14afbe0622b1b30c0ad5f725e1fc6b2a"></a><!-- doxytag: member="QwtPlot::axisMaxMinor" ref="14afbe0622b1b30c0ad5f725e1fc6b2a" args="(int axisId) const" -->
2055
 
<div class="memitem">
2056
 
<div class="memproto">
2057
 
      <table class="memname">
2058
 
        <tr>
2059
 
          <td class="memname">int QwtPlot::axisMaxMinor           </td>
2060
 
          <td>(</td>
2061
 
          <td class="paramtype">int&nbsp;</td>
2062
 
          <td class="paramname"> <em>axisId</em>          </td>
2063
 
          <td>&nbsp;)&nbsp;</td>
2064
 
          <td width="100%"> const</td>
2065
 
        </tr>
2066
 
      </table>
2067
 
</div>
2068
 
<div class="memdoc">
2069
 
 
2070
 
<p>
2071
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the maximum number of minor ticks for a specified axis </dd></dl>
2072
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2073
 
  <table border="0" cellspacing="2" cellpadding="0">
2074
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index sa <a class="el" href="class_qwt_plot.html#a45b271684d6202061f1afcfa70e7cf6">setAxisMaxMinor()</a> </td></tr>
2075
 
  </table>
2076
 
</dl>
2077
 
 
2078
 
<p>
2079
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00216">216</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
2080
 
<p>
2081
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00753">axisValid()</a>.
2082
 
</div>
2083
 
</div><p>
2084
 
<a class="anchor" name="6e23cad2bce7b04a09f18fa139341d5c"></a><!-- doxytag: member="QwtPlot::insertLegend" ref="6e23cad2bce7b04a09f18fa139341d5c" args="(QwtLegend *, LegendPosition=QwtPlot::RightLegend, double ratio=-1.0)" -->
2085
 
<div class="memitem">
2086
 
<div class="memproto">
2087
 
      <table class="memname">
2088
 
        <tr>
2089
 
          <td class="memname">void QwtPlot::insertLegend           </td>
2090
 
          <td>(</td>
2091
 
          <td class="paramtype"><a class="el" href="class_qwt_legend.html">QwtLegend</a> *&nbsp;</td>
2092
 
          <td class="paramname"> <em>legend</em>, </td>
2093
 
        </tr>
2094
 
        <tr>
2095
 
          <td class="paramkey"></td>
2096
 
          <td></td>
2097
 
          <td class="paramtype"><a class="el" href="class_qwt_plot.html#31aacb65b5c049dde8c34a0d8482661b">QwtPlot::LegendPosition</a>&nbsp;</td>
2098
 
          <td class="paramname"> <em>pos</em> = <code>QwtPlot::RightLegend</code>, </td>
2099
 
        </tr>
2100
 
        <tr>
2101
 
          <td class="paramkey"></td>
2102
 
          <td></td>
2103
 
          <td class="paramtype">double&nbsp;</td>
2104
 
          <td class="paramname"> <em>ratio</em> = <code>-1.0</code></td><td>&nbsp;</td>
2105
 
        </tr>
2106
 
        <tr>
2107
 
          <td></td>
2108
 
          <td>)</td>
2109
 
          <td></td><td></td><td width="100%"></td>
2110
 
        </tr>
2111
 
      </table>
2112
 
</div>
2113
 
<div class="memdoc">
2114
 
 
2115
 
<p>
2116
 
Insert a legend. 
2117
 
<p>
2118
 
If the position legend is <code>QwtPlot::LeftLegend</code> or <code>QwtPlot::RightLegend</code> the legend will be organized in one column from top to down. Otherwise the legend items will be placed in a table with a best fit number of columns from left to right.<p>
2119
 
If pos != QwtPlot::ExternalLegend the plot widget will become parent of the legend. It will be deleted when the plot is deleted, or another legend is set with <a class="el" href="class_qwt_plot.html#6e23cad2bce7b04a09f18fa139341d5c">insertLegend()</a>.<p>
2120
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2121
 
  <table border="0" cellspacing="2" cellpadding="0">
2122
 
    <tr><td valign="top"></td><td valign="top"><em>legend</em>&nbsp;</td><td>Legend </td></tr>
2123
 
    <tr><td valign="top"></td><td valign="top"><em>pos</em>&nbsp;</td><td>The legend's position. For top/left position the number of colums will be limited to 1, otherwise it will be set to unlimited.</td></tr>
2124
 
    <tr><td valign="top"></td><td valign="top"><em>ratio</em>&nbsp;</td><td>Ratio between legend and the bounding rect of title, canvas and axes. The legend will be shrinked if it would need more space than the given ratio. The ratio is limited to ]0.0 .. 1.0]. In case of &lt;= 0.0 it will be reset to the default ratio. The default vertical/horizontal ratio is 0.33/0.5.</td></tr>
2125
 
  </table>
2126
 
</dl>
2127
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#ab1f2cf0e567e09a4c4bce3181c03ba0">legend()</a>, <a class="el" href="class_qwt_plot_layout.html#49106b180459ae7ee4b7f486cbb196e8">QwtPlotLayout::legendPosition()</a>, <a class="el" href="class_qwt_plot_layout.html#11c9695a68f95135841cb23212589f18">QwtPlotLayout::setLegendPosition()</a> </dd></dl>
2128
 
 
2129
 
<p>
2130
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00822">822</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2131
 
<p>
2132
 
References <a class="el" href="qwt__plot__dict_8cpp-source.html#l00186">QwtPlotDict::itemList()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00257">legend()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00413">updateLayout()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00477">updateTabOrder()</a>.
2133
 
</div>
2134
 
</div><p>
2135
 
<a class="anchor" name="ab1f2cf0e567e09a4c4bce3181c03ba0"></a><!-- doxytag: member="QwtPlot::legend" ref="ab1f2cf0e567e09a4c4bce3181c03ba0" args="()" -->
2136
 
<div class="memitem">
2137
 
<div class="memproto">
2138
 
      <table class="memname">
2139
 
        <tr>
2140
 
          <td class="memname"><a class="el" href="class_qwt_legend.html">QwtLegend</a> * QwtPlot::legend           </td>
2141
 
          <td>(</td>
2142
 
          <td class="paramname">          </td>
2143
 
          <td>&nbsp;)&nbsp;</td>
2144
 
          <td width="100%"></td>
2145
 
        </tr>
2146
 
      </table>
2147
 
</div>
2148
 
<div class="memdoc">
2149
 
 
2150
 
<p>
2151
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the plot's legend </dd></dl>
2152
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#6e23cad2bce7b04a09f18fa139341d5c">insertLegend()</a> </dd></dl>
2153
 
 
2154
 
<p>
2155
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00257">257</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2156
 
<p>
2157
 
Referenced by <a class="el" href="qwt__plot__layout_8cpp-source.html#l01022">QwtPlotLayout::activate()</a>, <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00157">QwtPlotPrintFilter::apply()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00822">insertLegend()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00280">printLegend()</a>, and <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00366">QwtPlotPrintFilter::reset()</a>.
2158
 
</div>
2159
 
</div><p>
2160
 
<a class="anchor" name="f8ac9c9332b8625699d38d3d79354c57"></a><!-- doxytag: member="QwtPlot::legend" ref="f8ac9c9332b8625699d38d3d79354c57" args="() const" -->
2161
 
<div class="memitem">
2162
 
<div class="memproto">
2163
 
      <table class="memname">
2164
 
        <tr>
2165
 
          <td class="memname">const <a class="el" href="class_qwt_legend.html">QwtLegend</a> * QwtPlot::legend           </td>
2166
 
          <td>(</td>
2167
 
          <td class="paramname">          </td>
2168
 
          <td>&nbsp;)&nbsp;</td>
2169
 
          <td width="100%"> const</td>
2170
 
        </tr>
2171
 
      </table>
2172
 
</div>
2173
 
<div class="memdoc">
2174
 
 
2175
 
<p>
2176
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd>the plot's legend </dd></dl>
2177
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#6e23cad2bce7b04a09f18fa139341d5c">insertLegend()</a> </dd></dl>
2178
 
 
2179
 
<p>
2180
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00266">266</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2181
 
</div>
2182
 
</div><p>
2183
 
<a class="anchor" name="99ad643676cf0cd5f11478f154102df2"></a><!-- doxytag: member="QwtPlot::polish" ref="99ad643676cf0cd5f11478f154102df2" args="()" -->
2184
 
<div class="memitem">
2185
 
<div class="memproto">
2186
 
      <table class="memname">
2187
 
        <tr>
2188
 
          <td class="memname">void QwtPlot::polish           </td>
2189
 
          <td>(</td>
2190
 
          <td class="paramname">          </td>
2191
 
          <td>&nbsp;)&nbsp;</td>
2192
 
          <td width="100%"><code> [virtual]</code></td>
2193
 
        </tr>
2194
 
      </table>
2195
 
</div>
2196
 
<div class="memdoc">
2197
 
 
2198
 
<p>
2199
 
Polish. 
2200
 
<p>
2201
 
 
2202
 
<p>
2203
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00289">289</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2204
 
<p>
2205
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00363">replot()</a>.
2206
 
<p>
2207
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00140">event()</a>.
2208
 
</div>
2209
 
</div><p>
2210
 
<a class="anchor" name="2f57c941dd36f96c395b339474418fba"></a><!-- doxytag: member="QwtPlot::sizeHint" ref="2f57c941dd36f96c395b339474418fba" args="() const" -->
2211
 
<div class="memitem">
2212
 
<div class="memproto">
2213
 
      <table class="memname">
2214
 
        <tr>
2215
 
          <td class="memname">QSize QwtPlot::sizeHint           </td>
2216
 
          <td>(</td>
2217
 
          <td class="paramname">          </td>
2218
 
          <td>&nbsp;)&nbsp;</td>
2219
 
          <td width="100%"> const<code> [virtual]</code></td>
2220
 
        </tr>
2221
 
      </table>
2222
 
</div>
2223
 
<div class="memdoc">
2224
 
 
2225
 
<p>
2226
 
Return sizeHint <dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#1f013570f561aba1af14b5c98da2132b">minimumSizeHint()</a> </dd></dl>
2227
 
 
2228
 
<p>
2229
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00303">303</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2230
 
<p>
2231
 
References <a class="el" href="qwt__plot__axis_8cpp-source.html#l00177">axisEnabled()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00338">minimumSizeHint()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00697">QwtScaleWidget::minimumSizeHint()</a>, <a class="el" href="qwt__abstract__scale__draw_8cpp-source.html#l00138">QwtAbstractScaleDraw::scaleDiv()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00339">QwtScaleWidget::scaleDraw()</a>, and <a class="el" href="qwt__scale__div_8cpp-source.html#l00160">QwtScaleDiv::ticks()</a>.
2232
 
</div>
2233
 
</div><p>
2234
 
<a class="anchor" name="1f013570f561aba1af14b5c98da2132b"></a><!-- doxytag: member="QwtPlot::minimumSizeHint" ref="1f013570f561aba1af14b5c98da2132b" args="() const" -->
2235
 
<div class="memitem">
2236
 
<div class="memproto">
2237
 
      <table class="memname">
2238
 
        <tr>
2239
 
          <td class="memname">QSize QwtPlot::minimumSizeHint           </td>
2240
 
          <td>(</td>
2241
 
          <td class="paramname">          </td>
2242
 
          <td>&nbsp;)&nbsp;</td>
2243
 
          <td width="100%"> const<code> [virtual]</code></td>
2244
 
        </tr>
2245
 
      </table>
2246
 
</div>
2247
 
<div class="memdoc">
2248
 
 
2249
 
<p>
2250
 
Return a minimum size hint. 
2251
 
<p>
2252
 
 
2253
 
<p>
2254
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00338">338</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2255
 
<p>
2256
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00303">sizeHint()</a>.
2257
 
</div>
2258
 
</div><p>
2259
 
<a class="anchor" name="d470068832406086d6823109d8d7f050"></a><!-- doxytag: member="QwtPlot::updateLayout" ref="d470068832406086d6823109d8d7f050" args="()" -->
2260
 
<div class="memitem">
2261
 
<div class="memproto">
2262
 
      <table class="memname">
2263
 
        <tr>
2264
 
          <td class="memname">void QwtPlot::updateLayout           </td>
2265
 
          <td>(</td>
2266
 
          <td class="paramname">          </td>
2267
 
          <td>&nbsp;)&nbsp;</td>
2268
 
          <td width="100%"><code> [virtual]</code></td>
2269
 
        </tr>
2270
 
      </table>
2271
 
</div>
2272
 
<div class="memdoc">
2273
 
 
2274
 
<p>
2275
 
Adjust plot content to its current size. 
2276
 
<p>
2277
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#a4d5f73681880b9770bb6a604c415987">resizeEvent()</a> </dd></dl>
2278
 
 
2279
 
<p>
2280
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00413">413</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2281
 
<p>
2282
 
References <a class="el" href="qwt__plot__axis_8cpp-source.html#l00177">axisEnabled()</a>, and <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>.
2283
 
<p>
2284
 
Referenced by <a class="el" href="qwt__plot__axis_8cpp-source.html#l00332">enableAxis()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00140">event()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00822">insertLegend()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00347">resizeEvent()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00733">setCanvasLineWidth()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00665">setMargin()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00199">setTitle()</a>.
2285
 
</div>
2286
 
</div><p>
2287
 
<a class="anchor" name="f40d1bfdd9b6cd94e9981db8b254b961"></a><!-- doxytag: member="QwtPlot::event" ref="f40d1bfdd9b6cd94e9981db8b254b961" args="(QEvent *)" -->
2288
 
<div class="memitem">
2289
 
<div class="memproto">
2290
 
      <table class="memname">
2291
 
        <tr>
2292
 
          <td class="memname">bool QwtPlot::event           </td>
2293
 
          <td>(</td>
2294
 
          <td class="paramtype">QEvent *&nbsp;</td>
2295
 
          <td class="paramname">          </td>
2296
 
          <td>&nbsp;)&nbsp;</td>
2297
 
          <td width="100%"><code> [virtual]</code></td>
2298
 
        </tr>
2299
 
      </table>
2300
 
</div>
2301
 
<div class="memdoc">
2302
 
 
2303
 
<p>
2304
 
Adds handling of layout requests. 
2305
 
<p>
2306
 
 
2307
 
<p>
2308
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00140">140</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2309
 
<p>
2310
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00289">polish()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00413">updateLayout()</a>.
2311
 
</div>
2312
 
</div><p>
2313
 
<a class="anchor" name="52b75d5548fbe04539b6297de53a2222"></a><!-- doxytag: member="QwtPlot::legendClicked" ref="52b75d5548fbe04539b6297de53a2222" args="(QwtPlotItem *plotItem)" -->
2314
 
<div class="memitem">
2315
 
<div class="memproto">
2316
 
      <table class="memname">
2317
 
        <tr>
2318
 
          <td class="memname">void QwtPlot::legendClicked           </td>
2319
 
          <td>(</td>
2320
 
          <td class="paramtype"><a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a> *&nbsp;</td>
2321
 
          <td class="paramname"> <em>plotItem</em>          </td>
2322
 
          <td>&nbsp;)&nbsp;</td>
2323
 
          <td width="100%"><code> [signal]</code></td>
2324
 
        </tr>
2325
 
      </table>
2326
 
</div>
2327
 
<div class="memdoc">
2328
 
 
2329
 
<p>
2330
 
A signal which is emitted when the user has clicked on a legend item, which is in QwtLegend::ClickableItem mode.<p>
2331
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2332
 
  <table border="0" cellspacing="2" cellpadding="0">
2333
 
    <tr><td valign="top"></td><td valign="top"><em>plotItem</em>&nbsp;</td><td>Corresponding plot item of the selected legend item</td></tr>
2334
 
  </table>
2335
 
</dl>
2336
 
<dl class="note" compact><dt><b>Note:</b></dt><dd>clicks are disabled as default </dd></dl>
2337
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_legend.html#edd86919e56a407bcdd2ae867a672dd1">QwtLegend::setItemMode</a>, <a class="el" href="class_qwt_legend.html#f3c8c317c6233654b99ed6d4243a55a5">QwtLegend::itemMode</a> </dd></dl>
2338
 
 
2339
 
<p>
2340
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00762">legendItemClicked()</a>.
2341
 
</div>
2342
 
</div><p>
2343
 
<a class="anchor" name="bd9e17629dd7c142fed017ea5e347149"></a><!-- doxytag: member="QwtPlot::legendChecked" ref="bd9e17629dd7c142fed017ea5e347149" args="(QwtPlotItem *plotItem, bool on)" -->
2344
 
<div class="memitem">
2345
 
<div class="memproto">
2346
 
      <table class="memname">
2347
 
        <tr>
2348
 
          <td class="memname">void QwtPlot::legendChecked           </td>
2349
 
          <td>(</td>
2350
 
          <td class="paramtype"><a class="el" href="class_qwt_plot_item.html">QwtPlotItem</a> *&nbsp;</td>
2351
 
          <td class="paramname"> <em>plotItem</em>, </td>
2352
 
        </tr>
2353
 
        <tr>
2354
 
          <td class="paramkey"></td>
2355
 
          <td></td>
2356
 
          <td class="paramtype">bool&nbsp;</td>
2357
 
          <td class="paramname"> <em>on</em></td><td>&nbsp;</td>
2358
 
        </tr>
2359
 
        <tr>
2360
 
          <td></td>
2361
 
          <td>)</td>
2362
 
          <td></td><td></td><td width="100%"><code> [signal]</code></td>
2363
 
        </tr>
2364
 
      </table>
2365
 
</div>
2366
 
<div class="memdoc">
2367
 
 
2368
 
<p>
2369
 
A signal which is emitted when the user has clicked on a legend item, which is in QwtLegend::CheckableItem mode<p>
2370
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2371
 
  <table border="0" cellspacing="2" cellpadding="0">
2372
 
    <tr><td valign="top"></td><td valign="top"><em>plotItem</em>&nbsp;</td><td>Corresponding plot item of the selected legend item </td></tr>
2373
 
    <tr><td valign="top"></td><td valign="top"><em>on</em>&nbsp;</td><td>True when the legen item is checked</td></tr>
2374
 
  </table>
2375
 
</dl>
2376
 
<dl class="note" compact><dt><b>Note:</b></dt><dd>clicks are disabled as default </dd></dl>
2377
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_legend.html#edd86919e56a407bcdd2ae867a672dd1">QwtLegend::setItemMode</a>, <a class="el" href="class_qwt_legend.html#f3c8c317c6233654b99ed6d4243a55a5">QwtLegend::itemMode</a> </dd></dl>
2378
 
 
2379
 
<p>
2380
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00777">legendItemChecked()</a>.
2381
 
</div>
2382
 
</div><p>
2383
 
<a class="anchor" name="e2191d8ad33164b83aa2a14563f132a5"></a><!-- doxytag: member="QwtPlot::clear" ref="e2191d8ad33164b83aa2a14563f132a5" args="()" -->
2384
 
<div class="memitem">
2385
 
<div class="memproto">
2386
 
      <table class="memname">
2387
 
        <tr>
2388
 
          <td class="memname">void QwtPlot::clear           </td>
2389
 
          <td>(</td>
2390
 
          <td class="paramname">          </td>
2391
 
          <td>&nbsp;)&nbsp;</td>
2392
 
          <td width="100%"><code> [virtual, slot]</code></td>
2393
 
        </tr>
2394
 
      </table>
2395
 
</div>
2396
 
<div class="memdoc">
2397
 
 
2398
 
<p>
2399
 
Remove all curves and markers. 
2400
 
<p>
2401
 
 
2402
 
<p>
2403
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00789">789</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2404
 
<p>
2405
 
References <a class="el" href="qwt__plot__dict_8cpp-source.html#l00161">QwtPlotDict::detachItems()</a>.
2406
 
</div>
2407
 
</div><p>
2408
 
<a class="anchor" name="7b094e29b8e92b00e36517d0d7633c4b"></a><!-- doxytag: member="QwtPlot::replot" ref="7b094e29b8e92b00e36517d0d7633c4b" args="()" -->
2409
 
<div class="memitem">
2410
 
<div class="memproto">
2411
 
      <table class="memname">
2412
 
        <tr>
2413
 
          <td class="memname">void QwtPlot::replot           </td>
2414
 
          <td>(</td>
2415
 
          <td class="paramname">          </td>
2416
 
          <td>&nbsp;)&nbsp;</td>
2417
 
          <td width="100%"><code> [virtual, slot]</code></td>
2418
 
        </tr>
2419
 
      </table>
2420
 
</div>
2421
 
<div class="memdoc">
2422
 
 
2423
 
<p>
2424
 
Redraw the plot. 
2425
 
<p>
2426
 
If the autoReplot option is not set (which is the default) or if any curves are attached to raw data, the plot has to be refreshed explicitly in order to make changes visible.<p>
2427
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#654934ec2ad167101dacb5174f5172d6">setAutoReplot()</a> </dd></dl>
2428
 
<dl class="warning" compact><dt><b>Warning:</b></dt><dd>Calls <a class="el" href="class_qwt_plot.html#afcc82150034fbeb393ceb9f54ba2f1a">canvas()</a>-&gt;repaint, take care of infinite recursions </dd></dl>
2429
 
 
2430
 
<p>
2431
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00363">363</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2432
 
<p>
2433
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00190">autoReplot()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00275">canvas()</a>, <a class="el" href="qwt__plot__canvas_8cpp-source.html#l00185">QwtPlotCanvas::invalidatePaintCache()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00184">setAutoReplot()</a>, <a class="el" href="qwt__plot__canvas_8cpp-source.html#l00167">QwtPlotCanvas::testPaintAttribute()</a>, and <a class="el" href="qwt__plot__axis_8cpp-source.html#l00579">updateAxes()</a>.
2434
 
<p>
2435
 
Referenced by <a class="el" href="qwt__plot__xml_8cpp-source.html#l00012">applyProperties()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00163">autoRefresh()</a>, <a class="el" href="qwt__plot__panner_8cpp-source.html#l00130">QwtPlotPanner::moveCanvas()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00289">polish()</a>, <a class="el" href="qwt__plot__zoomer_8cpp-source.html#l00379">QwtPlotZoomer::rescale()</a>, <a class="el" href="qwt__plot__magnifier_8cpp-source.html#l00120">QwtPlotMagnifier::rescale()</a>, and <a class="el" href="qwt__plot__zoomer_8cpp-source.html#l00206">QwtPlotZoomer::setZoomBase()</a>.
2436
 
</div>
2437
 
</div><p>
2438
 
<a class="anchor" name="ea78ab565d05b69b8730a4af2a11f07e"></a><!-- doxytag: member="QwtPlot::autoRefresh" ref="ea78ab565d05b69b8730a4af2a11f07e" args="()" -->
2439
 
<div class="memitem">
2440
 
<div class="memproto">
2441
 
      <table class="memname">
2442
 
        <tr>
2443
 
          <td class="memname">void QwtPlot::autoRefresh           </td>
2444
 
          <td>(</td>
2445
 
          <td class="paramname">          </td>
2446
 
          <td>&nbsp;)&nbsp;</td>
2447
 
          <td width="100%"><code> [slot]</code></td>
2448
 
        </tr>
2449
 
      </table>
2450
 
</div>
2451
 
<div class="memdoc">
2452
 
 
2453
 
<p>
2454
 
Replots the plot if <a class="el" href="class_qwt_plot.html#3a639850b65bc4dbf22b3f3170d61804">QwtPlot::autoReplot()</a> is <code>true</code>. 
2455
 
<p>
2456
 
 
2457
 
<p>
2458
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00163">163</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2459
 
<p>
2460
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00363">replot()</a>.
2461
 
<p>
2462
 
Referenced by <a class="el" href="qwt__plot__axis_8cpp-source.html#l00396">setAxisAutoScale()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00537">setAxisMaxMajor()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00510">setAxisMaxMinor()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00414">setAxisScale()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00437">setAxisScaleDiv()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00465">setAxisScaleDraw()</a>, and <a class="el" href="qwt__plot__axis_8cpp-source.html#l00128">setAxisScaleEngine()</a>.
2463
 
</div>
2464
 
</div><p>
2465
 
<a class="anchor" name="e1b53fe373a12b1558fca37fdc2f0a54"></a><!-- doxytag: member="QwtPlot::legendItemClicked" ref="e1b53fe373a12b1558fca37fdc2f0a54" args="()" -->
2466
 
<div class="memitem">
2467
 
<div class="memproto">
2468
 
      <table class="memname">
2469
 
        <tr>
2470
 
          <td class="memname">void QwtPlot::legendItemClicked           </td>
2471
 
          <td>(</td>
2472
 
          <td class="paramname">          </td>
2473
 
          <td>&nbsp;)&nbsp;</td>
2474
 
          <td width="100%"><code> [protected, virtual, slot]</code></td>
2475
 
        </tr>
2476
 
      </table>
2477
 
</div>
2478
 
<div class="memdoc">
2479
 
 
2480
 
<p>
2481
 
Called internally when the legend has been clicked on. Emits a <a class="el" href="class_qwt_plot.html#52b75d5548fbe04539b6297de53a2222">legendClicked()</a> signal. 
2482
 
<p>
2483
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00762">762</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2484
 
<p>
2485
 
References <a class="el" href="class_qwt_plot.html#52b75d5548fbe04539b6297de53a2222">legendClicked()</a>.
2486
 
</div>
2487
 
</div><p>
2488
 
<a class="anchor" name="d41768a65a7cc426091c89d54e3c2ab2"></a><!-- doxytag: member="QwtPlot::legendItemChecked" ref="d41768a65a7cc426091c89d54e3c2ab2" args="(bool)" -->
2489
 
<div class="memitem">
2490
 
<div class="memproto">
2491
 
      <table class="memname">
2492
 
        <tr>
2493
 
          <td class="memname">void QwtPlot::legendItemChecked           </td>
2494
 
          <td>(</td>
2495
 
          <td class="paramtype">bool&nbsp;</td>
2496
 
          <td class="paramname"> <em>on</em>          </td>
2497
 
          <td>&nbsp;)&nbsp;</td>
2498
 
          <td width="100%"><code> [protected, virtual, slot]</code></td>
2499
 
        </tr>
2500
 
      </table>
2501
 
</div>
2502
 
<div class="memdoc">
2503
 
 
2504
 
<p>
2505
 
Called internally when the legend has been checked Emits a <a class="el" href="class_qwt_plot.html#52b75d5548fbe04539b6297de53a2222">legendClicked()</a> signal. 
2506
 
<p>
2507
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00777">777</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2508
 
<p>
2509
 
References <a class="el" href="class_qwt_plot.html#bd9e17629dd7c142fed017ea5e347149">legendChecked()</a>.
2510
 
</div>
2511
 
</div><p>
2512
 
<a class="anchor" name="c02c033b024a4ecbefcf1b0e93c91205"></a><!-- doxytag: member="QwtPlot::axisValid" ref="c02c033b024a4ecbefcf1b0e93c91205" args="(int axisId)" -->
2513
 
<div class="memitem">
2514
 
<div class="memproto">
2515
 
      <table class="memname">
2516
 
        <tr>
2517
 
          <td class="memname">bool QwtPlot::axisValid           </td>
2518
 
          <td>(</td>
2519
 
          <td class="paramtype">int&nbsp;</td>
2520
 
          <td class="paramname"> <em>axisId</em>          </td>
2521
 
          <td>&nbsp;)&nbsp;</td>
2522
 
          <td width="100%"><code> [static, protected]</code></td>
2523
 
        </tr>
2524
 
      </table>
2525
 
</div>
2526
 
<div class="memdoc">
2527
 
 
2528
 
<p>
2529
 
<dl class="return" compact><dt><b>Returns:</b></dt><dd><code>true</code> if the specified axis exists, otherwise <code>false</code> </dd></dl>
2530
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2531
 
  <table border="0" cellspacing="2" cellpadding="0">
2532
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>axis index </td></tr>
2533
 
  </table>
2534
 
</dl>
2535
 
 
2536
 
<p>
2537
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00753">753</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2538
 
<p>
2539
 
Referenced by <a class="el" href="qwt__plot__axis_8cpp-source.html#l00164">axisAutoScale()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00177">axisEnabled()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00189">axisFont()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00203">axisMaxMajor()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00216">axisMaxMinor()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00235">axisScaleDiv()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00268">axisScaleDraw()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00144">axisScaleEngine()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00300">axisStepSize()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00312">axisTitle()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00332">enableAxis()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00349">invTransform()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00396">setAxisAutoScale()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00381">setAxisFont()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00497">setAxisLabelRotation()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00537">setAxisMaxMajor()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00510">setAxisMaxMinor()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00414">setAxisScale()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00437">setAxisScaleDiv()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00465">setAxisScaleDraw()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00128">setAxisScaleEngine()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00561">setAxisTitle()</a>, and <a class="el" href="qwt__plot__axis_8cpp-source.html#l00365">transform()</a>.
2540
 
</div>
2541
 
</div><p>
2542
 
<a class="anchor" name="dd1b88d8312e2671652d23f8181f2433"></a><!-- doxytag: member="QwtPlot::drawCanvas" ref="dd1b88d8312e2671652d23f8181f2433" args="(QPainter *)" -->
2543
 
<div class="memitem">
2544
 
<div class="memproto">
2545
 
      <table class="memname">
2546
 
        <tr>
2547
 
          <td class="memname">void QwtPlot::drawCanvas           </td>
2548
 
          <td>(</td>
2549
 
          <td class="paramtype">QPainter *&nbsp;</td>
2550
 
          <td class="paramname"> <em>painter</em>          </td>
2551
 
          <td>&nbsp;)&nbsp;</td>
2552
 
          <td width="100%"><code> [protected, virtual]</code></td>
2553
 
        </tr>
2554
 
      </table>
2555
 
</div>
2556
 
<div class="memdoc">
2557
 
 
2558
 
<p>
2559
 
Redraw the canvas. <dl compact><dt><b>Parameters:</b></dt><dd>
2560
 
  <table border="0" cellspacing="2" cellpadding="0">
2561
 
    <tr><td valign="top"></td><td valign="top"><em>painter</em>&nbsp;</td><td>Painter used for drawing</td></tr>
2562
 
  </table>
2563
 
</dl>
2564
 
<dl class="warning" compact><dt><b>Warning:</b></dt><dd>drawCanvas calls drawItems what is also used for printing. Applications that like to add individual plot items better overload <a class="el" href="class_qwt_plot.html#e36e68025f4f8b460d690ea7c7a04d9e">drawItems()</a> </dd></dl>
2565
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot.html#e36e68025f4f8b460d690ea7c7a04d9e">drawItems()</a> </dd></dl>
2566
 
 
2567
 
<p>
2568
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00554">554</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2569
 
<p>
2570
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00612">canvasMap()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00572">drawItems()</a>.
2571
 
</div>
2572
 
</div><p>
2573
 
<a class="anchor" name="e36e68025f4f8b460d690ea7c7a04d9e"></a><!-- doxytag: member="QwtPlot::drawItems" ref="e36e68025f4f8b460d690ea7c7a04d9e" args="(QPainter *, const QRect &amp;, const QwtScaleMap maps[axisCnt], const QwtPlotPrintFilter &amp;) const" -->
2574
 
<div class="memitem">
2575
 
<div class="memproto">
2576
 
      <table class="memname">
2577
 
        <tr>
2578
 
          <td class="memname">void QwtPlot::drawItems           </td>
2579
 
          <td>(</td>
2580
 
          <td class="paramtype">QPainter *&nbsp;</td>
2581
 
          <td class="paramname"> <em>painter</em>, </td>
2582
 
        </tr>
2583
 
        <tr>
2584
 
          <td class="paramkey"></td>
2585
 
          <td></td>
2586
 
          <td class="paramtype">const QRect &amp;&nbsp;</td>
2587
 
          <td class="paramname"> <em>rect</em>, </td>
2588
 
        </tr>
2589
 
        <tr>
2590
 
          <td class="paramkey"></td>
2591
 
          <td></td>
2592
 
          <td class="paramtype">const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a>&nbsp;</td>
2593
 
          <td class="paramname"> <em>map</em>[axisCnt], </td>
2594
 
        </tr>
2595
 
        <tr>
2596
 
          <td class="paramkey"></td>
2597
 
          <td></td>
2598
 
          <td class="paramtype">const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;&nbsp;</td>
2599
 
          <td class="paramname"> <em>pfilter</em></td><td>&nbsp;</td>
2600
 
        </tr>
2601
 
        <tr>
2602
 
          <td></td>
2603
 
          <td>)</td>
2604
 
          <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td>
2605
 
        </tr>
2606
 
      </table>
2607
 
</div>
2608
 
<div class="memdoc">
2609
 
 
2610
 
<p>
2611
 
Redraw the canvas items. <dl compact><dt><b>Parameters:</b></dt><dd>
2612
 
  <table border="0" cellspacing="2" cellpadding="0">
2613
 
    <tr><td valign="top"></td><td valign="top"><em>painter</em>&nbsp;</td><td>Painter used for drawing </td></tr>
2614
 
    <tr><td valign="top"></td><td valign="top"><em>rect</em>&nbsp;</td><td>Bounding rectangle where to paint </td></tr>
2615
 
    <tr><td valign="top"></td><td valign="top"><em>map</em>&nbsp;</td><td>QwtPlot::axisCnt maps, mapping between plot and paint device coordinates </td></tr>
2616
 
    <tr><td valign="top"></td><td valign="top"><em>pfilter</em>&nbsp;</td><td>Plot print filter </td></tr>
2617
 
  </table>
2618
 
</dl>
2619
 
 
2620
 
<p>
2621
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00572">572</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2622
 
<p>
2623
 
References <a class="el" href="qwt__plot__dict_8cpp-source.html#l00186">QwtPlotDict::itemList()</a>, and <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00108">QwtPlotPrintFilter::options()</a>.
2624
 
<p>
2625
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00554">drawCanvas()</a>, and <a class="el" href="qwt__plot__print_8cpp-source.html#l00467">printCanvas()</a>.
2626
 
</div>
2627
 
</div><p>
2628
 
<a class="anchor" name="6455596162a69876a3504c0017531cf3"></a><!-- doxytag: member="QwtPlot::updateTabOrder" ref="6455596162a69876a3504c0017531cf3" args="()" -->
2629
 
<div class="memitem">
2630
 
<div class="memproto">
2631
 
      <table class="memname">
2632
 
        <tr>
2633
 
          <td class="memname">void QwtPlot::updateTabOrder           </td>
2634
 
          <td>(</td>
2635
 
          <td class="paramname">          </td>
2636
 
          <td>&nbsp;)&nbsp;</td>
2637
 
          <td width="100%"><code> [protected, virtual]</code></td>
2638
 
        </tr>
2639
 
      </table>
2640
 
</div>
2641
 
<div class="memdoc">
2642
 
 
2643
 
<p>
2644
 
Update the focus tab order<p>
2645
 
The order is changed so that the canvas will be in front of the first legend item, or behind the last legend item - depending on the position of the legend. 
2646
 
<p>
2647
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00477">477</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2648
 
<p>
2649
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00822">insertLegend()</a>.
2650
 
</div>
2651
 
</div><p>
2652
 
<a class="anchor" name="1fb2dbc3697a66024d48c08b1d18f8a5"></a><!-- doxytag: member="QwtPlot::updateAxes" ref="1fb2dbc3697a66024d48c08b1d18f8a5" args="()" -->
2653
 
<div class="memitem">
2654
 
<div class="memproto">
2655
 
      <table class="memname">
2656
 
        <tr>
2657
 
          <td class="memname">void QwtPlot::updateAxes           </td>
2658
 
          <td>(</td>
2659
 
          <td class="paramname">          </td>
2660
 
          <td>&nbsp;)&nbsp;</td>
2661
 
          <td width="100%"><code> [protected]</code></td>
2662
 
        </tr>
2663
 
      </table>
2664
 
</div>
2665
 
<div class="memdoc">
2666
 
 
2667
 
<p>
2668
 
Rebuild the scales. 
2669
 
<p>
2670
 
 
2671
 
<p>
2672
 
Definition at line <a class="el" href="qwt__plot__axis_8cpp-source.html#l00579">579</a> of file <a class="el" href="qwt__plot__axis_8cpp-source.html">qwt_plot_axis.cpp</a>.
2673
 
<p>
2674
 
References <a class="el" href="qwt__plot__axis_8cpp-source.html#l00164">axisAutoScale()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00235">axisScaleDiv()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00774">QwtScaleWidget::getBorderDistHint()</a>, <a class="el" href="qwt__double__interval_8h-source.html#l00200">QwtDoubleInterval::isValid()</a>, <a class="el" href="qwt__plot__dict_8cpp-source.html#l00186">QwtPlotDict::itemList()</a>, <a class="el" href="qwt__double__interval_8h-source.html#l00134">QwtDoubleInterval::maxValue()</a>, <a class="el" href="qwt__double__interval_8h-source.html#l00128">QwtDoubleInterval::minValue()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00233">QwtScaleWidget::setBorderDist()</a>, and <a class="el" href="qwt__scale__widget_8cpp-source.html#l00839">QwtScaleWidget::setScaleDiv()</a>.
2675
 
<p>
2676
 
Referenced by <a class="el" href="qwt__plot_8cpp-source.html#l00363">replot()</a>.
2677
 
</div>
2678
 
</div><p>
2679
 
<a class="anchor" name="a4d5f73681880b9770bb6a604c415987"></a><!-- doxytag: member="QwtPlot::resizeEvent" ref="a4d5f73681880b9770bb6a604c415987" args="(QResizeEvent *e)" -->
2680
 
<div class="memitem">
2681
 
<div class="memproto">
2682
 
      <table class="memname">
2683
 
        <tr>
2684
 
          <td class="memname">void QwtPlot::resizeEvent           </td>
2685
 
          <td>(</td>
2686
 
          <td class="paramtype">QResizeEvent *&nbsp;</td>
2687
 
          <td class="paramname"> <em>e</em>          </td>
2688
 
          <td>&nbsp;)&nbsp;</td>
2689
 
          <td width="100%"><code> [protected, virtual]</code></td>
2690
 
        </tr>
2691
 
      </table>
2692
 
</div>
2693
 
<div class="memdoc">
2694
 
 
2695
 
<p>
2696
 
Resize and update internal layout. 
2697
 
<p>
2698
 
 
2699
 
<p>
2700
 
Definition at line <a class="el" href="qwt__plot_8cpp-source.html#l00347">347</a> of file <a class="el" href="qwt__plot_8cpp-source.html">qwt_plot.cpp</a>.
2701
 
<p>
2702
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00413">updateLayout()</a>.
2703
 
</div>
2704
 
</div><p>
2705
 
<a class="anchor" name="9790ac102d566d744b9cfe9bb5e52a67"></a><!-- doxytag: member="QwtPlot::printLegendItem" ref="9790ac102d566d744b9cfe9bb5e52a67" args="(QPainter *, const QWidget *, const QRect &amp;) const" -->
2706
 
<div class="memitem">
2707
 
<div class="memproto">
2708
 
      <table class="memname">
2709
 
        <tr>
2710
 
          <td class="memname">void QwtPlot::printLegendItem           </td>
2711
 
          <td>(</td>
2712
 
          <td class="paramtype">QPainter *&nbsp;</td>
2713
 
          <td class="paramname"> <em>painter</em>, </td>
2714
 
        </tr>
2715
 
        <tr>
2716
 
          <td class="paramkey"></td>
2717
 
          <td></td>
2718
 
          <td class="paramtype">const QWidget *&nbsp;</td>
2719
 
          <td class="paramname"> <em>w</em>, </td>
2720
 
        </tr>
2721
 
        <tr>
2722
 
          <td class="paramkey"></td>
2723
 
          <td></td>
2724
 
          <td class="paramtype">const QRect &amp;&nbsp;</td>
2725
 
          <td class="paramname"> <em>rect</em></td><td>&nbsp;</td>
2726
 
        </tr>
2727
 
        <tr>
2728
 
          <td></td>
2729
 
          <td>)</td>
2730
 
          <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td>
2731
 
        </tr>
2732
 
      </table>
2733
 
</div>
2734
 
<div class="memdoc">
2735
 
 
2736
 
<p>
2737
 
Print the legend item into a given rectangle.<p>
2738
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2739
 
  <table border="0" cellspacing="2" cellpadding="0">
2740
 
    <tr><td valign="top"></td><td valign="top"><em>painter</em>&nbsp;</td><td>Painter </td></tr>
2741
 
    <tr><td valign="top"></td><td valign="top"><em>w</em>&nbsp;</td><td>Widget representing a legend item </td></tr>
2742
 
    <tr><td valign="top"></td><td valign="top"><em>rect</em>&nbsp;</td><td>Bounding rectangle </td></tr>
2743
 
  </table>
2744
 
</dl>
2745
 
 
2746
 
<p>
2747
 
Definition at line <a class="el" href="qwt__plot__print_8cpp-source.html#l00335">335</a> of file <a class="el" href="qwt__plot__print_8cpp-source.html">qwt_plot_print.cpp</a>.
2748
 
<p>
2749
 
Referenced by <a class="el" href="qwt__plot__print_8cpp-source.html#l00280">printLegend()</a>.
2750
 
</div>
2751
 
</div><p>
2752
 
<a class="anchor" name="37a3264b7e3bc692f35474a82a6ab28b"></a><!-- doxytag: member="QwtPlot::printTitle" ref="37a3264b7e3bc692f35474a82a6ab28b" args="(QPainter *, const QRect &amp;) const" -->
2753
 
<div class="memitem">
2754
 
<div class="memproto">
2755
 
      <table class="memname">
2756
 
        <tr>
2757
 
          <td class="memname">void QwtPlot::printTitle           </td>
2758
 
          <td>(</td>
2759
 
          <td class="paramtype">QPainter *&nbsp;</td>
2760
 
          <td class="paramname"> <em>painter</em>, </td>
2761
 
        </tr>
2762
 
        <tr>
2763
 
          <td class="paramkey"></td>
2764
 
          <td></td>
2765
 
          <td class="paramtype">const QRect &amp;&nbsp;</td>
2766
 
          <td class="paramname"> <em>rect</em></td><td>&nbsp;</td>
2767
 
        </tr>
2768
 
        <tr>
2769
 
          <td></td>
2770
 
          <td>)</td>
2771
 
          <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td>
2772
 
        </tr>
2773
 
      </table>
2774
 
</div>
2775
 
<div class="memdoc">
2776
 
 
2777
 
<p>
2778
 
Print the title into a given rectangle.<p>
2779
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2780
 
  <table border="0" cellspacing="2" cellpadding="0">
2781
 
    <tr><td valign="top"></td><td valign="top"><em>painter</em>&nbsp;</td><td>Painter </td></tr>
2782
 
    <tr><td valign="top"></td><td valign="top"><em>rect</em>&nbsp;</td><td>Bounding rectangle </td></tr>
2783
 
  </table>
2784
 
</dl>
2785
 
 
2786
 
<p>
2787
 
Definition at line <a class="el" href="qwt__plot__print_8cpp-source.html#l00256">256</a> of file <a class="el" href="qwt__plot__print_8cpp-source.html">qwt_plot_print.cpp</a>.
2788
 
<p>
2789
 
References <a class="el" href="qwt__text_8cpp-source.html#l00564">QwtText::draw()</a>, <a class="el" href="qwt__text__label_8cpp-source.html#l00107">QwtTextLabel::text()</a>, and <a class="el" href="qwt__plot_8cpp-source.html#l00240">titleLabel()</a>.
2790
 
<p>
2791
 
Referenced by <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>.
2792
 
</div>
2793
 
</div><p>
2794
 
<a class="anchor" name="d881d5918384f5a0f112c2faa68ab031"></a><!-- doxytag: member="QwtPlot::printScale" ref="d881d5918384f5a0f112c2faa68ab031" args="(QPainter *, int axisId, int startDist, int endDist, int baseDist, const QRect &amp;) const" -->
2795
 
<div class="memitem">
2796
 
<div class="memproto">
2797
 
      <table class="memname">
2798
 
        <tr>
2799
 
          <td class="memname">void QwtPlot::printScale           </td>
2800
 
          <td>(</td>
2801
 
          <td class="paramtype">QPainter *&nbsp;</td>
2802
 
          <td class="paramname"> <em>painter</em>, </td>
2803
 
        </tr>
2804
 
        <tr>
2805
 
          <td class="paramkey"></td>
2806
 
          <td></td>
2807
 
          <td class="paramtype">int&nbsp;</td>
2808
 
          <td class="paramname"> <em>axisId</em>, </td>
2809
 
        </tr>
2810
 
        <tr>
2811
 
          <td class="paramkey"></td>
2812
 
          <td></td>
2813
 
          <td class="paramtype">int&nbsp;</td>
2814
 
          <td class="paramname"> <em>startDist</em>, </td>
2815
 
        </tr>
2816
 
        <tr>
2817
 
          <td class="paramkey"></td>
2818
 
          <td></td>
2819
 
          <td class="paramtype">int&nbsp;</td>
2820
 
          <td class="paramname"> <em>endDist</em>, </td>
2821
 
        </tr>
2822
 
        <tr>
2823
 
          <td class="paramkey"></td>
2824
 
          <td></td>
2825
 
          <td class="paramtype">int&nbsp;</td>
2826
 
          <td class="paramname"> <em>baseDist</em>, </td>
2827
 
        </tr>
2828
 
        <tr>
2829
 
          <td class="paramkey"></td>
2830
 
          <td></td>
2831
 
          <td class="paramtype">const QRect &amp;&nbsp;</td>
2832
 
          <td class="paramname"> <em>rect</em></td><td>&nbsp;</td>
2833
 
        </tr>
2834
 
        <tr>
2835
 
          <td></td>
2836
 
          <td>)</td>
2837
 
          <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td>
2838
 
        </tr>
2839
 
      </table>
2840
 
</div>
2841
 
<div class="memdoc">
2842
 
 
2843
 
<p>
2844
 
Paint a scale into a given rectangle. Paint the scale into a given rectangle. 
2845
 
<p>
2846
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2847
 
  <table border="0" cellspacing="2" cellpadding="0">
2848
 
    <tr><td valign="top"></td><td valign="top"><em>painter</em>&nbsp;</td><td>Painter </td></tr>
2849
 
    <tr><td valign="top"></td><td valign="top"><em>axisId</em>&nbsp;</td><td>Axis </td></tr>
2850
 
    <tr><td valign="top"></td><td valign="top"><em>startDist</em>&nbsp;</td><td>Start border distance </td></tr>
2851
 
    <tr><td valign="top"></td><td valign="top"><em>endDist</em>&nbsp;</td><td>End border distance </td></tr>
2852
 
    <tr><td valign="top"></td><td valign="top"><em>baseDist</em>&nbsp;</td><td>Base distance </td></tr>
2853
 
    <tr><td valign="top"></td><td valign="top"><em>rect</em>&nbsp;</td><td>Bounding rectangle </td></tr>
2854
 
  </table>
2855
 
</dl>
2856
 
 
2857
 
<p>
2858
 
Definition at line <a class="el" href="qwt__plot__print_8cpp-source.html#l00359">359</a> of file <a class="el" href="qwt__plot__print_8cpp-source.html">qwt_plot_print.cpp</a>.
2859
 
<p>
2860
 
References <a class="el" href="qwt__plot__axis_8cpp-source.html#l00177">axisEnabled()</a>, <a class="el" href="qwt__plot__axis_8cpp-source.html#l00100">axisWidget()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00487">QwtScaleWidget::colorBarRect()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00882">QwtScaleWidget::colorBarWidth()</a>, <a class="el" href="qwt__abstract__scale__draw_8cpp-source.html#l00165">QwtAbstractScaleDraw::draw()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00602">QwtScaleWidget::drawColorBar()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00621">QwtScaleWidget::drawTitle()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00866">QwtScaleWidget::isColorBarEnabled()</a>, <a class="el" href="qwt__layout__metrics_8cpp-source.html#l00155">QwtMetricsMap::layoutToScreen()</a>, <a class="el" href="qwt__scale__draw_8cpp-source.html#l00604">QwtScaleDraw::length()</a>, <a class="el" href="qwt__painter_8cpp-source.html#l00160">QwtPainter::metricsMap()</a>, <a class="el" href="qwt__scale__draw_8h-source.html#l00104">QwtScaleDraw::move()</a>, <a class="el" href="qwt__scale__draw_8cpp-source.html#l00115">QwtScaleDraw::orientation()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00402">QwtScaleWidget::penWidth()</a>, <a class="el" href="qwt__scale__draw_8cpp-source.html#l00576">QwtScaleDraw::pos()</a>, <a class="el" href="qwt__scale__widget_8cpp-source.html#l00339">QwtScaleWidget::scaleDraw()</a>, <a class="el" href="qwt__scale__draw_8cpp-source.html#l00589">QwtScaleDraw::setLength()</a>, and <a class="el" href="qwt__scale__widget_8cpp-source.html#l00393">QwtScaleWidget::spacing()</a>.
2861
 
<p>
2862
 
Referenced by <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>.
2863
 
</div>
2864
 
</div><p>
2865
 
<a class="anchor" name="d42514cf3728466a720d2a1290f13a53"></a><!-- doxytag: member="QwtPlot::printCanvas" ref="d42514cf3728466a720d2a1290f13a53" args="(QPainter *, const QRect &amp;boundingRect, const QRect &amp;canvasRect, const QwtScaleMap maps[axisCnt], const QwtPlotPrintFilter &amp;) const" -->
2866
 
<div class="memitem">
2867
 
<div class="memproto">
2868
 
      <table class="memname">
2869
 
        <tr>
2870
 
          <td class="memname">void QwtPlot::printCanvas           </td>
2871
 
          <td>(</td>
2872
 
          <td class="paramtype">QPainter *&nbsp;</td>
2873
 
          <td class="paramname"> <em>painter</em>, </td>
2874
 
        </tr>
2875
 
        <tr>
2876
 
          <td class="paramkey"></td>
2877
 
          <td></td>
2878
 
          <td class="paramtype">const QRect &amp;&nbsp;</td>
2879
 
          <td class="paramname"> <em>boundingRect</em>, </td>
2880
 
        </tr>
2881
 
        <tr>
2882
 
          <td class="paramkey"></td>
2883
 
          <td></td>
2884
 
          <td class="paramtype">const QRect &amp;&nbsp;</td>
2885
 
          <td class="paramname"> <em>canvasRect</em>, </td>
2886
 
        </tr>
2887
 
        <tr>
2888
 
          <td class="paramkey"></td>
2889
 
          <td></td>
2890
 
          <td class="paramtype">const <a class="el" href="class_qwt_scale_map.html">QwtScaleMap</a>&nbsp;</td>
2891
 
          <td class="paramname"> <em>map</em>[axisCnt], </td>
2892
 
        </tr>
2893
 
        <tr>
2894
 
          <td class="paramkey"></td>
2895
 
          <td></td>
2896
 
          <td class="paramtype">const <a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> &amp;&nbsp;</td>
2897
 
          <td class="paramname"> <em>pfilter</em></td><td>&nbsp;</td>
2898
 
        </tr>
2899
 
        <tr>
2900
 
          <td></td>
2901
 
          <td>)</td>
2902
 
          <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td>
2903
 
        </tr>
2904
 
      </table>
2905
 
</div>
2906
 
<div class="memdoc">
2907
 
 
2908
 
<p>
2909
 
Print the canvas into a given rectangle.<p>
2910
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2911
 
  <table border="0" cellspacing="2" cellpadding="0">
2912
 
    <tr><td valign="top"></td><td valign="top"><em>painter</em>&nbsp;</td><td>Painter </td></tr>
2913
 
    <tr><td valign="top"></td><td valign="top"><em>map</em>&nbsp;</td><td>Maps mapping between plot and paint device coordinates </td></tr>
2914
 
    <tr><td valign="top"></td><td valign="top"><em>boundingRect</em>&nbsp;</td><td>Bounding rectangle </td></tr>
2915
 
    <tr><td valign="top"></td><td valign="top"><em>canvasRect</em>&nbsp;</td><td>Canvas rectangle </td></tr>
2916
 
    <tr><td valign="top"></td><td valign="top"><em>pfilter</em>&nbsp;</td><td>Print filter </td></tr>
2917
 
  </table>
2918
 
</dl>
2919
 
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_plot_print_filter.html">QwtPlotPrintFilter</a> </dd></dl>
2920
 
 
2921
 
<p>
2922
 
Definition at line <a class="el" href="qwt__plot__print_8cpp-source.html#l00467">467</a> of file <a class="el" href="qwt__plot__print_8cpp-source.html">qwt_plot_print.cpp</a>.
2923
 
<p>
2924
 
References <a class="el" href="qwt__plot_8cpp-source.html#l00275">canvas()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00572">drawItems()</a>, <a class="el" href="qwt__painter_8cpp-source.html#l00176">QwtPainter::drawRect()</a>, <a class="el" href="qwt__painter_8cpp-source.html#l00228">QwtPainter::fillRect()</a>, <a class="el" href="qwt__plot__printfilter_8cpp-source.html#l00108">QwtPlotPrintFilter::options()</a>, and <a class="el" href="qwt__painter_8cpp-source.html#l00168">QwtPainter::setClipRect()</a>.
2925
 
<p>
2926
 
Referenced by <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>.
2927
 
</div>
2928
 
</div><p>
2929
 
<a class="anchor" name="4a082258f60aef10b3bcdab1574d2ae2"></a><!-- doxytag: member="QwtPlot::printLegend" ref="4a082258f60aef10b3bcdab1574d2ae2" args="(QPainter *, const QRect &amp;) const" -->
2930
 
<div class="memitem">
2931
 
<div class="memproto">
2932
 
      <table class="memname">
2933
 
        <tr>
2934
 
          <td class="memname">void QwtPlot::printLegend           </td>
2935
 
          <td>(</td>
2936
 
          <td class="paramtype">QPainter *&nbsp;</td>
2937
 
          <td class="paramname"> <em>painter</em>, </td>
2938
 
        </tr>
2939
 
        <tr>
2940
 
          <td class="paramkey"></td>
2941
 
          <td></td>
2942
 
          <td class="paramtype">const QRect &amp;&nbsp;</td>
2943
 
          <td class="paramname"> <em>rect</em></td><td>&nbsp;</td>
2944
 
        </tr>
2945
 
        <tr>
2946
 
          <td></td>
2947
 
          <td>)</td>
2948
 
          <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td>
2949
 
        </tr>
2950
 
      </table>
2951
 
</div>
2952
 
<div class="memdoc">
2953
 
 
2954
 
<p>
2955
 
Print the legend into a given rectangle.<p>
2956
 
<dl compact><dt><b>Parameters:</b></dt><dd>
2957
 
  <table border="0" cellspacing="2" cellpadding="0">
2958
 
    <tr><td valign="top"></td><td valign="top"><em>painter</em>&nbsp;</td><td>Painter </td></tr>
2959
 
    <tr><td valign="top"></td><td valign="top"><em>rect</em>&nbsp;</td><td>Bounding rectangle </td></tr>
2960
 
  </table>
2961
 
</dl>
2962
 
 
2963
 
<p>
2964
 
Definition at line <a class="el" href="qwt__plot__print_8cpp-source.html#l00280">280</a> of file <a class="el" href="qwt__plot__print_8cpp-source.html">qwt_plot_print.cpp</a>.
2965
 
<p>
2966
 
References <a class="el" href="qwt__dyngrid__layout_8cpp-source.html#l00353">QwtDynGridLayout::columnsForWidth()</a>, <a class="el" href="qwt__legend_8cpp-source.html#l00355">QwtLegend::contentsWidget()</a>, <a class="el" href="qwt__dyngrid__layout_8cpp-source.html#l00292">QwtDynGridLayout::count()</a>, <a class="el" href="qwt__dyngrid__layout_8cpp-source.html#l00275">QwtDynGridLayout::itemAt()</a>, <a class="el" href="qwt__dyngrid__layout_8cpp-source.html#l00440">QwtDynGridLayout::layoutItems()</a>, <a class="el" href="qwt__plot_8cpp-source.html#l00257">legend()</a>, <a class="el" href="qwt__plot__print_8cpp-source.html#l00335">printLegendItem()</a>, and <a class="el" href="qwt__painter_8cpp-source.html#l00168">QwtPainter::setClipRect()</a>.
2967
 
<p>
2968
 
Referenced by <a class="el" href="qwt__plot__print_8cpp-source.html#l00073">print()</a>.
2969
 
</div>
2970
 
</div><p>
2971
 
<hr size="1"><address style="align: right;"><small>Generated on Thu May 1 15:45:00 2008 for Qwt User's Guide by&nbsp;
2972
 
<a href="http://www.doxygen.org/index.html">
2973
 
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.0 </small></address>
2974
 
</body>
2975
 
</html>