File: classCEGUI_1_1Spinner.html

package info (click to toggle)
cegui-mk2 0.7.6-3.3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 105,388 kB
  • ctags: 82,178
  • sloc: cpp: 142,729; ansic: 27,984; sh: 11,010; makefile: 2,275; python: 916; xml: 17
file content (975 lines) | stat: -rw-r--r-- 69,584 bytes parent folder | download | duplicates (2)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Crazy Eddies GUI System: CEGUI::Spinner Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript">
function hasClass(ele,cls) {
  return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}

function addClass(ele,cls) {
  if (!this.hasClass(ele,cls)) ele.className += " "+cls;
}

function removeClass(ele,cls) {
  if (hasClass(ele,cls)) {
    var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');
    ele.className=ele.className.replace(reg,' ');
  }
}

function toggleVisibility(linkObj) {
 var base = linkObj.getAttribute('id');
 var summary = document.getElementById(base + '-summary');
 var content = document.getElementById(base + '-content');
 var trigger = document.getElementById(base + '-trigger');
 if ( hasClass(linkObj,'closed') ) {
   summary.style.display = 'none';
   content.style.display = 'block';
   trigger.src = 'open.png';
   removeClass(linkObj,'closed');
   addClass(linkObj,'opened');
 } else if ( hasClass(linkObj,'opened') ) {
   summary.style.display = 'block';
   content.style.display = 'none';
   trigger.src = 'closed.png';
   removeClass(linkObj,'opened');
   addClass(linkObj,'closed');
 }
 return false;
}
</script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">Crazy Eddies GUI System&#160;<span id="projectnumber">0.7.6</span></div>
  </td>
 </tr>
 </tbody>
</table>
</div>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
  <div id="nav-path" class="navpath">
    <ul>
      <li class="navelem"><a class="el" href="namespaceCEGUI.html">CEGUI</a>      </li>
      <li class="navelem"><a class="el" href="classCEGUI_1_1Spinner.html">Spinner</a>      </li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#pub-types">Public Types</a> &#124;
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-attribs">Static Public Attributes</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="#pro-attribs">Protected Attributes</a> &#124;
<a href="#pro-static-attribs">Static Protected Attributes</a>  </div>
  <div class="headertitle">
<div class="title">CEGUI::Spinner Class Reference</div>  </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::Spinner" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Base class for the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a> widget.  
 <a href="classCEGUI_1_1Spinner.html#details">More...</a></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-0-trigger" src="closed.png"/> Inheritance diagram for CEGUI::Spinner:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1Spinner__inherit__graph.gif" border="0" usemap="#CEGUI_1_1Spinner_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1Spinner_inherit__map" id="CEGUI_1_1Spinner_inherit__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="16,83,136,112"/><area shape="rect" id="node4" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects." alt="" coords="5,5,147,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-1-trigger" src="closed.png"/> Collaboration diagram for CEGUI::Spinner:</div>
<div id="dynsection-1-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-1-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1Spinner__coll__graph.gif" border="0" usemap="#CEGUI_1_1Spinner_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1Spinner_coll__map" id="CEGUI_1_1Spinner_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="81,81,201,111"/><area shape="rect" id="node5" href="classCEGUI_1_1SpinnerProperties_1_1MinimumValue.html" title="Property to access the minimum value setting of the spinner." alt="" coords="7,135,276,164"/><area shape="rect" id="node7" href="classCEGUI_1_1SpinnerProperties_1_1CurrentValue.html" title="Property to access the current value of the spinner." alt="" coords="12,188,271,217"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classCEGUI_1_1Spinner-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852">TextInputMode</a> { <a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852aa62ce29a410e0892e7bd168fa20c5272">FloatingPoint</a>, 
<a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852afd98afcc39ed0cd5147c80928b7c036f">Integer</a>, 
<a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852adb7f2fd2ab945cc27b22a635487129e7">Hexadecimal</a>, 
<a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852add6979ec97691640117b1437568cce4b">Octal</a>
 }</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Enumerated type specifying possible input and/or display modes for the spinner.  <a href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4c249a1522b5f4fe79d211ab8a772711"></a><!-- doxytag: member="CEGUI::Spinner::Spinner" ref="a4c249a1522b5f4fe79d211ab8a772711" args="(const String &amp;type, const String &amp;name)" -->
