File: classCEGUI_1_1Tooltip.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 (907 lines) | stat: -rw-r--r-- 66,641 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
<!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::Tooltip 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_1Tooltip.html">Tooltip</a>      </li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-attribs">Static Public Attributes</a> &#124;
<a href="#pro-types">Protected Types</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="#pro-attribs">Protected Attributes</a>  </div>
  <div class="headertitle">
<div class="title">CEGUI::Tooltip Class Reference</div>  </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::Tooltip" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Base class for <a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> widgets.  
 <a href="classCEGUI_1_1Tooltip.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::Tooltip:</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_1Tooltip__inherit__graph.gif" border="0" usemap="#CEGUI_1_1Tooltip_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1Tooltip_inherit__map" id="CEGUI_1_1Tooltip_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::Tooltip:</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_1Tooltip__coll__graph.gif" border="0" usemap="#CEGUI_1_1Tooltip_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1Tooltip_coll__map" id="CEGUI_1_1Tooltip_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="677,81,797,111"/><area shape="rect" id="node6" href="classCEGUI_1_1TooltipProperties_1_1FadeTime.html" title="Property to access the duration of the fade effect for the tooltip." alt="" coords="13,55,251,84"/><area shape="rect" id="node8" href="classCEGUI_1_1TooltipProperties_1_1DisplayTime.html" title="Property to access the time after which the tooltip automatically de&#45;activates itself." alt="" coords="7,108,257,137"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classCEGUI_1_1Tooltip-members.html">List of all members.</a></p>
