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 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>Qwt User's Guide: QwtCounter Class Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.3.8 -->
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a> | <a class="qindex" href="pages.html">Related Pages</a></div>
<h1>QwtCounter Class Reference</h1>Inheritance diagram for QwtCounter:<p><center><img src="class_qwt_counter__inherit__graph.png" border="0" usemap="#_qwt_counter__inherit__map" alt="Inheritance graph"></center>
<map name="_qwt_counter__inherit__map">
<area href="class_qwt_dbl_range.html" shape="rect" coords="7,18,102,42" alt="">
</map>
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center>Collaboration diagram for QwtCounter:<p><center><img src="class_qwt_counter__coll__graph.png" border="0" usemap="#_qwt_counter__coll__map" alt="Collaboration graph"></center>
<map name="_qwt_counter__coll__map">
<area href="class_qwt_dbl_range.html" shape="rect" coords="6,19,102,43" alt="">
<area href="class_qwt_arrow_button.html" shape="rect" coords="126,19,235,43" alt="">
</map>
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center><a href="class_qwt_counter-members.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2>
The Counter Widget.
<p>
A Counter consists of a label displaying a number and one ore more (up to three) push buttons on each side of the label which can be used to increment or decrement the counter's value.<p>
A Counter has a range from a minimum value to a maximum value and a step size. The range can be specified using <a class="el" href="class_qwt_dbl_range.html#a2">QwtDblRange::setRange()</a>. The counter's value is an integer multiple of the step size. The number of steps by which a button increments or decrements the value can be specified using <a class="el" href="class_qwt_counter.html#a16">QwtCounter::setIncSteps()</a>. The number of buttons can be changed with <a class="el" href="class_qwt_counter.html#a14">QwtCounter::setNumButtons()</a>.<p>
Holding the space bar down with focus on a button is the fastest method to step through the counter values. When the counter underflows/overflows, the focus is set to the smallest up/down button and counting is disabled. Counting is re-enabled on a button release event (mouse or space bar).<p>
Example: <div class="fragment"><pre><span class="preprocessor">#include "../include/qwt_counter.h></span>
<a class="code" href="class_qwt_counter.html">QwtCounter</a> *cnt;
cnt = <span class="keyword">new</span> <a class="code" href="class_qwt_counter.html#a0">QwtCounter</a>(parent, name);
cnt-><a class="code" href="class_qwt_dbl_range.html#a2">setRange</a>(0.0, 100.0, 1.0); <span class="comment">// From 0.0 to 100, step 1.0</span>
cnt-><a class="code" href="class_qwt_counter.html#a14">setNumButtons</a>(2); <span class="comment">// Two buttons each side</span>
cnt-><a class="code" href="class_qwt_counter.html#a16">setIncSteps</a>(QwtCounter::Button1, 1); <span class="comment">// Button 1 increments 1 step</span>
cnt-><a class="code" href="class_qwt_counter.html#a16">setIncSteps</a>(QwtCounter::Button2, 20); <span class="comment">// Button 2 increments 20 steps</span>
connect(cnt, SIGNAL(<a class="code" href="class_qwt_counter.html#l1">valueChanged</a>(<span class="keywordtype">double</span>)), my_class, SLOT(newValue(<span class="keywordtype">double</span>)));
</pre></div>
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00063">63</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>.<table border=0 cellpadding=0 cellspacing=0>
<tr><td></td></tr>
<tr><td colspan=2><br><h2>Public Types</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>enum </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#w4">Button</a> { <br>
<b>Button1</b>,
<br>
<b>Button2</b>,
<br>
<b>Button3</b>,
<br>
<b>ButtonCnt</b>
<br>
}</td></tr>
<tr><td colspan=2><br><h2>Signals</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#l0">buttonReleased</a> (double value)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#l1">valueChanged</a> (double value)</td></tr>
<tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top> </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a0">QwtCounter</a> (QWidget *parent=0, const char *name=0)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>double </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a1">step</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a2">setStep</a> (double s)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>double </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a3">minVal</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a4">setMinValue</a> (double m)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>double </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a5">maxVal</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a6">setMaxValue</a> (double m)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a7">setStepButton1</a> (int nSteps)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>int </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a8">stepButton1</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a9">setStepButton2</a> (int nSteps)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>int </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a10">stepButton2</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a11">setStepButton3</a> (int nSteps)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>int </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a12">stepButton3</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual double </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a13">value</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a14">setNumButtons</a> (int n)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>int </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a15">numButtons</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a16">setIncSteps</a> (<a class="el" href="class_qwt_counter.html#w4">QwtCounter::Button</a> btn, int nSteps)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>int </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a17">incSteps</a> (<a class="el" href="class_qwt_counter.html#w4">QwtCounter::Button</a> btn) const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a18">setValue</a> (double)</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual QSizePolicy </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a19">sizePolicy</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual QSize </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a20">sizeHint</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual bool </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#a21">eventFilter</a> (QObject *, QEvent *)</td></tr>
<tr><td colspan=2><br><h2>Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#b0">rangeChange</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void </td><td class="memItemRight" valign=bottom><a class="el" href="class_qwt_counter.html#b1">fontChange</a> (const QFont &f)</td></tr>
</table>
<hr><h2>Member Enumeration Documentation</h2>
<a class="anchor" name="w4" doxytag="QwtCounter::Button" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> enum <a class="el" href="class_qwt_counter.html#w4">QwtCounter::Button</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Button index Definition at line <a class="el" href="qwt__counter_8h-source.html#l00081">81</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>. </td>
</tr>
</table>
<hr><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" name="a0" doxytag="QwtCounter::QwtCounter" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> QwtCounter::QwtCounter </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">QWidget * </td>
<td class="mdname" nowrap> <em>parent</em> = <code>0</code>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>const char * </td>
<td class="mdname" nowrap> <em>name</em> = <code>0</code></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
The default number of buttons is set to 2. The default increments are: <ul>
<li>Button 1: 1 step </li>
<li>Button 2: 10 steps </li>
<li>Button 3: 100 steps</li>
</ul>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>parent</em> </td><td></td></tr>
<tr><td></td><td valign=top><em>name</em> </td><td>Forwarded to QWidget's ctor. </td></tr>
</table>
</dl>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00027">27</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>.
<p>
References <a class="el" href="qwt__counter_8cpp-source.html#l00222">setNumButtons()</a>, <a class="el" href="qwt__drange_8cpp-source.html#l00169">QwtDblRange::setRange()</a>, and <a class="el" href="qwt__counter_8cpp-source.html#l00142">setValue()</a>. </td>
</tr>
</table>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="l0" doxytag="QwtCounter::buttonReleased" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::buttonReleased </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">double </td>
<td class="mdname1" valign="top" nowrap> <em>value</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap><code> [signal]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
This signal is emitted when a button has been released <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>value</em> </td><td>The new value </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a21" doxytag="QwtCounter::eventFilter" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> bool QwtCounter::eventFilter </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">QObject * </td>
<td class="mdname" nowrap>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>QEvent * </td>
<td class="mdname" nowrap></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"><code> [virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Keep track of key press and release events.
<p>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00078">78</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>. </td>
</tr>
</table>
<a class="anchor" name="b1" doxytag="QwtCounter::fontChange" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::fontChange </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const QFont & </td>
<td class="mdname1" valign="top" nowrap> <em>f</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap><code> [protected, virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Notify change of font.
<p>
This function updates the fonts of all widgets contained in QwtCounter. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>f</em> </td><td>new font </td></tr>
</table>
</dl>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00308">308</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>. </td>
</tr>
</table>
<a class="anchor" name="a17" doxytag="QwtCounter::incSteps" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> int QwtCounter::incSteps </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="class_qwt_counter.html#w4">QwtCounter::Button</a> </td>
<td class="mdname1" valign="top" nowrap> <em>btn</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
<dl compact><dt><b>Returns:</b></dt><dd>the number of steps by which a specified button increments the value or 0 if the button is invalid. </dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>btn</em> </td><td>One of <code>QwtCounter::Button1</code>, <code>QwtCounter::Button2</code>, <code>QwtCounter::Button3</code> </td></tr>
</table>
</dl>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00127">127</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>. </td>
</tr>
</table>
<a class="anchor" name="a5" doxytag="QwtCounter::maxVal" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> double QwtCounter::maxVal </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
returns the maximum value of the range
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00094">94</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>.
<p>
References <a class="el" href="qwt__drange_8cpp-source.html#l00326">QwtDblRange::maxValue()</a>. </td>
</tr>
</table>
<a class="anchor" name="a3" doxytag="QwtCounter::minVal" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> double QwtCounter::minVal </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
returns the minimum value of the range
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00090">90</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>.
<p>
References <a class="el" href="qwt__drange_8cpp-source.html#l00339">QwtDblRange::minValue()</a>. </td>
</tr>
</table>
<a class="anchor" name="a15" doxytag="QwtCounter::numButtons" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> int QwtCounter::numButtons </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The number of buttons on each side of the widget. </dd></dl>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00247">247</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>. </td>
</tr>
</table>
<a class="anchor" name="b0" doxytag="QwtCounter::rangeChange" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::rangeChange </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap><code> [protected, virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Notify change of range.
<p>
This function updates the enabled property of all buttons contained in QwtCounter.
<p>
Reimplemented from <a class="el" href="class_qwt_dbl_range.html#b5">QwtDblRange</a>.
<p>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00296">296</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>. </td>
</tr>
</table>
<a class="anchor" name="a16" doxytag="QwtCounter::setIncSteps" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::setIncSteps </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="class_qwt_counter.html#w4">QwtCounter::Button</a> </td>
<td class="mdname" nowrap> <em>btn</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>int </td>
<td class="mdname" nowrap> <em>nSteps</em></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specify the number of steps by which the value is incremented or decremented when a specified button is pushed.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>btn</em> </td><td>One of <code>QwtCounter::Button1</code>, <code>QwtCounter::Button2</code>, <code>QwtCounter::Button3</code> </td></tr>
<tr><td></td><td valign=top><em>nSteps</em> </td><td>Number of steps </td></tr>
</table>
</dl>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00115">115</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>. </td>
</tr>
</table>
<a class="anchor" name="a6" doxytag="QwtCounter::setMaxValue" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::setMaxValue </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">double </td>
<td class="mdname1" valign="top" nowrap> <em>m</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
sets the maximum value of the range
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00096">96</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>.
<p>
References <a class="el" href="qwt__drange_8cpp-source.html#l00339">QwtDblRange::minValue()</a>, <a class="el" href="qwt__drange_8cpp-source.html#l00169">QwtDblRange::setRange()</a>, and <a class="el" href="qwt__drange_8cpp-source.html#l00313">QwtDblRange::step()</a>. </td>
</tr>
</table>
<a class="anchor" name="a4" doxytag="QwtCounter::setMinValue" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::setMinValue </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">double </td>
<td class="mdname1" valign="top" nowrap> <em>m</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
sets the minimum value of the range
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00092">92</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>.
<p>
References <a class="el" href="qwt__drange_8cpp-source.html#l00326">QwtDblRange::maxValue()</a>, <a class="el" href="qwt__drange_8cpp-source.html#l00169">QwtDblRange::setRange()</a>, and <a class="el" href="qwt__drange_8cpp-source.html#l00313">QwtDblRange::step()</a>. </td>
</tr>
</table>
<a class="anchor" name="a14" doxytag="QwtCounter::setNumButtons" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::setNumButtons </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">int </td>
<td class="mdname1" valign="top" nowrap> <em>n</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specify the number of buttons on each side of the label.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>n</em> </td><td>Number of buttons </td></tr>
</table>
</dl>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00222">222</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>.
<p>
Referenced by <a class="el" href="qwt__counter_8cpp-source.html#l00027">QwtCounter()</a>. </td>
</tr>
</table>
<a class="anchor" name="a2" doxytag="QwtCounter::setStep" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::setStep </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">double </td>
<td class="mdname1" valign="top" nowrap> <em>s</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
sets the step size
<p>
<p>
Reimplemented from <a class="el" href="class_qwt_dbl_range.html#a9">QwtDblRange</a>.
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00088">88</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>.
<p>
References <a class="el" href="qwt__drange_8cpp-source.html#l00208">QwtDblRange::setStep()</a>. </td>
</tr>
</table>
<a class="anchor" name="a7" doxytag="QwtCounter::setStepButton1" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::setStepButton1 </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">int </td>
<td class="mdname1" valign="top" nowrap> <em>nSteps</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
set the number of increment steps for button 1
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00098">98</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>. </td>
</tr>
</table>
<a class="anchor" name="a9" doxytag="QwtCounter::setStepButton2" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::setStepButton2 </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">int </td>
<td class="mdname1" valign="top" nowrap> <em>nSteps</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
set the number of increment steps for button 2
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00102">102</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>. </td>
</tr>
</table>
<a class="anchor" name="a11" doxytag="QwtCounter::setStepButton3" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::setStepButton3 </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">int </td>
<td class="mdname1" valign="top" nowrap> <em>nSteps</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
set the number of increment steps for button 3
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00106">106</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>. </td>
</tr>
</table>
<a class="anchor" name="a18" doxytag="QwtCounter::setValue" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::setValue </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">double </td>
<td class="mdname1" valign="top" nowrap> <em>v</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap><code> [virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Set a new value.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>v</em> </td><td>new value Calls <a class="el" href="class_qwt_dbl_range.html#a5">QwtDblRange::setValue</a> and does all visual updates. </td></tr>
</table>
</dl>
<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="class_qwt_dbl_range.html#a5">QwtDblRange::setValue</a> </dd></dl>
<p>
Reimplemented from <a class="el" href="class_qwt_dbl_range.html#a5">QwtDblRange</a>.
<p>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00142">142</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>.
<p>
References <a class="el" href="qwt__drange_8cpp-source.html#l00147">QwtDblRange::setValue()</a>, and <a class="el" href="qwt__counter_8h-source.html#l00109">value()</a>.
<p>
Referenced by <a class="el" href="qwt__counter_8cpp-source.html#l00027">QwtCounter()</a>. </td>
</tr>
</table>
<a class="anchor" name="a20" doxytag="QwtCounter::sizeHint" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> QSize QwtCounter::sizeHint </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const<code> [virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
A size hint.
<p>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00315">315</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>.
<p>
References <a class="el" href="qwt__counter_8h-source.html#l00086">step()</a>. </td>
</tr>
</table>
<a class="anchor" name="a19" doxytag="QwtCounter::sizePolicy" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> QSizePolicy QwtCounter::sizePolicy </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const<code> [virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Preferred/Fixed.
<p>
Definition at line <a class="el" href="qwt__counter_8cpp-source.html#l00350">350</a> of file <a class="el" href="qwt__counter_8cpp-source.html">qwt_counter.cpp</a>. </td>
</tr>
</table>
<a class="anchor" name="a1" doxytag="QwtCounter::step" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> double QwtCounter::step </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
returns the step size
<p>
<p>
Reimplemented from <a class="el" href="class_qwt_dbl_range.html#a10">QwtDblRange</a>.
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00086">86</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>.
<p>
References <a class="el" href="qwt__drange_8cpp-source.html#l00313">QwtDblRange::step()</a>.
<p>
Referenced by <a class="el" href="qwt__counter_8cpp-source.html#l00315">sizeHint()</a>. </td>
</tr>
</table>
<a class="anchor" name="a8" doxytag="QwtCounter::stepButton1" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> int QwtCounter::stepButton1 </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
returns the number of increment steps for button 1
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00100">100</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>. </td>
</tr>
</table>
<a class="anchor" name="a10" doxytag="QwtCounter::stepButton2" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> int QwtCounter::stepButton2 </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
returns the number of increment steps for button 2
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00104">104</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>. </td>
</tr>
</table>
<a class="anchor" name="a12" doxytag="QwtCounter::stepButton3" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> int QwtCounter::stepButton3 </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
returns the number of increment steps for button 3
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00108">108</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>. </td>
</tr>
</table>
<a class="anchor" name="a13" doxytag="QwtCounter::value" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> virtual double QwtCounter::value </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const<code> [virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Returns the current value.
<p>
<p>
Reimplemented from <a class="el" href="class_qwt_dbl_range.html#a6">QwtDblRange</a>.
<p>
Definition at line <a class="el" href="qwt__counter_8h-source.html#l00109">109</a> of file <a class="el" href="qwt__counter_8h-source.html">qwt_counter.h</a>.
<p>
References <a class="el" href="qwt__drange_8cpp-source.html#l00360">QwtDblRange::value()</a>.
<p>
Referenced by <a class="el" href="qwt__counter_8cpp-source.html#l00142">setValue()</a>. </td>
</tr>
</table>
<a class="anchor" name="l1" doxytag="QwtCounter::valueChanged" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void QwtCounter::valueChanged </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">double </td>
<td class="mdname1" valign="top" nowrap> <em>value</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap><code> [signal]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
This signal is emitted when the counter's value has changed <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>value</em> </td><td>The new value </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Nov 16 21:12:24 2004 for Qwt User's Guide by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
</body>
</html>
|