1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
.TH "QwtLog10ScaleEngine" 3 "Mon Aug 1 2011" "Version 5.2.2" "Qwt User's Guide" \" -*- nroff -*-
.ad l
.nh
.SH NAME
QwtLog10ScaleEngine \-
.PP
A scale engine for logarithmic (base 10) scales.
.SH SYNOPSIS
.br
.PP
.PP
\fC#include <qwt_scale_engine.h>\fP
.PP
Inherits \fBQwtScaleEngine\fP.
.SS "Public Types"
.in +1c
.ti -1c
.RI "enum \fBAttribute\fP { \fBNoAttribute\fP = 0, \fBIncludeReference\fP = 1, \fBSymmetric\fP = 2, \fBFloating\fP = 4, \fBInverted\fP = 8 }"
.br
.in -1c
.SS "Public Member Functions"
.in +1c
.ti -1c
.RI "int \fBattributes\fP () const "
.br
.ti -1c
.RI "virtual void \fBautoScale\fP (int maxSteps, double &x1, double &x2, double &stepSize) const "
.br
.ti -1c
.RI "virtual \fBQwtScaleDiv\fP \fBdivideScale\fP (double x1, double x2, int numMajorSteps, int numMinorSteps, double stepSize=0.0) const "
.br
.ti -1c
.RI "double \fBlowerMargin\fP () const "
.br
.ti -1c
.RI "double \fBreference\fP () const "
.br
.ti -1c
.RI "void \fBsetAttribute\fP (\fBAttribute\fP, bool on=true)"
.br
.ti -1c
.RI "void \fBsetAttributes\fP (int)"
.br
.ti -1c
.RI "void \fBsetMargins\fP (double lower, double upper)"
.br
.ti -1c
.RI "void \fBsetReference\fP (double reference)"
.br
.ti -1c
.RI "bool \fBtestAttribute\fP (\fBAttribute\fP) const "
.br
.ti -1c
.RI "virtual \fBQwtScaleTransformation\fP * \fBtransformation\fP () const "
.br
.ti -1c
.RI "double \fBupperMargin\fP () const "
.br
.in -1c
.SS "Protected Member Functions"
.in +1c
.ti -1c
.RI "\fBQwtDoubleInterval\fP \fBbuildInterval\fP (double v) const "
.br
.ti -1c
.RI "bool \fBcontains\fP (const \fBQwtDoubleInterval\fP &, double val) const "
.br
.ti -1c
.RI "double \fBdivideInterval\fP (double interval, int numSteps) const "
.br
.ti -1c
.RI "\fBQwtDoubleInterval\fP \fBlog10\fP (const \fBQwtDoubleInterval\fP &) const "
.br
.ti -1c
.RI "\fBQwtDoubleInterval\fP \fBpow10\fP (const \fBQwtDoubleInterval\fP &) const "
.br
.ti -1c
.RI "QwtValueList \fBstrip\fP (const QwtValueList &, const \fBQwtDoubleInterval\fP &) const "
.br
.in -1c
.SH "Detailed Description"
.PP
A scale engine for logarithmic (base 10) scales.
The step size is measured in *decades* and the major step size will be adjusted to fit the pattern $\left\{ 1,2,3,5\right\} \cdot 10^{n}$, where n is a natural number including zero.
.PP
\fBWarning:\fP
.RS 4
the step size as well as the margins are measured in *decades*.
.RE
.PP
.SH "Member Enumeration Documentation"
.PP
.SS "enum \fBQwtScaleEngine::Attribute\fP\fC [inherited]\fP".IP "\(bu" 2
IncludeReference
.br
Build a scale which includes the \fBreference()\fP value.
.IP "\(bu" 2
Symmetric
.br
Build a scale which is symmetric to the \fBreference()\fP value.
.IP "\(bu" 2
Floating
.br
The endpoints of the scale are supposed to be equal the outmost included values plus the specified margins (see \fBsetMargins()\fP). If this attribute is *not* set, the endpoints of the scale will be integer multiples of the step size.
.IP "\(bu" 2
Inverted
.br
Turn the scale upside down.
.PP
.PP
\fBSee also:\fP
.RS 4
\fBsetAttribute()\fP, \fBtestAttribute()\fP, \fBreference()\fP, \fBlowerMargin()\fP, \fBupperMargin()\fP
.RE
.PP
.SH "Member Function Documentation"
.PP
.SS "int QwtScaleEngine::attributes () const\fC [inherited]\fP"Return the scale attributes
.PP
\fBSee also:\fP
.RS 4
\fBAttribute\fP, \fBsetAttributes()\fP, \fBtestAttribute()\fP
.RE
.PP
.SS "void QwtLog10ScaleEngine::autoScale (intmaxNumSteps, double &x1, double &x2, double &stepSize) const\fC [virtual]\fP"Align and divide an interval
.PP
\fBParameters:\fP
.RS 4
\fImaxNumSteps\fP Max. number of steps
.br
\fIx1\fP First limit of the interval (In/Out)
.br
\fIx2\fP Second limit of the interval (In/Out)
.br
\fIstepSize\fP Step size (Out)
.RE
.PP
\fBSee also:\fP
.RS 4
\fBQwtScaleEngine::setAttribute()\fP
.RE
.PP
.PP
Implements \fBQwtScaleEngine\fP.
.SS "\fBQwtDoubleInterval\fP QwtScaleEngine::buildInterval (doublev) const\fC [protected, inherited]\fP"
.PP
Build an interval for a value. In case of v == 0.0 the interval is [\-0.5, 0.5], otherwide it is [0.5 * v, 1.5 * v]
.SS "bool QwtScaleEngine::contains (const \fBQwtDoubleInterval\fP &interval, doublevalue) const\fC [protected, inherited]\fP"Check if an interval 'contains' a value
.PP
\fBParameters:\fP
.RS 4
\fIinterval\fP Interval
.br
\fIvalue\fP Value
.RE
.PP
\fBSee also:\fP
.RS 4
\fBQwtScaleArithmetic::compareEps()\fP
.RE
.PP
.SS "double QwtScaleEngine::divideInterval (doubleintervalSize, intnumSteps) const\fC [protected, inherited]\fP"Calculate a step size for an interval size
.PP
\fBParameters:\fP
.RS 4
\fIintervalSize\fP Interval size
.br
\fInumSteps\fP Number of steps
.RE
.PP
\fBReturns:\fP
.RS 4
Step size
.RE
.PP
.SS "\fBQwtScaleDiv\fP QwtLog10ScaleEngine::divideScale (doublex1, doublex2, intmaxMajSteps, intmaxMinSteps, doublestepSize = \fC0.0\fP) const\fC [virtual]\fP"
.PP
Calculate a scale division. \fBParameters:\fP
.RS 4
\fIx1\fP First interval limit
.br
\fIx2\fP Second interval limit
.br
\fImaxMajSteps\fP Maximum for the number of major steps
.br
\fImaxMinSteps\fP Maximum number of minor steps
.br
\fIstepSize\fP Step size. If stepSize == 0, the scaleEngine calculates one.
.RE
.PP
\fBSee also:\fP
.RS 4
QwtScaleEngine::stepSize(), QwtLog10ScaleEngine::subDivide()
.RE
.PP
.PP
Implements \fBQwtScaleEngine\fP.
.SS "\fBQwtDoubleInterval\fP QwtLog10ScaleEngine::log10 (const \fBQwtDoubleInterval\fP &interval) const\fC [protected]\fP"Return the interval [log10(interval.minValue(), log10(interval.maxValue]
.SS "double QwtScaleEngine::lowerMargin () const\fC [inherited]\fP"\fBReturns:\fP
.RS 4
the margin at the lower end of the scale The default margin is 0.
.RE
.PP
\fBSee also:\fP
.RS 4
\fBsetMargins()\fP
.RE
.PP
.SS "\fBQwtDoubleInterval\fP QwtLog10ScaleEngine::pow10 (const \fBQwtDoubleInterval\fP &interval) const\fC [protected]\fP"Return the interval [pow10(interval.minValue(), pow10(interval.maxValue]
.SS "double QwtScaleEngine::reference () const\fC [inherited]\fP"\fBReturns:\fP
.RS 4
the reference value
.RE
.PP
\fBSee also:\fP
.RS 4
\fBsetReference()\fP, \fBsetAttribute()\fP
.RE
.PP
.SS "void QwtScaleEngine::setAttribute (\fBAttribute\fPattribute, boolon = \fCtrue\fP)\fC [inherited]\fP"Change a scale attribute
.PP
\fBParameters:\fP
.RS 4
\fIattribute\fP Attribute to change
.br
\fIon\fP On/Off
.RE
.PP
\fBSee also:\fP
.RS 4
\fBAttribute\fP, \fBtestAttribute()\fP
.RE
.PP
.SS "void QwtScaleEngine::setAttributes (intattributes)\fC [inherited]\fP"Change the scale attribute
.PP
\fBParameters:\fP
.RS 4
\fIattributes\fP Set scale attributes
.RE
.PP
\fBSee also:\fP
.RS 4
\fBAttribute\fP, \fBattributes()\fP
.RE
.PP
.SS "void QwtScaleEngine::setMargins (doublelower, doubleupper)\fC [inherited]\fP"
.PP
Specify margins at the scale's endpoints. \fBParameters:\fP
.RS 4
\fIlower\fP minimum distance between the scale's lower boundary and the smallest enclosed value
.br
\fIupper\fP minimum distance between the scale's upper boundary and the greatest enclosed value
.RE
.PP
Margins can be used to leave a minimum amount of space between the enclosed intervals and the boundaries of the scale.
.PP
\fBWarning:\fP
.RS 4
.PD 0
.IP "\(bu" 2
\fBQwtLog10ScaleEngine\fP measures the margins in decades.
.PP
.RE
.PP
\fBSee also:\fP
.RS 4
\fBupperMargin()\fP, \fBlowerMargin()\fP
.RE
.PP
.SS "void QwtScaleEngine::setReference (doubler)\fC [inherited]\fP"
.PP
Specify a reference point. \fBParameters:\fP
.RS 4
\fIr\fP new reference value
.RE
.PP
The reference point is needed if options IncludeReference or Symmetric are active. Its default value is 0.0.
.PP
\fBSee also:\fP
.RS 4
\fBAttribute\fP
.RE
.PP
.SS "QwtValueList QwtScaleEngine::strip (const QwtValueList &ticks, const \fBQwtDoubleInterval\fP &interval) const\fC [protected, inherited]\fP"Remove ticks from a list, that are not inside an interval
.PP
\fBParameters:\fP
.RS 4
\fIticks\fP Tick list
.br
\fIinterval\fP Interval
.RE
.PP
\fBReturns:\fP
.RS 4
Stripped tick list
.RE
.PP
.SS "bool QwtScaleEngine::testAttribute (\fBAttribute\fPattribute) const\fC [inherited]\fP"Check if a attribute is set.
.PP
\fBParameters:\fP
.RS 4
\fIattribute\fP Attribute to be tested
.RE
.PP
\fBSee also:\fP
.RS 4
\fBAttribute\fP, \fBsetAttribute()\fP
.RE
.PP
.SS "\fBQwtScaleTransformation\fP * QwtLog10ScaleEngine::transformation () const\fC [virtual]\fP"Return a transformation, for logarithmic (base 10) scales
.PP
Implements \fBQwtScaleEngine\fP.
.SS "double QwtScaleEngine::upperMargin () const\fC [inherited]\fP"\fBReturns:\fP
.RS 4
the margin at the upper end of the scale The default margin is 0.
.RE
.PP
\fBSee also:\fP
.RS 4
\fBsetMargins()\fP
.RE
.PP
.SH "Author"
.PP
Generated automatically by Doxygen for Qwt User's Guide from the source code.
|