&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a4c249a1522b5f4fe79d211ab8a772711">Spinner</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;type, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;name)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor for <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a> objects. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa8fea9423baae629317c850a9c9352a5"></a><!-- doxytag: member="CEGUI::Spinner::~Spinner" ref="aa8fea9423baae629317c850a9c9352a5" args="(void)" -->
virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#aa8fea9423baae629317c850a9c9352a5">~Spinner</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor for <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a> objects. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a4dc095a2709a323d66c00d1d9e22739a">initialiseComponents</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Initialises the <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> based object ready for use.  <a href="#a4dc095a2709a323d66c00d1d9e22739a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a633e5675a8439795d4a44d218f910099">getCurrentValue</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current spinner value.  <a href="#a633e5675a8439795d4a44d218f910099"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#ad482932dfa0694aa73431d0eb5b2c6e3">getStepSize</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current step value.  <a href="#ad482932dfa0694aa73431d0eb5b2c6e3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a88bb7365d95fb56a9c1c702c35c26076">getMaximumValue</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current maximum limit value for the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>.  <a href="#a88bb7365d95fb56a9c1c702c35c26076"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a79d6c43a1f87eebfaeea4f5db679b295">getMinimumValue</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current minimum limit value for the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>.  <a href="#a79d6c43a1f87eebfaeea4f5db679b295"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852">TextInputMode</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a39d421f5635eb21b2a37d031b69ad88a">getTextInputMode</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current text input / display mode setting.  <a href="#a39d421f5635eb21b2a37d031b69ad88a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a10546255f830880f421fad5a88f580ce">setCurrentValue</a> (double value)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the current spinner value.  <a href="#a10546255f830880f421fad5a88f580ce"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a1587a149621787627f64edca2f644ebd">setStepSize</a> (double step)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the current step value.  <a href="#a1587a149621787627f64edca2f644ebd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a90df8b1dbea4911cf1716bd5e81ac1b7">setMaximumValue</a> (double maxValue)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the spinner maximum value.  <a href="#a90df8b1dbea4911cf1716bd5e81ac1b7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#ab042d9da738e7ec9acb8d59fd5662abe">setMinimumValue</a> (double minVaue)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the spinner minimum value.  <a href="#ab042d9da738e7ec9acb8d59fd5662abe"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a106c399962cebc04d0be7d66bc5f14dd">setTextInputMode</a> (<a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852">TextInputMode</a> mode)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the spinner input / display mode.  <a href="#a106c399962cebc04d0be7d66bc5f14dd"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac7254f9946332f39944854db2870c463"></a><!-- doxytag: member="CEGUI::Spinner::WidgetTypeName" ref="ac7254f9946332f39944854db2870c463" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#ac7254f9946332f39944854db2870c463">WidgetTypeName</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> factory name. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a51f26394757b205c1296e6ecbc2fb6d6"></a><!-- doxytag: member="CEGUI::Spinner::EventNamespace" ref="a51f26394757b205c1296e6ecbc2fb6d6" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a51f26394757b205c1296e6ecbc2fb6d6">EventNamespace</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Namespace for global events. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a1153271aed784131141c8b7827e9015d">EventValueChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#af21ac6e75e81ec9d08137dcb50223be7">EventStepChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a8d8364d65812a18c227f5855dd3fd514">EventMaximumValueChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#abca5f6bcbf6f3ea75ef4a5a4be7febda">EventMinimumValueChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a0c9ff04daca688938b0f72baf1166fcd">EventTextInputModeChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab6c1b5fdf0ffa282ec71fd874b23405b"></a><!-- doxytag: member="CEGUI::Spinner::EditboxNameSuffix" ref="ab6c1b5fdf0ffa282ec71fd874b23405b" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#ab6c1b5fdf0ffa282ec71fd874b23405b">EditboxNameSuffix</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Widget name suffix for the editbox thumb component. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afafeb593ccc5a4445eddab7df8f90495"></a><!-- doxytag: member="CEGUI::Spinner::IncreaseButtonNameSuffix" ref="afafeb593ccc5a4445eddab7df8f90495" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#afafeb593ccc5a4445eddab7df8f90495">IncreaseButtonNameSuffix</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Widget name suffix for the increase button component. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2629f51a593f58ffefafbdbf94e2b196"></a><!-- doxytag: member="CEGUI::Spinner::DecreaseButtonNameSuffix" ref="a2629f51a593f58ffefafbdbf94e2b196" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a2629f51a593f58ffefafbdbf94e2b196">DecreaseButtonNameSuffix</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Widget name suffix for the decrease button component. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a1a20cfa9fad2e1f733efd49cc5e59de8">getValueFromText</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the numerical representation of the current editbox text.  <a href="#a1a20cfa9fad2e1f733efd49cc5e59de8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#ad633624a81d166198905c896444792cb">getTextFromValue</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the textual representation of the current spinner value.  <a href="#ad633624a81d166198905c896444792cb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#ab60981ec45f022a380f36c1ab054cc36">testClassName_impl</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;class_name) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return whether this window was inherited from the given class name at some point in the inheritance hierarchy.  <a href="#ab60981ec45f022a380f36c1ab054cc36"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1PushButton.html">PushButton</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#aa718203c4c32fa1754e193c36ab1669e">getIncreaseButton</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return a pointer to the 'increase' PushButtoncomponent widget for this <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>.  <a href="#aa718203c4c32fa1754e193c36ab1669e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1PushButton.html">PushButton</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a4441fd24f28129ab901e6a74ded49b11">getDecreaseButton</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return a pointer to the 'decrease' <a class="el" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a> component widget for this <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>.  <a href="#a4441fd24f28129ab901e6a74ded49b11"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Editbox.html">Editbox</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#af1ab81ae82192d3ff67083aa4f9254fe">getEditbox</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return a pointer to the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> component widget for this <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>.  <a href="#af1ab81ae82192d3ff67083aa4f9254fe"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#afdb841158a22e241194606df5247314f">onFontChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when the window's font is changed.  <a href="#afdb841158a22e241194606df5247314f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a6cb35468956a433db5ef813edf0be5d9">onTextChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when the window's text is changed.  <a href="#a6cb35468956a433db5ef813edf0be5d9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a98d51f4708d97b99d0a8488eb66c0f20">onActivated</a> (<a class="el" href="classCEGUI_1_1ActivationEventArgs.html">ActivationEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when this window has become the active window.  <a href="#a98d51f4708d97b99d0a8488eb66c0f20"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#acaff4bae65ad234c09b7cc203b0c5c20">onValueChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Method called when the spinner value changes.  <a href="#acaff4bae65ad234c09b7cc203b0c5c20"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a93a860b2bc1a20aa91205db74d47c8a2">onStepChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Method called when the step value changes.  <a href="#a93a860b2bc1a20aa91205db74d47c8a2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a8ce0779e71506e422b9df429d4fee542">onMaximumValueChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Method called when the maximum value setting changes.  <a href="#a8ce0779e71506e422b9df429d4fee542"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a86e46638e642b26d2d1ec03e7bb70088">onMinimumValueChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Method called when the minimum value setting changes.  <a href="#a86e46638e642b26d2d1ec03e7bb70088"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#ab9d83e3436ff87cd38fc027ac7fc19f1">onTextInputModeChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Method called when the text input/display mode is changed.  <a href="#ab9d83e3436ff87cd38fc027ac7fc19f1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad7743086e9e34ffd43d9b5d8da8c3285"></a><!-- doxytag: member="CEGUI::Spinner::handleIncreaseButton" ref="ad7743086e9e34ffd43d9b5d8da8c3285" args="(const EventArgs &amp;e)" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><b>handleIncreaseButton</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &amp;e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac0e6f871504343ff16313fd44418562e"></a><!-- doxytag: member="CEGUI::Spinner::handleDecreaseButton" ref="ac0e6f871504343ff16313fd44418562e" args="(const EventArgs &amp;e)" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><b>handleDecreaseButton</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &amp;e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ade1c9fcae4cb8d9cfe5181b97c1e3cf4"></a><!-- doxytag: member="CEGUI::Spinner::handleEditTextChange" ref="ade1c9fcae4cb8d9cfe5181b97c1e3cf4" args="(const EventArgs &amp;e)" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><b>handleEditTextChange</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &amp;e)</td></tr>
<tr><td colspan="2"><h2><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5d15c56e2aaffcb87c5646ac9fc8a9fc"></a><!-- doxytag: member="CEGUI::Spinner::d_stepSize" ref="a5d15c56e2aaffcb87c5646ac9fc8a9fc" args="" -->
double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a5d15c56e2aaffcb87c5646ac9fc8a9fc">d_stepSize</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Step size value used y the increase &amp; decrease buttons. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7363ac19ddc93f53bb336e6ef669f0ed"></a><!-- doxytag: member="CEGUI::Spinner::d_currentValue" ref="a7363ac19ddc93f53bb336e6ef669f0ed" args="" -->
double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a7363ac19ddc93f53bb336e6ef669f0ed">d_currentValue</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Numerical copy of the text in d_editbox. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab4d35ac6721305166f93bc4dac76d661"></a><!-- doxytag: member="CEGUI::Spinner::d_maxValue" ref="ab4d35ac6721305166f93bc4dac76d661" args="" -->
double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#ab4d35ac6721305166f93bc4dac76d661">d_maxValue</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Maximum value for spinner. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af5932cf4470fd096655707bdec8a8950"></a><!-- doxytag: member="CEGUI::Spinner::d_minValue" ref="af5932cf4470fd096655707bdec8a8950" args="" -->
double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#af5932cf4470fd096655707bdec8a8950">d_minValue</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Minimum value for spinner. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa56eb5135d6e5155e5735f07a9c93ac6"></a><!-- doxytag: member="CEGUI::Spinner::d_inputMode" ref="aa56eb5135d6e5155e5735f07a9c93ac6" args="" -->
<a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852">TextInputMode</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#aa56eb5135d6e5155e5735f07a9c93ac6">d_inputMode</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Current text display/input mode. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-static-attribs"></a>
Static Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae407aafeec35af6e9bb30028c5affd8e"></a><!-- doxytag: member="CEGUI::Spinner::FloatValidator" ref="ae407aafeec35af6e9bb30028c5affd8e" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#ae407aafeec35af6e9bb30028c5affd8e">FloatValidator</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Validator regex used for floating point mode. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a10ce4de2e69022670425b9eb753fe5f1"></a><!-- doxytag: member="CEGUI::Spinner::IntegerValidator" ref="a10ce4de2e69022670425b9eb753fe5f1" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a10ce4de2e69022670425b9eb753fe5f1">IntegerValidator</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Validator regex used for decimal integer mode. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3a0aabb5871cfd1dae27d3e5c4e6cf4b"></a><!-- doxytag: member="CEGUI::Spinner::HexValidator" ref="a3a0aabb5871cfd1dae27d3e5c4e6cf4b" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#a3a0aabb5871cfd1dae27d3e5c4e6cf4b">HexValidator</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Validator regex used for hexadecimal mode. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae5897ad64cd2fcc15f8fe143245562ed"></a><!-- doxytag: member="CEGUI::Spinner::OctalValidator" ref="ae5897ad64cd2fcc15f8fe143245562ed" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Spinner.html#ae5897ad64cd2fcc15f8fe143245562ed">OctalValidator</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Validator regex used for octal mode. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Base class for the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a> widget. </p>
<p>The spinner widget has a text area where numbers may be entered and two buttons which may be used to increase or decrease the value in the text area by a user specified amount. </p>
</div><hr/><h2>Member Enumeration Documentation</h2>
<a class="anchor" id="a70c46e4b0636aafb946a571c1f175852"></a><!-- doxytag: member="CEGUI::Spinner::TextInputMode" ref="a70c46e4b0636aafb946a571c1f175852" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852">CEGUI::Spinner::TextInputMode</a></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Enumerated type specifying possible input and/or display modes for the spinner. </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="a70c46e4b0636aafb946a571c1f175852aa62ce29a410e0892e7bd168fa20c5272"></a><!-- doxytag: member="FloatingPoint" ref="a70c46e4b0636aafb946a571c1f175852aa62ce29a410e0892e7bd168fa20c5272" args="" -->FloatingPoint</em>&nbsp;</td><td>
<p>Floating point decimal. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a70c46e4b0636aafb946a571c1f175852afd98afcc39ed0cd5147c80928b7c036f"></a><!-- doxytag: member="Integer" ref="a70c46e4b0636aafb946a571c1f175852afd98afcc39ed0cd5147c80928b7c036f" args="" -->Integer</em>&nbsp;</td><td>
<p>Integer decimal. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a70c46e4b0636aafb946a571c1f175852adb7f2fd2ab945cc27b22a635487129e7"></a><!-- doxytag: member="Hexadecimal" ref="a70c46e4b0636aafb946a571c1f175852adb7f2fd2ab945cc27b22a635487129e7" args="" -->Hexadecimal</em>&nbsp;</td><td>
<p>Hexadecimal. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a70c46e4b0636aafb946a571c1f175852add6979ec97691640117b1437568cce4b"></a><!-- doxytag: member="Octal" ref="a70c46e4b0636aafb946a571c1f175852add6979ec97691640117b1437568cce4b" args="" -->Octal</em>&nbsp;</td><td>
<p>Octal. </p>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a633e5675a8439795d4a44d218f910099"></a><!-- doxytag: member="CEGUI::Spinner::getCurrentValue" ref="a633e5675a8439795d4a44d218f910099" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double CEGUI::Spinner::getCurrentValue </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the current spinner value. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>current value of the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a4441fd24f28129ab901e6a74ded49b11"></a><!-- doxytag: member="CEGUI::Spinner::getDecreaseButton" ref="a4441fd24f28129ab901e6a74ded49b11" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1PushButton.html">PushButton</a>* CEGUI::Spinner::getDecreaseButton </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return a pointer to the 'decrease' <a class="el" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a> component widget for this <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a> object.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>Thrown if the 'decrease' <a class="el" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a> component does not exist. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="af1ab81ae82192d3ff67083aa4f9254fe"></a><!-- doxytag: member="CEGUI::Spinner::getEditbox" ref="af1ab81ae82192d3ff67083aa4f9254fe" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1Editbox.html">Editbox</a>* CEGUI::Spinner::getEditbox </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return a pointer to the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> component widget for this <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> object.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>Thrown if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> component does not exist. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aa718203c4c32fa1754e193c36ab1669e"></a><!-- doxytag: member="CEGUI::Spinner::getIncreaseButton" ref="aa718203c4c32fa1754e193c36ab1669e" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1PushButton.html">PushButton</a>* CEGUI::Spinner::getIncreaseButton </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return a pointer to the 'increase' PushButtoncomponent widget for this <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a> object.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>Thrown if the increase <a class="el" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a> component does not exist. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a88bb7365d95fb56a9c1c702c35c26076"></a><!-- doxytag: member="CEGUI::Spinner::getMaximumValue" ref="a88bb7365d95fb56a9c1c702c35c26076" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double CEGUI::Spinner::getMaximumValue </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the current maximum limit value for the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Maximum value that is allowed for the spinner. </dd></dl>