<table class="memberdecls">
<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="a135f826859eaf2fe87836a41621aeefe"></a><!-- doxytag: member="CEGUI::Tooltip::Tooltip" ref="a135f826859eaf2fe87836a41621aeefe" args="(const String &amp;type, const String &amp;name)" -->
&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a135f826859eaf2fe87836a41621aeefe">Tooltip</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 the <a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> base class constructor. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a621e9a8917d5098bc9b383942401a565"></a><!-- doxytag: member="CEGUI::Tooltip::~Tooltip" ref="a621e9a8917d5098bc9b383942401a565" args="(void)" -->
&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a621e9a8917d5098bc9b383942401a565">~Tooltip</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor for the <a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> base class. <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_1Tooltip.html#a9bd91eeb4d3df42c75286e5cad394288">setTargetWindow</a> (<a class="el" href="classCEGUI_1_1Window.html">Window</a> *wnd)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the target window for the tooltip. This used internally to manage tooltips, you should not have to call this yourself.  <a href="#a9bd91eeb4d3df42c75286e5cad394288"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Window.html">Window</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#aafcff5d52f14b621bd3413d4bf3f313b">getTargetWindow</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">return the current target window for this <a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a>.  <a href="#aafcff5d52f14b621bd3413d4bf3f313b"></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_1Tooltip.html#a5e445389a4a9a13ee5212e4e8556cc0d">resetTimer</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Resets the timer on the tooltip when in the Active / Inactive states. This is used internally to control the tooltip, it is not normally necessary to call this method yourself.  <a href="#a5e445389a4a9a13ee5212e4e8556cc0d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a0e6407ac58596f17a707a052af88f7a8">getHoverTime</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the number of seconds the mouse should hover stationary over the target window before the tooltip gets activated.  <a href="#a0e6407ac58596f17a707a052af88f7a8"></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_1Tooltip.html#a546f5d033039fbca34778489d4bfb923">setDisplayTime</a> (float seconds)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the number of seconds the tooltip should be displayed for before it automatically de-activates itself. 0 indicates that the tooltip should never timesout and auto-deactivate.  <a href="#a546f5d033039fbca34778489d4bfb923"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a6391f36ad4957d3a21014f068ad8690b">getFadeTime</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the number of seconds that should be taken to fade the tooltip into and out of visibility.  <a href="#a6391f36ad4957d3a21014f068ad8690b"></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_1Tooltip.html#a0899c5b1d258ee4ad76f1b6c947f9ace">setHoverTime</a> (float seconds)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the number of seconds the mouse should hover stationary over the target window before the tooltip gets activated.  <a href="#a0899c5b1d258ee4ad76f1b6c947f9ace"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a54a8a247fde0e830478d07c8cf900d56">getDisplayTime</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the number of seconds the tooltip should be displayed for before it automatically de-activates itself. 0 indicates that the tooltip never timesout and auto-deactivates.  <a href="#a54a8a247fde0e830478d07c8cf900d56"></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_1Tooltip.html#a857272db9275ba512dc7257eace3ad41">setFadeTime</a> (float seconds)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the number of seconds that should be taken to fade the tooltip into and out of visibility.  <a href="#a857272db9275ba512dc7257eace3ad41"></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_1Tooltip.html#a01c20e223aba90c74ae916fdf45ac5e1">positionSelf</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Causes the tooltip to position itself appropriately.  <a href="#a01c20e223aba90c74ae916fdf45ac5e1"></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_1Tooltip.html#a9e310afb9779352cef4a6843dccd5d20">sizeSelf</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Causes the tooltip to resize itself appropriately.  <a href="#a9e310afb9779352cef4a6843dccd5d20"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Size.html">Size</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a094cd55cdeeb2d38af7817b1dbfb20ba">getTextSize</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the size of the area that will be occupied by the tooltip text, given any current formatting options.  <a href="#a094cd55cdeeb2d38af7817b1dbfb20ba"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classCEGUI_1_1Size.html">Size</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#aa7772ee57e623267f384446fdb393773">getTextSize_impl</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the size of the area that will be occupied by the tooltip text, given any current formatting options.  <a href="#aa7772ee57e623267f384446fdb393773"></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="a8868c4601ee04261da85aaea8c35c5b9"></a><!-- doxytag: member="CEGUI::Tooltip::WidgetTypeName" ref="a8868c4601ee04261da85aaea8c35c5b9" 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_1Tooltip.html#a8868c4601ee04261da85aaea8c35c5b9">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="aa71c5506b9cc86790ed05544b63efd6c"></a><!-- doxytag: member="CEGUI::Tooltip::EventNamespace" ref="aa71c5506b9cc86790ed05544b63efd6c" 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_1Tooltip.html#aa71c5506b9cc86790ed05544b63efd6c">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_1Tooltip.html#a84ec67982105c230af2d1c7f478da90c">EventHoverTimeChanged</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_1Tooltip.html#ac25e2ff6fada81c1a72016607bedf125">EventDisplayTimeChanged</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_1Tooltip.html#a54d71ceb0f6756045c3a4128cdaba6ef">EventFadeTimeChanged</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_1Tooltip.html#abdcdc4dc2b4db5a8a073c18215331d42">EventTooltipActive</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_1Tooltip.html#a2efa2e482b99fc738258bccea1182a94">EventTooltipInactive</a></td></tr>
<tr><td colspan="2"><h2><a name="pro-types"></a>
Protected 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_1Tooltip.html#a2a4bc58075a94b08f60117421990b9e3">TipState</a> { <a class="el" href="classCEGUI_1_1Tooltip.html#a2a4bc58075a94b08f60117421990b9e3ae0b8353a7b8ec976613fd3e5dd0afe3f">Inactive</a>, 
<a class="el" href="classCEGUI_1_1Tooltip.html#a2a4bc58075a94b08f60117421990b9e3a383ece489a26060d3e45052cdf85481c">Active</a>, 
<a class="el" href="classCEGUI_1_1Tooltip.html#a2a4bc58075a94b08f60117421990b9e3a7d49ff4a94c909b18ac23daa86004721">FadeIn</a>, 
<a class="el" href="classCEGUI_1_1Tooltip.html#a2a4bc58075a94b08f60117421990b9e3a5c59c65106813ecd2e94595931f2e282">FadeOut</a>
 }</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">states for tooltip  <a href="classCEGUI_1_1Tooltip.html#a2a4bc58075a94b08f60117421990b9e3">More...</a><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"><a class="anchor" id="a20d02bd7879a52383e7938dd25b2d416"></a><!-- doxytag: member="CEGUI::Tooltip::doActiveState" ref="a20d02bd7879a52383e7938dd25b2d416" args="(float elapsed)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><b>doActiveState</b> (float elapsed)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aee91d0da1b5c97ad2397e642ed510d84"></a><!-- doxytag: member="CEGUI::Tooltip::doInactiveState" ref="aee91d0da1b5c97ad2397e642ed510d84" args="(float elapsed)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><b>doInactiveState</b> (float elapsed)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4bd9954dde88c16ef5223f30528050ec"></a><!-- doxytag: member="CEGUI::Tooltip::doFadeInState" ref="a4bd9954dde88c16ef5223f30528050ec" args="(float elapsed)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><b>doFadeInState</b> (float elapsed)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a10acc802bcdb06617dd8fddf98e83f2d"></a><!-- doxytag: member="CEGUI::Tooltip::doFadeOutState" ref="a10acc802bcdb06617dd8fddf98e83f2d" args="(float elapsed)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><b>doFadeOutState</b> (float elapsed)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7f3760c89cd3fb94319f312a499ccd99"></a><!-- doxytag: member="CEGUI::Tooltip::switchToInactiveState" ref="a7f3760c89cd3fb94319f312a499ccd99" args="(void)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><b>switchToInactiveState</b> (void)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a58c5308d3e260bca911b58b3ee6f4390"></a><!-- doxytag: member="CEGUI::Tooltip::switchToActiveState" ref="a58c5308d3e260bca911b58b3ee6f4390" args="(void)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><b>switchToActiveState</b> (void)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a166d61c18ea895147874682529bf0558"></a><!-- doxytag: member="CEGUI::Tooltip::switchToFadeInState" ref="a166d61c18ea895147874682529bf0558" args="(void)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><b>switchToFadeInState</b> (void)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aef872fa3a6362e00dec6962f44657670"></a><!-- doxytag: member="CEGUI::Tooltip::switchToFadeOutState" ref="aef872fa3a6362e00dec6962f44657670" args="(void)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><b>switchToFadeOutState</b> (void)</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_1Tooltip.html#a93ac6de7d42b33b4a81d562155243ad4">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="#a93ac6de7d42b33b4a81d562155243ad4"></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_1Tooltip.html#a7ff8a0a685f98a81787144771cb8ad3d">validateWindowRenderer</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;name) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Function used in checking if a <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> is valid for this window.  <a href="#a7ff8a0a685f98a81787144771cb8ad3d"></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_1Tooltip.html#aa604a969d8fbb1f2d6c7a2e65cba15d1">onHoverTimeChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> trigger method called when the hover timeout gets changed.  <a href="#aa604a969d8fbb1f2d6c7a2e65cba15d1"></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_1Tooltip.html#a9e441fb172232b4e478b4040031644f1">onDisplayTimeChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> trigger method called when the display timeout gets changed.  <a href="#a9e441fb172232b4e478b4040031644f1"></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_1Tooltip.html#acd81c36a6db00f8046a5ecc2d1d46592">onFadeTimeChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> trigger method called when the fade timeout gets changed.  <a href="#acd81c36a6db00f8046a5ecc2d1d46592"></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_1Tooltip.html#a0eeaec310565f6898bfb3c062c5979aa">onTooltipActive</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> trigger method called just before the tooltip becomes active.  <a href="#a0eeaec310565f6898bfb3c062c5979aa"></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_1Tooltip.html#a67d5ba293f489c3b2388baefc287ea7e">onTooltipInactive</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> trigger method called just after the tooltip is deactivated.  <a href="#a67d5ba293f489c3b2388baefc287ea7e"></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_1Tooltip.html#a7eb0acaf0f47e549e34ade124e71558c">updateSelf</a> (float elapsed)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Perform actual update processing for this <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>.  <a href="#a7eb0acaf0f47e549e34ade124e71558c"></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_1Tooltip.html#aa7a87161ac6eb669741c26acfaa0aa43">onMouseEnters</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when the mouse cursor has entered this window's area and is actually over some part of this windows surface and not, for instance over a child window - even though technically in those cases the mouse is also within this Window's area, the handler will not be called.  <a href="#aa7a87161ac6eb669741c26acfaa0aa43"></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_1Tooltip.html#a4ff570b80c2cf19a77aedf99709edb2d">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="#a4ff570b80c2cf19a77aedf99709edb2d"></a><br/></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="a12863453740dcb7529e9f7799eb0318f"></a><!-- doxytag: member="CEGUI::Tooltip::d_state" ref="a12863453740dcb7529e9f7799eb0318f" args="" -->
