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
|
<!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: CEGUISpinner.h Source File</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 <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 Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<div class="title">CEGUISpinner.h</div> </div>
</div>
<div class="contents">
<div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/***********************************************************************</span>
<a name="l00002"></a>00002 <span class="comment"> filename: CEGUISpinner.h</span>
<a name="l00003"></a>00003 <span class="comment"> created: 3/2/2005</span>
<a name="l00004"></a>00004 <span class="comment"> author: Paul D Turner</span>
<a name="l00005"></a>00005 <span class="comment">*************************************************************************/</span>
<a name="l00006"></a>00006 <span class="comment">/***************************************************************************</span>
<a name="l00007"></a>00007 <span class="comment"> * Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team</span>
<a name="l00008"></a>00008 <span class="comment"> *</span>
<a name="l00009"></a>00009 <span class="comment"> * Permission is hereby granted, free of charge, to any person obtaining</span>
<a name="l00010"></a>00010 <span class="comment"> * a copy of this software and associated documentation files (the</span>
<a name="l00011"></a>00011 <span class="comment"> * "Software"), to deal in the Software without restriction, including</span>
<a name="l00012"></a>00012 <span class="comment"> * without limitation the rights to use, copy, modify, merge, publish,</span>
<a name="l00013"></a>00013 <span class="comment"> * distribute, sublicense, and/or sell copies of the Software, and to</span>
<a name="l00014"></a>00014 <span class="comment"> * permit persons to whom the Software is furnished to do so, subject to</span>
<a name="l00015"></a>00015 <span class="comment"> * the following conditions:</span>
<a name="l00016"></a>00016 <span class="comment"> *</span>
<a name="l00017"></a>00017 <span class="comment"> * The above copyright notice and this permission notice shall be</span>
<a name="l00018"></a>00018 <span class="comment"> * included in all copies or substantial portions of the Software.</span>
<a name="l00019"></a>00019 <span class="comment"> *</span>
<a name="l00020"></a>00020 <span class="comment"> * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,</span>
<a name="l00021"></a>00021 <span class="comment"> * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</span>
<a name="l00022"></a>00022 <span class="comment"> * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.</span>
<a name="l00023"></a>00023 <span class="comment"> * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR</span>
<a name="l00024"></a>00024 <span class="comment"> * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,</span>
<a name="l00025"></a>00025 <span class="comment"> * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR</span>
<a name="l00026"></a>00026 <span class="comment"> * OTHER DEALINGS IN THE SOFTWARE.</span>
<a name="l00027"></a>00027 <span class="comment"> ***************************************************************************/</span>
<a name="l00028"></a>00028 <span class="preprocessor">#ifndef _CEGUISpinner_h_</span>
<a name="l00029"></a>00029 <span class="preprocessor"></span><span class="preprocessor">#define _CEGUISpinner_h_</span>
<a name="l00030"></a>00030 <span class="preprocessor"></span>
<a name="l00031"></a>00031 <span class="preprocessor">#include "../CEGUIBase.h"</span>
<a name="l00032"></a>00032 <span class="preprocessor">#include "../CEGUIWindow.h"</span>
<a name="l00033"></a>00033 <span class="preprocessor">#include "CEGUISpinnerProperties.h"</span>
<a name="l00034"></a>00034
<a name="l00035"></a>00035 <span class="preprocessor">#if defined(_MSC_VER)</span>
<a name="l00036"></a>00036 <span class="preprocessor"></span><span class="preprocessor"># pragma warning(push)</span>
<a name="l00037"></a>00037 <span class="preprocessor"></span><span class="preprocessor"># pragma warning(disable : 4251)</span>
<a name="l00038"></a>00038 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00039"></a>00039 <span class="preprocessor"></span>
<a name="l00040"></a>00040
<a name="l00041"></a>00041 <span class="comment">// Start of CEGUI namespace section</span>
<a name="l00042"></a>00042 <span class="keyword">namespace </span>CEGUI
<a name="l00043"></a>00043 {
<a name="l00052"></a><a class="code" href="classCEGUI_1_1Spinner.html">00052</a> <span class="keyword">class </span>CEGUIEXPORT <a class="code" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a> : <span class="keyword">public</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>
<a name="l00053"></a>00053 {
<a name="l00054"></a>00054 <span class="keyword">public</span>:
<a name="l00059"></a><a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852">00059</a> <span class="keyword">enum</span> <a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852" title="Enumerated type specifying possible input and/or display modes for the spinner.">TextInputMode</a>
<a name="l00060"></a>00060 {
<a name="l00061"></a><a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852aa62ce29a410e0892e7bd168fa20c5272">00061</a> <a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852aa62ce29a410e0892e7bd168fa20c5272" title="Floating point decimal.">FloatingPoint</a>,
<a name="l00062"></a><a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852afd98afcc39ed0cd5147c80928b7c036f">00062</a> <a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852afd98afcc39ed0cd5147c80928b7c036f" title="Integer decimal.">Integer</a>,
<a name="l00063"></a><a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852adb7f2fd2ab945cc27b22a635487129e7">00063</a> <a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852adb7f2fd2ab945cc27b22a635487129e7" title="Hexadecimal.">Hexadecimal</a>,
<a name="l00064"></a><a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852add6979ec97691640117b1437568cce4b">00064</a> Octal
<a name="l00065"></a>00065 };
<a name="l00066"></a>00066
<a name="l00067"></a>00067 <span class="comment">/*************************************************************************</span>
<a name="l00068"></a>00068 <span class="comment"> Events system constants</span>
<a name="l00069"></a>00069 <span class="comment"> *************************************************************************/</span>
<a name="l00070"></a><a class="code" href="classCEGUI_1_1Spinner.html#ac7254f9946332f39944854db2870c463">00070</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#ac7254f9946332f39944854db2870c463" title="Window factory name.">WidgetTypeName</a>;
<a name="l00071"></a><a class="code" href="classCEGUI_1_1Spinner.html#a51f26394757b205c1296e6ecbc2fb6d6">00071</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#a51f26394757b205c1296e6ecbc2fb6d6" title="Namespace for global events.">EventNamespace</a>;
<a name="l00072"></a>00072
<a name="l00077"></a><a class="code" href="classCEGUI_1_1Spinner.html#a1153271aed784131141c8b7827e9015d">00077</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#a1153271aed784131141c8b7827e9015d">EventValueChanged</a>;
<a name="l00083"></a><a class="code" href="classCEGUI_1_1Spinner.html#af21ac6e75e81ec9d08137dcb50223be7">00083</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#af21ac6e75e81ec9d08137dcb50223be7">EventStepChanged</a>;
<a name="l00089"></a><a class="code" href="classCEGUI_1_1Spinner.html#a8d8364d65812a18c227f5855dd3fd514">00089</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#a8d8364d65812a18c227f5855dd3fd514">EventMaximumValueChanged</a>;
<a name="l00095"></a><a class="code" href="classCEGUI_1_1Spinner.html#abca5f6bcbf6f3ea75ef4a5a4be7febda">00095</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#abca5f6bcbf6f3ea75ef4a5a4be7febda">EventMinimumValueChanged</a>;
<a name="l00101"></a><a class="code" href="classCEGUI_1_1Spinner.html#a0c9ff04daca688938b0f72baf1166fcd">00101</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#a0c9ff04daca688938b0f72baf1166fcd">EventTextInputModeChanged</a>;
<a name="l00102"></a>00102
<a name="l00103"></a>00103 <span class="comment">/*************************************************************************</span>
<a name="l00104"></a>00104 <span class="comment"> Component widget name suffix strings</span>
<a name="l00105"></a>00105 <span class="comment"> *************************************************************************/</span>
<a name="l00106"></a><a class="code" href="classCEGUI_1_1Spinner.html#ab6c1b5fdf0ffa282ec71fd874b23405b">00106</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#ab6c1b5fdf0ffa282ec71fd874b23405b" title="Widget name suffix for the editbox thumb component.">EditboxNameSuffix</a>;
<a name="l00107"></a><a class="code" href="classCEGUI_1_1Spinner.html#afafeb593ccc5a4445eddab7df8f90495">00107</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#afafeb593ccc5a4445eddab7df8f90495" title="Widget name suffix for the increase button component.">IncreaseButtonNameSuffix</a>;
<a name="l00108"></a><a class="code" href="classCEGUI_1_1Spinner.html#a2629f51a593f58ffefafbdbf94e2b196">00108</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#a2629f51a593f58ffefafbdbf94e2b196" title="Widget name suffix for the decrease button component.">DecreaseButtonNameSuffix</a>;
<a name="l00109"></a>00109
<a name="l00110"></a>00110 <span class="comment">/*************************************************************************</span>
<a name="l00111"></a>00111 <span class="comment"> Object Construction and Destruction</span>
<a name="l00112"></a>00112 <span class="comment"> *************************************************************************/</span>
<a name="l00117"></a>00117 <a class="code" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& type, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name);
<a name="l00118"></a>00118
<a name="l00123"></a>00123 <span class="keyword">virtual</span> ~<a class="code" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget.">Spinner</a>(<span class="keywordtype">void</span>);
<a name="l00124"></a>00124
<a name="l00135"></a>00135 <span class="keywordtype">void</span> initialiseComponents(<span class="keywordtype">void</span>);
<a name="l00136"></a>00136
<a name="l00137"></a>00137
<a name="l00138"></a>00138 <span class="comment">/*************************************************************************</span>
<a name="l00139"></a>00139 <span class="comment"> Accessors</span>
<a name="l00140"></a>00140 <span class="comment"> *************************************************************************/</span>
<a name="l00148"></a>00148 <span class="keywordtype">double</span> getCurrentValue(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00149"></a>00149
<a name="l00158"></a>00158 <span class="keywordtype">double</span> getStepSize(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00159"></a>00159
<a name="l00167"></a>00167 <span class="keywordtype">double</span> getMaximumValue(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00168"></a>00168
<a name="l00176"></a>00176 <span class="keywordtype">double</span> getMinimumValue(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00177"></a>00177
<a name="l00186"></a>00186 <a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852" title="Enumerated type specifying possible input and/or display modes for the spinner.">TextInputMode</a> getTextInputMode(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00187"></a>00187
<a name="l00188"></a>00188 <span class="comment">/*************************************************************************</span>
<a name="l00189"></a>00189 <span class="comment"> Manipulators</span>
<a name="l00190"></a>00190 <span class="comment"> *************************************************************************/</span>
<a name="l00201"></a>00201 <span class="keywordtype">void</span> setCurrentValue(<span class="keywordtype">double</span> value);
<a name="l00202"></a>00202
<a name="l00214"></a>00214 <span class="keywordtype">void</span> setStepSize(<span class="keywordtype">double</span> step);
<a name="l00215"></a>00215
<a name="l00226"></a>00226 <span class="keywordtype">void</span> setMaximumValue(<span class="keywordtype">double</span> maxValue);
<a name="l00227"></a>00227
<a name="l00238"></a>00238 <span class="keywordtype">void</span> setMinimumValue(<span class="keywordtype">double</span> minVaue);
<a name="l00239"></a>00239
<a name="l00251"></a>00251 <span class="keywordtype">void</span> setTextInputMode(<a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852" title="Enumerated type specifying possible input and/or display modes for the spinner.">TextInputMode</a> mode);
<a name="l00252"></a>00252
<a name="l00253"></a>00253 <span class="keyword">protected</span>:
<a name="l00254"></a>00254 <span class="comment">/*************************************************************************</span>
<a name="l00255"></a>00255 <span class="comment"> Constants</span>
<a name="l00256"></a>00256 <span class="comment"> *************************************************************************/</span>
<a name="l00257"></a><a class="code" href="classCEGUI_1_1Spinner.html#ae407aafeec35af6e9bb30028c5affd8e">00257</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#ae407aafeec35af6e9bb30028c5affd8e" title="Validator regex used for floating point mode.">FloatValidator</a>;
<a name="l00258"></a><a class="code" href="classCEGUI_1_1Spinner.html#a10ce4de2e69022670425b9eb753fe5f1">00258</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#a10ce4de2e69022670425b9eb753fe5f1" title="Validator regex used for decimal integer mode.">IntegerValidator</a>;
<a name="l00259"></a><a class="code" href="classCEGUI_1_1Spinner.html#a3a0aabb5871cfd1dae27d3e5c4e6cf4b">00259</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#a3a0aabb5871cfd1dae27d3e5c4e6cf4b" title="Validator regex used for hexadecimal mode.">HexValidator</a>;
<a name="l00260"></a><a class="code" href="classCEGUI_1_1Spinner.html#ae5897ad64cd2fcc15f8fe143245562ed">00260</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Spinner.html#ae5897ad64cd2fcc15f8fe143245562ed" title="Validator regex used for octal mode.">OctalValidator</a>;
<a name="l00261"></a>00261
<a name="l00262"></a>00262 <span class="comment">/*************************************************************************</span>
<a name="l00263"></a>00263 <span class="comment"> Protected Implementation Methods</span>
<a name="l00264"></a>00264 <span class="comment"> *************************************************************************/</span>
<a name="l00274"></a>00274 <span class="keyword">virtual</span> <span class="keywordtype">double</span> getValueFromText(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00275"></a>00275
<a name="l00283"></a>00283 <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> getTextFromValue(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00284"></a>00284
<a name="l00285"></a>00285
<a name="l00296"></a><a class="code" href="classCEGUI_1_1Spinner.html#ab60981ec45f022a380f36c1ab054cc36">00296</a> <span class="keyword">virtual</span> <span class="keywordtype">bool</span> testClassName_impl(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& class_name)<span class="keyword"> const</span>
<a name="l00297"></a>00297 <span class="keyword"> </span>{
<a name="l00298"></a>00298 <span class="keywordflow">if</span> (class_name==<span class="stringliteral">"Spinner"</span>) <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l00299"></a>00299 <span class="keywordflow">return</span> <a class="code" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b" title="Return whether this window was inherited from the given class name at some point in the inheritance h...">Window::testClassName_impl</a>(class_name);
<a name="l00300"></a>00300 }
<a name="l00301"></a>00301
<a name="l00313"></a>00313 <a class="code" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a>* getIncreaseButton() <span class="keyword">const</span>;
<a name="l00314"></a>00314
<a name="l00326"></a>00326 <a class="code" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a>* getDecreaseButton() <span class="keyword">const</span>;
<a name="l00327"></a>00327
<a name="l00338"></a>00338 <a class="code" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>* getEditbox() <span class="keyword">const</span>;
<a name="l00339"></a>00339
<a name="l00340"></a>00340 <span class="comment">/*************************************************************************</span>
<a name="l00341"></a>00341 <span class="comment"> Overrides for Event handler methods</span>
<a name="l00342"></a>00342 <span class="comment"> *************************************************************************/</span>
<a name="l00343"></a>00343 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onFontChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l00344"></a>00344 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onTextChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l00345"></a>00345 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onActivated(<a class="code" href="classCEGUI_1_1ActivationEventArgs.html" title="EventArgs based class that is used for Activated and Deactivated window events.">ActivationEventArgs</a>& e);
<a name="l00346"></a>00346
<a name="l00347"></a>00347 <span class="comment">/*************************************************************************</span>
<a name="l00348"></a>00348 <span class="comment"> New Event handler methods</span>
<a name="l00349"></a>00349 <span class="comment"> *************************************************************************/</span>
<a name="l00360"></a>00360 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onValueChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l00361"></a>00361
<a name="l00372"></a>00372 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onStepChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l00373"></a>00373
<a name="l00384"></a>00384 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMaximumValueChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l00385"></a>00385
<a name="l00396"></a>00396 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMinimumValueChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l00397"></a>00397
<a name="l00408"></a>00408 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onTextInputModeChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l00409"></a>00409
<a name="l00410"></a>00410 <span class="comment">/*************************************************************************</span>
<a name="l00411"></a>00411 <span class="comment"> Internal event listener methods</span>
<a name="l00412"></a>00412 <span class="comment"> *************************************************************************/</span>
<a name="l00413"></a>00413 <span class="keywordtype">bool</span> handleIncreaseButton(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>& e);
<a name="l00414"></a>00414 <span class="keywordtype">bool</span> handleDecreaseButton(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>& e);
<a name="l00415"></a>00415 <span class="keywordtype">bool</span> handleEditTextChange(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>& e);
<a name="l00416"></a>00416
<a name="l00417"></a>00417
<a name="l00418"></a>00418 <span class="comment">/*************************************************************************</span>
<a name="l00419"></a>00419 <span class="comment"> Data Fields</span>
<a name="l00420"></a>00420 <span class="comment"> *************************************************************************/</span>
<a name="l00421"></a><a class="code" href="classCEGUI_1_1Spinner.html#a5d15c56e2aaffcb87c5646ac9fc8a9fc">00421</a> <span class="keywordtype">double</span> <a class="code" href="classCEGUI_1_1Spinner.html#a5d15c56e2aaffcb87c5646ac9fc8a9fc" title="Step size value used y the increase & decrease buttons.">d_stepSize</a>;
<a name="l00422"></a><a class="code" href="classCEGUI_1_1Spinner.html#a7363ac19ddc93f53bb336e6ef669f0ed">00422</a> <span class="keywordtype">double</span> <a class="code" href="classCEGUI_1_1Spinner.html#a7363ac19ddc93f53bb336e6ef669f0ed" title="Numerical copy of the text in d_editbox.">d_currentValue</a>;
<a name="l00423"></a><a class="code" href="classCEGUI_1_1Spinner.html#ab4d35ac6721305166f93bc4dac76d661">00423</a> <span class="keywordtype">double</span> <a class="code" href="classCEGUI_1_1Spinner.html#ab4d35ac6721305166f93bc4dac76d661" title="Maximum value for spinner.">d_maxValue</a>;
<a name="l00424"></a><a class="code" href="classCEGUI_1_1Spinner.html#af5932cf4470fd096655707bdec8a8950">00424</a> <span class="keywordtype">double</span> <a class="code" href="classCEGUI_1_1Spinner.html#af5932cf4470fd096655707bdec8a8950" title="Minimum value for spinner.">d_minValue</a>;
<a name="l00425"></a><a class="code" href="classCEGUI_1_1Spinner.html#aa56eb5135d6e5155e5735f07a9c93ac6">00425</a> <a class="code" href="classCEGUI_1_1Spinner.html#a70c46e4b0636aafb946a571c1f175852" title="Enumerated type specifying possible input and/or display modes for the spinner.">TextInputMode</a> <a class="code" href="classCEGUI_1_1Spinner.html#aa56eb5135d6e5155e5735f07a9c93ac6" title="Current text display/input mode.">d_inputMode</a>;
<a name="l00426"></a>00426
<a name="l00427"></a>00427 <span class="keyword">private</span>:
<a name="l00428"></a>00428 <span class="comment">/*************************************************************************</span>
<a name="l00429"></a>00429 <span class="comment"> Static properties for the Spinner widget</span>
<a name="l00430"></a>00430 <span class="comment"> *************************************************************************/</span>
<a name="l00431"></a>00431 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1SpinnerProperties_1_1CurrentValue.html" title="Property to access the current value of the spinner.">SpinnerProperties::CurrentValue</a> d_currentValueProperty;
<a name="l00432"></a>00432 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1SpinnerProperties_1_1StepSize.html" title="Property to access the step size of the spinner.">SpinnerProperties::StepSize</a> d_stepSizeProperty;
<a name="l00433"></a>00433 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1SpinnerProperties_1_1MaximumValue.html" title="Property to access the maximum value setting of the spinner.">SpinnerProperties::MaximumValue</a> d_maxValueProperty;
<a name="l00434"></a>00434 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1SpinnerProperties_1_1MinimumValue.html" title="Property to access the minimum value setting of the spinner.">SpinnerProperties::MinimumValue</a> d_minValueProperty;
<a name="l00435"></a>00435 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1SpinnerProperties_1_1TextInputMode.html" title="Property to access the TextInputMode setting.">SpinnerProperties::TextInputMode</a> d_textInputModeProperty;
<a name="l00436"></a>00436
<a name="l00437"></a>00437 <span class="comment">/*************************************************************************</span>
<a name="l00438"></a>00438 <span class="comment"> Private Implementation Methods</span>
<a name="l00439"></a>00439 <span class="comment"> *************************************************************************/</span>
<a name="l00447"></a>00447 <span class="keywordtype">void</span> addSpinnerProperties(<span class="keywordtype">void</span>);
<a name="l00448"></a>00448 };
<a name="l00449"></a>00449
<a name="l00450"></a>00450 } <span class="comment">// End of CEGUI namespace section</span>
<a name="l00451"></a>00451
<a name="l00452"></a>00452 <span class="preprocessor">#if defined(_MSC_VER)</span>
<a name="l00453"></a>00453 <span class="preprocessor"></span><span class="preprocessor"># pragma warning(pop)</span>
<a name="l00454"></a>00454 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00455"></a>00455 <span class="preprocessor"></span>
<a name="l00456"></a>00456 <span class="preprocessor">#endif // end of guard _CEGUISpinner_h_</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:39 for Crazy Eddies GUI System by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>
|