</div>
</div>
<a class="anchor" id="a79d6c43a1f87eebfaeea4f5db679b295"></a><!-- doxytag: member="CEGUI::Spinner::getMinimumValue" ref="a79d6c43a1f87eebfaeea4f5db679b295" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double CEGUI::Spinner::getMinimumValue </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the current minimum limit value for the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Minimum value that is allowed for the spinner. </dd></dl>

</div>
</div>
<a class="anchor" id="ad482932dfa0694aa73431d0eb5b2c6e3"></a><!-- doxytag: member="CEGUI::Spinner::getStepSize" ref="ad482932dfa0694aa73431d0eb5b2c6e3" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double CEGUI::Spinner::getStepSize </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the current step value. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Step value. This is the value added to the spinner vaue when the up / down buttons are clicked. </dd></dl>

</div>
</div>
<a class="anchor" id="ad633624a81d166198905c896444792cb"></a><!-- doxytag: member="CEGUI::Spinner::getTextFromValue" ref="ad633624a81d166198905c896444792cb" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual <a class="el" href="classCEGUI_1_1String.html">String</a> CEGUI::Spinner::getTextFromValue </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the textual representation of the current spinner value. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object that is equivalent to the the numerical value of the spinner. </dd></dl>

</div>
</div>
<a class="anchor" id="a39d421f5635eb21b2a37d031b69ad88a"></a><!-- doxytag: member="CEGUI::Spinner::getTextInputMode" ref="a39d421f5635eb21b2a37d031b69ad88a" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852">TextInputMode</a> CEGUI::Spinner::getTextInputMode </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the current text input / display mode setting. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>One of the TextInputMode enumerated values indicating the current text input and display mode. </dd></dl>