<a class="el" href="classCEGUI_1_1Tooltip.html#a2a4bc58075a94b08f60117421990b9e3">TipState</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a12863453740dcb7529e9f7799eb0318f">d_state</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Current tooltip state. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a618197d716f060dcdba94ff5f4813ddd"></a><!-- doxytag: member="CEGUI::Tooltip::d_elapsed" ref="a618197d716f060dcdba94ff5f4813ddd" args="" -->
float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a618197d716f060dcdba94ff5f4813ddd">d_elapsed</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Used to track state change timings. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4ca022135e42c512bd839f4ebfa97370"></a><!-- doxytag: member="CEGUI::Tooltip::d_target" ref="a4ca022135e42c512bd839f4ebfa97370" args="" -->
const <a class="el" href="classCEGUI_1_1Window.html">Window</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a4ca022135e42c512bd839f4ebfa97370">d_target</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Current target <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> for this <a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0b10320a1ceca7710ae8be1257ca39eb"></a><!-- doxytag: member="CEGUI::Tooltip::d_hoverTime" ref="a0b10320a1ceca7710ae8be1257ca39eb" args="" -->
float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a0b10320a1ceca7710ae8be1257ca39eb">d_hoverTime</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">tool-tip hover time (seconds mouse must stay stationary before tip shows). <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="add85d64dd19491f2d7cea29702ddc081"></a><!-- doxytag: member="CEGUI::Tooltip::d_displayTime" ref="add85d64dd19491f2d7cea29702ddc081" args="" -->
float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#add85d64dd19491f2d7cea29702ddc081">d_displayTime</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">tool-tip display time (seconds that tip is showsn for). <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a74cdf1aa625090fafb4b67bea5e80294">d_fadeTime</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a11a5a5f5cb3a784b8fdf4b0123107d42"></a><!-- doxytag: member="CEGUI::Tooltip::d_inPositionSelf" ref="a11a5a5f5cb3a784b8fdf4b0123107d42" args="" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Tooltip.html#a11a5a5f5cb3a784b8fdf4b0123107d42">d_inPositionSelf</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">are in positionSelf function? (to avoid infinite recursion issues) <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Base class for <a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> widgets. </p>
<p>The <a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> class shows a simple pop-up window around the mouse position with some text information. The tool-tip fades in when the user hovers with the mouse over a window which has tool-tip text set, and then fades out after some pre-set time.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>For <a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> to work properly, you must specify a default tool-tip widget type via System::setTooltip, or by setting a custom tool-tip object for your Window(s). Additionally, you need to ensure that time pulses are properly passed to the system via <a class="el" href="classCEGUI_1_1System.html#a8f56e87e8535cfe793f276c7238bfb22" title="Method to inject time pulses into the system.">System::injectTimePulse</a>. </dd></dl>
</div><hr/><h2>Member Enumeration Documentation</h2>
<a class="anchor" id="a2a4bc58075a94b08f60117421990b9e3"></a><!-- doxytag: member="CEGUI::Tooltip::TipState" ref="a2a4bc58075a94b08f60117421990b9e3" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classCEGUI_1_1Tooltip.html#a2a4bc58075a94b08f60117421990b9e3">CEGUI::Tooltip::TipState</a><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>states for tooltip </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="a2a4bc58075a94b08f60117421990b9e3ae0b8353a7b8ec976613fd3e5dd0afe3f"></a><!-- doxytag: member="Inactive" ref="a2a4bc58075a94b08f60117421990b9e3ae0b8353a7b8ec976613fd3e5dd0afe3f" args="" -->Inactive</em>&nbsp;</td><td>
<p><a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> is currently inactive. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a2a4bc58075a94b08f60117421990b9e3a383ece489a26060d3e45052cdf85481c"></a><!-- doxytag: member="Active" ref="a2a4bc58075a94b08f60117421990b9e3a383ece489a26060d3e45052cdf85481c" args="" -->Active</em>&nbsp;</td><td>
<p><a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> is currently displayed and active. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a2a4bc58075a94b08f60117421990b9e3a7d49ff4a94c909b18ac23daa86004721"></a><!-- doxytag: member="FadeIn" ref="a2a4bc58075a94b08f60117421990b9e3a7d49ff4a94c909b18ac23daa86004721" args="" -->FadeIn</em>&nbsp;</td><td>
<p><a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> is currently transitioning from Inactive to Active state. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a2a4bc58075a94b08f60117421990b9e3a5c59c65106813ecd2e94595931f2e282"></a><!-- doxytag: member="FadeOut" ref="a2a4bc58075a94b08f60117421990b9e3a5c59c65106813ecd2e94595931f2e282" args="" -->FadeOut</em>&nbsp;</td><td>
<p><a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> is currently transitioning from Active to Inactive state. </p>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a54a8a247fde0e830478d07c8cf900d56"></a><!-- doxytag: member="CEGUI::Tooltip::getDisplayTime" ref="a54a8a247fde0e830478d07c8cf900d56" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">float CEGUI::Tooltip::getDisplayTime </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 number of seconds the tooltip should be displayed for before it automatically de-activates itself. 0 indicates that the tooltip never timesout and auto-deactivates. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value representing a number of seconds. </dd></dl>

