File: classWt_1_1WAbstractArea.html

package info (click to toggle)
witty 3.2.1-2%2Bdeb7u1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 70,436 kB
  • sloc: cpp: 117,095; ansic: 77,999; xml: 7,564; sh: 1,037; perl: 208; makefile: 144; java: 86; sql: 14
file content (912 lines) | stat: -rw-r--r-- 64,920 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
<!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>Wt: Wt::WAbstractArea Class Reference</title>

<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />

<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
  $(document).ready(function() { searchBox.OnSelectItem(0); });
</script>

</head>
<body>
<div id="top"><!-- do not remove this div! -->


<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  
  
  <td style="padding-left: 0.5em;">
   <div id="projectname">Wt
   &#160;<span id="projectnumber">3.2.1</span>
   </div>
   
  </td>
  
  
  
 </tr>
 </tbody>
</table>
</div>

<!-- Generated by Doxygen 1.7.5.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
  <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="modules.html"><span>Modules</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>
      <li>
        <div id="MSearchBox" class="MSearchBoxInactive">
        <span class="left">
          <img id="MSearchSelect" src="search/mag_sel.png"
               onmouseover="return searchBox.OnSearchSelectShow()"
               onmouseout="return searchBox.OnSearchSelectHide()"
               alt=""/>
          <input type="text" id="MSearchField" value="Search" accesskey="S"
               onfocus="searchBox.OnSearchFieldFocus(true)" 
               onblur="searchBox.OnSearchFieldFocus(false)" 
               onkeyup="searchBox.OnSearchFieldChange(event)"/>
          </span><span class="right">
            <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
          </span>
        </div>
      </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="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="namespaceWt.html">Wt</a>      </li>
      <li class="navelem"><a class="el" href="classWt_1_1WAbstractArea.html">WAbstractArea</a>      </li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a>  </div>
  <div class="headertitle">
<div class="title">Wt::WAbstractArea Class Reference</div>  </div>
</div>
<div class="contents">
<!-- doxytag: class="Wt::WAbstractArea" --><!-- doxytag: inherits="Wt::WObject" -->
<p>Abstract base class for interactive areas in a widget.  
 <a href="classWt_1_1WAbstractArea.html#details">More...</a></p>