</div>
</div>
<a class="anchor" id="a1a20cfa9fad2e1f733efd49cc5e59de8"></a><!-- doxytag: member="CEGUI::Spinner::getValueFromText" ref="a1a20cfa9fad2e1f733efd49cc5e59de8" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual double CEGUI::Spinner::getValueFromText </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the numerical representation of the current editbox text. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>double value that is the numerical equivalent of the editbox text.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if the text can not be converted. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a4dc095a2709a323d66c00d1d9e22739a"></a><!-- doxytag: member="CEGUI::Spinner::initialiseComponents" ref="a4dc095a2709a323d66c00d1d9e22739a" args="(void)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Spinner::initialiseComponents </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Initialises the <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> based object ready for use. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>This must be called for every window created. Normally this is handled automatically by the <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> for each <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> type.</dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>

<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a15d1b3c2be063277773eb28e33a2ee84">CEGUI::Window</a>.</p>

</div>
</div>
<a class="anchor" id="a98d51f4708d97b99d0a8488eb66c0f20"></a><!-- doxytag: member="CEGUI::Spinner::onActivated" ref="a98d51f4708d97b99d0a8488eb66c0f20" args="(ActivationEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Spinner::onActivated </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1ActivationEventArgs.html">ActivationEventArgs</a> &amp;&#160;</td>
          <td class="paramname"><em>e</em></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Handler called when this window has become the active window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1ActivationEventArgs.html" title="EventArgs based class that is used for Activated and Deactivated window events.">ActivationEventArgs</a> class whose 'otherWindow' field is set to the window that previously was active, or NULL for none. </td></tr>
  </table>
  </dd>