</div>
</div>
<a class="anchor" id="a6391f36ad4957d3a21014f068ad8690b"></a><!-- doxytag: member="CEGUI::Tooltip::getFadeTime" ref="a6391f36ad4957d3a21014f068ad8690b" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">float CEGUI::Tooltip::getFadeTime </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 number of seconds that should be taken to fade the tooltip into and out of visibility. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value representing a number of seconds. </dd></dl>

</div>
</div>
<a class="anchor" id="a0e6407ac58596f17a707a052af88f7a8"></a><!-- doxytag: member="CEGUI::Tooltip::getHoverTime" ref="a0e6407ac58596f17a707a052af88f7a8" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">float CEGUI::Tooltip::getHoverTime </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 number of seconds the mouse should hover stationary over the target window before the tooltip gets activated. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value representing a number of seconds. </dd></dl>

</div>
</div>
<a class="anchor" id="aafcff5d52f14b621bd3413d4bf3f313b"></a><!-- doxytag: member="CEGUI::Tooltip::getTargetWindow" ref="aafcff5d52f14b621bd3413d4bf3f313b" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1Window.html">Window</a>* CEGUI::Tooltip::getTargetWindow </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>return the current target window for this <a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to the target window for this <a class="el" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> or 0 for none. </dd></dl>