<p><code>#include &lt;Wt/WAbstractArea&gt;</code></p>
<div class="dynheader">
Inheritance diagram for Wt::WAbstractArea:</div>
<div class="dyncontent">
<div class="center"><img src="classWt_1_1WAbstractArea__inherit__graph.png" border="0" usemap="#Wt_1_1WAbstractArea_inherit__map" alt="Inheritance graph"/></div>
<map name="Wt_1_1WAbstractArea_inherit__map" id="Wt_1_1WAbstractArea_inherit__map">
<area shape="rect" href="classWt_1_1WCircleArea.html" title="A interactive area in a widget, specified by a circle." alt="" coords="5,155,125,181"/><area shape="rect" href="classWt_1_1WPolygonArea.html" title="An interactive area in a widget, specified by a polygon." alt="" coords="149,155,283,181"/><area shape="rect" href="classWt_1_1WRectArea.html" title="A interactive area in a widget, specified by a rectangle." alt="" coords="307,155,419,181"/><area shape="rect" href="classWt_1_1WObject.html" title="A base class for objects that participate in the signal/slot system." alt="" coords="168,5,264,32"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classWt_1_1WAbstractArea-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">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a2ca3fe7cc0229dffe137d2cd4edf7c50">~WAbstractArea</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a2ca3fe7cc0229dffe137d2cd4edf7c50"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#af3c8461b36ec142326d0204e16c9bb34">setHole</a> (bool hole)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Specifies that this area specifies a hole for another area.  <a href="#af3c8461b36ec142326d0204e16c9bb34"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a5cf67f536eaecba3c2165fc927c76707">isHole</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns whether this area specifies a hole.  <a href="#a5cf67f536eaecba3c2165fc927c76707"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a3a442feaa8191203d8d1858d98f5711a">setLink</a> (const <a class="el" href="classWt_1_1WLink.html">WLink</a> &amp;link)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a link.  <a href="#a3a442feaa8191203d8d1858d98f5711a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1WLink.html">WLink</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#aa6deba72fe68b22978d905603734970e">link</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the link.  <a href="#aa6deba72fe68b22978d905603734970e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a4c3350282fd3563886c093257ecd3119">setRef</a> (const std::string &amp;ref)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the destination URL (<b>deprecated</b>).  <a href="#a4c3350282fd3563886c093257ecd3119"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const std::string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a34cbb1334be3c8813ed1f8b401028544">ref</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the the destination URL (<b>deprecated</b>).  <a href="#a34cbb1334be3c8813ed1f8b401028544"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#af33f85a8505629ea9ded1ec1b962c359">setResource</a> (<a class="el" href="classWt_1_1WResource.html">WResource</a> *resource)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a destination resource (<b>deprecated</b>).  <a href="#af33f85a8505629ea9ded1ec1b962c359"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1WResource.html">WResource</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#aed1e5e63fee2a9f7d2a58974902d4145">resource</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the destination resource (<b>deprecated</b>).  <a href="#aed1e5e63fee2a9f7d2a58974902d4145"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a4b1d968e9681eefe588916c8a2ae944b">setTarget</a> (<a class="el" href="namespaceWt.html#a6c93a6e97016801a310275457e43f333">AnchorTarget</a> target)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Specifies the location where the referred content should be displayed.  <a href="#a4b1d968e9681eefe588916c8a2ae944b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceWt.html#a6c93a6e97016801a310275457e43f333">AnchorTarget</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#ab43a761767de10f92b00dcae6b8adff4">target</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the location where the referred content should be displayed.  <a href="#ab43a761767de10f92b00dcae6b8adff4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a0119bf73439f81f83b754906785746bf">setAlternateText</a> (const <a class="el" href="classWt_1_1WString.html">WString</a> &amp;text)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets an alternate text.  <a href="#a0119bf73439f81f83b754906785746bf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classWt_1_1WString.html">WString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#aa4902223227eded25c34c556edb17b2f">alternateText</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the alternate text.  <a href="#aa4902223227eded25c34c556edb17b2f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a310e8e1d6360d22bf8bf0e484a52b8f9">setToolTip</a> (const <a class="el" href="classWt_1_1WString.html">WString</a> &amp;text)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the tooltip.  <a href="#a310e8e1d6360d22bf8bf0e484a52b8f9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1WString.html">WString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a05cd3a6e69b3dd98f10aeac4e4355e23">toolTip</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the tooltip text.  <a href="#a05cd3a6e69b3dd98f10aeac4e4355e23"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a93454d8fbd260de0319ac6e81e025a82">setStyleClass</a> (const <a class="el" href="classWt_1_1WString.html">WString</a> &amp;styleClass)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines a style class.  <a href="#a93454d8fbd260de0319ac6e81e025a82"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1WString.html">WString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a8a0a2263fd7a2c27aaedd9dd2a6519c8">styleClass</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the style class.  <a href="#a8a0a2263fd7a2c27aaedd9dd2a6519c8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a21e4667870ca5d036d4f284407c5bd1c">addStyleClass</a> (const <a class="el" href="classWt_1_1WString.html">WString</a> &amp;styleClass, bool force=false)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a style class.  <a href="#a21e4667870ca5d036d4f284407c5bd1c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3042ae12df27fa37b4371c61e63feb52"></a><!-- doxytag: member="Wt::WAbstractArea::removeStyleClass" ref="a3042ae12df27fa37b4371c61e63feb52" args="(const WString &amp;styleClass, bool force=false)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a3042ae12df27fa37b4371c61e63feb52">removeStyleClass</a> (const <a class="el" href="classWt_1_1WString.html">WString</a> &amp;styleClass, bool force=false)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a style class. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a818e8fae698db20d7cc6e5788891c04c">setCursor</a> (<a class="el" href="namespaceWt.html#a6dc0346a6ae888d6d4ab44f022e61eb6">Cursor</a> cursor)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the cursor.  <a href="#a818e8fae698db20d7cc6e5788891c04c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceWt.html#a6dc0346a6ae888d6d4ab44f022e61eb6">Cursor</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a312cca5512a261011dab5014574f1af5">cursor</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the cursor.  <a href="#a312cca5512a261011dab5014574f1af5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WKeyEvent.html">WKeyEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a36ccd6ca70e5ae98f6257034d294ba7e">keyWentDown</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when a keyboard key is pushed down.  <a href="#a36ccd6ca70e5ae98f6257034d294ba7e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WKeyEvent.html">WKeyEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#ae4053ad9c11e54135c43f2b667aeb859">keyPressed</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when a "character" was entered.  <a href="#ae4053ad9c11e54135c43f2b667aeb859"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WKeyEvent.html">WKeyEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a42b2613337cec7ea05d3c9f0cb679ee3">keyWentUp</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when a keyboard key is released.  <a href="#a42b2613337cec7ea05d3c9f0cb679ee3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a3fc50b2d0632bc6b02fd3c1c350042fd">enterPressed</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when enter was pressed.  <a href="#a3fc50b2d0632bc6b02fd3c1c350042fd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a0527bbfdfdee7bdf24e6860a22ff3dff">escapePressed</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when escape was pressed.  <a href="#a0527bbfdfdee7bdf24e6860a22ff3dff"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#acc47a02510ddcc77db551fa51e1479bf">clicked</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when a mouse key was clicked on this widget.  <a href="#acc47a02510ddcc77db551fa51e1479bf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a82ece2a2dcb5b292c997a4c2f2a5b5b9">doubleClicked</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when a mouse key was double clicked on this widget.  <a href="#a82ece2a2dcb5b292c997a4c2f2a5b5b9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#ae37e2b91aee383e8a19ce6b507f2a98d">mouseWentDown</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when a mouse key was pushed down on this widget.  <a href="#ae37e2b91aee383e8a19ce6b507f2a98d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a5b4531eae4eaa76257809b229d0aea4d">mouseWentUp</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when a mouse key was released on this widget.  <a href="#a5b4531eae4eaa76257809b229d0aea4d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#acdfc86cb6fbbc48686a8157ae5d164cd">mouseWentOut</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when the mouse went out of this widget.  <a href="#acdfc86cb6fbbc48686a8157ae5d164cd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a24aeff45daab0cea72d38fdaf35019aa">mouseWentOver</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when the mouse entered this widget.  <a href="#a24aeff45daab0cea72d38fdaf35019aa"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a574e2e0de96f0fc4a31a4fb5a21e2262">mouseMoved</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when the mouse moved over this widget.  <a href="#a574e2e0de96f0fc4a31a4fb5a21e2262"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a79496c197ea3f3c35c853eaab18bf432">mouseDragged</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when the mouse is dragged over this widget.  <a href="#a79496c197ea3f3c35c853eaab18bf432"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classWt_1_1WAbstractArea.html#a3dbe39c26769a63e4bf63020e31e9f22">mouseWheel</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Event signal emitted when the mouse scroll wheel was used.  <a href="#a3dbe39c26769a63e4bf63020e31e9f22"></a><br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Abstract base class for interactive areas in a widget. </p>
<p>Use an WAbstractArea (or rather, one of its concrete implementations), to define interactivity that applies on a part of a <a class="el" href="classWt_1_1WImage.html" title="A widget that displays an image.">WImage</a> or <a class="el" href="classWt_1_1WPaintedWidget.html" title="A widget that is painted using vector graphics.">WPaintedWidget</a>. The area may be defined using different shapes through <a class="el" href="classWt_1_1WRectArea.html" title="A interactive area in a widget, specified by a rectangle.">WRectArea</a>, <a class="el" href="classWt_1_1WCircleArea.html" title="A interactive area in a widget, specified by a circle.">WCircleArea</a> or <a class="el" href="classWt_1_1WPolygonArea.html" title="An interactive area in a widget, specified by a polygon.">WPolygonArea</a>.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WImage.html#aa5737b44a5161b8494b2691c20315417" title="Adds an interactive area.">WImage::addArea()</a>, <a class="el" href="classWt_1_1WPaintedWidget.html#ac4c031c7ab47e85f27aac09b7fc37bea" title="Adds an interactive area.">WPaintedWidget::addArea()</a> </dd></dl>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a2ca3fe7cc0229dffe137d2cd4edf7c50"></a><!-- doxytag: member="Wt::WAbstractArea::~WAbstractArea" ref="a2ca3fe7cc0229dffe137d2cd4edf7c50" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">Wt::WAbstractArea::~WAbstractArea </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Destructor. </p>
<p>The are is automatically removed from the <a class="el" href="classWt_1_1WImage.html" title="A widget that displays an image.">WImage</a> or <a class="el" href="classWt_1_1WPaintedWidget.html" title="A widget that is painted using vector graphics.">WPaintedWidget</a> to which it was added.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WImage.html#a79b9dedd023e423b1b2575588ed7ff51" title="Removes an interactive area.">WImage::removeArea()</a>, <a class="el" href="classWt_1_1WPaintedWidget.html#a0147ad94c849d437be8bfde14df579a5" title="Removes an interactive area.">WPaintedWidget::removeArea()</a> </dd></dl>

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a21e4667870ca5d036d4f284407c5bd1c"></a><!-- doxytag: member="Wt::WAbstractArea::addStyleClass" ref="a21e4667870ca5d036d4f284407c5bd1c" args="(const WString &amp;styleClass, bool force=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Wt::WAbstractArea::addStyleClass </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classWt_1_1WString.html">WString</a> &amp;&#160;</td>
          <td class="paramname"><em>styleClass</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>force</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Adds a style class. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>Only few CSS declarations are known to affect the look of a image area, the most notable one being the 'cursor'. Other things will simply be ignored. </dd></dl>

</div>
</div>
<a class="anchor" id="aa4902223227eded25c34c556edb17b2f"></a><!-- doxytag: member="Wt::WAbstractArea::alternateText" ref="aa4902223227eded25c34c556edb17b2f" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classWt_1_1WString.html">WString</a> Wt::WAbstractArea::alternateText </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the alternate text. </p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a0119bf73439f81f83b754906785746bf" title="Sets an alternate text.">setAlternateText()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="acc47a02510ddcc77db551fa51e1479bf"></a><!-- doxytag: member="Wt::WAbstractArea::clicked" ref="acc47a02510ddcc77db551fa51e1479bf" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp; Wt::WAbstractArea::clicked </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when a mouse key was clicked on this widget. </p>
<p>The event details contains information such as the <a class="el" href="classWt_1_1WMouseEvent.html#afc2a69f4301a3c8be46b8bfde23d6835">button</a>, optional <a class="el" href="classWt_1_1WMouseEvent.html#ac84d28364a178e547d2bc417e3eb2423">keyboard modifiers</a>, and mouse coordinates relative to the <a class="el" href="classWt_1_1WMouseEvent.html#af875dd9a33e6a5dd7cf6aa9dd927e8ef">widget</a>, the window <a class="el" href="classWt_1_1WMouseEvent.html#aeac308aadc18ee38d80e49d9357bdcea">window</a>, or the <a class="el" href="classWt_1_1WMouseEvent.html#a76d0dffbee01451f043ff603eb133334">document</a>.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>When JavaScript is disabled, the event details contain invalid information. </dd></dl>

</div>
</div>
<a class="anchor" id="a312cca5512a261011dab5014574f1af5"></a><!-- doxytag: member="Wt::WAbstractArea::cursor" ref="a312cca5512a261011dab5014574f1af5" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="namespaceWt.html#a6dc0346a6ae888d6d4ab44f022e61eb6">Cursor</a> Wt::WAbstractArea::cursor </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the cursor. </p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a818e8fae698db20d7cc6e5788891c04c" title="Sets the cursor.">setCursor()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a82ece2a2dcb5b292c997a4c2f2a5b5b9"></a><!-- doxytag: member="Wt::WAbstractArea::doubleClicked" ref="a82ece2a2dcb5b292c997a4c2f2a5b5b9" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp; Wt::WAbstractArea::doubleClicked </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when a mouse key was double clicked on this widget. </p>
<p>The event details contains information such as the <a class="el" href="classWt_1_1WMouseEvent.html#afc2a69f4301a3c8be46b8bfde23d6835">button</a>, optional <a class="el" href="classWt_1_1WMouseEvent.html#ac84d28364a178e547d2bc417e3eb2423">keyboard modifiers</a>, and mouse coordinates relative to the <a class="el" href="classWt_1_1WMouseEvent.html#af875dd9a33e6a5dd7cf6aa9dd927e8ef">widget</a>, the window <a class="el" href="classWt_1_1WMouseEvent.html#aeac308aadc18ee38d80e49d9357bdcea">window</a>, or the <a class="el" href="classWt_1_1WMouseEvent.html#a76d0dffbee01451f043ff603eb133334">document</a>.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>When JavaScript is disabled, the signal will never fire. </dd></dl>

</div>
</div>
<a class="anchor" id="a3fc50b2d0632bc6b02fd3c1c350042fd"></a><!-- doxytag: member="Wt::WAbstractArea::enterPressed" ref="a3fc50b2d0632bc6b02fd3c1c350042fd" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a> &amp; Wt::WAbstractArea::enterPressed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when enter was pressed. </p>
<p>This signal is emitted when the Enter or Return key was pressed.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#ae4053ad9c11e54135c43f2b667aeb859" title="Event signal emitted when a &quot;character&quot; was entered.">keyPressed()</a>, <a class="el" href="group__signalslot.html#gga34e65660d30e69c56aa636a8856aa52dab3c8e06184697e8b55705ec6e92ef57a" title="Enter key.">Key_Enter</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a0527bbfdfdee7bdf24e6860a22ff3dff"></a><!-- doxytag: member="Wt::WAbstractArea::escapePressed" ref="a0527bbfdfdee7bdf24e6860a22ff3dff" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a> &amp; Wt::WAbstractArea::escapePressed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when escape was pressed. </p>
<p>This signal is emitted when the Escape key was pressed.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#ae4053ad9c11e54135c43f2b667aeb859" title="Event signal emitted when a &quot;character&quot; was entered.">keyPressed()</a>, <a class="el" href="group__signalslot.html#gga34e65660d30e69c56aa636a8856aa52da6fdfa052fee9a0ecad21a8ef29fc4a5a" title="Escape key.">Key_Escape</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a5cf67f536eaecba3c2165fc927c76707"></a><!-- doxytag: member="Wt::WAbstractArea::isHole" ref="a5cf67f536eaecba3c2165fc927c76707" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Wt::WAbstractArea::isHole </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns whether this area specifies a hole. </p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#af3c8461b36ec142326d0204e16c9bb34" title="Specifies that this area specifies a hole for another area.">setHole()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ae4053ad9c11e54135c43f2b667aeb859"></a><!-- doxytag: member="Wt::WAbstractArea::keyPressed" ref="ae4053ad9c11e54135c43f2b667aeb859" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WKeyEvent.html">WKeyEvent</a> &gt; &amp; Wt::WAbstractArea::keyPressed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when a "character" was entered. </p>
<p>The keyPressed signal is emitted when a key is pressed, and a character is entered. Unlike <a class="el" href="classWt_1_1WAbstractArea.html#a36ccd6ca70e5ae98f6257034d294ba7e" title="Event signal emitted when a keyboard key is pushed down.">keyWentDown()</a>, it is emitted only for key presses that result in a character being entered, and thus not for modifier keys or keyboard navigation keys.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a36ccd6ca70e5ae98f6257034d294ba7e" title="Event signal emitted when a keyboard key is pushed down.">keyWentDown()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a36ccd6ca70e5ae98f6257034d294ba7e"></a><!-- doxytag: member="Wt::WAbstractArea::keyWentDown" ref="a36ccd6ca70e5ae98f6257034d294ba7e" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WKeyEvent.html">WKeyEvent</a> &gt; &amp; Wt::WAbstractArea::keyWentDown </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when a keyboard key is pushed down. </p>
<p>The keyWentDown signal is the first signal emitted when a key is pressed (before the <a class="el" href="classWt_1_1WAbstractArea.html#ae4053ad9c11e54135c43f2b667aeb859" title="Event signal emitted when a &quot;character&quot; was entered.">keyPressed()</a> signal). Unlike <a class="el" href="classWt_1_1WAbstractArea.html#ae4053ad9c11e54135c43f2b667aeb859" title="Event signal emitted when a &quot;character&quot; was entered.">keyPressed()</a> however it is also emitted for modifier keys (such as "shift", "control", ...) or keyboard navigation keys that do not have a corresponding character.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#ae4053ad9c11e54135c43f2b667aeb859" title="Event signal emitted when a &quot;character&quot; was entered.">keyPressed()</a>, <a class="el" href="classWt_1_1WAbstractArea.html#a42b2613337cec7ea05d3c9f0cb679ee3" title="Event signal emitted when a keyboard key is released.">keyWentUp()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a42b2613337cec7ea05d3c9f0cb679ee3"></a><!-- doxytag: member="Wt::WAbstractArea::keyWentUp" ref="a42b2613337cec7ea05d3c9f0cb679ee3" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WKeyEvent.html">WKeyEvent</a> &gt; &amp; Wt::WAbstractArea::keyWentUp </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when a keyboard key is released. </p>
<p>This is the counter-part of the <a class="el" href="classWt_1_1WAbstractArea.html#a36ccd6ca70e5ae98f6257034d294ba7e" title="Event signal emitted when a keyboard key is pushed down.">keyWentDown()</a> event. Every key-down has its corresponding key-up.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a36ccd6ca70e5ae98f6257034d294ba7e" title="Event signal emitted when a keyboard key is pushed down.">keyWentDown()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="aa6deba72fe68b22978d905603734970e"></a><!-- doxytag: member="Wt::WAbstractArea::link" ref="aa6deba72fe68b22978d905603734970e" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1WLink.html">WLink</a> Wt::WAbstractArea::link </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the link. </p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a3a442feaa8191203d8d1858d98f5711a" title="Sets a link.">setLink()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a79496c197ea3f3c35c853eaab18bf432"></a><!-- doxytag: member="Wt::WAbstractArea::mouseDragged" ref="a79496c197ea3f3c35c853eaab18bf432" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp; Wt::WAbstractArea::mouseDragged </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when the mouse is dragged over this widget. </p>
<p>The mouse event contains information on the button(s) currently pressed. If multiple buttons are currently pressed, only the button with smallest enum value is returned.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>When JavaScript is disabled, the signal will never fire. </dd></dl>

</div>
</div>
<a class="anchor" id="a574e2e0de96f0fc4a31a4fb5a21e2262"></a><!-- doxytag: member="Wt::WAbstractArea::mouseMoved" ref="a574e2e0de96f0fc4a31a4fb5a21e2262" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp; Wt::WAbstractArea::mouseMoved </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when the mouse moved over this widget. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>When JavaScript is disabled, the signal will never fire. </dd></dl>

</div>
</div>
<a class="anchor" id="ae37e2b91aee383e8a19ce6b507f2a98d"></a><!-- doxytag: member="Wt::WAbstractArea::mouseWentDown" ref="ae37e2b91aee383e8a19ce6b507f2a98d" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp; Wt::WAbstractArea::mouseWentDown </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when a mouse key was pushed down on this widget. </p>
<p>The event details contains information such as the <a class="el" href="classWt_1_1WMouseEvent.html#afc2a69f4301a3c8be46b8bfde23d6835">button</a>, optional <a class="el" href="classWt_1_1WMouseEvent.html#ac84d28364a178e547d2bc417e3eb2423">keyboard modifiers</a>, and mouse coordinates relative to the <a class="el" href="classWt_1_1WMouseEvent.html#af875dd9a33e6a5dd7cf6aa9dd927e8ef">widget</a>, the window <a class="el" href="classWt_1_1WMouseEvent.html#aeac308aadc18ee38d80e49d9357bdcea">window</a>, or the <a class="el" href="classWt_1_1WMouseEvent.html#a76d0dffbee01451f043ff603eb133334">document</a>.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>When JavaScript is disabled, the signal will never fire. </dd></dl>

</div>
</div>
<a class="anchor" id="acdfc86cb6fbbc48686a8157ae5d164cd"></a><!-- doxytag: member="Wt::WAbstractArea::mouseWentOut" ref="acdfc86cb6fbbc48686a8157ae5d164cd" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp; Wt::WAbstractArea::mouseWentOut </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when the mouse went out of this widget. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>When JavaScript is disabled, the signal will never fire. </dd></dl>

</div>
</div>
<a class="anchor" id="a24aeff45daab0cea72d38fdaf35019aa"></a><!-- doxytag: member="Wt::WAbstractArea::mouseWentOver" ref="a24aeff45daab0cea72d38fdaf35019aa" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp; Wt::WAbstractArea::mouseWentOver </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when the mouse entered this widget. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>When JavaScript is disabled, the signal will never fire. </dd></dl>

</div>
</div>
<a class="anchor" id="a5b4531eae4eaa76257809b229d0aea4d"></a><!-- doxytag: member="Wt::WAbstractArea::mouseWentUp" ref="a5b4531eae4eaa76257809b229d0aea4d" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp; Wt::WAbstractArea::mouseWentUp </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when a mouse key was released on this widget. </p>
<p>The event details contains information such as the <a class="el" href="classWt_1_1WMouseEvent.html#afc2a69f4301a3c8be46b8bfde23d6835">button</a>, optional <a class="el" href="classWt_1_1WMouseEvent.html#ac84d28364a178e547d2bc417e3eb2423">keyboard modifiers</a>, and mouse coordinates relative to the <a class="el" href="classWt_1_1WMouseEvent.html#af875dd9a33e6a5dd7cf6aa9dd927e8ef">widget</a>, the window <a class="el" href="classWt_1_1WMouseEvent.html#aeac308aadc18ee38d80e49d9357bdcea">window</a>, or the <a class="el" href="classWt_1_1WMouseEvent.html#a76d0dffbee01451f043ff603eb133334">document</a>.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>When JavaScript is disabled, the signal will never fire. </dd></dl>

</div>
</div>
<a class="anchor" id="a3dbe39c26769a63e4bf63020e31e9f22"></a><!-- doxytag: member="Wt::WAbstractArea::mouseWheel" ref="a3dbe39c26769a63e4bf63020e31e9f22" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1EventSignal.html">EventSignal</a>&lt; <a class="el" href="classWt_1_1WMouseEvent.html">WMouseEvent</a> &gt; &amp; Wt::WAbstractArea::mouseWheel </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Event signal emitted when the mouse scroll wheel was used. </p>
<p>The event details contains information such as the <a class="el" href="classWt_1_1WMouseEvent.html#a4354738e0bce7e57764a465f5e19895d">wheel delta</a>, optional <a class="el" href="classWt_1_1WMouseEvent.html#ac84d28364a178e547d2bc417e3eb2423">keyboard modifiers</a>, and mouse coordinates relative to the <a class="el" href="classWt_1_1WMouseEvent.html#af875dd9a33e6a5dd7cf6aa9dd927e8ef">widget</a>, the window <a class="el" href="classWt_1_1WMouseEvent.html#aeac308aadc18ee38d80e49d9357bdcea">window</a>, or the <a class="el" href="classWt_1_1WMouseEvent.html#a76d0dffbee01451f043ff603eb133334">document</a>.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>When JavaScript is disabled, the signal will never fire. </dd></dl>

</div>
</div>
<a class="anchor" id="a34cbb1334be3c8813ed1f8b401028544"></a><!-- doxytag: member="Wt::WAbstractArea::ref" ref="a34cbb1334be3c8813ed1f8b401028544" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const std::string Wt::WAbstractArea::ref </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the the destination URL (<b>deprecated</b>). </p>
<p>When the area refers to a resource, the current resource URL is returned.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a4c3350282fd3563886c093257ecd3119" title="Sets the destination URL (deprecated).">setRef()</a>, <a class="el" href="classWt_1_1WResource.html#a11169bf885f297f6f2ebbc1789aeded2" title="Returns the current URL for this resource.">WResource::url()</a></dd></dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000002">Deprecated:</a></b></dt><dd>Use <a class="el" href="classWt_1_1WAbstractArea.html#aa6deba72fe68b22978d905603734970e" title="Returns the link.">link()</a> instead. </dd></dl>

</div>
</div>
<a class="anchor" id="aed1e5e63fee2a9f7d2a58974902d4145"></a><!-- doxytag: member="Wt::WAbstractArea::resource" ref="aed1e5e63fee2a9f7d2a58974902d4145" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1WResource.html">WResource</a> * Wt::WAbstractArea::resource </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the destination resource (<b>deprecated</b>). </p>
<p>Returns <code>0</code> if no resource has been set.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#af33f85a8505629ea9ded1ec1b962c359" title="Sets a destination resource (deprecated).">setResource()</a></dd></dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000004">Deprecated:</a></b></dt><dd>Use <a class="el" href="classWt_1_1WAbstractArea.html#aa6deba72fe68b22978d905603734970e" title="Returns the link.">link()</a> instead. </dd></dl>

</div>
</div>
<a class="anchor" id="a0119bf73439f81f83b754906785746bf"></a><!-- doxytag: member="Wt::WAbstractArea::setAlternateText" ref="a0119bf73439f81f83b754906785746bf" args="(const WString &amp;text)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Wt::WAbstractArea::setAlternateText </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classWt_1_1WString.html">WString</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets an alternate text. </p>
<p>The alternate text should provide a fallback for browsers that do not display an image. If no sensible fallback text can be provided, an empty text is preferred over nonsense.</p>
<p>This should not be confused with <a class="el" href="classWt_1_1WAbstractArea.html#a05cd3a6e69b3dd98f10aeac4e4355e23" title="Returns the tooltip text.">toolTip()</a> text, which provides additional information that is displayed when the mouse hovers over the area.</p>
<p>The default alternate text is an empty text ("").</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#aa4902223227eded25c34c556edb17b2f" title="Returns the alternate text.">alternateText()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a818e8fae698db20d7cc6e5788891c04c"></a><!-- doxytag: member="Wt::WAbstractArea::setCursor" ref="a818e8fae698db20d7cc6e5788891c04c" args="(Cursor cursor)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Wt::WAbstractArea::setCursor </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="namespaceWt.html#a6dc0346a6ae888d6d4ab44f022e61eb6">Cursor</a>&#160;</td>
          <td class="paramname"><em>cursor</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the cursor. </p>
<p>This sets the mouse cursor that is shown when the mouse pointer is over the area. Most browsers only support PointingHandCursor, which is activated by a non-empty ref.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a4c3350282fd3563886c093257ecd3119" title="Sets the destination URL (deprecated).">setRef()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="af3c8461b36ec142326d0204e16c9bb34"></a><!-- doxytag: member="Wt::WAbstractArea::setHole" ref="af3c8461b36ec142326d0204e16c9bb34" args="(bool hole)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Wt::WAbstractArea::setHole </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>hole</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Specifies that this area specifies a hole for another area. </p>
<p>When set to <code>true</code>, this area will define an area that does not provide interactivity. When it preceeds other, overlapping, areas, it acts as if it cuts a hole in those areas.</p>
<p>The default value is <code>false</code>.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a5cf67f536eaecba3c2165fc927c76707" title="Returns whether this area specifies a hole.">isHole()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a3a442feaa8191203d8d1858d98f5711a"></a><!-- doxytag: member="Wt::WAbstractArea::setLink" ref="a3a442feaa8191203d8d1858d98f5711a" args="(const WLink &amp;link)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Wt::WAbstractArea::setLink </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classWt_1_1WLink.html">WLink</a> &amp;&#160;</td>
          <td class="paramname"><em>link</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets a link. </p>
<p>By setting a link, the area behaves like a <a class="el" href="classWt_1_1WAnchor.html" title="A widget that represents an HTML anchor (to link to other documents).">WAnchor</a>.</p>
<p>By default, no destination link is set.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>Even when no destination link is set, in some circumstances, an identity URL ('#') will be linked to on the underlying HTML &lt;area&gt; element (see also <a class="el" href="classWt_1_1WAbstractArea.html#a818e8fae698db20d7cc6e5788891c04c" title="Sets the cursor.">setCursor()</a>). </dd></dl>

</div>
</div>
<a class="anchor" id="a4c3350282fd3563886c093257ecd3119"></a><!-- doxytag: member="Wt::WAbstractArea::setRef" ref="a4c3350282fd3563886c093257ecd3119" args="(const std::string &amp;ref)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Wt::WAbstractArea::setRef </td>
          <td>(</td>
          <td class="paramtype">const std::string &amp;&#160;</td>
          <td class="paramname"><em>ref</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the destination URL (<b>deprecated</b>). </p>
<p>By setting a destination URL, the area behaves like a <a class="el" href="classWt_1_1WAnchor.html" title="A widget that represents an HTML anchor (to link to other documents).">WAnchor</a>.</p>
<p>By default, no destination URL is set (<code>ref</code> = "").</p>
<p>This method should not be used when the area has been pointed to a dynamically generated resource using <a class="el" href="classWt_1_1WAbstractArea.html#af33f85a8505629ea9ded1ec1b962c359" title="Sets a destination resource (deprecated).">setResource()</a>.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#af33f85a8505629ea9ded1ec1b962c359" title="Sets a destination resource (deprecated).">setResource()</a></dd></dl>
<dl class="note"><dt><b>Note:</b></dt><dd>Even when no destination URL is set, in some circumstances, a identity URL ('#') will be set on the underlying HTML &lt;area&gt; element (see also <a class="el" href="classWt_1_1WAbstractArea.html#a818e8fae698db20d7cc6e5788891c04c" title="Sets the cursor.">setCursor()</a>).</dd></dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000001">Deprecated:</a></b></dt><dd>Use <a class="el" href="classWt_1_1WAbstractArea.html#a3a442feaa8191203d8d1858d98f5711a" title="Sets a link.">setLink()</a> instead. </dd></dl>

</div>
</div>
<a class="anchor" id="af33f85a8505629ea9ded1ec1b962c359"></a><!-- doxytag: member="Wt::WAbstractArea::setResource" ref="af33f85a8505629ea9ded1ec1b962c359" args="(WResource *resource)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Wt::WAbstractArea::setResource </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classWt_1_1WResource.html">WResource</a> *&#160;</td>
          <td class="paramname"><em>resource</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets a destination resource (<b>deprecated</b>). </p>
<p>A resource specifies application-dependent content, which may be generated by your application on demand.</p>
<p>By setting a resource, the area behaves like a <a class="el" href="classWt_1_1WAnchor.html" title="A widget that represents an HTML anchor (to link to other documents).">WAnchor</a> that links to the resource <code>resource</code>. The resource may be cleared by passing <code>resource</code> = <code>0</code>.</p>
<p>The area does not assume ownership of the resource.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a4c3350282fd3563886c093257ecd3119" title="Sets the destination URL (deprecated).">setRef()</a></dd></dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000003">Deprecated:</a></b></dt><dd>Use <a class="el" href="classWt_1_1WAbstractArea.html#a3a442feaa8191203d8d1858d98f5711a" title="Sets a link.">setLink()</a> instead. </dd></dl>

</div>
</div>
<a class="anchor" id="a93454d8fbd260de0319ac6e81e025a82"></a><!-- doxytag: member="Wt::WAbstractArea::setStyleClass" ref="a93454d8fbd260de0319ac6e81e025a82" args="(const WString &amp;styleClass)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Wt::WAbstractArea::setStyleClass </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classWt_1_1WString.html">WString</a> &amp;&#160;</td>
          <td class="paramname"><em>styleClass</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Defines a style class. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>Only few CSS declarations are known to affect the look of a image area, the most notable one being the 'cursor'. Other things will simply be ignored. </dd></dl>

</div>
</div>
<a class="anchor" id="a4b1d968e9681eefe588916c8a2ae944b"></a><!-- doxytag: member="Wt::WAbstractArea::setTarget" ref="a4b1d968e9681eefe588916c8a2ae944b" args="(AnchorTarget target)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Wt::WAbstractArea::setTarget </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="namespaceWt.html#a6c93a6e97016801a310275457e43f333">AnchorTarget</a>&#160;</td>
          <td class="paramname"><em>target</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Specifies the location where the referred content should be displayed. </p>
<p>This configures the location where referred content should be displayed, that was specified using <a class="el" href="classWt_1_1WAbstractArea.html#a4c3350282fd3563886c093257ecd3119" title="Sets the destination URL (deprecated).">setRef()</a> or <a class="el" href="classWt_1_1WAbstractArea.html#af33f85a8505629ea9ded1ec1b962c359" title="Sets a destination resource (deprecated).">setResource()</a>.</p>
<p>By default, the reference is displayed in the application (<a class="el" href="namespaceWt.html#a6c93a6e97016801a310275457e43f333ae976883723836b4423d81ecf590bde0c" title="Show Instead of the application.">Wt::TargetSelf</a>). When the destination is an HTML document, the application is replaced with the new document. When the reference is a document that cannot be displayed in the browser, it is offered for download or opened using an external program, depending on browser settings.</p>
<p>By setting <code>target</code> to <a class="el" href="namespaceWt.html#a6c93a6e97016801a310275457e43f333a95e5b4e8a2eed99252fc0eb2bb483cd8" title="Show in a separate new tab or window.">Wt::TargetNewWindow</a>, the destination is displayed in a new browser window or tab.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a4c3350282fd3563886c093257ecd3119" title="Sets the destination URL (deprecated).">setRef()</a>, <a class="el" href="classWt_1_1WAbstractArea.html#af33f85a8505629ea9ded1ec1b962c359" title="Sets a destination resource (deprecated).">setResource()</a>, <a class="el" href="classWt_1_1WAbstractArea.html#ab43a761767de10f92b00dcae6b8adff4" title="Returns the location where the referred content should be displayed.">target()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a310e8e1d6360d22bf8bf0e484a52b8f9"></a><!-- doxytag: member="Wt::WAbstractArea::setToolTip" ref="a310e8e1d6360d22bf8bf0e484a52b8f9" args="(const WString &amp;text)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Wt::WAbstractArea::setToolTip </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classWt_1_1WString.html">WString</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the tooltip. </p>
<p>The tooltip is displayed when the cursor hovers over the area. </p>

</div>
</div>
<a class="anchor" id="a8a0a2263fd7a2c27aaedd9dd2a6519c8"></a><!-- doxytag: member="Wt::WAbstractArea::styleClass" ref="a8a0a2263fd7a2c27aaedd9dd2a6519c8" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1WString.html">WString</a> Wt::WAbstractArea::styleClass </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the style class. </p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a93454d8fbd260de0319ac6e81e025a82" title="Defines a style class.">setStyleClass()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ab43a761767de10f92b00dcae6b8adff4"></a><!-- doxytag: member="Wt::WAbstractArea::target" ref="ab43a761767de10f92b00dcae6b8adff4" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="namespaceWt.html#a6c93a6e97016801a310275457e43f333">AnchorTarget</a> Wt::WAbstractArea::target </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the location where the referred content should be displayed. </p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a4b1d968e9681eefe588916c8a2ae944b" title="Specifies the location where the referred content should be displayed.">setTarget()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a05cd3a6e69b3dd98f10aeac4e4355e23"></a><!-- doxytag: member="Wt::WAbstractArea::toolTip" ref="a05cd3a6e69b3dd98f10aeac4e4355e23" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classWt_1_1WString.html">WString</a> Wt::WAbstractArea::toolTip </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the tooltip text. </p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classWt_1_1WAbstractArea.html#a310e8e1d6360d22bf8bf0e484a52b8f9" title="Sets the tooltip.">setToolTip()</a> </dd></dl>

</div>
</div>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
     onmouseover="return searchBox.OnSearchSelectShow()"
     onmouseout="return searchBox.OnSearchSelectHide()"
     onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark">&#160;</span>Typedefs</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(7)"><span class="SelectionMark">&#160;</span>Enumerations</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(8)"><span class="SelectionMark">&#160;</span>Enumerator</a></div>

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0" 
        name="MSearchResults" id="MSearchResults">
</iframe>
</div>

<hr size="1"><address style="text-align: right; margin: 3px"><small>
Generated on Fri Mar 30 2012 for <a href="http://www.webtoolkit.eu/wt">the
C++ Web Toolkit (Wt)</a> by&nbsp;<a
href="http://www.doxygen.org/index.html"><img src="doxygen.png"
alt="doxygen" border="0" style="vertical-align: middle; display:
inline-block; height: 2em"></a> 1.7.5.1</small></address>
</body>
</html>