</dl>

<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a26b98b08ce24fc7eea106d87d32c608e">CEGUI::Window</a>.</p>

</div>
</div>
<a class="anchor" id="afdb841158a22e241194606df5247314f"></a><!-- doxytag: member="CEGUI::Spinner::onFontChanged" ref="afdb841158a22e241194606df5247314f" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Spinner::onFontChanged </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;&#160;</td>
          <td class="paramname"><em>e</em></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Handler called when the window's font is changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. </td></tr>
  </table>
  </dd>
</dl>

<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a840ce2a9e31ebba8a27c94a089a0d7b8">CEGUI::Window</a>.</p>

</div>
</div>
<a class="anchor" id="a8ce0779e71506e422b9df429d4fee542"></a><!-- doxytag: member="CEGUI::Spinner::onMaximumValueChanged" ref="a8ce0779e71506e422b9df429d4fee542" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Spinner::onMaximumValueChanged </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;&#160;</td>
          <td class="paramname"><em>e</em></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Method called when the maximum value setting changes. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object containing any relevant data.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a86e46638e642b26d2d1ec03e7bb70088"></a><!-- doxytag: member="CEGUI::Spinner::onMinimumValueChanged" ref="a86e46638e642b26d2d1ec03e7bb70088" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Spinner::onMinimumValueChanged </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;&#160;</td>
          <td class="paramname"><em>e</em></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Method called when the minimum value setting changes. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object containing any relevant data.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a93a860b2bc1a20aa91205db74d47c8a2"></a><!-- doxytag: member="CEGUI::Spinner::onStepChanged" ref="a93a860b2bc1a20aa91205db74d47c8a2" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Spinner::onStepChanged </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;&#160;</td>
          <td class="paramname"><em>e</em></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Method called when the step value changes. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object containing any relevant data.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a6cb35468956a433db5ef813edf0be5d9"></a><!-- doxytag: member="CEGUI::Spinner::onTextChanged" ref="a6cb35468956a433db5ef813edf0be5d9" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Spinner::onTextChanged </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;&#160;</td>
          <td class="paramname"><em>e</em></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Handler called when the window's text is changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. </td></tr>
  </table>
  </dd>