</div>
</div>
<a class="anchor" id="a094cd55cdeeb2d38af7817b1dbfb20ba"></a><!-- doxytag: member="CEGUI::Tooltip::getTextSize" ref="a094cd55cdeeb2d38af7817b1dbfb20ba" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1Size.html">Size</a> CEGUI::Tooltip::getTextSize </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the size of the area that will be occupied by the tooltip text, given any current formatting options. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Size.html" title="Class that holds the size (width &amp; height) of something.">Size</a> object describing the size of the rendered tooltip text in pixels. </dd></dl>

</div>
</div>
<a class="anchor" id="aa7772ee57e623267f384446fdb393773"></a><!-- doxytag: member="CEGUI::Tooltip::getTextSize_impl" ref="aa7772ee57e623267f384446fdb393773" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual <a class="el" href="classCEGUI_1_1Size.html">Size</a> CEGUI::Tooltip::getTextSize_impl </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the size of the area that will be occupied by the tooltip text, given any current formatting options. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Size.html" title="Class that holds the size (width &amp; height) of something.">Size</a> object describing the size of the rendered tooltip text in pixels. </dd></dl>

</div>
</div>
<a class="anchor" id="a9e441fb172232b4e478b4040031644f1"></a><!-- doxytag: member="CEGUI::Tooltip::onDisplayTimeChanged" ref="a9e441fb172232b4e478b4040031644f1" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Tooltip::onDisplayTimeChanged </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><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> trigger method called when the display timeout gets 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.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="acd81c36a6db00f8046a5ecc2d1d46592"></a><!-- doxytag: member="CEGUI::Tooltip::onFadeTimeChanged" ref="acd81c36a6db00f8046a5ecc2d1d46592" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Tooltip::onFadeTimeChanged </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><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> trigger method called when the fade timeout gets 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.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="aa604a969d8fbb1f2d6c7a2e65cba15d1"></a><!-- doxytag: member="CEGUI::Tooltip::onHoverTimeChanged" ref="aa604a969d8fbb1f2d6c7a2e65cba15d1" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Tooltip::onHoverTimeChanged </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><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> trigger method called when the hover timeout gets 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.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="aa7a87161ac6eb669741c26acfaa0aa43"></a><!-- doxytag: member="CEGUI::Tooltip::onMouseEnters" ref="aa7a87161ac6eb669741c26acfaa0aa43" args="(MouseEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Tooltip::onMouseEnters </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</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 mouse cursor has entered this window's area and is actually over some part of this windows surface and not, for instance over a child window - even though technically in those cases the mouse is also within this Window's area, the handler will not be called. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid.</td></tr>
  </table>
  </dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classCEGUI_1_1Window.html#ad80da138d226fa964282557a2173721d" title="Handler called when the mouse cursor has entered this window&#39;s area.">Window::onMouseEntersArea</a> </dd></dl>

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

