QwtAbstractSlider.3 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. .TH "QwtAbstractSlider" 3 "Mon Dec 28 2020" "Version 6.1.6" "Qwt User's Guide" \" -*- nroff -*-
  2. .ad l
  3. .nh
  4. .SH NAME
  5. QwtAbstractSlider \- An abstract base class for slider widgets with a scale\&.
  6. .SH SYNOPSIS
  7. .br
  8. .PP
  9. .PP
  10. \fC#include <qwt_abstract_slider\&.h>\fP
  11. .PP
  12. Inherits \fBQwtAbstractScale\fP\&.
  13. .PP
  14. Inherited by \fBQwtDial\fP, \fBQwtKnob\fP, and \fBQwtSlider\fP\&.
  15. .SS "Public Slots"
  16. .in +1c
  17. .ti -1c
  18. .RI "void \fBsetValue\fP (double \fBvalue\fP)"
  19. .br
  20. .in -1c
  21. .SS "Signals"
  22. .in +1c
  23. .ti -1c
  24. .RI "void \fBvalueChanged\fP (double \fBvalue\fP)"
  25. .br
  26. .RI "Notify a change of value\&. "
  27. .ti -1c
  28. .RI "void \fBsliderPressed\fP ()"
  29. .br
  30. .ti -1c
  31. .RI "void \fBsliderReleased\fP ()"
  32. .br
  33. .ti -1c
  34. .RI "void \fBsliderMoved\fP (double \fBvalue\fP)"
  35. .br
  36. .in -1c
  37. .SS "Public Member Functions"
  38. .in +1c
  39. .ti -1c
  40. .RI "\fBQwtAbstractSlider\fP (QWidget *parent=NULL)"
  41. .br
  42. .RI "Constructor\&. "
  43. .ti -1c
  44. .RI "virtual \fB~QwtAbstractSlider\fP ()"
  45. .br
  46. .RI "Destructor\&. "
  47. .ti -1c
  48. .RI "void \fBsetValid\fP (bool)"
  49. .br
  50. .ti -1c
  51. .RI "bool \fBisValid\fP () const"
  52. .br
  53. .ti -1c
  54. .RI "double \fBvalue\fP () const"
  55. .br
  56. .RI "Returns the current value\&. "
  57. .ti -1c
  58. .RI "void \fBsetWrapping\fP (bool)"
  59. .br
  60. .ti -1c
  61. .RI "bool \fBwrapping\fP () const"
  62. .br
  63. .ti -1c
  64. .RI "void \fBsetTotalSteps\fP (uint)"
  65. .br
  66. .RI "Set the number of steps\&. "
  67. .ti -1c
  68. .RI "uint \fBtotalSteps\fP () const"
  69. .br
  70. .ti -1c
  71. .RI "void \fBsetSingleSteps\fP (uint)"
  72. .br
  73. .RI "Set the number of steps for a single increment\&. "
  74. .ti -1c
  75. .RI "uint \fBsingleSteps\fP () const"
  76. .br
  77. .ti -1c
  78. .RI "void \fBsetPageSteps\fP (uint)"
  79. .br
  80. .RI "Set the number of steps for a page increment\&. "
  81. .ti -1c
  82. .RI "uint \fBpageSteps\fP () const"
  83. .br
  84. .ti -1c
  85. .RI "void \fBsetStepAlignment\fP (bool)"
  86. .br
  87. .RI "Enable step alignment\&. "
  88. .ti -1c
  89. .RI "bool \fBstepAlignment\fP () const"
  90. .br
  91. .ti -1c
  92. .RI "void \fBsetTracking\fP (bool)"
  93. .br
  94. .RI "Enables or disables tracking\&. "
  95. .ti -1c
  96. .RI "bool \fBisTracking\fP () const"
  97. .br
  98. .ti -1c
  99. .RI "void \fBsetReadOnly\fP (bool)"
  100. .br
  101. .ti -1c
  102. .RI "bool \fBisReadOnly\fP () const"
  103. .br
  104. .ti -1c
  105. .RI "void \fBsetInvertedControls\fP (bool)"
  106. .br
  107. .ti -1c
  108. .RI "bool \fBinvertedControls\fP () const"
  109. .br
  110. .in -1c
  111. .SS "Protected Member Functions"
  112. .in +1c
  113. .ti -1c
  114. .RI "virtual void \fBmousePressEvent\fP (QMouseEvent *)"
  115. .br
  116. .ti -1c
  117. .RI "virtual void \fBmouseReleaseEvent\fP (QMouseEvent *)"
  118. .br
  119. .ti -1c
  120. .RI "virtual void \fBmouseMoveEvent\fP (QMouseEvent *)"
  121. .br
  122. .ti -1c
  123. .RI "virtual void \fBkeyPressEvent\fP (QKeyEvent *)"
  124. .br
  125. .ti -1c
  126. .RI "virtual void \fBwheelEvent\fP (QWheelEvent *)"
  127. .br
  128. .ti -1c
  129. .RI "virtual bool \fBisScrollPosition\fP (const QPoint &pos) const =0"
  130. .br
  131. .RI "Determine what to do when the user presses a mouse button\&. "
  132. .ti -1c
  133. .RI "virtual double \fBscrolledTo\fP (const QPoint &pos) const =0"
  134. .br
  135. .RI "Determine the value for a new position of the movable part of the slider\&. "
  136. .ti -1c
  137. .RI "void \fBincrementValue\fP (int stepCount)"
  138. .br
  139. .ti -1c
  140. .RI "virtual void \fBscaleChange\fP ()"
  141. .br
  142. .ti -1c
  143. .RI "virtual void \fBsliderChange\fP ()"
  144. .br
  145. .RI "Calling update() "
  146. .ti -1c
  147. .RI "double \fBincrementedValue\fP (double \fBvalue\fP, int stepCount) const"
  148. .br
  149. .in -1c
  150. .SH "Detailed Description"
  151. .PP
  152. An abstract base class for slider widgets with a scale\&.
  153. A slider widget displays a value according to a scale\&. The class is designed as a common super class for widgets like \fBQwtKnob\fP, \fBQwtDial\fP and \fBQwtSlider\fP\&.
  154. .PP
  155. When the slider is nor readOnly() its value can be modified by keyboard, mouse and wheel inputs\&.
  156. .PP
  157. The range of the slider is divided into a number of steps from which the value increments according to user inputs depend\&. Only for linear scales the number of steps correspond with a fixed step size\&.
  158. .SH "Constructor & Destructor Documentation"
  159. .PP
  160. .SS "QwtAbstractSlider::QwtAbstractSlider (QWidget * parent = \fCNULL\fP)\fC [explicit]\fP"
  161. .PP
  162. Constructor\&. The scale is initialized to [0\&.0, 100\&.0], the number of steps is set to 100 with 1 and 10 and single an page step sizes\&. Step alignment is enabled\&.
  163. .PP
  164. The initial value is invalid\&.
  165. .PP
  166. \fBParameters\fP
  167. .RS 4
  168. \fIparent\fP Parent widget
  169. .RE
  170. .PP
  171. .SH "Member Function Documentation"
  172. .PP
  173. .SS "double QwtAbstractSlider::incrementedValue (double value, int stepCount) const\fC [protected]\fP"
  174. Increment a value
  175. .PP
  176. \fBParameters\fP
  177. .RS 4
  178. \fIvalue\fP Value
  179. .br
  180. \fIstepCount\fP Number of steps
  181. .RE
  182. .PP
  183. \fBReturns\fP
  184. .RS 4
  185. Incremented value
  186. .RE
  187. .PP
  188. .SS "void QwtAbstractSlider::incrementValue (int stepCount)\fC [protected]\fP"
  189. Increment the slider
  190. .PP
  191. The step size depends on the number of \fBtotalSteps()\fP
  192. .PP
  193. \fBParameters\fP
  194. .RS 4
  195. \fIstepCount\fP Number of steps
  196. .RE
  197. .PP
  198. \fBSee also\fP
  199. .RS 4
  200. \fBsetTotalSteps()\fP, \fBincrementedValue()\fP
  201. .RE
  202. .PP
  203. .SS "bool QwtAbstractSlider::invertedControls () const"
  204. .PP
  205. \fBReturns\fP
  206. .RS 4
  207. True, when the controls are inverted
  208. .RE
  209. .PP
  210. \fBSee also\fP
  211. .RS 4
  212. \fBsetInvertedControls()\fP
  213. .RE
  214. .PP
  215. .SS "bool QwtAbstractSlider::isReadOnly () const"
  216. In read only mode the slider can't be controlled by mouse or keyboard\&.
  217. .PP
  218. \fBReturns\fP
  219. .RS 4
  220. true if read only
  221. .RE
  222. .PP
  223. \fBSee also\fP
  224. .RS 4
  225. \fBsetReadOnly()\fP
  226. .RE
  227. .PP
  228. .SS "virtual bool QwtAbstractSlider::isScrollPosition (const QPoint & pos) const\fC [protected]\fP, \fC [pure virtual]\fP"
  229. .PP
  230. Determine what to do when the user presses a mouse button\&.
  231. .PP
  232. \fBParameters\fP
  233. .RS 4
  234. \fIpos\fP Mouse position
  235. .RE
  236. .PP
  237. \fBReturn values\fP
  238. .RS 4
  239. \fITrue,when\fP pos is a valid scroll position
  240. .RE
  241. .PP
  242. \fBSee also\fP
  243. .RS 4
  244. \fBscrolledTo()\fP
  245. .RE
  246. .PP
  247. .PP
  248. Implemented in \fBQwtSlider\fP, \fBQwtKnob\fP, and \fBQwtDial\fP\&.
  249. .SS "bool QwtAbstractSlider::isTracking () const"
  250. .PP
  251. \fBReturns\fP
  252. .RS 4
  253. True, when tracking has been enabled
  254. .RE
  255. .PP
  256. \fBSee also\fP
  257. .RS 4
  258. \fBsetTracking()\fP
  259. .RE
  260. .PP
  261. .SS "bool QwtAbstractSlider::isValid () const"
  262. .PP
  263. \fBReturns\fP
  264. .RS 4
  265. True, when the value is invalid
  266. .RE
  267. .PP
  268. .SS "void QwtAbstractSlider::keyPressEvent (QKeyEvent * event)\fC [protected]\fP, \fC [virtual]\fP"
  269. Handles key events
  270. .PP
  271. \fBQwtAbstractSlider\fP handles the following keys:
  272. .PP
  273. .IP "\(bu" 2
  274. Qt::Key_Left
  275. .br
  276. Add/Subtract \fBsingleSteps()\fP in direction to \fBlowerBound()\fP;
  277. .IP "\(bu" 2
  278. Qt::Key_Right
  279. .br
  280. Add/Subtract \fBsingleSteps()\fP in direction to \fBupperBound()\fP;
  281. .IP "\(bu" 2
  282. Qt::Key_Down
  283. .br
  284. Subtract \fBsingleSteps()\fP, when \fBinvertedControls()\fP is false
  285. .IP "\(bu" 2
  286. Qt::Key_Up
  287. .br
  288. Add \fBsingleSteps()\fP, when \fBinvertedControls()\fP is false
  289. .IP "\(bu" 2
  290. Qt::Key_PageDown
  291. .br
  292. Subtract \fBpageSteps()\fP, when \fBinvertedControls()\fP is false
  293. .IP "\(bu" 2
  294. Qt::Key_PageUp
  295. .br
  296. Add \fBpageSteps()\fP, when \fBinvertedControls()\fP is false
  297. .IP "\(bu" 2
  298. Qt::Key_Home
  299. .br
  300. Set the value to the \fBminimum()\fP
  301. .IP "\(bu" 2
  302. Qt::Key_End
  303. .br
  304. Set the value to the \fBmaximum()\fP
  305. .PP
  306. .PP
  307. \fBParameters\fP
  308. .RS 4
  309. \fIevent\fP Key event
  310. .RE
  311. .PP
  312. \fBSee also\fP
  313. .RS 4
  314. \fBisReadOnly()\fP
  315. .RE
  316. .PP
  317. .PP
  318. Reimplemented in \fBQwtCompass\fP\&.
  319. .SS "void QwtAbstractSlider::mouseMoveEvent (QMouseEvent * event)\fC [protected]\fP, \fC [virtual]\fP"
  320. Mouse Move Event handler
  321. .PP
  322. \fBParameters\fP
  323. .RS 4
  324. \fIevent\fP Mouse event
  325. .RE
  326. .PP
  327. .SS "void QwtAbstractSlider::mousePressEvent (QMouseEvent * event)\fC [protected]\fP, \fC [virtual]\fP"
  328. Mouse press event handler
  329. .PP
  330. \fBParameters\fP
  331. .RS 4
  332. \fIevent\fP Mouse event
  333. .RE
  334. .PP
  335. .PP
  336. Reimplemented in \fBQwtSlider\fP\&.
  337. .SS "void QwtAbstractSlider::mouseReleaseEvent (QMouseEvent * event)\fC [protected]\fP, \fC [virtual]\fP"
  338. Mouse Release Event handler
  339. .PP
  340. \fBParameters\fP
  341. .RS 4
  342. \fIevent\fP Mouse event
  343. .RE
  344. .PP
  345. .PP
  346. Reimplemented in \fBQwtSlider\fP\&.
  347. .SS "uint QwtAbstractSlider::pageSteps () const"
  348. .PP
  349. \fBReturns\fP
  350. .RS 4
  351. Number of steps
  352. .RE
  353. .PP
  354. \fBSee also\fP
  355. .RS 4
  356. \fBsetPageSteps()\fP, \fBtotalSteps()\fP, \fBsingleSteps()\fP
  357. .RE
  358. .PP
  359. .SS "void QwtAbstractSlider::scaleChange ()\fC [protected]\fP, \fC [virtual]\fP"
  360. Update the slider according to modifications of the scale
  361. .PP
  362. Reimplemented from \fBQwtAbstractScale\fP\&.
  363. .PP
  364. Reimplemented in \fBQwtSlider\fP, and \fBQwtDial\fP\&.
  365. .SS "virtual double QwtAbstractSlider::scrolledTo (const QPoint & pos) const\fC [protected]\fP, \fC [pure virtual]\fP"
  366. .PP
  367. Determine the value for a new position of the movable part of the slider\&.
  368. .PP
  369. \fBParameters\fP
  370. .RS 4
  371. \fIpos\fP Mouse position
  372. .RE
  373. .PP
  374. \fBReturns\fP
  375. .RS 4
  376. Value for the mouse position
  377. .RE
  378. .PP
  379. \fBSee also\fP
  380. .RS 4
  381. \fBisScrollPosition()\fP
  382. .RE
  383. .PP
  384. .PP
  385. Implemented in \fBQwtSlider\fP, \fBQwtKnob\fP, and \fBQwtDial\fP\&.
  386. .SS "void QwtAbstractSlider::setInvertedControls (bool on)"
  387. Invert wheel and key events
  388. .PP
  389. Usually scrolling the mouse wheel 'up' and using keys like page up will increase the slider's value towards its maximum\&. When \fBinvertedControls()\fP is enabled the value is scrolled towards its minimum\&.
  390. .PP
  391. Inverting the controls might be f\&.e\&. useful for a vertical slider with an inverted scale ( decreasing from top to bottom )\&.
  392. .PP
  393. \fBParameters\fP
  394. .RS 4
  395. \fIon\fP Invert controls, when true
  396. .RE
  397. .PP
  398. \fBSee also\fP
  399. .RS 4
  400. \fBinvertedControls()\fP, keyEvent(), \fBwheelEvent()\fP
  401. .RE
  402. .PP
  403. .SS "void QwtAbstractSlider::setPageSteps (uint stepCount)"
  404. .PP
  405. Set the number of steps for a page increment\&. The range of the slider is divided into a number of steps from which the value increments according to user inputs depend\&.
  406. .PP
  407. \fBParameters\fP
  408. .RS 4
  409. \fIstepCount\fP Number of steps
  410. .RE
  411. .PP
  412. \fBSee also\fP
  413. .RS 4
  414. \fBpageSteps()\fP, \fBsetTotalSteps()\fP, \fBsetSingleSteps()\fP
  415. .RE
  416. .PP
  417. .SS "void QwtAbstractSlider::setReadOnly (bool on)"
  418. En/Disable read only mode
  419. .PP
  420. In read only mode the slider can't be controlled by mouse or keyboard\&.
  421. .PP
  422. \fBParameters\fP
  423. .RS 4
  424. \fIon\fP Enables in case of true
  425. .RE
  426. .PP
  427. \fBSee also\fP
  428. .RS 4
  429. \fBisReadOnly()\fP
  430. .RE
  431. .PP
  432. \fBWarning\fP
  433. .RS 4
  434. The focus policy is set to Qt::StrongFocus or Qt::NoFocus
  435. .RE
  436. .PP
  437. .SS "void QwtAbstractSlider::setSingleSteps (uint stepCount)"
  438. .PP
  439. Set the number of steps for a single increment\&. The range of the slider is divided into a number of steps from which the value increments according to user inputs depend\&.
  440. .PP
  441. \fBParameters\fP
  442. .RS 4
  443. \fIstepCount\fP Number of steps
  444. .RE
  445. .PP
  446. \fBSee also\fP
  447. .RS 4
  448. \fBsingleSteps()\fP, \fBsetTotalSteps()\fP, \fBsetPageSteps()\fP
  449. .RE
  450. .PP
  451. .SS "void QwtAbstractSlider::setStepAlignment (bool on)"
  452. .PP
  453. Enable step alignment\&. When step alignment is enabled values resulting from slider movements are aligned to the step size\&.
  454. .PP
  455. \fBParameters\fP
  456. .RS 4
  457. \fIon\fP Enable step alignment when true
  458. .RE
  459. .PP
  460. \fBSee also\fP
  461. .RS 4
  462. \fBstepAlignment()\fP
  463. .RE
  464. .PP
  465. .SS "void QwtAbstractSlider::setTotalSteps (uint stepCount)"
  466. .PP
  467. Set the number of steps\&. The range of the slider is divided into a number of steps from which the value increments according to user inputs depend\&.
  468. .PP
  469. The default setting is 100\&.
  470. .PP
  471. \fBParameters\fP
  472. .RS 4
  473. \fIstepCount\fP Number of steps
  474. .RE
  475. .PP
  476. \fBSee also\fP
  477. .RS 4
  478. \fBtotalSteps()\fP, \fBsetSingleSteps()\fP, \fBsetPageSteps()\fP
  479. .RE
  480. .PP
  481. .SS "void QwtAbstractSlider::setTracking (bool on)"
  482. .PP
  483. Enables or disables tracking\&. If tracking is enabled, the slider emits the \fBvalueChanged()\fP signal while the movable part of the slider is being dragged\&. If tracking is disabled, the slider emits the \fBvalueChanged()\fP signal only when the user releases the slider\&.
  484. .PP
  485. Tracking is enabled by default\&.
  486. .PP
  487. \fBParameters\fP
  488. .RS 4
  489. \fIon\fP \fCtrue\fP (enable) or \fCfalse\fP (disable) tracking\&.
  490. .RE
  491. .PP
  492. \fBSee also\fP
  493. .RS 4
  494. \fBisTracking()\fP, \fBsliderMoved()\fP
  495. .RE
  496. .PP
  497. .SS "void QwtAbstractSlider::setValid (bool on)"
  498. Set the value to be valid/invalid
  499. .PP
  500. \fBParameters\fP
  501. .RS 4
  502. \fIon\fP When true, the value is invalidated
  503. .RE
  504. .PP
  505. \fBSee also\fP
  506. .RS 4
  507. \fBsetValue()\fP
  508. .RE
  509. .PP
  510. .SS "void QwtAbstractSlider::setValue (double value)\fC [slot]\fP"
  511. Set the slider to the specified value
  512. .PP
  513. \fBParameters\fP
  514. .RS 4
  515. \fIvalue\fP New value
  516. .RE
  517. .PP
  518. \fBSee also\fP
  519. .RS 4
  520. \fBsetValid()\fP, \fBsliderChange()\fP, \fBvalueChanged()\fP
  521. .RE
  522. .PP
  523. .SS "void QwtAbstractSlider::setWrapping (bool on)"
  524. If wrapping is true stepping up from \fBupperBound()\fP value will take you to the \fBminimum()\fP value and vice versa\&.
  525. .PP
  526. \fBParameters\fP
  527. .RS 4
  528. \fIon\fP En/Disable wrapping
  529. .RE
  530. .PP
  531. \fBSee also\fP
  532. .RS 4
  533. \fBwrapping()\fP
  534. .RE
  535. .PP
  536. .SS "uint QwtAbstractSlider::singleSteps () const"
  537. .PP
  538. \fBReturns\fP
  539. .RS 4
  540. Number of steps
  541. .RE
  542. .PP
  543. \fBSee also\fP
  544. .RS 4
  545. \fBsetSingleSteps()\fP, \fBtotalSteps()\fP, \fBpageSteps()\fP
  546. .RE
  547. .PP
  548. .SS "void QwtAbstractSlider::sliderMoved (double value)\fC [signal]\fP"
  549. This signal is emitted when the user moves the slider with the mouse\&.
  550. .PP
  551. \fBParameters\fP
  552. .RS 4
  553. \fIvalue\fP New value
  554. .RE
  555. .PP
  556. \fBSee also\fP
  557. .RS 4
  558. \fBvalueChanged()\fP
  559. .RE
  560. .PP
  561. .SS "void QwtAbstractSlider::sliderPressed ()\fC [signal]\fP"
  562. This signal is emitted when the user presses the movable part of the slider\&.
  563. .SS "void QwtAbstractSlider::sliderReleased ()\fC [signal]\fP"
  564. This signal is emitted when the user releases the movable part of the slider\&.
  565. .SS "bool QwtAbstractSlider::stepAlignment () const"
  566. .PP
  567. \fBReturns\fP
  568. .RS 4
  569. True, when step alignment is enabled
  570. .RE
  571. .PP
  572. \fBSee also\fP
  573. .RS 4
  574. \fBsetStepAlignment()\fP
  575. .RE
  576. .PP
  577. .SS "uint QwtAbstractSlider::totalSteps () const"
  578. .PP
  579. \fBReturns\fP
  580. .RS 4
  581. Number of steps
  582. .RE
  583. .PP
  584. \fBSee also\fP
  585. .RS 4
  586. \fBsetTotalSteps()\fP, \fBsingleSteps()\fP, \fBpageSteps()\fP
  587. .RE
  588. .PP
  589. .SS "void QwtAbstractSlider::valueChanged (double value)\fC [signal]\fP"
  590. .PP
  591. Notify a change of value\&. When tracking is enabled (default setting), this signal will be emitted every time the value changes\&.
  592. .PP
  593. \fBParameters\fP
  594. .RS 4
  595. \fIvalue\fP New value
  596. .RE
  597. .PP
  598. \fBSee also\fP
  599. .RS 4
  600. \fBsetTracking()\fP, \fBsliderMoved()\fP
  601. .RE
  602. .PP
  603. .SS "void QwtAbstractSlider::wheelEvent (QWheelEvent * event)\fC [protected]\fP, \fC [virtual]\fP"
  604. Wheel Event handler
  605. .PP
  606. In/decreases the value by s number of steps\&. The direction depends on the \fBinvertedControls()\fP property\&.
  607. .PP
  608. When the control or shift modifier is pressed the wheel delta ( divided by 120 ) is mapped to an increment according to \fBpageSteps()\fP\&. Otherwise it is mapped to \fBsingleSteps()\fP\&.
  609. .PP
  610. \fBParameters\fP
  611. .RS 4
  612. \fIevent\fP Wheel event
  613. .RE
  614. .PP
  615. .PP
  616. Reimplemented in \fBQwtDial\fP\&.
  617. .SS "bool QwtAbstractSlider::wrapping () const"
  618. .PP
  619. \fBReturns\fP
  620. .RS 4
  621. True, when wrapping is set
  622. .RE
  623. .PP
  624. \fBSee also\fP
  625. .RS 4
  626. \fBsetWrapping()\fP
  627. .RE
  628. .PP
  629. .SH "Author"
  630. .PP
  631. Generated automatically by Doxygen for Qwt User's Guide from the source code\&.