</dl>

<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a0733e77b1194b53838ed868c4cb7187c">CEGUI::Window</a>.</p>

</div>
</div>
<a class="anchor" id="ab9d83e3436ff87cd38fc027ac7fc19f1"></a><!-- doxytag: member="CEGUI::Spinner::onTextInputModeChanged" ref="ab9d83e3436ff87cd38fc027ac7fc19f1" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Spinner::onTextInputModeChanged </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;&#160;</td>
          <td class="paramname"><em>e</em></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Method called when the text input/display mode is changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object containing any relevant data.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="acaff4bae65ad234c09b7cc203b0c5c20"></a><!-- doxytag: member="CEGUI::Spinner::onValueChanged" ref="acaff4bae65ad234c09b7cc203b0c5c20" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Spinner::onValueChanged </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;&#160;</td>
          <td class="paramname"><em>e</em></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Method called when the spinner value changes. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object containing any relevant data.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a10546255f830880f421fad5a88f580ce"></a><!-- doxytag: member="CEGUI::Spinner::setCurrentValue" ref="a10546255f830880f421fad5a88f580ce" args="(double value)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Spinner::setCurrentValue </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>value</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the current spinner value. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">value</td><td>value to be assigned to the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a90df8b1dbea4911cf1716bd5e81ac1b7"></a><!-- doxytag: member="CEGUI::Spinner::setMaximumValue" ref="a90df8b1dbea4911cf1716bd5e81ac1b7" args="(double maxValue)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Spinner::setMaximumValue </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>maxValue</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the spinner maximum value. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">maxValue</td><td>The maximum value to be allowed by the spinner.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="ab042d9da738e7ec9acb8d59fd5662abe"></a><!-- doxytag: member="CEGUI::Spinner::setMinimumValue" ref="ab042d9da738e7ec9acb8d59fd5662abe" args="(double minVaue)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Spinner::setMinimumValue </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>minVaue</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the spinner minimum value. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">minVaue</td><td>The minimum value to be allowed by the spinner.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a1587a149621787627f64edca2f644ebd"></a><!-- doxytag: member="CEGUI::Spinner::setStepSize" ref="a1587a149621787627f64edca2f644ebd" args="(double step)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Spinner::setStepSize </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>step</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the current step value. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">step</td><td>The value added to be the spinner value when the up / down buttons are clicked.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a106c399962cebc04d0be7d66bc5f14dd"></a><!-- doxytag: member="CEGUI::Spinner::setTextInputMode" ref="a106c399962cebc04d0be7d66bc5f14dd" args="(TextInputMode mode)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Spinner::setTextInputMode </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852">TextInputMode</a>&#160;</td>
          <td class="paramname"><em>mode</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the spinner input / display mode. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">mode</td><td>One of the TextInputMode enumerated values indicating the text input / display mode to be used by the spinner.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="ab60981ec45f022a380f36c1ab054cc36"></a><!-- doxytag: member="CEGUI::Spinner::testClassName_impl" ref="ab60981ec45f022a380f36c1ab054cc36" args="(const String &amp;class_name) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool CEGUI::Spinner::testClassName_impl </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>class_name</em></td><td>)</td>
          <td> const<code> [inline, protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">class_name</td><td>The class name that is to be checked.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if this window was inherited from <em>class_name</em>. false if not. </dd></dl>

<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window</a>.</p>

<p>References <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window::testClassName_impl()</a>.</p>

</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="a8d8364d65812a18c227f5855dd3fd514"></a><!-- doxytag: member="CEGUI::Spinner::EventMaximumValueChanged" ref="a8d8364d65812a18c227f5855dd3fd514" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1Spinner.html#a8d8364d65812a18c227f5855dd3fd514">CEGUI::Spinner::EventMaximumValueChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when the maximum spinner value is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a> whose maximum value has been changed. </p>

</div>
</div>
<a class="anchor" id="abca5f6bcbf6f3ea75ef4a5a4be7febda"></a><!-- doxytag: member="CEGUI::Spinner::EventMinimumValueChanged" ref="abca5f6bcbf6f3ea75ef4a5a4be7febda" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1Spinner.html#abca5f6bcbf6f3ea75ef4a5a4be7febda">CEGUI::Spinner::EventMinimumValueChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when the minimum spinner value is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with WindowEventArgs::windows set to the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a> whose minimum value has been changed. </p>

</div>
</div>
<a class="anchor" id="af21ac6e75e81ec9d08137dcb50223be7"></a><!-- doxytag: member="CEGUI::Spinner::EventStepChanged" ref="af21ac6e75e81ec9d08137dcb50223be7" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1Spinner.html#af21ac6e75e81ec9d08137dcb50223be7">CEGUI::Spinner::EventStepChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when the spinner step value is changed. Handlers area passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a> whose step value has changed. </p>

</div>
</div>
<a class="anchor" id="a0c9ff04daca688938b0f72baf1166fcd"></a><!-- doxytag: member="CEGUI::Spinner::EventTextInputModeChanged" ref="a0c9ff04daca688938b0f72baf1166fcd" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1Spinner.html#a0c9ff04daca688938b0f72baf1166fcd">CEGUI::Spinner::EventTextInputModeChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when the spinner text input &amp; display mode is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a> whose text mode has been changed. </p>

</div>
</div>
<a class="anchor" id="a1153271aed784131141c8b7827e9015d"></a><!-- doxytag: member="CEGUI::Spinner::EventValueChanged" ref="a1153271aed784131141c8b7827e9015d" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1Spinner.html#a1153271aed784131141c8b7827e9015d">CEGUI::Spinner::EventValueChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when the spinner current value changes. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a> whose current value has changed. </p>

</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:42 for Crazy Eddies GUI System by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>