</div>
</div>
<a class="anchor" id="a4ff570b80c2cf19a77aedf99709edb2d"></a><!-- doxytag: member="CEGUI::Tooltip::onTextChanged" ref="a4ff570b80c2cf19a77aedf99709edb2d" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Tooltip::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="a0eeaec310565f6898bfb3c062c5979aa"></a><!-- doxytag: member="CEGUI::Tooltip::onTooltipActive" ref="a0eeaec310565f6898bfb3c062c5979aa" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Tooltip::onTooltipActive </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><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> trigger method called just before the tooltip becomes active. </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.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a67d5ba293f489c3b2388baefc287ea7e"></a><!-- doxytag: member="CEGUI::Tooltip::onTooltipInactive" ref="a67d5ba293f489c3b2388baefc287ea7e" args="(WindowEventArgs &amp;e)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void CEGUI::Tooltip::onTooltipInactive </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><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> trigger method called just after the tooltip is deactivated. </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.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

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

<p>Causes the tooltip to position itself appropriately. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

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

<p>Resets the timer on the tooltip when in the Active / Inactive states. This is used internally to control the tooltip, it is not normally necessary to call this method yourself. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a546f5d033039fbca34778489d4bfb923"></a><!-- doxytag: member="CEGUI::Tooltip::setDisplayTime" ref="a546f5d033039fbca34778489d4bfb923" args="(float seconds)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Tooltip::setDisplayTime </td>
          <td>(</td>
          <td class="paramtype">float&#160;</td>
          <td class="paramname"><em>seconds</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the number of seconds the tooltip should be displayed for before it automatically de-activates itself. 0 indicates that the tooltip should never timesout and auto-deactivate. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">seconds</td><td>float value representing a number of seconds.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a857272db9275ba512dc7257eace3ad41"></a><!-- doxytag: member="CEGUI::Tooltip::setFadeTime" ref="a857272db9275ba512dc7257eace3ad41" args="(float seconds)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Tooltip::setFadeTime </td>
          <td>(</td>
          <td class="paramtype">float&#160;</td>
          <td class="paramname"><em>seconds</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the number of seconds that should be taken to fade the tooltip into and out of visibility. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">seconds</td><td>float value representing a number of seconds.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a0899c5b1d258ee4ad76f1b6c947f9ace"></a><!-- doxytag: member="CEGUI::Tooltip::setHoverTime" ref="a0899c5b1d258ee4ad76f1b6c947f9ace" args="(float seconds)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Tooltip::setHoverTime </td>
          <td>(</td>
          <td class="paramtype">float&#160;</td>
          <td class="paramname"><em>seconds</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the number of seconds the mouse should hover stationary over the target window before the tooltip gets activated. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">seconds</td><td>float value representing a number of seconds.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a9bd91eeb4d3df42c75286e5cad394288"></a><!-- doxytag: member="CEGUI::Tooltip::setTargetWindow" ref="a9bd91eeb4d3df42c75286e5cad394288" args="(Window *wnd)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Tooltip::setTargetWindow </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1Window.html">Window</a> *&#160;</td>
          <td class="paramname"><em>wnd</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the target window for the tooltip. This used internally to manage tooltips, you should not have to call this yourself. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">wnd</td><td><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> object that the tooltip should be associated with (for now).</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

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

<p>Causes the tooltip to resize itself appropriately. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a93ac6de7d42b33b4a81d562155243ad4"></a><!-- doxytag: member="CEGUI::Tooltip::testClassName_impl" ref="a93ac6de7d42b33b4a81d562155243ad4" args="(const String &amp;class_name) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool CEGUI::Tooltip::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>
<a class="anchor" id="a7eb0acaf0f47e549e34ade124e71558c"></a><!-- doxytag: member="CEGUI::Tooltip::updateSelf" ref="a7eb0acaf0f47e549e34ade124e71558c" args="(float elapsed)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::Tooltip::updateSelf </td>
          <td>(</td>
          <td class="paramtype">float&#160;</td>
          <td class="paramname"><em>elapsed</em></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Perform actual update processing for this <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>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">elapsed</td><td>float value indicating the number of seconds elapsed since the last update call.</td></tr>
  </table>
  </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#af88acbf0fef0d60267500bd3685c5de5">CEGUI::Window</a>.</p>

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

<p>Function used in checking if a <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> is valid for this window. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Returns true if the given <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> class name is valid for this window. False if not. </dd></dl>

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

</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="a74cdf1aa625090fafb4b67bea5e80294"></a><!-- doxytag: member="CEGUI::Tooltip::d_fadeTime" ref="a74cdf1aa625090fafb4b67bea5e80294" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">float <a class="el" href="classCEGUI_1_1Tooltip.html#a74cdf1aa625090fafb4b67bea5e80294">CEGUI::Tooltip::d_fadeTime</a><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>tool-tip fade time (seconds it takes for tip to fade in and/or out). </p>

</div>
</div>
<a class="anchor" id="ac25e2ff6fada81c1a72016607bedf125"></a><!-- doxytag: member="CEGUI::Tooltip::EventDisplayTimeChanged" ref="ac25e2ff6fada81c1a72016607bedf125" 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_1Tooltip.html#ac25e2ff6fada81c1a72016607bedf125">CEGUI::Tooltip::EventDisplayTimeChanged</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 display timeout for the tool tip gets 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_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> whose display timeout has been changed. </p>

</div>
</div>
<a class="anchor" id="a54d71ceb0f6756045c3a4128cdaba6ef"></a><!-- doxytag: member="CEGUI::Tooltip::EventFadeTimeChanged" ref="a54d71ceb0f6756045c3a4128cdaba6ef" 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_1Tooltip.html#a54d71ceb0f6756045c3a4128cdaba6ef">CEGUI::Tooltip::EventFadeTimeChanged</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 fade timeout for the tooltip gets 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_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> whose fade timeout has been changed. </p>

</div>
</div>
<a class="anchor" id="a84ec67982105c230af2d1c7f478da90c"></a><!-- doxytag: member="CEGUI::Tooltip::EventHoverTimeChanged" ref="a84ec67982105c230af2d1c7f478da90c" 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_1Tooltip.html#a84ec67982105c230af2d1c7f478da90c">CEGUI::Tooltip::EventHoverTimeChanged</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 hover timeout for the tool tip gets 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_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> whose hover timeout has been changed. </p>

</div>
</div>
<a class="anchor" id="abdcdc4dc2b4db5a8a073c18215331d42"></a><!-- doxytag: member="CEGUI::Tooltip::EventTooltipActive" ref="abdcdc4dc2b4db5a8a073c18215331d42" 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_1Tooltip.html#abdcdc4dc2b4db5a8a073c18215331d42">CEGUI::Tooltip::EventTooltipActive</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 tooltip is about to get activated. 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_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> that is about to become active. </p>

</div>
</div>
<a class="anchor" id="a2efa2e482b99fc738258bccea1182a94"></a><!-- doxytag: member="CEGUI::Tooltip::EventTooltipInactive" ref="a2efa2e482b99fc738258bccea1182a94" 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_1Tooltip.html#a2efa2e482b99fc738258bccea1182a94">CEGUI::Tooltip::EventTooltipInactive</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 tooltip has been deactivated. 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_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a> that has become inactive. </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>