This file is indexed.

/usr/share/doc/libjuce/apiref/classAlertWindow.html is in libjuce-doc 4.3.0~repack-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
<!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"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.12"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>JUCE: AlertWindow Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td id="projectalign" style="padding-left: 0.5em;">
   <div id="projectname">JUCE
   </div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.12 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
  initMenu('',true,false,'search.php','Search');
  $(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
     onmouseover="return searchBox.OnSearchSelectShow()"
     onmouseout="return searchBox.OnSearchSelectHide()"
     onkeydown="return searchBox.OnSearchSelectKey(event)">
</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>

</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#pub-types">Public Types</a> &#124;
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-methods">Static Public Member Functions</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="classAlertWindow-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">AlertWindow Class Reference</div>  </div>
</div><!--header-->
<div class="contents">

<p>A window that displays a message and has buttons for the user to react to it.  
 <a href="classAlertWindow.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" alt="+"/> Inheritance diagram for AlertWindow:</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="classAlertWindow.png" usemap="#AlertWindow_map" alt=""/>
  <map id="AlertWindow_map" name="AlertWindow_map">
<area href="classTopLevelWindow.html" title="A base class for top-level windows. " alt="TopLevelWindow" shape="rect" coords="0,112,108,136"/>
<area href="classComponent.html" title="The base class for all JUCE user-interface objects. " alt="Component" shape="rect" coords="0,56,108,80"/>
<area href="classMouseListener.html" title="A MouseListener can be registered with a component to receive callbacks about mouse events that happe..." alt="MouseListener" shape="rect" coords="0,0,108,24"/>
</map>
 </div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structAlertWindow_1_1LookAndFeelMethods.html">LookAndFeelMethods</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">This abstract base class is implemented by <a class="el" href="classLookAndFeel.html" title="LookAndFeel objects define the appearance of all the JUCE widgets, and subclasses can be used to appl...">LookAndFeel</a> classes to provide alert-window drawing functionality.  <a href="structAlertWindow_1_1LookAndFeelMethods.html#details">More...</a><br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:a2582d1f79937cb47a6a3764c7d9bdba3"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a> { <a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3a6b6648ee3f02f6832d897a214c647421">NoIcon</a>, 
<a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3a63d1a179c412afc32f7f3c8061b238be">QuestionIcon</a>, 
<a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3a8af24c68ddba14cc97687e2b2b75f373">WarningIcon</a>, 
<a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3a3a24dd7ddec3b6ec31d320aaa525e43f">InfoIcon</a>
 }<tr class="memdesc:a2582d1f79937cb47a6a3764c7d9bdba3"><td class="mdescLeft">&#160;</td><td class="mdescRight">The type of icon to show in the dialog box.  <a href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:a2582d1f79937cb47a6a3764c7d9bdba3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad2f8b8ba50ce8a744e37e05e9a40dce1"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#ad2f8b8ba50ce8a744e37e05e9a40dce1">ColourIds</a> { <a class="el" href="classAlertWindow.html#ad2f8b8ba50ce8a744e37e05e9a40dce1ad8174d9e6fb186697dba3b380b1195c6">backgroundColourId</a> = 0x1001800, 
<a class="el" href="classAlertWindow.html#ad2f8b8ba50ce8a744e37e05e9a40dce1ae52947cad55bc25fee88e0e2a97d02c2">textColourId</a> = 0x1001810, 
<a class="el" href="classAlertWindow.html#ad2f8b8ba50ce8a744e37e05e9a40dce1a4ca5b0e9de7b0838cf1358a85b551d10">outlineColourId</a> = 0x1001820
 }<tr class="memdesc:ad2f8b8ba50ce8a744e37e05e9a40dce1"><td class="mdescLeft">&#160;</td><td class="mdescRight">A set of colour IDs to use to change the colour of various aspects of the alert box.  <a href="classAlertWindow.html#ad2f8b8ba50ce8a744e37e05e9a40dce1">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:ad2f8b8ba50ce8a744e37e05e9a40dce1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_types_classComponent"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classComponent')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="classComponent.html">Component</a></td></tr>
<tr class="memitem:a7fd775ea6b1190d5d694fdffa539dfac inherit pub_types_classComponent"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7fd775ea6b1190d5d694fdffa539dfac">FocusChangeType</a> { <a class="el" href="classComponent.html#a7fd775ea6b1190d5d694fdffa539dfaca350527c976c183a1543958e0698572df">focusChangedByMouseClick</a>, 
<a class="el" href="classComponent.html#a7fd775ea6b1190d5d694fdffa539dfaca1a14be78d7c4bdf7cdd9a08100bb6a43">focusChangedByTabKey</a>, 
<a class="el" href="classComponent.html#a7fd775ea6b1190d5d694fdffa539dfacad71927268411a4afe7f75bf6034add04">focusChangedDirectly</a>
 }<tr class="memdesc:a7fd775ea6b1190d5d694fdffa539dfac"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enumeration used by the focusChanged() and <a class="el" href="classComponent.html#a36456ea9d5a14172d6e96527ec1f59c8" title="Called to indicate that this component has just lost the keyboard focus. ">focusLost()</a> methods.  <a href="classComponent.html#a7fd775ea6b1190d5d694fdffa539dfac">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:a7fd775ea6b1190d5d694fdffa539dfac inherit pub_types_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a881fc5e753335f28fad5144eca5c1a3b"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a881fc5e753335f28fad5144eca5c1a3b">AlertWindow</a> (const <a class="el" href="classString.html">String</a> &amp;title, const <a class="el" href="classString.html">String</a> &amp;message, <a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a> iconType, <a class="el" href="classComponent.html">Component</a> *associatedComponent=nullptr)</td></tr>
<tr class="memdesc:a881fc5e753335f28fad5144eca5c1a3b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates an <a class="el" href="classAlertWindow.html" title="A window that displays a message and has buttons for the user to react to it. ">AlertWindow</a>.  <a href="#a881fc5e753335f28fad5144eca5c1a3b">More...</a><br /></td></tr>
<tr class="separator:a881fc5e753335f28fad5144eca5c1a3b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c76e1a1ce702a161064eebb134f1adc"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a3c76e1a1ce702a161064eebb134f1adc">~AlertWindow</a> ()</td></tr>
<tr class="memdesc:a3c76e1a1ce702a161064eebb134f1adc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroys the <a class="el" href="classAlertWindow.html" title="A window that displays a message and has buttons for the user to react to it. ">AlertWindow</a>.  <a href="#a3c76e1a1ce702a161064eebb134f1adc">More...</a><br /></td></tr>
<tr class="separator:a3c76e1a1ce702a161064eebb134f1adc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a55f336d14f2e388a01c958334bd382fd"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a55f336d14f2e388a01c958334bd382fd">getAlertType</a> () const noexcept</td></tr>
<tr class="memdesc:a55f336d14f2e388a01c958334bd382fd"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the type of alert icon that was specified when the window was created.  <a href="#a55f336d14f2e388a01c958334bd382fd">More...</a><br /></td></tr>
<tr class="separator:a55f336d14f2e388a01c958334bd382fd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a726f6cb55274959235efa16a0d18f794"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a726f6cb55274959235efa16a0d18f794">setMessage</a> (const <a class="el" href="classString.html">String</a> &amp;message)</td></tr>
<tr class="memdesc:a726f6cb55274959235efa16a0d18f794"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the dialog box's message.  <a href="#a726f6cb55274959235efa16a0d18f794">More...</a><br /></td></tr>
<tr class="separator:a726f6cb55274959235efa16a0d18f794"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a783bbf81186dc21addde7e0fdb6f8001"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a783bbf81186dc21addde7e0fdb6f8001">addButton</a> (const <a class="el" href="classString.html">String</a> &amp;name, int returnValue, const <a class="el" href="classKeyPress.html">KeyPress</a> &amp;shortcutKey1=<a class="el" href="classKeyPress.html">KeyPress</a>(), const <a class="el" href="classKeyPress.html">KeyPress</a> &amp;shortcutKey2=<a class="el" href="classKeyPress.html">KeyPress</a>())</td></tr>
<tr class="memdesc:a783bbf81186dc21addde7e0fdb6f8001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a button to the window.  <a href="#a783bbf81186dc21addde7e0fdb6f8001">More...</a><br /></td></tr>
<tr class="separator:a783bbf81186dc21addde7e0fdb6f8001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa0c83bb153040ea916d5bb6ac0b67256"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#aa0c83bb153040ea916d5bb6ac0b67256">getNumButtons</a> () const</td></tr>
<tr class="memdesc:aa0c83bb153040ea916d5bb6ac0b67256"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of buttons that the window currently has.  <a href="#aa0c83bb153040ea916d5bb6ac0b67256">More...</a><br /></td></tr>
<tr class="separator:aa0c83bb153040ea916d5bb6ac0b67256"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abc59507f5e2ad04933736a8643ba7ef7"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#abc59507f5e2ad04933736a8643ba7ef7">triggerButtonClick</a> (const <a class="el" href="classString.html">String</a> &amp;buttonName)</td></tr>
<tr class="memdesc:abc59507f5e2ad04933736a8643ba7ef7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Invokes a click of one of the buttons.  <a href="#abc59507f5e2ad04933736a8643ba7ef7">More...</a><br /></td></tr>
<tr class="separator:abc59507f5e2ad04933736a8643ba7ef7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3b03c4f645e3f847a3226ac36ac1678b"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a3b03c4f645e3f847a3226ac36ac1678b">setEscapeKeyCancels</a> (bool shouldEscapeKeyCancel)</td></tr>
<tr class="memdesc:a3b03c4f645e3f847a3226ac36ac1678b"><td class="mdescLeft">&#160;</td><td class="mdescRight">If set to true and the window contains no buttons, then pressing the escape key will make the alert cancel its modal state.  <a href="#a3b03c4f645e3f847a3226ac36ac1678b">More...</a><br /></td></tr>
<tr class="separator:a3b03c4f645e3f847a3226ac36ac1678b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad3de30e292b03b2204c6faaeea55b9a9"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#ad3de30e292b03b2204c6faaeea55b9a9">addTextEditor</a> (const <a class="el" href="classString.html">String</a> &amp;name, const <a class="el" href="classString.html">String</a> &amp;initialContents, const <a class="el" href="classString.html">String</a> &amp;onScreenLabel=<a class="el" href="classString.html">String</a>(), bool isPasswordBox=false)</td></tr>
<tr class="memdesc:ad3de30e292b03b2204c6faaeea55b9a9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a textbox to the window for entering strings.  <a href="#ad3de30e292b03b2204c6faaeea55b9a9">More...</a><br /></td></tr>
<tr class="separator:ad3de30e292b03b2204c6faaeea55b9a9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1700fd4defcdb75bfe748f4bc587a707"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classString.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a1700fd4defcdb75bfe748f4bc587a707">getTextEditorContents</a> (const <a class="el" href="classString.html">String</a> &amp;nameOfTextEditor) const</td></tr>
<tr class="memdesc:a1700fd4defcdb75bfe748f4bc587a707"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the contents of a named textbox.  <a href="#a1700fd4defcdb75bfe748f4bc587a707">More...</a><br /></td></tr>
<tr class="separator:a1700fd4defcdb75bfe748f4bc587a707"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8fb386b1ea27e8791a1557ba3f7282ba"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classTextEditor.html">TextEditor</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a8fb386b1ea27e8791a1557ba3f7282ba">getTextEditor</a> (const <a class="el" href="classString.html">String</a> &amp;nameOfTextEditor) const</td></tr>
<tr class="memdesc:a8fb386b1ea27e8791a1557ba3f7282ba"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to a textbox that was added with <a class="el" href="classAlertWindow.html#ad3de30e292b03b2204c6faaeea55b9a9" title="Adds a textbox to the window for entering strings. ">addTextEditor()</a>.  <a href="#a8fb386b1ea27e8791a1557ba3f7282ba">More...</a><br /></td></tr>
<tr class="separator:a8fb386b1ea27e8791a1557ba3f7282ba"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0e7c7b4fe85d7ed4cdf34167d513ed44"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a0e7c7b4fe85d7ed4cdf34167d513ed44">addComboBox</a> (const <a class="el" href="classString.html">String</a> &amp;name, const <a class="el" href="classStringArray.html">StringArray</a> &amp;items, const <a class="el" href="classString.html">String</a> &amp;onScreenLabel=<a class="el" href="classString.html">String</a>())</td></tr>
<tr class="memdesc:a0e7c7b4fe85d7ed4cdf34167d513ed44"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a drop-down list of choices to the box.  <a href="#a0e7c7b4fe85d7ed4cdf34167d513ed44">More...</a><br /></td></tr>
<tr class="separator:a0e7c7b4fe85d7ed4cdf34167d513ed44"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a79bf3cd42182334c1ebf7923f1e3581e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComboBox.html">ComboBox</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a79bf3cd42182334c1ebf7923f1e3581e">getComboBoxComponent</a> (const <a class="el" href="classString.html">String</a> &amp;nameOfList) const</td></tr>
<tr class="memdesc:a79bf3cd42182334c1ebf7923f1e3581e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a drop-down list that was added to the <a class="el" href="classAlertWindow.html" title="A window that displays a message and has buttons for the user to react to it. ">AlertWindow</a>.  <a href="#a79bf3cd42182334c1ebf7923f1e3581e">More...</a><br /></td></tr>
<tr class="separator:a79bf3cd42182334c1ebf7923f1e3581e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a06c68ddf379fcd3247182d0fee87a7f4"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a06c68ddf379fcd3247182d0fee87a7f4">addTextBlock</a> (const <a class="el" href="classString.html">String</a> &amp;text)</td></tr>
<tr class="memdesc:a06c68ddf379fcd3247182d0fee87a7f4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a block of text.  <a href="#a06c68ddf379fcd3247182d0fee87a7f4">More...</a><br /></td></tr>
<tr class="separator:a06c68ddf379fcd3247182d0fee87a7f4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b7ccfa6a4b4d3e871d20b4690c35b34"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a9b7ccfa6a4b4d3e871d20b4690c35b34">addProgressBarComponent</a> (double &amp;progressValue)</td></tr>
<tr class="memdesc:a9b7ccfa6a4b4d3e871d20b4690c35b34"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a progress-bar to the window.  <a href="#a9b7ccfa6a4b4d3e871d20b4690c35b34">More...</a><br /></td></tr>
<tr class="separator:a9b7ccfa6a4b4d3e871d20b4690c35b34"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a18e5456aa067a106f8ecbb03dc01f032"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a18e5456aa067a106f8ecbb03dc01f032">addCustomComponent</a> (<a class="el" href="classComponent.html">Component</a> *component)</td></tr>
<tr class="memdesc:a18e5456aa067a106f8ecbb03dc01f032"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a user-defined component to the dialog box.  <a href="#a18e5456aa067a106f8ecbb03dc01f032">More...</a><br /></td></tr>
<tr class="separator:a18e5456aa067a106f8ecbb03dc01f032"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd8f31c5b95af022cfa72a49eee1917d"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#acd8f31c5b95af022cfa72a49eee1917d">getNumCustomComponents</a> () const</td></tr>
<tr class="memdesc:acd8f31c5b95af022cfa72a49eee1917d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of custom components in the dialog box.  <a href="#acd8f31c5b95af022cfa72a49eee1917d">More...</a><br /></td></tr>
<tr class="separator:acd8f31c5b95af022cfa72a49eee1917d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6455cb278be455fc11edb9dbd3834717"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponent.html">Component</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a6455cb278be455fc11edb9dbd3834717">getCustomComponent</a> (int index) const</td></tr>
<tr class="memdesc:a6455cb278be455fc11edb9dbd3834717"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns one of the custom components in the dialog box.  <a href="#a6455cb278be455fc11edb9dbd3834717">More...</a><br /></td></tr>
<tr class="separator:a6455cb278be455fc11edb9dbd3834717"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ea24f9c13a13253c0c73b4d35fbdb82"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponent.html">Component</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a9ea24f9c13a13253c0c73b4d35fbdb82">removeCustomComponent</a> (int index)</td></tr>
<tr class="memdesc:a9ea24f9c13a13253c0c73b4d35fbdb82"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes one of the custom components in the dialog box.  <a href="#a9ea24f9c13a13253c0c73b4d35fbdb82">More...</a><br /></td></tr>
<tr class="separator:a9ea24f9c13a13253c0c73b4d35fbdb82"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae891b105265fac686c0fcdfcaa1af1c3"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#ae891b105265fac686c0fcdfcaa1af1c3">containsAnyExtraComponents</a> () const</td></tr>
<tr class="memdesc:ae891b105265fac686c0fcdfcaa1af1c3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if the window contains any components other than just buttons.  <a href="#ae891b105265fac686c0fcdfcaa1af1c3">More...</a><br /></td></tr>
<tr class="separator:ae891b105265fac686c0fcdfcaa1af1c3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classTopLevelWindow"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classTopLevelWindow')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classTopLevelWindow.html">TopLevelWindow</a></td></tr>
<tr class="memitem:a7d52a41e30bff8d342327abc4f476112 inherit pub_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a7d52a41e30bff8d342327abc4f476112">TopLevelWindow</a> (const <a class="el" href="classString.html">String</a> &amp;name, bool <a class="el" href="classTopLevelWindow.html#a016b200ff582129d0aa079cb0a9bfe05">addToDesktop</a>)</td></tr>
<tr class="memdesc:a7d52a41e30bff8d342327abc4f476112 inherit pub_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a <a class="el" href="classTopLevelWindow.html" title="A base class for top-level windows. ">TopLevelWindow</a>.  <a href="classTopLevelWindow.html#a7d52a41e30bff8d342327abc4f476112">More...</a><br /></td></tr>
<tr class="separator:a7d52a41e30bff8d342327abc4f476112 inherit pub_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a20277d9867a8e2fa56405a24b595e547 inherit pub_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a20277d9867a8e2fa56405a24b595e547">~TopLevelWindow</a> ()</td></tr>
<tr class="memdesc:a20277d9867a8e2fa56405a24b595e547 inherit pub_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="classTopLevelWindow.html#a20277d9867a8e2fa56405a24b595e547">More...</a><br /></td></tr>
<tr class="separator:a20277d9867a8e2fa56405a24b595e547 inherit pub_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a462b6b5a8b21a32645ee54b7a9676121 inherit pub_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a462b6b5a8b21a32645ee54b7a9676121">isActiveWindow</a> () const noexcept</td></tr>
<tr class="memdesc:a462b6b5a8b21a32645ee54b7a9676121 inherit pub_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">True if this is currently the <a class="el" href="classTopLevelWindow.html" title="A base class for top-level windows. ">TopLevelWindow</a> that is actively being used.  <a href="classTopLevelWindow.html#a462b6b5a8b21a32645ee54b7a9676121">More...</a><br /></td></tr>
<tr class="separator:a462b6b5a8b21a32645ee54b7a9676121 inherit pub_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a24c4beccd6e394c68a2def2e38a3213a inherit pub_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a24c4beccd6e394c68a2def2e38a3213a">centreAroundComponent</a> (<a class="el" href="classComponent.html">Component</a> *componentToCentreAround, int width, int height)</td></tr>
<tr class="memdesc:a24c4beccd6e394c68a2def2e38a3213a inherit pub_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">This will set the bounds of the window so that it's centred in front of another window.  <a href="classTopLevelWindow.html#a24c4beccd6e394c68a2def2e38a3213a">More...</a><br /></td></tr>
<tr class="separator:a24c4beccd6e394c68a2def2e38a3213a inherit pub_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aed7017ec50e075cca022b5c11ce5fdff inherit pub_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#aed7017ec50e075cca022b5c11ce5fdff">setDropShadowEnabled</a> (bool useShadow)</td></tr>
<tr class="memdesc:aed7017ec50e075cca022b5c11ce5fdff inherit pub_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">Turns the drop-shadow on and off.  <a href="classTopLevelWindow.html#aed7017ec50e075cca022b5c11ce5fdff">More...</a><br /></td></tr>
<tr class="separator:aed7017ec50e075cca022b5c11ce5fdff inherit pub_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a910577a0e16f9e80cca0ac41f61e6299 inherit pub_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a910577a0e16f9e80cca0ac41f61e6299">isDropShadowEnabled</a> () const noexcept</td></tr>
<tr class="memdesc:a910577a0e16f9e80cca0ac41f61e6299 inherit pub_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">True if drop-shadowing is enabled.  <a href="classTopLevelWindow.html#a910577a0e16f9e80cca0ac41f61e6299">More...</a><br /></td></tr>
<tr class="separator:a910577a0e16f9e80cca0ac41f61e6299 inherit pub_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a749fbd5e688ed8c9af3d0d99b21e18c8 inherit pub_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a749fbd5e688ed8c9af3d0d99b21e18c8">setUsingNativeTitleBar</a> (bool useNativeTitleBar)</td></tr>
<tr class="memdesc:a749fbd5e688ed8c9af3d0d99b21e18c8 inherit pub_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether an OS-native title bar will be used, or a Juce one.  <a href="classTopLevelWindow.html#a749fbd5e688ed8c9af3d0d99b21e18c8">More...</a><br /></td></tr>
<tr class="separator:a749fbd5e688ed8c9af3d0d99b21e18c8 inherit pub_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a18da6a0cc04d665771cfaa3137d319c5 inherit pub_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a18da6a0cc04d665771cfaa3137d319c5">isUsingNativeTitleBar</a> () const noexcept</td></tr>
<tr class="memdesc:a18da6a0cc04d665771cfaa3137d319c5 inherit pub_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if the window is currently using an OS-native title bar.  <a href="classTopLevelWindow.html#a18da6a0cc04d665771cfaa3137d319c5">More...</a><br /></td></tr>
<tr class="separator:a18da6a0cc04d665771cfaa3137d319c5 inherit pub_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a016b200ff582129d0aa079cb0a9bfe05 inherit pub_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a016b200ff582129d0aa079cb0a9bfe05">addToDesktop</a> ()</td></tr>
<tr class="memdesc:a016b200ff582129d0aa079cb0a9bfe05 inherit pub_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds the window to the desktop using the default flags.  <a href="classTopLevelWindow.html#a016b200ff582129d0aa079cb0a9bfe05">More...</a><br /></td></tr>
<tr class="separator:a016b200ff582129d0aa079cb0a9bfe05 inherit pub_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adb20393a81bcbe731b274e4fcfd8a089 inherit pub_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#adb20393a81bcbe731b274e4fcfd8a089">addToDesktop</a> (int windowStyleFlags, void *nativeWindowToAttachTo=nullptr) override</td></tr>
<tr class="separator:adb20393a81bcbe731b274e4fcfd8a089 inherit pub_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classComponent"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classComponent')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classComponent.html">Component</a></td></tr>
<tr class="memitem:a5ee1827aaa22388d22da5200b70eeeee inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a5ee1827aaa22388d22da5200b70eeeee">Component</a> () noexcept</td></tr>
<tr class="memdesc:a5ee1827aaa22388d22da5200b70eeeee inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a component.  <a href="classComponent.html#a5ee1827aaa22388d22da5200b70eeeee">More...</a><br /></td></tr>
<tr class="separator:a5ee1827aaa22388d22da5200b70eeeee inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2e9aa4348314d981f05f67397ad2f872 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a2e9aa4348314d981f05f67397ad2f872">~Component</a> ()</td></tr>
<tr class="memdesc:a2e9aa4348314d981f05f67397ad2f872 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="classComponent.html#a2e9aa4348314d981f05f67397ad2f872">More...</a><br /></td></tr>
<tr class="separator:a2e9aa4348314d981f05f67397ad2f872 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e2e31d288ccd68aae89897d3068f594 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a8e2e31d288ccd68aae89897d3068f594">Component</a> (const <a class="el" href="classString.html">String</a> &amp;componentName) noexcept</td></tr>
<tr class="memdesc:a8e2e31d288ccd68aae89897d3068f594 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a component, setting its name at the same time.  <a href="classComponent.html#a8e2e31d288ccd68aae89897d3068f594">More...</a><br /></td></tr>
<tr class="separator:a8e2e31d288ccd68aae89897d3068f594 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9d410bec5641d596bb8dbcf95d8b46a5 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classString.html">String</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9d410bec5641d596bb8dbcf95d8b46a5">getName</a> () const noexcept</td></tr>
<tr class="memdesc:a9d410bec5641d596bb8dbcf95d8b46a5 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the name of this component.  <a href="classComponent.html#a9d410bec5641d596bb8dbcf95d8b46a5">More...</a><br /></td></tr>
<tr class="separator:a9d410bec5641d596bb8dbcf95d8b46a5 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a64d1ad9a0f8f0d1757e62ac738b36b35 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a64d1ad9a0f8f0d1757e62ac738b36b35">setName</a> (const <a class="el" href="classString.html">String</a> &amp;newName)</td></tr>
<tr class="memdesc:a64d1ad9a0f8f0d1757e62ac738b36b35 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the name of this component.  <a href="classComponent.html#a64d1ad9a0f8f0d1757e62ac738b36b35">More...</a><br /></td></tr>
<tr class="separator:a64d1ad9a0f8f0d1757e62ac738b36b35 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a93a0bfdc298b93992166b081b122665b inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classString.html">String</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a93a0bfdc298b93992166b081b122665b">getComponentID</a> () const noexcept</td></tr>
<tr class="memdesc:a93a0bfdc298b93992166b081b122665b inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the ID string that was set by <a class="el" href="classComponent.html#ac41c215031a087064add6d3a180abd1d" title="Sets the component&#39;s ID string. ">setComponentID()</a>.  <a href="classComponent.html#a93a0bfdc298b93992166b081b122665b">More...</a><br /></td></tr>
<tr class="separator:a93a0bfdc298b93992166b081b122665b inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac41c215031a087064add6d3a180abd1d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ac41c215031a087064add6d3a180abd1d">setComponentID</a> (const <a class="el" href="classString.html">String</a> &amp;newID)</td></tr>
<tr class="memdesc:ac41c215031a087064add6d3a180abd1d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the component's ID string.  <a href="classComponent.html#ac41c215031a087064add6d3a180abd1d">More...</a><br /></td></tr>
<tr class="separator:ac41c215031a087064add6d3a180abd1d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac8483af6fe4dc3254e7176df0d8e9f7a inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ac8483af6fe4dc3254e7176df0d8e9f7a">setVisible</a> (bool shouldBeVisible)</td></tr>
<tr class="memdesc:ac8483af6fe4dc3254e7176df0d8e9f7a inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Makes the component visible or invisible.  <a href="classComponent.html#ac8483af6fe4dc3254e7176df0d8e9f7a">More...</a><br /></td></tr>
<tr class="separator:ac8483af6fe4dc3254e7176df0d8e9f7a inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7ffb3de137ac4028e430a445c62a2d01 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7ffb3de137ac4028e430a445c62a2d01">isVisible</a> () const noexcept</td></tr>
<tr class="memdesc:a7ffb3de137ac4028e430a445c62a2d01 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tests whether the component is visible or not.  <a href="classComponent.html#a7ffb3de137ac4028e430a445c62a2d01">More...</a><br /></td></tr>
<tr class="separator:a7ffb3de137ac4028e430a445c62a2d01 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a67928458e13f5391eee62202ed7c344d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a67928458e13f5391eee62202ed7c344d">isShowing</a> () const</td></tr>
<tr class="memdesc:a67928458e13f5391eee62202ed7c344d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tests whether this component and all its parents are visible.  <a href="classComponent.html#a67928458e13f5391eee62202ed7c344d">More...</a><br /></td></tr>
<tr class="separator:a67928458e13f5391eee62202ed7c344d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3eb22f7e39f71fdad3e84a8700807a82 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a3eb22f7e39f71fdad3e84a8700807a82">removeFromDesktop</a> ()</td></tr>
<tr class="memdesc:a3eb22f7e39f71fdad3e84a8700807a82 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">If the component is currently showing on the desktop, this will hide it.  <a href="classComponent.html#a3eb22f7e39f71fdad3e84a8700807a82">More...</a><br /></td></tr>
<tr class="separator:a3eb22f7e39f71fdad3e84a8700807a82 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a854420c3141bb90e440af6c7bc1bd360 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a854420c3141bb90e440af6c7bc1bd360">isOnDesktop</a> () const noexcept</td></tr>
<tr class="memdesc:a854420c3141bb90e440af6c7bc1bd360 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if this component is currently showing on the desktop.  <a href="classComponent.html#a854420c3141bb90e440af6c7bc1bd360">More...</a><br /></td></tr>
<tr class="separator:a854420c3141bb90e440af6c7bc1bd360 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad2a5bad8135717abfe96c632abc09584 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponentPeer.html">ComponentPeer</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ad2a5bad8135717abfe96c632abc09584">getPeer</a> () const</td></tr>
<tr class="memdesc:ad2a5bad8135717abfe96c632abc09584 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the heavyweight window that contains this component.  <a href="classComponent.html#ad2a5bad8135717abfe96c632abc09584">More...</a><br /></td></tr>
<tr class="separator:ad2a5bad8135717abfe96c632abc09584 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aafbf3cf52e606a66da16ffc85acdd383 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#aafbf3cf52e606a66da16ffc85acdd383">minimisationStateChanged</a> (bool isNowMinimised)</td></tr>
<tr class="memdesc:aafbf3cf52e606a66da16ffc85acdd383 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called for a desktop component which has just been minimised or un-minimised.  <a href="classComponent.html#aafbf3cf52e606a66da16ffc85acdd383">More...</a><br /></td></tr>
<tr class="separator:aafbf3cf52e606a66da16ffc85acdd383 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a99337bfd7e510a397c4a179964abf99b inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a99337bfd7e510a397c4a179964abf99b">getDesktopScaleFactor</a> () const</td></tr>
<tr class="memdesc:a99337bfd7e510a397c4a179964abf99b inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the default scale factor to use for this component when it is placed on the desktop.  <a href="classComponent.html#a99337bfd7e510a397c4a179964abf99b">More...</a><br /></td></tr>
<tr class="separator:a99337bfd7e510a397c4a179964abf99b inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ace6d99879585ba31a4212431d01d00f5 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ace6d99879585ba31a4212431d01d00f5">toFront</a> (bool shouldAlsoGainFocus)</td></tr>
<tr class="memdesc:ace6d99879585ba31a4212431d01d00f5 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Brings the component to the front of its siblings.  <a href="classComponent.html#ace6d99879585ba31a4212431d01d00f5">More...</a><br /></td></tr>
<tr class="separator:ace6d99879585ba31a4212431d01d00f5 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae9cd68d901dd4426b27c6c40f4759d4c inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ae9cd68d901dd4426b27c6c40f4759d4c">toBack</a> ()</td></tr>
<tr class="memdesc:ae9cd68d901dd4426b27c6c40f4759d4c inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes this component's z-order to be at the back of all its siblings.  <a href="classComponent.html#ae9cd68d901dd4426b27c6c40f4759d4c">More...</a><br /></td></tr>
<tr class="separator:ae9cd68d901dd4426b27c6c40f4759d4c inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b0cca8b9a9fea673aefc84a42602bcd inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a1b0cca8b9a9fea673aefc84a42602bcd">toBehind</a> (<a class="el" href="classComponent.html">Component</a> *other)</td></tr>
<tr class="memdesc:a1b0cca8b9a9fea673aefc84a42602bcd inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes this component's z-order so that it's just behind another component.  <a href="classComponent.html#a1b0cca8b9a9fea673aefc84a42602bcd">More...</a><br /></td></tr>
<tr class="separator:a1b0cca8b9a9fea673aefc84a42602bcd inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ec074c0a1a25014c235a5ebafdbaaf7 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9ec074c0a1a25014c235a5ebafdbaaf7">setAlwaysOnTop</a> (bool shouldStayOnTop)</td></tr>
<tr class="memdesc:a9ec074c0a1a25014c235a5ebafdbaaf7 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether the component should always be kept at the front of its siblings.  <a href="classComponent.html#a9ec074c0a1a25014c235a5ebafdbaaf7">More...</a><br /></td></tr>
<tr class="separator:a9ec074c0a1a25014c235a5ebafdbaaf7 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad3c16a8cd68a73f9765da3e48db86801 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ad3c16a8cd68a73f9765da3e48db86801">isAlwaysOnTop</a> () const noexcept</td></tr>
<tr class="memdesc:ad3c16a8cd68a73f9765da3e48db86801 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if this component is set to always stay in front of its siblings.  <a href="classComponent.html#ad3c16a8cd68a73f9765da3e48db86801">More...</a><br /></td></tr>
<tr class="separator:ad3c16a8cd68a73f9765da3e48db86801 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a882733448ca364ba8f493c6301800572 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a882733448ca364ba8f493c6301800572">getX</a> () const noexcept</td></tr>
<tr class="memdesc:a882733448ca364ba8f493c6301800572 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the x coordinate of the component's left edge.  <a href="classComponent.html#a882733448ca364ba8f493c6301800572">More...</a><br /></td></tr>
<tr class="separator:a882733448ca364ba8f493c6301800572 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a62b2b824feafc399c8360876a43eb18d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a62b2b824feafc399c8360876a43eb18d">getY</a> () const noexcept</td></tr>
<tr class="memdesc:a62b2b824feafc399c8360876a43eb18d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the y coordinate of the top of this component.  <a href="classComponent.html#a62b2b824feafc399c8360876a43eb18d">More...</a><br /></td></tr>
<tr class="separator:a62b2b824feafc399c8360876a43eb18d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a146a947eb5d4b2e08f8e91b2e3f706c1 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a146a947eb5d4b2e08f8e91b2e3f706c1">getWidth</a> () const noexcept</td></tr>
<tr class="memdesc:a146a947eb5d4b2e08f8e91b2e3f706c1 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the component's width in pixels.  <a href="classComponent.html#a146a947eb5d4b2e08f8e91b2e3f706c1">More...</a><br /></td></tr>
<tr class="separator:a146a947eb5d4b2e08f8e91b2e3f706c1 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a42c61c2d914e55b2395f6a84cf8e8aa2 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a42c61c2d914e55b2395f6a84cf8e8aa2">getHeight</a> () const noexcept</td></tr>
<tr class="memdesc:a42c61c2d914e55b2395f6a84cf8e8aa2 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the component's height in pixels.  <a href="classComponent.html#a42c61c2d914e55b2395f6a84cf8e8aa2">More...</a><br /></td></tr>
<tr class="separator:a42c61c2d914e55b2395f6a84cf8e8aa2 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f0b1e0ff5dfe85d0c4f611a93f2b78c inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9f0b1e0ff5dfe85d0c4f611a93f2b78c">getRight</a> () const noexcept</td></tr>
<tr class="memdesc:a9f0b1e0ff5dfe85d0c4f611a93f2b78c inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the x coordinate of the component's right-hand edge.  <a href="classComponent.html#a9f0b1e0ff5dfe85d0c4f611a93f2b78c">More...</a><br /></td></tr>
<tr class="separator:a9f0b1e0ff5dfe85d0c4f611a93f2b78c inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa55ec8b0cdda88f6273e5949431288b inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPoint.html">Point</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#afa55ec8b0cdda88f6273e5949431288b">getPosition</a> () const noexcept</td></tr>
<tr class="memdesc:afa55ec8b0cdda88f6273e5949431288b inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the component's top-left position as a <a class="el" href="classPoint.html" title="A pair of (x, y) coordinates. ">Point</a>.  <a href="classComponent.html#afa55ec8b0cdda88f6273e5949431288b">More...</a><br /></td></tr>
<tr class="separator:afa55ec8b0cdda88f6273e5949431288b inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af8ace323af75859a134ae82ab589c9d7 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#af8ace323af75859a134ae82ab589c9d7">getBottom</a> () const noexcept</td></tr>
<tr class="memdesc:af8ace323af75859a134ae82ab589c9d7 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the y coordinate of the bottom edge of this component.  <a href="classComponent.html#af8ace323af75859a134ae82ab589c9d7">More...</a><br /></td></tr>
<tr class="separator:af8ace323af75859a134ae82ab589c9d7 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad01eb84d8a989eb238bbf69aaf09e7ee inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt; &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ad01eb84d8a989eb238bbf69aaf09e7ee">getBounds</a> () const noexcept</td></tr>
<tr class="memdesc:ad01eb84d8a989eb238bbf69aaf09e7ee inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns this component's bounding box.  <a href="classComponent.html#ad01eb84d8a989eb238bbf69aaf09e7ee">More...</a><br /></td></tr>
<tr class="separator:ad01eb84d8a989eb238bbf69aaf09e7ee inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aecc40b8a244527fcb142213151b6d00d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#aecc40b8a244527fcb142213151b6d00d">getLocalBounds</a> () const noexcept</td></tr>
<tr class="memdesc:aecc40b8a244527fcb142213151b6d00d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the component's bounds, relative to its own origin.  <a href="classComponent.html#aecc40b8a244527fcb142213151b6d00d">More...</a><br /></td></tr>
<tr class="separator:aecc40b8a244527fcb142213151b6d00d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7bec78144c5f28eb78ce1550b1c58614 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7bec78144c5f28eb78ce1550b1c58614">getBoundsInParent</a> () const noexcept</td></tr>
<tr class="memdesc:a7bec78144c5f28eb78ce1550b1c58614 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the area of this component's parent which this component covers.  <a href="classComponent.html#a7bec78144c5f28eb78ce1550b1c58614">More...</a><br /></td></tr>
<tr class="separator:a7bec78144c5f28eb78ce1550b1c58614 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0b93c9d1569fa2892fdff2d8957936da inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a0b93c9d1569fa2892fdff2d8957936da">getScreenX</a> () const</td></tr>
<tr class="memdesc:a0b93c9d1569fa2892fdff2d8957936da inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns this component's x coordinate relative the screen's top-left origin.  <a href="classComponent.html#a0b93c9d1569fa2892fdff2d8957936da">More...</a><br /></td></tr>
<tr class="separator:a0b93c9d1569fa2892fdff2d8957936da inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a343f666f49fa8a59aeba926f2fc6d629 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a343f666f49fa8a59aeba926f2fc6d629">getScreenY</a> () const</td></tr>
<tr class="memdesc:a343f666f49fa8a59aeba926f2fc6d629 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns this component's y coordinate relative the screen's top-left origin.  <a href="classComponent.html#a343f666f49fa8a59aeba926f2fc6d629">More...</a><br /></td></tr>
<tr class="separator:a343f666f49fa8a59aeba926f2fc6d629 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae4b5183a85549af430d7bf29afb65d79 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPoint.html">Point</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ae4b5183a85549af430d7bf29afb65d79">getScreenPosition</a> () const</td></tr>
<tr class="memdesc:ae4b5183a85549af430d7bf29afb65d79 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the position of this component's top-left corner relative to the screen's top-left.  <a href="classComponent.html#ae4b5183a85549af430d7bf29afb65d79">More...</a><br /></td></tr>
<tr class="separator:ae4b5183a85549af430d7bf29afb65d79 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a539c92d534e551bc40c721fca4b0cea8 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a539c92d534e551bc40c721fca4b0cea8">getScreenBounds</a> () const</td></tr>
<tr class="memdesc:a539c92d534e551bc40c721fca4b0cea8 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the bounds of this component, relative to the screen's top-left.  <a href="classComponent.html#a539c92d534e551bc40c721fca4b0cea8">More...</a><br /></td></tr>
<tr class="separator:a539c92d534e551bc40c721fca4b0cea8 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9eecd9625db887fd98684bae3543db24 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPoint.html">Point</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9eecd9625db887fd98684bae3543db24">getLocalPoint</a> (const <a class="el" href="classComponent.html">Component</a> *sourceComponent, <a class="el" href="classPoint.html">Point</a>&lt; int &gt; pointRelativeToSourceComponent) const</td></tr>
<tr class="memdesc:a9eecd9625db887fd98684bae3543db24 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts a point to be relative to this component's coordinate space.  <a href="classComponent.html#a9eecd9625db887fd98684bae3543db24">More...</a><br /></td></tr>
<tr class="separator:a9eecd9625db887fd98684bae3543db24 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2b5f61369cd4c1031cf21106262b281e inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPoint.html">Point</a>&lt; float &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a2b5f61369cd4c1031cf21106262b281e">getLocalPoint</a> (const <a class="el" href="classComponent.html">Component</a> *sourceComponent, <a class="el" href="classPoint.html">Point</a>&lt; float &gt; pointRelativeToSourceComponent) const</td></tr>
<tr class="memdesc:a2b5f61369cd4c1031cf21106262b281e inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts a point to be relative to this component's coordinate space.  <a href="classComponent.html#a2b5f61369cd4c1031cf21106262b281e">More...</a><br /></td></tr>
<tr class="separator:a2b5f61369cd4c1031cf21106262b281e inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7af658ae99b351bae690ac0ced09b755 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7af658ae99b351bae690ac0ced09b755">getLocalArea</a> (const <a class="el" href="classComponent.html">Component</a> *sourceComponent, const <a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt; &amp;areaRelativeToSourceComponent) const</td></tr>
<tr class="memdesc:a7af658ae99b351bae690ac0ced09b755 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts a rectangle to be relative to this component's coordinate space.  <a href="classComponent.html#a7af658ae99b351bae690ac0ced09b755">More...</a><br /></td></tr>
<tr class="separator:a7af658ae99b351bae690ac0ced09b755 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeae960c6a8784804fff96ab71d38afdc inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPoint.html">Point</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#aeae960c6a8784804fff96ab71d38afdc">localPointToGlobal</a> (<a class="el" href="classPoint.html">Point</a>&lt; int &gt; localPoint) const</td></tr>
<tr class="memdesc:aeae960c6a8784804fff96ab71d38afdc inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts a point relative to this component's top-left into a screen coordinate.  <a href="classComponent.html#aeae960c6a8784804fff96ab71d38afdc">More...</a><br /></td></tr>
<tr class="separator:aeae960c6a8784804fff96ab71d38afdc inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8cb6f69a1d420942a9a063238da12170 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPoint.html">Point</a>&lt; float &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a8cb6f69a1d420942a9a063238da12170">localPointToGlobal</a> (<a class="el" href="classPoint.html">Point</a>&lt; float &gt; localPoint) const</td></tr>
<tr class="memdesc:a8cb6f69a1d420942a9a063238da12170 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts a point relative to this component's top-left into a screen coordinate.  <a href="classComponent.html#a8cb6f69a1d420942a9a063238da12170">More...</a><br /></td></tr>
<tr class="separator:a8cb6f69a1d420942a9a063238da12170 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7af80e9ca754d1108bb4eb09c5bc2e7d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7af80e9ca754d1108bb4eb09c5bc2e7d">localAreaToGlobal</a> (const <a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt; &amp;localArea) const</td></tr>
<tr class="memdesc:a7af80e9ca754d1108bb4eb09c5bc2e7d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts a rectangle from this component's coordinate space to a screen coordinate.  <a href="classComponent.html#a7af80e9ca754d1108bb4eb09c5bc2e7d">More...</a><br /></td></tr>
<tr class="separator:a7af80e9ca754d1108bb4eb09c5bc2e7d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a46f3b243e2ff2d000285c8642be7ea0a inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a46f3b243e2ff2d000285c8642be7ea0a">setTopLeftPosition</a> (int x, int y)</td></tr>
<tr class="memdesc:a46f3b243e2ff2d000285c8642be7ea0a inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves the component to a new position.  <a href="classComponent.html#a46f3b243e2ff2d000285c8642be7ea0a">More...</a><br /></td></tr>
<tr class="separator:a46f3b243e2ff2d000285c8642be7ea0a inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5c86db4e969d69acc78ea3ee899cedff inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a5c86db4e969d69acc78ea3ee899cedff">setTopLeftPosition</a> (<a class="el" href="classPoint.html">Point</a>&lt; int &gt; newTopLeftPosition)</td></tr>
<tr class="memdesc:a5c86db4e969d69acc78ea3ee899cedff inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves the component to a new position.  <a href="classComponent.html#a5c86db4e969d69acc78ea3ee899cedff">More...</a><br /></td></tr>
<tr class="separator:a5c86db4e969d69acc78ea3ee899cedff inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a28d61a4aea9791ab0b4d3cc4bed17650 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a28d61a4aea9791ab0b4d3cc4bed17650">setTopRightPosition</a> (int x, int y)</td></tr>
<tr class="memdesc:a28d61a4aea9791ab0b4d3cc4bed17650 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves the component to a new position.  <a href="classComponent.html#a28d61a4aea9791ab0b4d3cc4bed17650">More...</a><br /></td></tr>
<tr class="separator:a28d61a4aea9791ab0b4d3cc4bed17650 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af7e0443344448fcbbefc2b3dd985e43f inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#af7e0443344448fcbbefc2b3dd985e43f">setSize</a> (int newWidth, int newHeight)</td></tr>
<tr class="memdesc:af7e0443344448fcbbefc2b3dd985e43f inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the size of the component.  <a href="classComponent.html#af7e0443344448fcbbefc2b3dd985e43f">More...</a><br /></td></tr>
<tr class="separator:af7e0443344448fcbbefc2b3dd985e43f inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a64cbeee83a441e20ed5e7acb600ae107 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a64cbeee83a441e20ed5e7acb600ae107">setBounds</a> (int x, int y, int width, int height)</td></tr>
<tr class="memdesc:a64cbeee83a441e20ed5e7acb600ae107 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the component's position and size.  <a href="classComponent.html#a64cbeee83a441e20ed5e7acb600ae107">More...</a><br /></td></tr>
<tr class="separator:a64cbeee83a441e20ed5e7acb600ae107 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaddf6f72515109d53cb671d5292bea3f inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#aaddf6f72515109d53cb671d5292bea3f">setBounds</a> (const <a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt; &amp;newBounds)</td></tr>
<tr class="memdesc:aaddf6f72515109d53cb671d5292bea3f inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the component's position and size.  <a href="classComponent.html#aaddf6f72515109d53cb671d5292bea3f">More...</a><br /></td></tr>
<tr class="separator:aaddf6f72515109d53cb671d5292bea3f inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afff8d34ac49e7303e60cd6cfcd68e8f6 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#afff8d34ac49e7303e60cd6cfcd68e8f6">setBounds</a> (const <a class="el" href="classRelativeRectangle.html">RelativeRectangle</a> &amp;newBounds)</td></tr>
<tr class="memdesc:afff8d34ac49e7303e60cd6cfcd68e8f6 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the component's position and size.  <a href="classComponent.html#afff8d34ac49e7303e60cd6cfcd68e8f6">More...</a><br /></td></tr>
<tr class="separator:afff8d34ac49e7303e60cd6cfcd68e8f6 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a821833808f451753df397802d9d6160a inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a821833808f451753df397802d9d6160a">setBounds</a> (const <a class="el" href="classString.html">String</a> &amp;newBoundsExpression)</td></tr>
<tr class="memdesc:a821833808f451753df397802d9d6160a inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the component's bounds with an expression.  <a href="classComponent.html#a821833808f451753df397802d9d6160a">More...</a><br /></td></tr>
<tr class="separator:a821833808f451753df397802d9d6160a inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8752a76d1d0b2b27af1da1169ed5c534 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a8752a76d1d0b2b27af1da1169ed5c534">setBoundsRelative</a> (float proportionalX, float proportionalY, float proportionalWidth, float proportionalHeight)</td></tr>
<tr class="memdesc:a8752a76d1d0b2b27af1da1169ed5c534 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the component's position and size in terms of fractions of its parent's size.  <a href="classComponent.html#a8752a76d1d0b2b27af1da1169ed5c534">More...</a><br /></td></tr>
<tr class="separator:a8752a76d1d0b2b27af1da1169ed5c534 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0bdbe4ff05b03ddde7d87be82d5b0d15 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a0bdbe4ff05b03ddde7d87be82d5b0d15">setBoundsInset</a> (const <a class="el" href="classBorderSize.html">BorderSize</a>&lt; int &gt; &amp;borders)</td></tr>
<tr class="memdesc:a0bdbe4ff05b03ddde7d87be82d5b0d15 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the component's position and size based on the amount of space to leave around it.  <a href="classComponent.html#a0bdbe4ff05b03ddde7d87be82d5b0d15">More...</a><br /></td></tr>
<tr class="separator:a0bdbe4ff05b03ddde7d87be82d5b0d15 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a104daed5d4a04cd0b50ecb8c11b1c856 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a104daed5d4a04cd0b50ecb8c11b1c856">setBoundsToFit</a> (int x, int y, int width, int height, <a class="el" href="classJustification.html">Justification</a> justification, bool onlyReduceInSize)</td></tr>
<tr class="memdesc:a104daed5d4a04cd0b50ecb8c11b1c856 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Positions the component within a given rectangle, keeping its proportions unchanged.  <a href="classComponent.html#a104daed5d4a04cd0b50ecb8c11b1c856">More...</a><br /></td></tr>
<tr class="separator:a104daed5d4a04cd0b50ecb8c11b1c856 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ada48e2fac4a8bd49ee8fe567309e41b0 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ada48e2fac4a8bd49ee8fe567309e41b0">setCentrePosition</a> (int x, int y)</td></tr>
<tr class="memdesc:ada48e2fac4a8bd49ee8fe567309e41b0 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the position of the component's centre.  <a href="classComponent.html#ada48e2fac4a8bd49ee8fe567309e41b0">More...</a><br /></td></tr>
<tr class="separator:ada48e2fac4a8bd49ee8fe567309e41b0 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad2d539dc4d5a43cf828e03ab46f0db58 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ad2d539dc4d5a43cf828e03ab46f0db58">setCentreRelative</a> (float x, float y)</td></tr>
<tr class="memdesc:ad2d539dc4d5a43cf828e03ab46f0db58 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the position of the component's centre.  <a href="classComponent.html#ad2d539dc4d5a43cf828e03ab46f0db58">More...</a><br /></td></tr>
<tr class="separator:ad2d539dc4d5a43cf828e03ab46f0db58 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abb58dc5a1f89822e4a5dcae2a538a8a7 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#abb58dc5a1f89822e4a5dcae2a538a8a7">centreWithSize</a> (int width, int height)</td></tr>
<tr class="memdesc:abb58dc5a1f89822e4a5dcae2a538a8a7 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the component's size and centres it within its parent.  <a href="classComponent.html#abb58dc5a1f89822e4a5dcae2a538a8a7">More...</a><br /></td></tr>
<tr class="separator:abb58dc5a1f89822e4a5dcae2a538a8a7 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a42d13229962acb1cdf4328c4a490ffef inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a42d13229962acb1cdf4328c4a490ffef">setTransform</a> (const <a class="el" href="classAffineTransform.html">AffineTransform</a> &amp;transform)</td></tr>
<tr class="memdesc:a42d13229962acb1cdf4328c4a490ffef inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a transform matrix to be applied to this component.  <a href="classComponent.html#a42d13229962acb1cdf4328c4a490ffef">More...</a><br /></td></tr>
<tr class="separator:a42d13229962acb1cdf4328c4a490ffef inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a87829606a709c0f75e9293a0934ab27e inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classAffineTransform.html">AffineTransform</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a87829606a709c0f75e9293a0934ab27e">getTransform</a> () const</td></tr>
<tr class="memdesc:a87829606a709c0f75e9293a0934ab27e inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the transform that is currently being applied to this component.  <a href="classComponent.html#a87829606a709c0f75e9293a0934ab27e">More...</a><br /></td></tr>
<tr class="separator:a87829606a709c0f75e9293a0934ab27e inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a50a4de1bca6c487a8fa899f1b721e1d5 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a50a4de1bca6c487a8fa899f1b721e1d5">isTransformed</a> () const noexcept</td></tr>
<tr class="memdesc:a50a4de1bca6c487a8fa899f1b721e1d5 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if a non-identity transform is being applied to this component.  <a href="classComponent.html#a50a4de1bca6c487a8fa899f1b721e1d5">More...</a><br /></td></tr>
<tr class="separator:a50a4de1bca6c487a8fa899f1b721e1d5 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab2def9de34b650c5384f6bc040daa6a5 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ab2def9de34b650c5384f6bc040daa6a5">proportionOfWidth</a> (float proportion) const noexcept</td></tr>
<tr class="memdesc:ab2def9de34b650c5384f6bc040daa6a5 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a proportion of the component's width.  <a href="classComponent.html#ab2def9de34b650c5384f6bc040daa6a5">More...</a><br /></td></tr>
<tr class="separator:ab2def9de34b650c5384f6bc040daa6a5 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5d5356b8ad166fa48273dd90980ab3aa inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a5d5356b8ad166fa48273dd90980ab3aa">proportionOfHeight</a> (float proportion) const noexcept</td></tr>
<tr class="memdesc:a5d5356b8ad166fa48273dd90980ab3aa inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a proportion of the component's height.  <a href="classComponent.html#a5d5356b8ad166fa48273dd90980ab3aa">More...</a><br /></td></tr>
<tr class="separator:a5d5356b8ad166fa48273dd90980ab3aa inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ac83033387393ae0f8b85d8fc8d6dcb inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9ac83033387393ae0f8b85d8fc8d6dcb">getParentWidth</a> () const noexcept</td></tr>
<tr class="memdesc:a9ac83033387393ae0f8b85d8fc8d6dcb inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the width of the component's parent.  <a href="classComponent.html#a9ac83033387393ae0f8b85d8fc8d6dcb">More...</a><br /></td></tr>
<tr class="separator:a9ac83033387393ae0f8b85d8fc8d6dcb inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a39186f5a14d80f75e279d40846221b16 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a39186f5a14d80f75e279d40846221b16">getParentHeight</a> () const noexcept</td></tr>
<tr class="memdesc:a39186f5a14d80f75e279d40846221b16 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the height of the component's parent.  <a href="classComponent.html#a39186f5a14d80f75e279d40846221b16">More...</a><br /></td></tr>
<tr class="separator:a39186f5a14d80f75e279d40846221b16 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab52cbbf7098141125e9defffbfa136b6 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ab52cbbf7098141125e9defffbfa136b6">getParentMonitorArea</a> () const</td></tr>
<tr class="memdesc:ab52cbbf7098141125e9defffbfa136b6 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the screen coordinates of the monitor that contains this component.  <a href="classComponent.html#ab52cbbf7098141125e9defffbfa136b6">More...</a><br /></td></tr>
<tr class="separator:ab52cbbf7098141125e9defffbfa136b6 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa33580cab86ac3b80c9c1f9d85ad81d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#afa33580cab86ac3b80c9c1f9d85ad81d">getNumChildComponents</a> () const noexcept</td></tr>
<tr class="memdesc:afa33580cab86ac3b80c9c1f9d85ad81d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of child components that this component contains.  <a href="classComponent.html#afa33580cab86ac3b80c9c1f9d85ad81d">More...</a><br /></td></tr>
<tr class="separator:afa33580cab86ac3b80c9c1f9d85ad81d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a86caea9a03be32d7a6b6dfbd09d09f inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponent.html">Component</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9a86caea9a03be32d7a6b6dfbd09d09f">getChildComponent</a> (int index) const noexcept</td></tr>
<tr class="memdesc:a9a86caea9a03be32d7a6b6dfbd09d09f inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns one of this component's child components, by it index.  <a href="classComponent.html#a9a86caea9a03be32d7a6b6dfbd09d09f">More...</a><br /></td></tr>
<tr class="separator:a9a86caea9a03be32d7a6b6dfbd09d09f inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00c1dcf8a0a926da17daef178ca63426 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a00c1dcf8a0a926da17daef178ca63426">getIndexOfChildComponent</a> (const <a class="el" href="classComponent.html">Component</a> *child) const noexcept</td></tr>
<tr class="memdesc:a00c1dcf8a0a926da17daef178ca63426 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the index of this component in the list of child components.  <a href="classComponent.html#a00c1dcf8a0a926da17daef178ca63426">More...</a><br /></td></tr>
<tr class="separator:a00c1dcf8a0a926da17daef178ca63426 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5607d97a62a8c9d8d1d28ce3b31dd764 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponent.html">Component</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a5607d97a62a8c9d8d1d28ce3b31dd764">findChildWithID</a> (<a class="el" href="classStringRef.html">StringRef</a> componentID) const noexcept</td></tr>
<tr class="memdesc:a5607d97a62a8c9d8d1d28ce3b31dd764 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Looks for a child component with the specified ID.  <a href="classComponent.html#a5607d97a62a8c9d8d1d28ce3b31dd764">More...</a><br /></td></tr>
<tr class="separator:a5607d97a62a8c9d8d1d28ce3b31dd764 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3340a63ebd9f3a9df41bc0e8fbe3bf0c inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a3340a63ebd9f3a9df41bc0e8fbe3bf0c">addChildComponent</a> (<a class="el" href="classComponent.html">Component</a> *child, int zOrder=-1)</td></tr>
<tr class="memdesc:a3340a63ebd9f3a9df41bc0e8fbe3bf0c inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a child component to this one.  <a href="classComponent.html#a3340a63ebd9f3a9df41bc0e8fbe3bf0c">More...</a><br /></td></tr>
<tr class="separator:a3340a63ebd9f3a9df41bc0e8fbe3bf0c inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad3cdf7ff7e9c595a25f3a4427e1a222e inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ad3cdf7ff7e9c595a25f3a4427e1a222e">addChildComponent</a> (<a class="el" href="classComponent.html">Component</a> &amp;child, int zOrder=-1)</td></tr>
<tr class="memdesc:ad3cdf7ff7e9c595a25f3a4427e1a222e inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a child component to this one.  <a href="classComponent.html#ad3cdf7ff7e9c595a25f3a4427e1a222e">More...</a><br /></td></tr>
<tr class="separator:ad3cdf7ff7e9c595a25f3a4427e1a222e inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a909c90277e8e95db68001a94e06b83bc inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a909c90277e8e95db68001a94e06b83bc">addAndMakeVisible</a> (<a class="el" href="classComponent.html">Component</a> *child, int zOrder=-1)</td></tr>
<tr class="memdesc:a909c90277e8e95db68001a94e06b83bc inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a child component to this one, and also makes the child visible if it isn't already.  <a href="classComponent.html#a909c90277e8e95db68001a94e06b83bc">More...</a><br /></td></tr>
<tr class="separator:a909c90277e8e95db68001a94e06b83bc inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a13417b80dfd035f5da81f1a473ef0f15 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a13417b80dfd035f5da81f1a473ef0f15">addAndMakeVisible</a> (<a class="el" href="classComponent.html">Component</a> &amp;child, int zOrder=-1)</td></tr>
<tr class="memdesc:a13417b80dfd035f5da81f1a473ef0f15 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a child component to this one, and also makes the child visible if it isn't already.  <a href="classComponent.html#a13417b80dfd035f5da81f1a473ef0f15">More...</a><br /></td></tr>
<tr class="separator:a13417b80dfd035f5da81f1a473ef0f15 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a29a541ea49fafdb29fb17ebc4cddd584 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a29a541ea49fafdb29fb17ebc4cddd584">addChildAndSetID</a> (<a class="el" href="classComponent.html">Component</a> *child, const <a class="el" href="classString.html">String</a> &amp;componentID)</td></tr>
<tr class="memdesc:a29a541ea49fafdb29fb17ebc4cddd584 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a child component to this one, makes it visible, and sets its component ID.  <a href="classComponent.html#a29a541ea49fafdb29fb17ebc4cddd584">More...</a><br /></td></tr>
<tr class="separator:a29a541ea49fafdb29fb17ebc4cddd584 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a221324c67c9fb048895b8730dbf1b642 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a221324c67c9fb048895b8730dbf1b642">removeChildComponent</a> (<a class="el" href="classComponent.html">Component</a> *childToRemove)</td></tr>
<tr class="memdesc:a221324c67c9fb048895b8730dbf1b642 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes one of this component's child-components.  <a href="classComponent.html#a221324c67c9fb048895b8730dbf1b642">More...</a><br /></td></tr>
<tr class="separator:a221324c67c9fb048895b8730dbf1b642 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f27c66bb660ca98e1713878db39bdfd inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponent.html">Component</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9f27c66bb660ca98e1713878db39bdfd">removeChildComponent</a> (int childIndexToRemove)</td></tr>
<tr class="memdesc:a9f27c66bb660ca98e1713878db39bdfd inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes one of this component's child-components by index.  <a href="classComponent.html#a9f27c66bb660ca98e1713878db39bdfd">More...</a><br /></td></tr>
<tr class="separator:a9f27c66bb660ca98e1713878db39bdfd inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a72ee4d44ce3b3954e8a00e5225201b6d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a72ee4d44ce3b3954e8a00e5225201b6d">removeAllChildren</a> ()</td></tr>
<tr class="memdesc:a72ee4d44ce3b3954e8a00e5225201b6d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes all this component's children.  <a href="classComponent.html#a72ee4d44ce3b3954e8a00e5225201b6d">More...</a><br /></td></tr>
<tr class="separator:a72ee4d44ce3b3954e8a00e5225201b6d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abc8f8338a400c20d5e941ea3a1f67f7b inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#abc8f8338a400c20d5e941ea3a1f67f7b">deleteAllChildren</a> ()</td></tr>
<tr class="memdesc:abc8f8338a400c20d5e941ea3a1f67f7b inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes and deletes all of this component's children.  <a href="classComponent.html#abc8f8338a400c20d5e941ea3a1f67f7b">More...</a><br /></td></tr>
<tr class="separator:abc8f8338a400c20d5e941ea3a1f67f7b inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac4d430194f6637607b1af8631d7166e7 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponent.html">Component</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ac4d430194f6637607b1af8631d7166e7">getParentComponent</a> () const noexcept</td></tr>
<tr class="memdesc:ac4d430194f6637607b1af8631d7166e7 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the component which this component is inside.  <a href="classComponent.html#ac4d430194f6637607b1af8631d7166e7">More...</a><br /></td></tr>
<tr class="separator:ac4d430194f6637607b1af8631d7166e7 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab96fafa69cc190b2ebc3a2daba3dbaeb inherit pub_methods_classComponent"><td class="memTemplParams" colspan="2">template&lt;class TargetClass &gt; </td></tr>
<tr class="memitem:ab96fafa69cc190b2ebc3a2daba3dbaeb inherit pub_methods_classComponent"><td class="memTemplItemLeft" align="right" valign="top">TargetClass *&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classComponent.html#ab96fafa69cc190b2ebc3a2daba3dbaeb">findParentComponentOfClass</a> () const</td></tr>
<tr class="memdesc:ab96fafa69cc190b2ebc3a2daba3dbaeb inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Searches the parent components for a component of a specified class.  <a href="classComponent.html#ab96fafa69cc190b2ebc3a2daba3dbaeb">More...</a><br /></td></tr>
<tr class="separator:ab96fafa69cc190b2ebc3a2daba3dbaeb inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a64415a8c5911f94475b5c624598adfa8 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponent.html">Component</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a64415a8c5911f94475b5c624598adfa8">getTopLevelComponent</a> () const noexcept</td></tr>
<tr class="memdesc:a64415a8c5911f94475b5c624598adfa8 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the highest-level component which contains this one or its parents.  <a href="classComponent.html#a64415a8c5911f94475b5c624598adfa8">More...</a><br /></td></tr>
<tr class="separator:a64415a8c5911f94475b5c624598adfa8 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2fc08a04c79abc21d65c70855b792ab9 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a2fc08a04c79abc21d65c70855b792ab9">isParentOf</a> (const <a class="el" href="classComponent.html">Component</a> *possibleChild) const noexcept</td></tr>
<tr class="memdesc:a2fc08a04c79abc21d65c70855b792ab9 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Checks whether a component is anywhere inside this component or its children.  <a href="classComponent.html#a2fc08a04c79abc21d65c70855b792ab9">More...</a><br /></td></tr>
<tr class="separator:a2fc08a04c79abc21d65c70855b792ab9 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2bbc6da3479a1c3f6e711f4caf9edafb inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a2bbc6da3479a1c3f6e711f4caf9edafb">childrenChanged</a> ()</td></tr>
<tr class="memdesc:a2bbc6da3479a1c3f6e711f4caf9edafb inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subclasses can use this callback to be told when children are added or removed, or when their z-order changes.  <a href="classComponent.html#a2bbc6da3479a1c3f6e711f4caf9edafb">More...</a><br /></td></tr>
<tr class="separator:a2bbc6da3479a1c3f6e711f4caf9edafb inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2da9631236e1cbf1b340454209a6c9e0 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a2da9631236e1cbf1b340454209a6c9e0">hitTest</a> (int x, int y)</td></tr>
<tr class="memdesc:a2da9631236e1cbf1b340454209a6c9e0 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tests whether a given point is inside the component.  <a href="classComponent.html#a2da9631236e1cbf1b340454209a6c9e0">More...</a><br /></td></tr>
<tr class="separator:a2da9631236e1cbf1b340454209a6c9e0 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac9fdcb595c1878201a641de2e1159aec inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ac9fdcb595c1878201a641de2e1159aec">setInterceptsMouseClicks</a> (bool allowClicksOnThisComponent, bool allowClicksOnChildComponents) noexcept</td></tr>
<tr class="memdesc:ac9fdcb595c1878201a641de2e1159aec inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the default return value for the <a class="el" href="classComponent.html#a2da9631236e1cbf1b340454209a6c9e0" title="Tests whether a given point is inside the component. ">hitTest()</a> method.  <a href="classComponent.html#ac9fdcb595c1878201a641de2e1159aec">More...</a><br /></td></tr>
<tr class="separator:ac9fdcb595c1878201a641de2e1159aec inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a219f9c96e896dfbbe3fb967a57297f14 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a219f9c96e896dfbbe3fb967a57297f14">getInterceptsMouseClicks</a> (bool &amp;allowsClicksOnThisComponent, bool &amp;allowsClicksOnChildComponents) const noexcept</td></tr>
<tr class="memdesc:a219f9c96e896dfbbe3fb967a57297f14 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the current state of the mouse-click interception flags.  <a href="classComponent.html#a219f9c96e896dfbbe3fb967a57297f14">More...</a><br /></td></tr>
<tr class="separator:a219f9c96e896dfbbe3fb967a57297f14 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b697f6caaa753756251b4eb5ece302b inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a6b697f6caaa753756251b4eb5ece302b">contains</a> (<a class="el" href="classPoint.html">Point</a>&lt; int &gt; localPoint)</td></tr>
<tr class="memdesc:a6b697f6caaa753756251b4eb5ece302b inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if a given point lies within this component or one of its children.  <a href="classComponent.html#a6b697f6caaa753756251b4eb5ece302b">More...</a><br /></td></tr>
<tr class="separator:a6b697f6caaa753756251b4eb5ece302b inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa8d8eb035156e46e6264f600097b1cc1 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#aa8d8eb035156e46e6264f600097b1cc1">reallyContains</a> (<a class="el" href="classPoint.html">Point</a>&lt; int &gt; localPoint, bool returnTrueIfWithinAChild)</td></tr>
<tr class="memdesc:aa8d8eb035156e46e6264f600097b1cc1 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if a given point lies in this component, taking any overlapping siblings into account.  <a href="classComponent.html#aa8d8eb035156e46e6264f600097b1cc1">More...</a><br /></td></tr>
<tr class="separator:aa8d8eb035156e46e6264f600097b1cc1 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a29245735a161cee86ee0df0ccde9512a inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponent.html">Component</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a29245735a161cee86ee0df0ccde9512a">getComponentAt</a> (int x, int y)</td></tr>
<tr class="memdesc:a29245735a161cee86ee0df0ccde9512a inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the component at a certain point within this one.  <a href="classComponent.html#a29245735a161cee86ee0df0ccde9512a">More...</a><br /></td></tr>
<tr class="separator:a29245735a161cee86ee0df0ccde9512a inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a54676dadea528187d52fa8c98d08231d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponent.html">Component</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a54676dadea528187d52fa8c98d08231d">getComponentAt</a> (<a class="el" href="classPoint.html">Point</a>&lt; int &gt; position)</td></tr>
<tr class="memdesc:a54676dadea528187d52fa8c98d08231d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the component at a certain point within this one.  <a href="classComponent.html#a54676dadea528187d52fa8c98d08231d">More...</a><br /></td></tr>
<tr class="separator:a54676dadea528187d52fa8c98d08231d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af3ab3eabec93dd60faf983370f3a1206 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#af3ab3eabec93dd60faf983370f3a1206">repaint</a> ()</td></tr>
<tr class="memdesc:af3ab3eabec93dd60faf983370f3a1206 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Marks the whole component as needing to be redrawn.  <a href="classComponent.html#af3ab3eabec93dd60faf983370f3a1206">More...</a><br /></td></tr>
<tr class="separator:af3ab3eabec93dd60faf983370f3a1206 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af2a079621367cdf3755d708b4dbbc820 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#af2a079621367cdf3755d708b4dbbc820">repaint</a> (int x, int y, int width, int height)</td></tr>
<tr class="memdesc:af2a079621367cdf3755d708b4dbbc820 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Marks a subsection of this component as needing to be redrawn.  <a href="classComponent.html#af2a079621367cdf3755d708b4dbbc820">More...</a><br /></td></tr>
<tr class="separator:af2a079621367cdf3755d708b4dbbc820 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a756adec76560d1ae66b1448814828531 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a756adec76560d1ae66b1448814828531">repaint</a> (const <a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt; &amp;area)</td></tr>
<tr class="memdesc:a756adec76560d1ae66b1448814828531 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Marks a subsection of this component as needing to be redrawn.  <a href="classComponent.html#a756adec76560d1ae66b1448814828531">More...</a><br /></td></tr>
<tr class="separator:a756adec76560d1ae66b1448814828531 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af19bbc2186e3297ddd55c328e46c014b inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#af19bbc2186e3297ddd55c328e46c014b">setBufferedToImage</a> (bool shouldBeBuffered)</td></tr>
<tr class="memdesc:af19bbc2186e3297ddd55c328e46c014b inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Makes the component use an internal buffer to optimise its redrawing.  <a href="classComponent.html#af19bbc2186e3297ddd55c328e46c014b">More...</a><br /></td></tr>
<tr class="separator:af19bbc2186e3297ddd55c328e46c014b inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a5c8fc0c5c69bda41a23c351e2d5164 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classImage.html">Image</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9a5c8fc0c5c69bda41a23c351e2d5164">createComponentSnapshot</a> (const <a class="el" href="classRectangle.html">Rectangle</a>&lt; int &gt; &amp;areaToGrab, bool clipImageToComponentBounds=true, float scaleFactor=1.0f)</td></tr>
<tr class="memdesc:a9a5c8fc0c5c69bda41a23c351e2d5164 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Generates a snapshot of part of this component.  <a href="classComponent.html#a9a5c8fc0c5c69bda41a23c351e2d5164">More...</a><br /></td></tr>
<tr class="separator:a9a5c8fc0c5c69bda41a23c351e2d5164 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2c960bd5ec5ac76d18e82b6883096714 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a2c960bd5ec5ac76d18e82b6883096714">paintEntireComponent</a> (<a class="el" href="classGraphics.html">Graphics</a> &amp;context, bool ignoreAlphaLevel)</td></tr>
<tr class="memdesc:a2c960bd5ec5ac76d18e82b6883096714 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Draws this component and all its subcomponents onto the specified graphics context.  <a href="classComponent.html#a2c960bd5ec5ac76d18e82b6883096714">More...</a><br /></td></tr>
<tr class="separator:a2c960bd5ec5ac76d18e82b6883096714 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afd2216ecd5029923097d6baabab400ec inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#afd2216ecd5029923097d6baabab400ec">setPaintingIsUnclipped</a> (bool shouldPaintWithoutClipping) noexcept</td></tr>
<tr class="memdesc:afd2216ecd5029923097d6baabab400ec inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">This allows you to indicate that this component doesn't require its graphics context to be clipped when it is being painted.  <a href="classComponent.html#afd2216ecd5029923097d6baabab400ec">More...</a><br /></td></tr>
<tr class="separator:afd2216ecd5029923097d6baabab400ec inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a06800d0a55016e738c55078d82ef49fd inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a06800d0a55016e738c55078d82ef49fd">setComponentEffect</a> (<a class="el" href="classImageEffectFilter.html">ImageEffectFilter</a> *newEffect)</td></tr>
<tr class="memdesc:a06800d0a55016e738c55078d82ef49fd inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds an effect filter to alter the component's appearance.  <a href="classComponent.html#a06800d0a55016e738c55078d82ef49fd">More...</a><br /></td></tr>
<tr class="separator:a06800d0a55016e738c55078d82ef49fd inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af92051347bc323176011c16f8a53bf4c inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classImageEffectFilter.html">ImageEffectFilter</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#af92051347bc323176011c16f8a53bf4c">getComponentEffect</a> () const noexcept</td></tr>
<tr class="memdesc:af92051347bc323176011c16f8a53bf4c inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current component effect.  <a href="classComponent.html#af92051347bc323176011c16f8a53bf4c">More...</a><br /></td></tr>
<tr class="separator:af92051347bc323176011c16f8a53bf4c inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf9083590923e021b195985a562d458e inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classLookAndFeel.html">LookAndFeel</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#adf9083590923e021b195985a562d458e">getLookAndFeel</a> () const noexcept</td></tr>
<tr class="memdesc:adf9083590923e021b195985a562d458e inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Finds the appropriate look-and-feel to use for this component.  <a href="classComponent.html#adf9083590923e021b195985a562d458e">More...</a><br /></td></tr>
<tr class="separator:adf9083590923e021b195985a562d458e inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f2c10cd9840844a5be16e5deeef6f50 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a6f2c10cd9840844a5be16e5deeef6f50">setLookAndFeel</a> (<a class="el" href="classLookAndFeel.html">LookAndFeel</a> *newLookAndFeel)</td></tr>
<tr class="memdesc:a6f2c10cd9840844a5be16e5deeef6f50 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the look and feel to use for this component.  <a href="classComponent.html#a6f2c10cd9840844a5be16e5deeef6f50">More...</a><br /></td></tr>
<tr class="separator:a6f2c10cd9840844a5be16e5deeef6f50 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac314d2449213d7942eca083addfcd097 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ac314d2449213d7942eca083addfcd097">sendLookAndFeelChange</a> ()</td></tr>
<tr class="memdesc:ac314d2449213d7942eca083addfcd097 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Calls the <a class="el" href="classComponent.html#a74af5830b815f6f985768a5673d01cf2" title="Called to let the component react to a change in the look-and-feel setting. ">lookAndFeelChanged()</a> method in this component and all its children.  <a href="classComponent.html#ac314d2449213d7942eca083addfcd097">More...</a><br /></td></tr>
<tr class="separator:ac314d2449213d7942eca083addfcd097 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7320d543cba40183c894474ab78798ea inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7320d543cba40183c894474ab78798ea">setOpaque</a> (bool shouldBeOpaque)</td></tr>
<tr class="memdesc:a7320d543cba40183c894474ab78798ea inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Indicates whether any parts of the component might be transparent.  <a href="classComponent.html#a7320d543cba40183c894474ab78798ea">More...</a><br /></td></tr>
<tr class="separator:a7320d543cba40183c894474ab78798ea inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6ef077ace37bcd13d033305e8875d4e7 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a6ef077ace37bcd13d033305e8875d4e7">isOpaque</a> () const noexcept</td></tr>
<tr class="memdesc:a6ef077ace37bcd13d033305e8875d4e7 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if no parts of this component are transparent.  <a href="classComponent.html#a6ef077ace37bcd13d033305e8875d4e7">More...</a><br /></td></tr>
<tr class="separator:a6ef077ace37bcd13d033305e8875d4e7 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2e31d54832bfa8b916fef77c4d9eb649 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a2e31d54832bfa8b916fef77c4d9eb649">setBroughtToFrontOnMouseClick</a> (bool shouldBeBroughtToFront) noexcept</td></tr>
<tr class="memdesc:a2e31d54832bfa8b916fef77c4d9eb649 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Indicates whether the component should be brought to the front when clicked.  <a href="classComponent.html#a2e31d54832bfa8b916fef77c4d9eb649">More...</a><br /></td></tr>
<tr class="separator:a2e31d54832bfa8b916fef77c4d9eb649 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa8f9bdf4bef08d89b75b173421fae668 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#aa8f9bdf4bef08d89b75b173421fae668">isBroughtToFrontOnMouseClick</a> () const noexcept</td></tr>
<tr class="memdesc:aa8f9bdf4bef08d89b75b173421fae668 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Indicates whether the component should be brought to the front when clicked-on.  <a href="classComponent.html#aa8f9bdf4bef08d89b75b173421fae668">More...</a><br /></td></tr>
<tr class="separator:aa8f9bdf4bef08d89b75b173421fae668 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a1f21a76b971d54870cb5c32c041055 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a6a1f21a76b971d54870cb5c32c041055">setWantsKeyboardFocus</a> (bool wantsFocus) noexcept</td></tr>
<tr class="memdesc:a6a1f21a76b971d54870cb5c32c041055 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a flag to indicate whether this component needs keyboard focus or not.  <a href="classComponent.html#a6a1f21a76b971d54870cb5c32c041055">More...</a><br /></td></tr>
<tr class="separator:a6a1f21a76b971d54870cb5c32c041055 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af3618b8c0d0583705db9918f23784833 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#af3618b8c0d0583705db9918f23784833">getWantsKeyboardFocus</a> () const noexcept</td></tr>
<tr class="memdesc:af3618b8c0d0583705db9918f23784833 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if the component is interested in getting keyboard focus.  <a href="classComponent.html#af3618b8c0d0583705db9918f23784833">More...</a><br /></td></tr>
<tr class="separator:af3618b8c0d0583705db9918f23784833 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5e27530ab343f52b524c1c3f1a1d98eb inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a5e27530ab343f52b524c1c3f1a1d98eb">setMouseClickGrabsKeyboardFocus</a> (bool shouldGrabFocus)</td></tr>
<tr class="memdesc:a5e27530ab343f52b524c1c3f1a1d98eb inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Chooses whether a click on this component automatically grabs the focus.  <a href="classComponent.html#a5e27530ab343f52b524c1c3f1a1d98eb">More...</a><br /></td></tr>
<tr class="separator:a5e27530ab343f52b524c1c3f1a1d98eb inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9efe458e504e68d52637f969900158b2 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9efe458e504e68d52637f969900158b2">getMouseClickGrabsKeyboardFocus</a> () const noexcept</td></tr>
<tr class="memdesc:a9efe458e504e68d52637f969900158b2 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the last value set with <a class="el" href="classComponent.html#a5e27530ab343f52b524c1c3f1a1d98eb" title="Chooses whether a click on this component automatically grabs the focus. ">setMouseClickGrabsKeyboardFocus()</a>.  <a href="classComponent.html#a9efe458e504e68d52637f969900158b2">More...</a><br /></td></tr>
<tr class="separator:a9efe458e504e68d52637f969900158b2 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a91886a0e276d27719fa8866a95306571 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a91886a0e276d27719fa8866a95306571">grabKeyboardFocus</a> ()</td></tr>
<tr class="memdesc:a91886a0e276d27719fa8866a95306571 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tries to give keyboard focus to this component.  <a href="classComponent.html#a91886a0e276d27719fa8866a95306571">More...</a><br /></td></tr>
<tr class="separator:a91886a0e276d27719fa8866a95306571 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abf76cf5c3550c5c83bc585f86429b397 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#abf76cf5c3550c5c83bc585f86429b397">hasKeyboardFocus</a> (bool trueIfChildIsFocused) const</td></tr>
<tr class="memdesc:abf76cf5c3550c5c83bc585f86429b397 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if this component currently has the keyboard focus.  <a href="classComponent.html#abf76cf5c3550c5c83bc585f86429b397">More...</a><br /></td></tr>
<tr class="separator:abf76cf5c3550c5c83bc585f86429b397 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2be625dadff73d1ec003cb06749ba6d6 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a2be625dadff73d1ec003cb06749ba6d6">moveKeyboardFocusToSibling</a> (bool moveToNext)</td></tr>
<tr class="memdesc:a2be625dadff73d1ec003cb06749ba6d6 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tries to move the keyboard focus to one of this component's siblings.  <a href="classComponent.html#a2be625dadff73d1ec003cb06749ba6d6">More...</a><br /></td></tr>
<tr class="separator:a2be625dadff73d1ec003cb06749ba6d6 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7826c4e247eb6a6901211741a3e1dca3 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classKeyboardFocusTraverser.html">KeyboardFocusTraverser</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7826c4e247eb6a6901211741a3e1dca3">createFocusTraverser</a> ()</td></tr>
<tr class="memdesc:a7826c4e247eb6a6901211741a3e1dca3 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a <a class="el" href="classKeyboardFocusTraverser.html" title="Controls the order in which focus moves between components. ">KeyboardFocusTraverser</a> object to use to determine the logic by which focus should be passed from this component.  <a href="classComponent.html#a7826c4e247eb6a6901211741a3e1dca3">More...</a><br /></td></tr>
<tr class="separator:a7826c4e247eb6a6901211741a3e1dca3 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1ae06fca382eed7ee555d194d947c350 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a1ae06fca382eed7ee555d194d947c350">getExplicitFocusOrder</a> () const</td></tr>
<tr class="memdesc:a1ae06fca382eed7ee555d194d947c350 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the focus order of this component, if one has been specified.  <a href="classComponent.html#a1ae06fca382eed7ee555d194d947c350">More...</a><br /></td></tr>
<tr class="separator:a1ae06fca382eed7ee555d194d947c350 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acea5b1758143ff5815fd13ae57f2172e inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#acea5b1758143ff5815fd13ae57f2172e">setExplicitFocusOrder</a> (int newFocusOrderIndex)</td></tr>
<tr class="memdesc:acea5b1758143ff5815fd13ae57f2172e inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the index used in determining the order in which focusable components should be traversed.  <a href="classComponent.html#acea5b1758143ff5815fd13ae57f2172e">More...</a><br /></td></tr>
<tr class="separator:acea5b1758143ff5815fd13ae57f2172e inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a35b455090a35a07ab832582a635425a3 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a35b455090a35a07ab832582a635425a3">setFocusContainer</a> (bool shouldBeFocusContainer) noexcept</td></tr>
<tr class="memdesc:a35b455090a35a07ab832582a635425a3 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Indicates whether this component is a parent for components that can have their focus traversed.  <a href="classComponent.html#a35b455090a35a07ab832582a635425a3">More...</a><br /></td></tr>
<tr class="separator:a35b455090a35a07ab832582a635425a3 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a31a41d721888e3ac78659e4815294ed1 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a31a41d721888e3ac78659e4815294ed1">isFocusContainer</a> () const noexcept</td></tr>
<tr class="memdesc:a31a41d721888e3ac78659e4815294ed1 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if this component has been marked as a focus container.  <a href="classComponent.html#a31a41d721888e3ac78659e4815294ed1">More...</a><br /></td></tr>
<tr class="separator:a31a41d721888e3ac78659e4815294ed1 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0e12726e34fdd284f036922597914bb3 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a0e12726e34fdd284f036922597914bb3">isEnabled</a> () const noexcept</td></tr>
<tr class="memdesc:a0e12726e34fdd284f036922597914bb3 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if the component (and all its parents) are enabled.  <a href="classComponent.html#a0e12726e34fdd284f036922597914bb3">More...</a><br /></td></tr>
<tr class="separator:a0e12726e34fdd284f036922597914bb3 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f956f690d72256838146c7dfe99bc0e inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a6f956f690d72256838146c7dfe99bc0e">setEnabled</a> (bool shouldBeEnabled)</td></tr>
<tr class="memdesc:a6f956f690d72256838146c7dfe99bc0e inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enables or disables this component.  <a href="classComponent.html#a6f956f690d72256838146c7dfe99bc0e">More...</a><br /></td></tr>
<tr class="separator:a6f956f690d72256838146c7dfe99bc0e inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e5e39d3d7e2b8be4e78454ec4a5f584 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a8e5e39d3d7e2b8be4e78454ec4a5f584">enablementChanged</a> ()</td></tr>
<tr class="memdesc:a8e5e39d3d7e2b8be4e78454ec4a5f584 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Callback to indicate that this component has been enabled or disabled.  <a href="classComponent.html#a8e5e39d3d7e2b8be4e78454ec4a5f584">More...</a><br /></td></tr>
<tr class="separator:a8e5e39d3d7e2b8be4e78454ec4a5f584 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1fa7fae9983fed145b733d809dc7b2e5 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a1fa7fae9983fed145b733d809dc7b2e5">getAlpha</a> () const noexcept</td></tr>
<tr class="memdesc:a1fa7fae9983fed145b733d809dc7b2e5 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the component's current transparancy level.  <a href="classComponent.html#a1fa7fae9983fed145b733d809dc7b2e5">More...</a><br /></td></tr>
<tr class="separator:a1fa7fae9983fed145b733d809dc7b2e5 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b9329a87c71ed01319071e0fedac128 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a1b9329a87c71ed01319071e0fedac128">setAlpha</a> (float newAlpha)</td></tr>
<tr class="memdesc:a1b9329a87c71ed01319071e0fedac128 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the transparency of this component.  <a href="classComponent.html#a1b9329a87c71ed01319071e0fedac128">More...</a><br /></td></tr>
<tr class="separator:a1b9329a87c71ed01319071e0fedac128 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af83c72f9c98476811522ba8cad855003 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#af83c72f9c98476811522ba8cad855003">alphaChanged</a> ()</td></tr>
<tr class="memdesc:af83c72f9c98476811522ba8cad855003 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when <a class="el" href="classComponent.html#a1b9329a87c71ed01319071e0fedac128" title="Changes the transparency of this component. ">setAlpha()</a> is used to change the alpha value of this component.  <a href="classComponent.html#af83c72f9c98476811522ba8cad855003">More...</a><br /></td></tr>
<tr class="separator:af83c72f9c98476811522ba8cad855003 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8c631fc3fb881ca94a9b7edcf58636f inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ab8c631fc3fb881ca94a9b7edcf58636f">setMouseCursor</a> (const <a class="el" href="classMouseCursor.html">MouseCursor</a> &amp;cursorType)</td></tr>
<tr class="memdesc:ab8c631fc3fb881ca94a9b7edcf58636f inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the mouse cursor shape to use when the mouse is over this component.  <a href="classComponent.html#ab8c631fc3fb881ca94a9b7edcf58636f">More...</a><br /></td></tr>
<tr class="separator:ab8c631fc3fb881ca94a9b7edcf58636f inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a712ed320619d48542de733c086f4fd3e inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classMouseCursor.html">MouseCursor</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a712ed320619d48542de733c086f4fd3e">getMouseCursor</a> ()</td></tr>
<tr class="memdesc:a712ed320619d48542de733c086f4fd3e inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the mouse cursor shape to use when the mouse is over this component.  <a href="classComponent.html#a712ed320619d48542de733c086f4fd3e">More...</a><br /></td></tr>
<tr class="separator:a712ed320619d48542de733c086f4fd3e inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2d879d2f1eb69e2e828904efc42f0575 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a2d879d2f1eb69e2e828904efc42f0575">updateMouseCursor</a> () const</td></tr>
<tr class="memdesc:a2d879d2f1eb69e2e828904efc42f0575 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Forces the current mouse cursor to be updated.  <a href="classComponent.html#a2d879d2f1eb69e2e828904efc42f0575">More...</a><br /></td></tr>
<tr class="separator:a2d879d2f1eb69e2e828904efc42f0575 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa15dc77c06b5a0a4192090b4a323f79c inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#aa15dc77c06b5a0a4192090b4a323f79c">paintOverChildren</a> (<a class="el" href="classGraphics.html">Graphics</a> &amp;g)</td></tr>
<tr class="memdesc:aa15dc77c06b5a0a4192090b4a323f79c inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Components can override this method to draw over the top of their children.  <a href="classComponent.html#aa15dc77c06b5a0a4192090b4a323f79c">More...</a><br /></td></tr>
<tr class="separator:aa15dc77c06b5a0a4192090b4a323f79c inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad2cfbadc42d5c2124f67ae181de1234e inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ad2cfbadc42d5c2124f67ae181de1234e">mouseMove</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;event) override</td></tr>
<tr class="memdesc:ad2cfbadc42d5c2124f67ae181de1234e inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when the mouse moves inside a component.  <a href="classComponent.html#ad2cfbadc42d5c2124f67ae181de1234e">More...</a><br /></td></tr>
<tr class="separator:ad2cfbadc42d5c2124f67ae181de1234e inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a525b16845ffacc71c7c37a72f68feccc inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a525b16845ffacc71c7c37a72f68feccc">mouseEnter</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;event) override</td></tr>
<tr class="memdesc:a525b16845ffacc71c7c37a72f68feccc inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when the mouse first enters a component.  <a href="classComponent.html#a525b16845ffacc71c7c37a72f68feccc">More...</a><br /></td></tr>
<tr class="separator:a525b16845ffacc71c7c37a72f68feccc inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a16a0c88e82e5b71ed8cc7c7b3de37cb2 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a16a0c88e82e5b71ed8cc7c7b3de37cb2">mouseExit</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;event) override</td></tr>
<tr class="memdesc:a16a0c88e82e5b71ed8cc7c7b3de37cb2 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when the mouse moves out of a component.  <a href="classComponent.html#a16a0c88e82e5b71ed8cc7c7b3de37cb2">More...</a><br /></td></tr>
<tr class="separator:a16a0c88e82e5b71ed8cc7c7b3de37cb2 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ef1d5efbd2b9c581c59ad75fb574fd4 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9ef1d5efbd2b9c581c59ad75fb574fd4">mouseUp</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;event) override</td></tr>
<tr class="memdesc:a9ef1d5efbd2b9c581c59ad75fb574fd4 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when a mouse button is released.  <a href="classComponent.html#a9ef1d5efbd2b9c581c59ad75fb574fd4">More...</a><br /></td></tr>
<tr class="separator:a9ef1d5efbd2b9c581c59ad75fb574fd4 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a90a5f41210643598f6fdd5013800e5d0 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a90a5f41210643598f6fdd5013800e5d0">mouseDoubleClick</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;event) override</td></tr>
<tr class="memdesc:a90a5f41210643598f6fdd5013800e5d0 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when a mouse button has been double-clicked on a component.  <a href="classComponent.html#a90a5f41210643598f6fdd5013800e5d0">More...</a><br /></td></tr>
<tr class="separator:a90a5f41210643598f6fdd5013800e5d0 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1bb56b659ce36b629397da5837595ef8 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a1bb56b659ce36b629397da5837595ef8">mouseWheelMove</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;event, const <a class="el" href="structMouseWheelDetails.html">MouseWheelDetails</a> &amp;wheel) override</td></tr>
<tr class="memdesc:a1bb56b659ce36b629397da5837595ef8 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when the mouse-wheel is moved.  <a href="classComponent.html#a1bb56b659ce36b629397da5837595ef8">More...</a><br /></td></tr>
<tr class="separator:a1bb56b659ce36b629397da5837595ef8 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abde4246acd5f0289785daf92b8c87d81 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#abde4246acd5f0289785daf92b8c87d81">mouseMagnify</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;event, float scaleFactor)</td></tr>
<tr class="memdesc:abde4246acd5f0289785daf92b8c87d81 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when a pinch-to-zoom mouse-gesture is used.  <a href="classComponent.html#abde4246acd5f0289785daf92b8c87d81">More...</a><br /></td></tr>
<tr class="separator:abde4246acd5f0289785daf92b8c87d81 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7845e402a21d2b86d8c4ec48bc7c93b1 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7845e402a21d2b86d8c4ec48bc7c93b1">setRepaintsOnMouseActivity</a> (bool shouldRepaint) noexcept</td></tr>
<tr class="memdesc:a7845e402a21d2b86d8c4ec48bc7c93b1 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Causes automatic repaints when the mouse enters or exits this component.  <a href="classComponent.html#a7845e402a21d2b86d8c4ec48bc7c93b1">More...</a><br /></td></tr>
<tr class="separator:a7845e402a21d2b86d8c4ec48bc7c93b1 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae45db6bb7d7826eb7e936c21fec105ce inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ae45db6bb7d7826eb7e936c21fec105ce">addMouseListener</a> (<a class="el" href="classMouseListener.html">MouseListener</a> *newListener, bool wantsEventsForAllNestedChildComponents)</td></tr>
<tr class="memdesc:ae45db6bb7d7826eb7e936c21fec105ce inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Registers a listener to be told when mouse events occur in this component.  <a href="classComponent.html#ae45db6bb7d7826eb7e936c21fec105ce">More...</a><br /></td></tr>
<tr class="separator:ae45db6bb7d7826eb7e936c21fec105ce inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a423c89ca5c8622712202c30cb7a5a69c inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a423c89ca5c8622712202c30cb7a5a69c">removeMouseListener</a> (<a class="el" href="classMouseListener.html">MouseListener</a> *listenerToRemove)</td></tr>
<tr class="memdesc:a423c89ca5c8622712202c30cb7a5a69c inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deregisters a mouse listener.  <a href="classComponent.html#a423c89ca5c8622712202c30cb7a5a69c">More...</a><br /></td></tr>
<tr class="separator:a423c89ca5c8622712202c30cb7a5a69c inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4ec1b609c39c54434f746cefffa6ce3f inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a4ec1b609c39c54434f746cefffa6ce3f">addKeyListener</a> (<a class="el" href="classKeyListener.html">KeyListener</a> *newListener)</td></tr>
<tr class="memdesc:a4ec1b609c39c54434f746cefffa6ce3f inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a listener that wants to hear about keypresses that this component receives.  <a href="classComponent.html#a4ec1b609c39c54434f746cefffa6ce3f">More...</a><br /></td></tr>
<tr class="separator:a4ec1b609c39c54434f746cefffa6ce3f inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5287496e233768c197ad8d74484a85fc inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a5287496e233768c197ad8d74484a85fc">removeKeyListener</a> (<a class="el" href="classKeyListener.html">KeyListener</a> *listenerToRemove)</td></tr>
<tr class="memdesc:a5287496e233768c197ad8d74484a85fc inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a previously-registered key listener.  <a href="classComponent.html#a5287496e233768c197ad8d74484a85fc">More...</a><br /></td></tr>
<tr class="separator:a5287496e233768c197ad8d74484a85fc inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeff4d2fdbae4d5974e43b62ab3c304f9 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#aeff4d2fdbae4d5974e43b62ab3c304f9">keyStateChanged</a> (bool isKeyDown)</td></tr>
<tr class="memdesc:aeff4d2fdbae4d5974e43b62ab3c304f9 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when a key is pressed or released.  <a href="classComponent.html#aeff4d2fdbae4d5974e43b62ab3c304f9">More...</a><br /></td></tr>
<tr class="separator:aeff4d2fdbae4d5974e43b62ab3c304f9 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4145c1c28dd2ae42b19c9c3e0a6aba7b inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a4145c1c28dd2ae42b19c9c3e0a6aba7b">modifierKeysChanged</a> (const <a class="el" href="classModifierKeys.html">ModifierKeys</a> &amp;modifiers)</td></tr>
<tr class="memdesc:a4145c1c28dd2ae42b19c9c3e0a6aba7b inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when a modifier key is pressed or released.  <a href="classComponent.html#a4145c1c28dd2ae42b19c9c3e0a6aba7b">More...</a><br /></td></tr>
<tr class="separator:a4145c1c28dd2ae42b19c9c3e0a6aba7b inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a408d41f1499a2ebdd4bbc8d4004c7727 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a408d41f1499a2ebdd4bbc8d4004c7727">focusGained</a> (<a class="el" href="classComponent.html#a7fd775ea6b1190d5d694fdffa539dfac">FocusChangeType</a> cause)</td></tr>
<tr class="memdesc:a408d41f1499a2ebdd4bbc8d4004c7727 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called to indicate that this component has just acquired the keyboard focus.  <a href="classComponent.html#a408d41f1499a2ebdd4bbc8d4004c7727">More...</a><br /></td></tr>
<tr class="separator:a408d41f1499a2ebdd4bbc8d4004c7727 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a36456ea9d5a14172d6e96527ec1f59c8 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a36456ea9d5a14172d6e96527ec1f59c8">focusLost</a> (<a class="el" href="classComponent.html#a7fd775ea6b1190d5d694fdffa539dfac">FocusChangeType</a> cause)</td></tr>
<tr class="memdesc:a36456ea9d5a14172d6e96527ec1f59c8 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called to indicate that this component has just lost the keyboard focus.  <a href="classComponent.html#a36456ea9d5a14172d6e96527ec1f59c8">More...</a><br /></td></tr>
<tr class="separator:a36456ea9d5a14172d6e96527ec1f59c8 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf24c1e586677b3b2acddb71b4ca1ed9 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#adf24c1e586677b3b2acddb71b4ca1ed9">isMouseOver</a> (bool includeChildren=false) const</td></tr>
<tr class="memdesc:adf24c1e586677b3b2acddb71b4ca1ed9 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if the mouse is currently over this component.  <a href="classComponent.html#adf24c1e586677b3b2acddb71b4ca1ed9">More...</a><br /></td></tr>
<tr class="separator:adf24c1e586677b3b2acddb71b4ca1ed9 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ad6b60ebd6e2c5bdd20efbb3c2133a7 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a0ad6b60ebd6e2c5bdd20efbb3c2133a7">isMouseButtonDown</a> () const</td></tr>
<tr class="memdesc:a0ad6b60ebd6e2c5bdd20efbb3c2133a7 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if the mouse button is currently held down in this component.  <a href="classComponent.html#a0ad6b60ebd6e2c5bdd20efbb3c2133a7">More...</a><br /></td></tr>
<tr class="separator:a0ad6b60ebd6e2c5bdd20efbb3c2133a7 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a67566f891a0b688bfb6ee7b9cdc0b1c9 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a67566f891a0b688bfb6ee7b9cdc0b1c9">isMouseOverOrDragging</a> (bool includeChildren=false) const</td></tr>
<tr class="memdesc:a67566f891a0b688bfb6ee7b9cdc0b1c9 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">True if the mouse is over this component, or if it's being dragged in this component.  <a href="classComponent.html#a67566f891a0b688bfb6ee7b9cdc0b1c9">More...</a><br /></td></tr>
<tr class="separator:a67566f891a0b688bfb6ee7b9cdc0b1c9 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af8799a5d3868c0405829114874e9947a inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classPoint.html">Point</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#af8799a5d3868c0405829114874e9947a">getMouseXYRelative</a> () const</td></tr>
<tr class="memdesc:af8799a5d3868c0405829114874e9947a inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the mouse's current position, relative to this component.  <a href="classComponent.html#af8799a5d3868c0405829114874e9947a">More...</a><br /></td></tr>
<tr class="separator:af8799a5d3868c0405829114874e9947a inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad896183a68d71daf5816982d1fefd960 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ad896183a68d71daf5816982d1fefd960">resized</a> ()</td></tr>
<tr class="memdesc:ad896183a68d71daf5816982d1fefd960 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when this component's size has been changed.  <a href="classComponent.html#ad896183a68d71daf5816982d1fefd960">More...</a><br /></td></tr>
<tr class="separator:ad896183a68d71daf5816982d1fefd960 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b94f2816dc8bc20473620e0db0e8246 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a1b94f2816dc8bc20473620e0db0e8246">moved</a> ()</td></tr>
<tr class="memdesc:a1b94f2816dc8bc20473620e0db0e8246 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when this component's position has been changed.  <a href="classComponent.html#a1b94f2816dc8bc20473620e0db0e8246">More...</a><br /></td></tr>
<tr class="separator:a1b94f2816dc8bc20473620e0db0e8246 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a081b2618e5169d656167614bee91defe inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a081b2618e5169d656167614bee91defe">childBoundsChanged</a> (<a class="el" href="classComponent.html">Component</a> *child)</td></tr>
<tr class="memdesc:a081b2618e5169d656167614bee91defe inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when one of this component's children is moved or resized.  <a href="classComponent.html#a081b2618e5169d656167614bee91defe">More...</a><br /></td></tr>
<tr class="separator:a081b2618e5169d656167614bee91defe inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aefdce73a764c48363e82b22c32b0812e inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#aefdce73a764c48363e82b22c32b0812e">parentSizeChanged</a> ()</td></tr>
<tr class="memdesc:aefdce73a764c48363e82b22c32b0812e inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when this component's immediate parent has been resized.  <a href="classComponent.html#aefdce73a764c48363e82b22c32b0812e">More...</a><br /></td></tr>
<tr class="separator:aefdce73a764c48363e82b22c32b0812e inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4bf084bcf5b0e4398ee3a0007f803865 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a4bf084bcf5b0e4398ee3a0007f803865">broughtToFront</a> ()</td></tr>
<tr class="memdesc:a4bf084bcf5b0e4398ee3a0007f803865 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when this component has been moved to the front of its siblings.  <a href="classComponent.html#a4bf084bcf5b0e4398ee3a0007f803865">More...</a><br /></td></tr>
<tr class="separator:a4bf084bcf5b0e4398ee3a0007f803865 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a51cb09159299964cef7b975185cf400d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a51cb09159299964cef7b975185cf400d">addComponentListener</a> (<a class="el" href="classComponentListener.html">ComponentListener</a> *newListener)</td></tr>
<tr class="memdesc:a51cb09159299964cef7b975185cf400d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a listener to be told about changes to the component hierarchy or position.  <a href="classComponent.html#a51cb09159299964cef7b975185cf400d">More...</a><br /></td></tr>
<tr class="separator:a51cb09159299964cef7b975185cf400d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7a74ad0359e05321223f1d09bcfddddd inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7a74ad0359e05321223f1d09bcfddddd">removeComponentListener</a> (<a class="el" href="classComponentListener.html">ComponentListener</a> *listenerToRemove)</td></tr>
<tr class="memdesc:a7a74ad0359e05321223f1d09bcfddddd inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a component listener.  <a href="classComponent.html#a7a74ad0359e05321223f1d09bcfddddd">More...</a><br /></td></tr>
<tr class="separator:a7a74ad0359e05321223f1d09bcfddddd inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a005628ba100dc23d179bff98bd419eb5 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a005628ba100dc23d179bff98bd419eb5">postCommandMessage</a> (int commandId)</td></tr>
<tr class="memdesc:a005628ba100dc23d179bff98bd419eb5 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Dispatches a numbered message to this component.  <a href="classComponent.html#a005628ba100dc23d179bff98bd419eb5">More...</a><br /></td></tr>
<tr class="separator:a005628ba100dc23d179bff98bd419eb5 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ba6fa31d1397c7e90050b2cd4f2089b inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9ba6fa31d1397c7e90050b2cd4f2089b">handleCommandMessage</a> (int commandId)</td></tr>
<tr class="memdesc:a9ba6fa31d1397c7e90050b2cd4f2089b inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called to handle a command that was sent by <a class="el" href="classComponent.html#a005628ba100dc23d179bff98bd419eb5" title="Dispatches a numbered message to this component. ">postCommandMessage()</a>.  <a href="classComponent.html#a9ba6fa31d1397c7e90050b2cd4f2089b">More...</a><br /></td></tr>
<tr class="separator:a9ba6fa31d1397c7e90050b2cd4f2089b inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a363364f6ae4f1a20abd60493c6854829 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a363364f6ae4f1a20abd60493c6854829">runModalLoop</a> ()</td></tr>
<tr class="memdesc:a363364f6ae4f1a20abd60493c6854829 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Runs a component modally, waiting until the loop terminates.  <a href="classComponent.html#a363364f6ae4f1a20abd60493c6854829">More...</a><br /></td></tr>
<tr class="separator:a363364f6ae4f1a20abd60493c6854829 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0e7be8c456a663615eb389ecd10b2c04 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a0e7be8c456a663615eb389ecd10b2c04">enterModalState</a> (bool takeKeyboardFocus=true, <a class="el" href="classModalComponentManager_1_1Callback.html">ModalComponentManager::Callback</a> *callback=nullptr, bool deleteWhenDismissed=false)</td></tr>
<tr class="memdesc:a0e7be8c456a663615eb389ecd10b2c04 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Puts the component into a modal state.  <a href="classComponent.html#a0e7be8c456a663615eb389ecd10b2c04">More...</a><br /></td></tr>
<tr class="separator:a0e7be8c456a663615eb389ecd10b2c04 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a686e2440370ff4a97c7a7851907be650 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a686e2440370ff4a97c7a7851907be650">exitModalState</a> (int returnValue)</td></tr>
<tr class="memdesc:a686e2440370ff4a97c7a7851907be650 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Ends a component's modal state.  <a href="classComponent.html#a686e2440370ff4a97c7a7851907be650">More...</a><br /></td></tr>
<tr class="separator:a686e2440370ff4a97c7a7851907be650 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a489ebde1970d6a2571bae5152b396267 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a489ebde1970d6a2571bae5152b396267">isCurrentlyModal</a> (bool onlyConsiderForemostModalComponent=true) const noexcept</td></tr>
<tr class="memdesc:a489ebde1970d6a2571bae5152b396267 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if this component is the modal one.  <a href="classComponent.html#a489ebde1970d6a2571bae5152b396267">More...</a><br /></td></tr>
<tr class="separator:a489ebde1970d6a2571bae5152b396267 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a70fc33489ec892d615452dfdbd4687db inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a70fc33489ec892d615452dfdbd4687db">isCurrentlyBlockedByAnotherModalComponent</a> () const</td></tr>
<tr class="memdesc:a70fc33489ec892d615452dfdbd4687db inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Checks whether there's a modal component somewhere that's stopping this one from receiving messages.  <a href="classComponent.html#a70fc33489ec892d615452dfdbd4687db">More...</a><br /></td></tr>
<tr class="separator:a70fc33489ec892d615452dfdbd4687db inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abec1d60cfacf16eab602dff06932fbca inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#abec1d60cfacf16eab602dff06932fbca">canModalEventBeSentToComponent</a> (const <a class="el" href="classComponent.html">Component</a> *targetComponent)</td></tr>
<tr class="memdesc:abec1d60cfacf16eab602dff06932fbca inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">When a component is modal, this callback allows it to choose which other components can still receive events.  <a href="classComponent.html#abec1d60cfacf16eab602dff06932fbca">More...</a><br /></td></tr>
<tr class="separator:abec1d60cfacf16eab602dff06932fbca inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a260e46fb72d4b3210bc46a658a21fbb5 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a260e46fb72d4b3210bc46a658a21fbb5">inputAttemptWhenModal</a> ()</td></tr>
<tr class="memdesc:a260e46fb72d4b3210bc46a658a21fbb5 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when the user tries to click on a component that is blocked by another modal component.  <a href="classComponent.html#a260e46fb72d4b3210bc46a658a21fbb5">More...</a><br /></td></tr>
<tr class="separator:a260e46fb72d4b3210bc46a658a21fbb5 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a23985453622396b6037eb5ec38dbd398 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classNamedValueSet.html">NamedValueSet</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a23985453622396b6037eb5ec38dbd398">getProperties</a> () noexcept</td></tr>
<tr class="memdesc:a23985453622396b6037eb5ec38dbd398 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the set of properties that belong to this component.  <a href="classComponent.html#a23985453622396b6037eb5ec38dbd398">More...</a><br /></td></tr>
<tr class="separator:a23985453622396b6037eb5ec38dbd398 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf32701df78ef2dd10793b11a979a696 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classNamedValueSet.html">NamedValueSet</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#adf32701df78ef2dd10793b11a979a696">getProperties</a> () const noexcept</td></tr>
<tr class="memdesc:adf32701df78ef2dd10793b11a979a696 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the set of properties that belong to this component.  <a href="classComponent.html#adf32701df78ef2dd10793b11a979a696">More...</a><br /></td></tr>
<tr class="separator:adf32701df78ef2dd10793b11a979a696 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a202390cda00048f08ee80add476a0f3c inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classColour.html">Colour</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a202390cda00048f08ee80add476a0f3c">findColour</a> (int colourId, bool inheritFromParent=false) const</td></tr>
<tr class="memdesc:a202390cda00048f08ee80add476a0f3c inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Looks for a colour that has been registered with the given colour ID number.  <a href="classComponent.html#a202390cda00048f08ee80add476a0f3c">More...</a><br /></td></tr>
<tr class="separator:a202390cda00048f08ee80add476a0f3c inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a875e6cc05407cea2d6a04dced62e13cd inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a875e6cc05407cea2d6a04dced62e13cd">setColour</a> (int colourId, <a class="el" href="classColour.html">Colour</a> newColour)</td></tr>
<tr class="memdesc:a875e6cc05407cea2d6a04dced62e13cd inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Registers a colour to be used for a particular purpose.  <a href="classComponent.html#a875e6cc05407cea2d6a04dced62e13cd">More...</a><br /></td></tr>
<tr class="separator:a875e6cc05407cea2d6a04dced62e13cd inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7c3179a6a241477c590ea23ff99e867d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7c3179a6a241477c590ea23ff99e867d">removeColour</a> (int colourId)</td></tr>
<tr class="memdesc:a7c3179a6a241477c590ea23ff99e867d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">If a colour has been set with <a class="el" href="classComponent.html#a875e6cc05407cea2d6a04dced62e13cd" title="Registers a colour to be used for a particular purpose. ">setColour()</a>, this will remove it.  <a href="classComponent.html#a7c3179a6a241477c590ea23ff99e867d">More...</a><br /></td></tr>
<tr class="separator:a7c3179a6a241477c590ea23ff99e867d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8040eedee0207c9352880e86e603a4d3 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a8040eedee0207c9352880e86e603a4d3">isColourSpecified</a> (int colourId) const</td></tr>
<tr class="memdesc:a8040eedee0207c9352880e86e603a4d3 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if the specified colour ID has been explicitly set for this component using the <a class="el" href="classComponent.html#a875e6cc05407cea2d6a04dced62e13cd" title="Registers a colour to be used for a particular purpose. ">setColour()</a> method.  <a href="classComponent.html#a8040eedee0207c9352880e86e603a4d3">More...</a><br /></td></tr>
<tr class="separator:a8040eedee0207c9352880e86e603a4d3 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adb859c49c36874ebdad85adf1c1f5ce9 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#adb859c49c36874ebdad85adf1c1f5ce9">copyAllExplicitColoursTo</a> (<a class="el" href="classComponent.html">Component</a> &amp;target) const</td></tr>
<tr class="memdesc:adb859c49c36874ebdad85adf1c1f5ce9 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">This looks for any colours that have been specified for this component, and copies them to the specified target component.  <a href="classComponent.html#adb859c49c36874ebdad85adf1c1f5ce9">More...</a><br /></td></tr>
<tr class="separator:adb859c49c36874ebdad85adf1c1f5ce9 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adfab11b32c622b327a823c6565f637f4 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#adfab11b32c622b327a823c6565f637f4">colourChanged</a> ()</td></tr>
<tr class="memdesc:adfab11b32c622b327a823c6565f637f4 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is called when a colour is changed by the <a class="el" href="classComponent.html#a875e6cc05407cea2d6a04dced62e13cd" title="Registers a colour to be used for a particular purpose. ">setColour()</a> method.  <a href="classComponent.html#adfab11b32c622b327a823c6565f637f4">More...</a><br /></td></tr>
<tr class="separator:adfab11b32c622b327a823c6565f637f4 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2c2b7f738ccfcf541b72a6ce8283fce0 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classMarkerList.html">MarkerList</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a2c2b7f738ccfcf541b72a6ce8283fce0">getMarkers</a> (bool xAxis)</td></tr>
<tr class="memdesc:a2c2b7f738ccfcf541b72a6ce8283fce0 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Components can implement this method to provide a <a class="el" href="classMarkerList.html" title="Holds a set of named marker points along a one-dimensional axis. ">MarkerList</a>.  <a href="classComponent.html#a2c2b7f738ccfcf541b72a6ce8283fce0">More...</a><br /></td></tr>
<tr class="separator:a2c2b7f738ccfcf541b72a6ce8283fce0 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1cc235734615109756110ca8423e3ac3 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a1cc235734615109756110ca8423e3ac3">getWindowHandle</a> () const</td></tr>
<tr class="memdesc:a1cc235734615109756110ca8423e3ac3 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the underlying native window handle for this component.  <a href="classComponent.html#a1cc235734615109756110ca8423e3ac3">More...</a><br /></td></tr>
<tr class="separator:a1cc235734615109756110ca8423e3ac3 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4fb6cbf8dc543319c42a37590e0d0bd8 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classComponent_1_1Positioner.html">Positioner</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a4fb6cbf8dc543319c42a37590e0d0bd8">getPositioner</a> () const noexcept</td></tr>
<tr class="memdesc:a4fb6cbf8dc543319c42a37590e0d0bd8 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classComponent_1_1Positioner.html" title="Base class for objects that can be used to automatically position a component according to some kind ...">Positioner</a> object that has been set for this component.  <a href="classComponent.html#a4fb6cbf8dc543319c42a37590e0d0bd8">More...</a><br /></td></tr>
<tr class="separator:a4fb6cbf8dc543319c42a37590e0d0bd8 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a27359d626e9ab896af71cd57c1ff0915 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a27359d626e9ab896af71cd57c1ff0915">setPositioner</a> (<a class="el" href="classComponent_1_1Positioner.html">Positioner</a> *newPositioner)</td></tr>
<tr class="memdesc:a27359d626e9ab896af71cd57c1ff0915 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a new <a class="el" href="classComponent_1_1Positioner.html" title="Base class for objects that can be used to automatically position a component according to some kind ...">Positioner</a> object for this component.  <a href="classComponent.html#a27359d626e9ab896af71cd57c1ff0915">More...</a><br /></td></tr>
<tr class="separator:a27359d626e9ab896af71cd57c1ff0915 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a19c5cf59573243d77a94bb3abea722 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9a19c5cf59573243d77a94bb3abea722">setCachedComponentImage</a> (<a class="el" href="classCachedComponentImage.html">CachedComponentImage</a> *newCachedImage)</td></tr>
<tr class="memdesc:a9a19c5cf59573243d77a94bb3abea722 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gives the component a <a class="el" href="classCachedComponentImage.html" title="Base class used internally for structures that can store cached images of component state...">CachedComponentImage</a> that should be used to buffer its painting.  <a href="classComponent.html#a9a19c5cf59573243d77a94bb3abea722">More...</a><br /></td></tr>
<tr class="separator:a9a19c5cf59573243d77a94bb3abea722 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9338014ab407f6b41c14495ab2a7fc4d inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCachedComponentImage.html">CachedComponentImage</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a9338014ab407f6b41c14495ab2a7fc4d">getCachedComponentImage</a> () const noexcept</td></tr>
<tr class="memdesc:a9338014ab407f6b41c14495ab2a7fc4d inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the object that was set by <a class="el" href="classComponent.html#a9a19c5cf59573243d77a94bb3abea722" title="Gives the component a CachedComponentImage that should be used to buffer its painting. ">setCachedComponentImage()</a>.  <a href="classComponent.html#a9338014ab407f6b41c14495ab2a7fc4d">More...</a><br /></td></tr>
<tr class="separator:a9338014ab407f6b41c14495ab2a7fc4d inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acb33b4aed9d981ae1a477c09ffa78fc7 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#acb33b4aed9d981ae1a477c09ffa78fc7">JUCE_DEPRECATED</a> (<a class="el" href="classPoint.html">Point</a>&lt; int &gt; relativePositionToGlobal(<a class="el" href="classPoint.html">Point</a>&lt; int &gt;) const)</td></tr>
<tr class="separator:acb33b4aed9d981ae1a477c09ffa78fc7 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae1e72f4e27817c000eabe164fd55c7fc inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ae1e72f4e27817c000eabe164fd55c7fc">JUCE_DEPRECATED</a> (<a class="el" href="classPoint.html">Point</a>&lt; int &gt; globalPositionToRelative(<a class="el" href="classPoint.html">Point</a>&lt; int &gt;) const)</td></tr>
<tr class="separator:ae1e72f4e27817c000eabe164fd55c7fc inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a947f10bbb7a68691de5d3f8af394c5a9 inherit pub_methods_classComponent"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a947f10bbb7a68691de5d3f8af394c5a9">JUCE_DEPRECATED</a> (<a class="el" href="classPoint.html">Point</a>&lt; int &gt; relativePositionToOtherComponent(const <a class="el" href="classComponent.html">Component</a> *, <a class="el" href="classPoint.html">Point</a>&lt; int &gt;) const)</td></tr>
<tr class="separator:a947f10bbb7a68691de5d3f8af394c5a9 inherit pub_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classMouseListener"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classMouseListener')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classMouseListener.html">MouseListener</a></td></tr>
<tr class="memitem:a9d4fc9354c8e4109c9b8f0d4b50dd440 inherit pub_methods_classMouseListener"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classMouseListener.html#a9d4fc9354c8e4109c9b8f0d4b50dd440">~MouseListener</a> ()</td></tr>
<tr class="memdesc:a9d4fc9354c8e4109c9b8f0d4b50dd440 inherit pub_methods_classMouseListener"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="classMouseListener.html#a9d4fc9354c8e4109c9b8f0d4b50dd440">More...</a><br /></td></tr>
<tr class="separator:a9d4fc9354c8e4109c9b8f0d4b50dd440 inherit pub_methods_classMouseListener"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:afce17dd21af1f740f736b757b52eba0a"><td class="memItemLeft" align="right" valign="top">static void <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#afce17dd21af1f740f736b757b52eba0a">showMessageBox</a> (<a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a> iconType, const <a class="el" href="classString.html">String</a> &amp;title, const <a class="el" href="classString.html">String</a> &amp;message, const <a class="el" href="classString.html">String</a> &amp;buttonText=<a class="el" href="classString.html">String</a>(), <a class="el" href="classComponent.html">Component</a> *associatedComponent=nullptr)</td></tr>
<tr class="memdesc:afce17dd21af1f740f736b757b52eba0a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows a dialog box that just has a message and a single button to get rid of it.  <a href="#afce17dd21af1f740f736b757b52eba0a">More...</a><br /></td></tr>
<tr class="separator:afce17dd21af1f740f736b757b52eba0a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a575b1266a8dc9ce47803b581772c3f0c"><td class="memItemLeft" align="right" valign="top">static void <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a575b1266a8dc9ce47803b581772c3f0c">showMessageBoxAsync</a> (<a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a> iconType, const <a class="el" href="classString.html">String</a> &amp;title, const <a class="el" href="classString.html">String</a> &amp;message, const <a class="el" href="classString.html">String</a> &amp;buttonText=<a class="el" href="classString.html">String</a>(), <a class="el" href="classComponent.html">Component</a> *associatedComponent=nullptr, <a class="el" href="classModalComponentManager_1_1Callback.html">ModalComponentManager::Callback</a> *callback=nullptr)</td></tr>
<tr class="memdesc:a575b1266a8dc9ce47803b581772c3f0c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows a dialog box that just has a message and a single button to get rid of it.  <a href="#a575b1266a8dc9ce47803b581772c3f0c">More...</a><br /></td></tr>
<tr class="separator:a575b1266a8dc9ce47803b581772c3f0c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4aa219f3d3cee59701b5a0ef187599de"><td class="memItemLeft" align="right" valign="top">static bool <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a4aa219f3d3cee59701b5a0ef187599de">showOkCancelBox</a> (<a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a> iconType, const <a class="el" href="classString.html">String</a> &amp;title, const <a class="el" href="classString.html">String</a> &amp;message, const <a class="el" href="classString.html">String</a> &amp;button1Text=<a class="el" href="classString.html">String</a>(), const <a class="el" href="classString.html">String</a> &amp;button2Text=<a class="el" href="classString.html">String</a>(), <a class="el" href="classComponent.html">Component</a> *associatedComponent=nullptr, <a class="el" href="classModalComponentManager_1_1Callback.html">ModalComponentManager::Callback</a> *callback=nullptr)</td></tr>
<tr class="memdesc:a4aa219f3d3cee59701b5a0ef187599de"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows a dialog box with two buttons.  <a href="#a4aa219f3d3cee59701b5a0ef187599de">More...</a><br /></td></tr>
<tr class="separator:a4aa219f3d3cee59701b5a0ef187599de"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa91c2902742b46fbb390420808cb1294"><td class="memItemLeft" align="right" valign="top">static int <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#aa91c2902742b46fbb390420808cb1294">showYesNoCancelBox</a> (<a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a> iconType, const <a class="el" href="classString.html">String</a> &amp;title, const <a class="el" href="classString.html">String</a> &amp;message, const <a class="el" href="classString.html">String</a> &amp;button1Text=<a class="el" href="classString.html">String</a>(), const <a class="el" href="classString.html">String</a> &amp;button2Text=<a class="el" href="classString.html">String</a>(), const <a class="el" href="classString.html">String</a> &amp;button3Text=<a class="el" href="classString.html">String</a>(), <a class="el" href="classComponent.html">Component</a> *associatedComponent=nullptr, <a class="el" href="classModalComponentManager_1_1Callback.html">ModalComponentManager::Callback</a> *callback=nullptr)</td></tr>
<tr class="memdesc:aa91c2902742b46fbb390420808cb1294"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows a dialog box with three buttons.  <a href="#aa91c2902742b46fbb390420808cb1294">More...</a><br /></td></tr>
<tr class="separator:aa91c2902742b46fbb390420808cb1294"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a796e868eb78c49ec3e7de0f220a5bd00"><td class="memItemLeft" align="right" valign="top">static bool <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a796e868eb78c49ec3e7de0f220a5bd00">showNativeDialogBox</a> (const <a class="el" href="classString.html">String</a> &amp;title, const <a class="el" href="classString.html">String</a> &amp;bodyText, bool isOkCancel)</td></tr>
<tr class="memdesc:a796e868eb78c49ec3e7de0f220a5bd00"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows an operating-system native dialog box.  <a href="#a796e868eb78c49ec3e7de0f220a5bd00">More...</a><br /></td></tr>
<tr class="separator:a796e868eb78c49ec3e7de0f220a5bd00"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_methods_classTopLevelWindow"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classTopLevelWindow')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classTopLevelWindow.html">TopLevelWindow</a></td></tr>
<tr class="memitem:a33eeb6e6e7694cc2b2904664c60a5240 inherit pub_static_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a33eeb6e6e7694cc2b2904664c60a5240">getNumTopLevelWindows</a> () noexcept</td></tr>
<tr class="memdesc:a33eeb6e6e7694cc2b2904664c60a5240 inherit pub_static_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of <a class="el" href="classTopLevelWindow.html" title="A base class for top-level windows. ">TopLevelWindow</a> objects currently in use.  <a href="classTopLevelWindow.html#a33eeb6e6e7694cc2b2904664c60a5240">More...</a><br /></td></tr>
<tr class="separator:a33eeb6e6e7694cc2b2904664c60a5240 inherit pub_static_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2ecfdbc04b0d815fe7edd44aeadac14a inherit pub_static_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classTopLevelWindow.html">TopLevelWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a2ecfdbc04b0d815fe7edd44aeadac14a">getTopLevelWindow</a> (int index) noexcept</td></tr>
<tr class="memdesc:a2ecfdbc04b0d815fe7edd44aeadac14a inherit pub_static_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns one of the <a class="el" href="classTopLevelWindow.html" title="A base class for top-level windows. ">TopLevelWindow</a> objects currently in use.  <a href="classTopLevelWindow.html#a2ecfdbc04b0d815fe7edd44aeadac14a">More...</a><br /></td></tr>
<tr class="separator:a2ecfdbc04b0d815fe7edd44aeadac14a inherit pub_static_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af17e4d21be7d375627f6339d479ec4d4 inherit pub_static_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classTopLevelWindow.html">TopLevelWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#af17e4d21be7d375627f6339d479ec4d4">getActiveTopLevelWindow</a> () noexcept</td></tr>
<tr class="memdesc:af17e4d21be7d375627f6339d479ec4d4 inherit pub_static_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the currently-active top level window.  <a href="classTopLevelWindow.html#af17e4d21be7d375627f6339d479ec4d4">More...</a><br /></td></tr>
<tr class="separator:af17e4d21be7d375627f6339d479ec4d4 inherit pub_static_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_methods_classComponent"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classComponent')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classComponent.html">Component</a></td></tr>
<tr class="memitem:a7030de7a58ec40e43ec902d6bb8aaf7a inherit pub_static_methods_classComponent"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classComponent.html">Component</a> *<a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a7030de7a58ec40e43ec902d6bb8aaf7a">getCurrentlyFocusedComponent</a> () noexcept</td></tr>
<tr class="memdesc:a7030de7a58ec40e43ec902d6bb8aaf7a inherit pub_static_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the component that currently has the keyboard focus.  <a href="classComponent.html#a7030de7a58ec40e43ec902d6bb8aaf7a">More...</a><br /></td></tr>
<tr class="separator:a7030de7a58ec40e43ec902d6bb8aaf7a inherit pub_static_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a34c592c531e8c996dee1bffb2884ca4e inherit pub_static_methods_classComponent"><td class="memItemLeft" align="right" valign="top">static void <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a34c592c531e8c996dee1bffb2884ca4e">unfocusAllComponents</a> ()</td></tr>
<tr class="memdesc:a34c592c531e8c996dee1bffb2884ca4e inherit pub_static_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">If any component has keyboard focus, this will defocus it.  <a href="classComponent.html#a34c592c531e8c996dee1bffb2884ca4e">More...</a><br /></td></tr>
<tr class="separator:a34c592c531e8c996dee1bffb2884ca4e inherit pub_static_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a54a125231707956e740b295f2622787b inherit pub_static_methods_classComponent"><td class="memItemLeft" align="right" valign="top">static void <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#a54a125231707956e740b295f2622787b">beginDragAutoRepeat</a> (int millisecondsBetweenCallbacks)</td></tr>
<tr class="memdesc:a54a125231707956e740b295f2622787b inherit pub_static_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Ensures that a non-stop stream of mouse-drag events will be sent during the current mouse-drag operation.  <a href="classComponent.html#a54a125231707956e740b295f2622787b">More...</a><br /></td></tr>
<tr class="separator:a54a125231707956e740b295f2622787b inherit pub_static_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac3184a52027ad9106185d594c522d9d0 inherit pub_static_methods_classComponent"><td class="memItemLeft" align="right" valign="top">static bool <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ac3184a52027ad9106185d594c522d9d0">isMouseButtonDownAnywhere</a> () noexcept</td></tr>
<tr class="memdesc:ac3184a52027ad9106185d594c522d9d0 inherit pub_static_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if a mouse button is currently down.  <a href="classComponent.html#ac3184a52027ad9106185d594c522d9d0">More...</a><br /></td></tr>
<tr class="separator:ac3184a52027ad9106185d594c522d9d0 inherit pub_static_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae58129a62eda13ca8987072cd9c62359 inherit pub_static_methods_classComponent"><td class="memItemLeft" align="right" valign="top">static int <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#ae58129a62eda13ca8987072cd9c62359">getNumCurrentlyModalComponents</a> () noexcept</td></tr>
<tr class="memdesc:ae58129a62eda13ca8987072cd9c62359 inherit pub_static_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of components that are currently in a modal state.  <a href="classComponent.html#ae58129a62eda13ca8987072cd9c62359">More...</a><br /></td></tr>
<tr class="separator:ae58129a62eda13ca8987072cd9c62359 inherit pub_static_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af281d9bc711b70c43ae5891a35165cb3 inherit pub_static_methods_classComponent"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classComponent.html">Component</a> *<a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classComponent.html#af281d9bc711b70c43ae5891a35165cb3">getCurrentlyModalComponent</a> (int index=0) noexcept</td></tr>
<tr class="memdesc:af281d9bc711b70c43ae5891a35165cb3 inherit pub_static_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns one of the components that are currently modal.  <a href="classComponent.html#af281d9bc711b70c43ae5891a35165cb3">More...</a><br /></td></tr>
<tr class="separator:af281d9bc711b70c43ae5891a35165cb3 inherit pub_static_methods_classComponent"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a3b70db27d70ce9972928ece3b0f809ca"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a3b70db27d70ce9972928ece3b0f809ca">paint</a> (<a class="el" href="classGraphics.html">Graphics</a> &amp;) override</td></tr>
<tr class="separator:a3b70db27d70ce9972928ece3b0f809ca"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0aef30be23c4018bfc8e11407d11aaa8"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a0aef30be23c4018bfc8e11407d11aaa8">mouseDown</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;) override</td></tr>
<tr class="separator:a0aef30be23c4018bfc8e11407d11aaa8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a16da21b6606246912135fd2e7cbc0bd1"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#a16da21b6606246912135fd2e7cbc0bd1">mouseDrag</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;) override</td></tr>
<tr class="separator:a16da21b6606246912135fd2e7cbc0bd1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac12c82883bc4d054f7eb5b793c6425e5"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#ac12c82883bc4d054f7eb5b793c6425e5">keyPressed</a> (const <a class="el" href="classKeyPress.html">KeyPress</a> &amp;) override</td></tr>
<tr class="separator:ac12c82883bc4d054f7eb5b793c6425e5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad2e031c2dc35670cdb06739d1cc5d3b4"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#ad2e031c2dc35670cdb06739d1cc5d3b4">buttonClicked</a> (<a class="el" href="classButton.html">Button</a> *) override</td></tr>
<tr class="separator:ad2e031c2dc35670cdb06739d1cc5d3b4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac4c2559255171d141a30c8a04299c8c1"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#ac4c2559255171d141a30c8a04299c8c1">lookAndFeelChanged</a> () override</td></tr>
<tr class="separator:ac4c2559255171d141a30c8a04299c8c1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac8263176929ac925f0e4aee768094c55"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#ac8263176929ac925f0e4aee768094c55">userTriedToCloseWindow</a> () override</td></tr>
<tr class="separator:ac8263176929ac925f0e4aee768094c55"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac746247dc73678fab3fbf4836c98e49e"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAlertWindow.html#ac746247dc73678fab3fbf4836c98e49e">getDesktopWindowStyleFlags</a> () const override</td></tr>
<tr class="separator:ac746247dc73678fab3fbf4836c98e49e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classTopLevelWindow"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classTopLevelWindow')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classTopLevelWindow.html">TopLevelWindow</a></td></tr>
<tr class="memitem:a6d2a68ab02862e0dda13a5d1cf874142 inherit pro_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a6d2a68ab02862e0dda13a5d1cf874142">activeWindowStatusChanged</a> ()</td></tr>
<tr class="memdesc:a6d2a68ab02862e0dda13a5d1cf874142 inherit pro_methods_classTopLevelWindow"><td class="mdescLeft">&#160;</td><td class="mdescRight">This callback happens when this window becomes active or inactive.  <a href="classTopLevelWindow.html#a6d2a68ab02862e0dda13a5d1cf874142">More...</a><br /></td></tr>
<tr class="separator:a6d2a68ab02862e0dda13a5d1cf874142 inherit pro_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a98d203f03113f827d4f711e6c0a00a73 inherit pro_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a98d203f03113f827d4f711e6c0a00a73">focusOfChildComponentChanged</a> (<a class="el" href="classComponent.html#a7fd775ea6b1190d5d694fdffa539dfac">FocusChangeType</a>) override</td></tr>
<tr class="separator:a98d203f03113f827d4f711e6c0a00a73 inherit pro_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa97c47e56ebbb608a1e286962463dfe7 inherit pro_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#aa97c47e56ebbb608a1e286962463dfe7">parentHierarchyChanged</a> () override</td></tr>
<tr class="separator:aa97c47e56ebbb608a1e286962463dfe7 inherit pro_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a17ae4404a23e24e2859a396bc391ffc1 inherit pro_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a17ae4404a23e24e2859a396bc391ffc1">recreateDesktopWindow</a> ()</td></tr>
<tr class="separator:a17ae4404a23e24e2859a396bc391ffc1 inherit pro_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2981bd09f16f4e6fcb8db472761ac1de inherit pro_methods_classTopLevelWindow"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTopLevelWindow.html#a2981bd09f16f4e6fcb8db472761ac1de">visibilityChanged</a> () override</td></tr>
<tr class="separator:a2981bd09f16f4e6fcb8db472761ac1de inherit pro_methods_classTopLevelWindow"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>A window that displays a message and has buttons for the user to react to it. </p>
<p>For simple dialog boxes with just a couple of buttons on them, there are some static methods for running these.</p>
<p>For more complex dialogs, an <a class="el" href="classAlertWindow.html" title="A window that displays a message and has buttons for the user to react to it. ">AlertWindow</a> can be created, then it can have some buttons and components added to it, and its <a class="el" href="classComponent.html#a363364f6ae4f1a20abd60493c6854829" title="Runs a component modally, waiting until the loop terminates. ">runModalLoop()</a> method is then used to show it. The value returned by <a class="el" href="classComponent.html#a363364f6ae4f1a20abd60493c6854829" title="Runs a component modally, waiting until the loop terminates. ">runModalLoop()</a> shows which button the user pressed to dismiss the box.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classThreadWithProgressWindow.html" title="A thread that automatically pops up a modal dialog box with a progress bar and cancel button while it...">ThreadWithProgressWindow</a> </dd></dl>
</div><h2 class="groupheader">Member Enumeration Documentation</h2>
<a id="a2582d1f79937cb47a6a3764c7d9bdba3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2582d1f79937cb47a6a3764c7d9bdba3">&sect;&nbsp;</a></span>AlertIconType</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertWindow::AlertIconType</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>The type of icon to show in the dialog box. </p>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="a2582d1f79937cb47a6a3764c7d9bdba3a6b6648ee3f02f6832d897a214c647421"></a>NoIcon&#160;</td><td class="fielddoc"><p>No icon will be shown on the dialog box. </p>
</td></tr>
<tr><td class="fieldname"><a id="a2582d1f79937cb47a6a3764c7d9bdba3a63d1a179c412afc32f7f3c8061b238be"></a>QuestionIcon&#160;</td><td class="fielddoc"><p>A question-mark icon, for dialog boxes that need the user to answer a question. </p>
</td></tr>
<tr><td class="fieldname"><a id="a2582d1f79937cb47a6a3764c7d9bdba3a8af24c68ddba14cc97687e2b2b75f373"></a>WarningIcon&#160;</td><td class="fielddoc"><p>An exclamation mark to indicate that the dialog is a warning about something and shouldn't be ignored. </p>
</td></tr>
<tr><td class="fieldname"><a id="a2582d1f79937cb47a6a3764c7d9bdba3a3a24dd7ddec3b6ec31d320aaa525e43f"></a>InfoIcon&#160;</td><td class="fielddoc"><p>An icon that indicates that the dialog box is just giving the user some information, which doesn't require a response from them. </p>
</td></tr>
</table>

</div>
</div>
<a id="ad2f8b8ba50ce8a744e37e05e9a40dce1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad2f8b8ba50ce8a744e37e05e9a40dce1">&sect;&nbsp;</a></span>ColourIds</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classAlertWindow.html#ad2f8b8ba50ce8a744e37e05e9a40dce1">AlertWindow::ColourIds</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>A set of colour IDs to use to change the colour of various aspects of the alert box. </p>
<p>These constants can be used either via the <a class="el" href="classComponent.html#a875e6cc05407cea2d6a04dced62e13cd" title="Registers a colour to be used for a particular purpose. ">Component::setColour()</a>, or <a class="el" href="classLookAndFeel.html#a167a1e914771f32e433a0d45aaba45e3" title="Registers a colour to be used for a particular purpose. ">LookAndFeel::setColour()</a> methods.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classComponent.html#a875e6cc05407cea2d6a04dced62e13cd" title="Registers a colour to be used for a particular purpose. ">Component::setColour</a>, <a class="el" href="classComponent.html#a202390cda00048f08ee80add476a0f3c" title="Looks for a colour that has been registered with the given colour ID number. ">Component::findColour</a>, <a class="el" href="classLookAndFeel.html#a167a1e914771f32e433a0d45aaba45e3" title="Registers a colour to be used for a particular purpose. ">LookAndFeel::setColour</a>, <a class="el" href="classLookAndFeel.html#aa7f9faa480c9ec9d61b66672425f380b" title="Looks for a colour that has been registered with the given colour ID number. ">LookAndFeel::findColour</a> </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="ad2f8b8ba50ce8a744e37e05e9a40dce1ad8174d9e6fb186697dba3b380b1195c6"></a>backgroundColourId&#160;</td><td class="fielddoc"><p>The background colour for the window. </p>
</td></tr>
<tr><td class="fieldname"><a id="ad2f8b8ba50ce8a744e37e05e9a40dce1ae52947cad55bc25fee88e0e2a97d02c2"></a>textColourId&#160;</td><td class="fielddoc"><p>The colour for the text. </p>
</td></tr>
<tr><td class="fieldname"><a id="ad2f8b8ba50ce8a744e37e05e9a40dce1a4ca5b0e9de7b0838cf1358a85b551d10"></a>outlineColourId&#160;</td><td class="fielddoc"><p>An optional colour to use to draw a border around the window. </p>
</td></tr>
</table>

</div>
</div>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a id="a881fc5e753335f28fad5144eca5c1a3b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a881fc5e753335f28fad5144eca5c1a3b">&sect;&nbsp;</a></span>AlertWindow()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">AlertWindow::AlertWindow </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>title</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>message</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a>&#160;</td>
          <td class="paramname"><em>iconType</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classComponent.html">Component</a> *&#160;</td>
          <td class="paramname"><em>associatedComponent</em> = <code>nullptr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Creates an <a class="el" href="classAlertWindow.html" title="A window that displays a message and has buttons for the user to react to it. ">AlertWindow</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">title</td><td>the headline to show at the top of the dialog box </td></tr>
    <tr><td class="paramname">message</td><td>a longer, more descriptive message to show underneath the headline </td></tr>
    <tr><td class="paramname">iconType</td><td>the type of icon to display </td></tr>
    <tr><td class="paramname">associatedComponent</td><td>if this is non-null, it specifies the component that the alert window should be associated with. Depending on the look and feel, this might be used for positioning of the alert window. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a id="a3c76e1a1ce702a161064eebb134f1adc"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3c76e1a1ce702a161064eebb134f1adc">&sect;&nbsp;</a></span>~AlertWindow()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">AlertWindow::~AlertWindow </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Destroys the <a class="el" href="classAlertWindow.html" title="A window that displays a message and has buttons for the user to react to it. ">AlertWindow</a>. </p>

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a id="a55f336d14f2e388a01c958334bd382fd"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a55f336d14f2e388a01c958334bd382fd">&sect;&nbsp;</a></span>getAlertType()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a> AlertWindow::getAlertType </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the type of alert icon that was specified when the window was created. </p>

<p>References <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a>.</p>

</div>
</div>
<a id="a726f6cb55274959235efa16a0d18f794"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a726f6cb55274959235efa16a0d18f794">&sect;&nbsp;</a></span>setMessage()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::setMessage </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>message</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Changes the dialog box's message. </p>
<p>This will also resize the window to fit the new message if required. </p>

</div>
</div>
<a id="a783bbf81186dc21addde7e0fdb6f8001"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a783bbf81186dc21addde7e0fdb6f8001">&sect;&nbsp;</a></span>addButton()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::addButton </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>returnValue</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classKeyPress.html">KeyPress</a> &amp;&#160;</td>
          <td class="paramname"><em>shortcutKey1</em> = <code><a class="el" href="classKeyPress.html">KeyPress</a>()</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classKeyPress.html">KeyPress</a> &amp;&#160;</td>
          <td class="paramname"><em>shortcutKey2</em> = <code><a class="el" href="classKeyPress.html">KeyPress</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a button to the window. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>the text to show on the button </td></tr>
    <tr><td class="paramname">returnValue</td><td>the value that should be returned from <a class="el" href="classComponent.html#a363364f6ae4f1a20abd60493c6854829" title="Runs a component modally, waiting until the loop terminates. ">runModalLoop()</a> if this is the button that the user presses. </td></tr>
    <tr><td class="paramname">shortcutKey1</td><td>an optional key that can be pressed to trigger this button </td></tr>
    <tr><td class="paramname">shortcutKey2</td><td>a second optional key that can be pressed to trigger this button </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a id="aa0c83bb153040ea916d5bb6ac0b67256"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa0c83bb153040ea916d5bb6ac0b67256">&sect;&nbsp;</a></span>getNumButtons()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int AlertWindow::getNumButtons </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the number of buttons that the window currently has. </p>

</div>
</div>
<a id="abc59507f5e2ad04933736a8643ba7ef7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abc59507f5e2ad04933736a8643ba7ef7">&sect;&nbsp;</a></span>triggerButtonClick()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::triggerButtonClick </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>buttonName</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Invokes a click of one of the buttons. </p>

</div>
</div>
<a id="a3b03c4f645e3f847a3226ac36ac1678b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3b03c4f645e3f847a3226ac36ac1678b">&sect;&nbsp;</a></span>setEscapeKeyCancels()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::setEscapeKeyCancels </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>shouldEscapeKeyCancel</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>If set to true and the window contains no buttons, then pressing the escape key will make the alert cancel its modal state. </p>
<p>By default this setting is true - turn it off if you don't want the box to respond to the escape key. Note that it is ignored if you have any buttons, and in that case you should give the buttons appropriate keypresses to trigger cancelling if you want to. </p>

</div>
</div>
<a id="ad3de30e292b03b2204c6faaeea55b9a9"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad3de30e292b03b2204c6faaeea55b9a9">&sect;&nbsp;</a></span>addTextEditor()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::addTextEditor </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>initialContents</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>onScreenLabel</em> = <code><a class="el" href="classString.html">String</a>()</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>isPasswordBox</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 textbox to the window for entering strings. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>an internal name for the text-box. This is the name to pass to the <a class="el" href="classAlertWindow.html#a1700fd4defcdb75bfe748f4bc587a707" title="Returns the contents of a named textbox. ">getTextEditorContents()</a> method to find out what the user typed-in. </td></tr>
    <tr><td class="paramname">initialContents</td><td>a string to show in the text box when it's first shown </td></tr>
    <tr><td class="paramname">onScreenLabel</td><td>if this is non-empty, it will be displayed next to the text-box to label it. </td></tr>
    <tr><td class="paramname">isPasswordBox</td><td>if true, the text editor will display asterisks instead of the actual text </td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classAlertWindow.html#a1700fd4defcdb75bfe748f4bc587a707" title="Returns the contents of a named textbox. ">getTextEditorContents</a> </dd></dl>

</div>
</div>
<a id="a1700fd4defcdb75bfe748f4bc587a707"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1700fd4defcdb75bfe748f4bc587a707">&sect;&nbsp;</a></span>getTextEditorContents()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classString.html">String</a> AlertWindow::getTextEditorContents </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>nameOfTextEditor</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the contents of a named textbox. </p>
<p>After showing an <a class="el" href="classAlertWindow.html" title="A window that displays a message and has buttons for the user to react to it. ">AlertWindow</a> that contains a text editor, this can be used to find out what the user has typed into it.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">nameOfTextEditor</td><td>the name of the text box that you're interested in </td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classAlertWindow.html#ad3de30e292b03b2204c6faaeea55b9a9" title="Adds a textbox to the window for entering strings. ">addTextEditor</a> </dd></dl>

</div>
</div>
<a id="a8fb386b1ea27e8791a1557ba3f7282ba"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a8fb386b1ea27e8791a1557ba3f7282ba">&sect;&nbsp;</a></span>getTextEditor()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classTextEditor.html">TextEditor</a>* AlertWindow::getTextEditor </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>nameOfTextEditor</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns a pointer to a textbox that was added with <a class="el" href="classAlertWindow.html#ad3de30e292b03b2204c6faaeea55b9a9" title="Adds a textbox to the window for entering strings. ">addTextEditor()</a>. </p>

</div>
</div>
<a id="a0e7c7b4fe85d7ed4cdf34167d513ed44"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0e7c7b4fe85d7ed4cdf34167d513ed44">&sect;&nbsp;</a></span>addComboBox()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::addComboBox </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classStringArray.html">StringArray</a> &amp;&#160;</td>
          <td class="paramname"><em>items</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>onScreenLabel</em> = <code><a class="el" href="classString.html">String</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a drop-down list of choices to the box. </p>
<p>After the box has been shown, the <a class="el" href="classAlertWindow.html#a79bf3cd42182334c1ebf7923f1e3581e" title="Returns a drop-down list that was added to the AlertWindow. ">getComboBoxComponent()</a> method can be used to find out which item the user picked.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>the label to use for the drop-down list </td></tr>
    <tr><td class="paramname">items</td><td>the list of items to show in it </td></tr>
    <tr><td class="paramname">onScreenLabel</td><td>if this is non-empty, it will be displayed next to the combo-box to label it. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classAlertWindow.html#a79bf3cd42182334c1ebf7923f1e3581e" title="Returns a drop-down list that was added to the AlertWindow. ">getComboBoxComponent</a> </dd></dl>

</div>
</div>
<a id="a79bf3cd42182334c1ebf7923f1e3581e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a79bf3cd42182334c1ebf7923f1e3581e">&sect;&nbsp;</a></span>getComboBoxComponent()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classComboBox.html">ComboBox</a>* AlertWindow::getComboBoxComponent </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>nameOfList</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns a drop-down list that was added to the <a class="el" href="classAlertWindow.html" title="A window that displays a message and has buttons for the user to react to it. ">AlertWindow</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">nameOfList</td><td>the name that was passed into the <a class="el" href="classAlertWindow.html#a0e7c7b4fe85d7ed4cdf34167d513ed44" title="Adds a drop-down list of choices to the box. ">addComboBox()</a> method when creating the drop-down </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the <a class="el" href="classComboBox.html" title="A component that lets the user choose from a drop-down list of choices. ">ComboBox</a> component, or nullptr if none was found for the given name. </dd></dl>

</div>
</div>
<a id="a06c68ddf379fcd3247182d0fee87a7f4"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a06c68ddf379fcd3247182d0fee87a7f4">&sect;&nbsp;</a></span>addTextBlock()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::addTextBlock </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a block of text. </p>
<p>This is handy for adding a multi-line note next to a textbox or combo-box, to provide more details about what's going on. </p>

</div>
</div>
<a id="a9b7ccfa6a4b4d3e871d20b4690c35b34"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9b7ccfa6a4b4d3e871d20b4690c35b34">&sect;&nbsp;</a></span>addProgressBarComponent()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::addProgressBarComponent </td>
          <td>(</td>
          <td class="paramtype">double &amp;&#160;</td>
          <td class="paramname"><em>progressValue</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a progress-bar to the window. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">progressValue</td><td>a variable that will be repeatedly checked while the dialog box is visible, to see how far the process has got. The value should be in the range 0 to 1.0 </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a id="a18e5456aa067a106f8ecbb03dc01f032"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a18e5456aa067a106f8ecbb03dc01f032">&sect;&nbsp;</a></span>addCustomComponent()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::addCustomComponent </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classComponent.html">Component</a> *&#160;</td>
          <td class="paramname"><em>component</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a user-defined component to the dialog box. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">component</td><td>the component to add - its size should be set up correctly before it is passed in. The caller is responsible for deleting the component later on - the <a class="el" href="classAlertWindow.html" title="A window that displays a message and has buttons for the user to react to it. ">AlertWindow</a> won't delete it. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a id="acd8f31c5b95af022cfa72a49eee1917d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#acd8f31c5b95af022cfa72a49eee1917d">&sect;&nbsp;</a></span>getNumCustomComponents()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int AlertWindow::getNumCustomComponents </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the number of custom components in the dialog box. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classAlertWindow.html#a6455cb278be455fc11edb9dbd3834717" title="Returns one of the custom components in the dialog box. ">getCustomComponent</a>, <a class="el" href="classAlertWindow.html#a18e5456aa067a106f8ecbb03dc01f032" title="Adds a user-defined component to the dialog box. ">addCustomComponent</a> </dd></dl>

</div>
</div>
<a id="a6455cb278be455fc11edb9dbd3834717"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6455cb278be455fc11edb9dbd3834717">&sect;&nbsp;</a></span>getCustomComponent()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classComponent.html">Component</a>* AlertWindow::getCustomComponent </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>index</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns one of the custom components in the dialog box. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">index</td><td>a value 0 to (<a class="el" href="classAlertWindow.html#acd8f31c5b95af022cfa72a49eee1917d" title="Returns the number of custom components in the dialog box. ">getNumCustomComponents()</a> - 1). Out-of-range indexes will return nullptr </td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classAlertWindow.html#acd8f31c5b95af022cfa72a49eee1917d" title="Returns the number of custom components in the dialog box. ">getNumCustomComponents</a>, <a class="el" href="classAlertWindow.html#a18e5456aa067a106f8ecbb03dc01f032" title="Adds a user-defined component to the dialog box. ">addCustomComponent</a> </dd></dl>

</div>
</div>
<a id="a9ea24f9c13a13253c0c73b4d35fbdb82"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9ea24f9c13a13253c0c73b4d35fbdb82">&sect;&nbsp;</a></span>removeCustomComponent()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classComponent.html">Component</a>* AlertWindow::removeCustomComponent </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>index</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Removes one of the custom components in the dialog box. </p>
<p>Note that this won't delete it, it just removes the component from the window</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">index</td><td>a value 0 to (<a class="el" href="classAlertWindow.html#acd8f31c5b95af022cfa72a49eee1917d" title="Returns the number of custom components in the dialog box. ">getNumCustomComponents()</a> - 1). Out-of-range indexes will return nullptr </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the component that was removed (or null) </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classAlertWindow.html#acd8f31c5b95af022cfa72a49eee1917d" title="Returns the number of custom components in the dialog box. ">getNumCustomComponents</a>, <a class="el" href="classAlertWindow.html#a18e5456aa067a106f8ecbb03dc01f032" title="Adds a user-defined component to the dialog box. ">addCustomComponent</a> </dd></dl>

</div>
</div>
<a id="ae891b105265fac686c0fcdfcaa1af1c3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae891b105265fac686c0fcdfcaa1af1c3">&sect;&nbsp;</a></span>containsAnyExtraComponents()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool AlertWindow::containsAnyExtraComponents </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns true if the window contains any components other than just buttons. </p>

</div>
</div>
<a id="afce17dd21af1f740f736b757b52eba0a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#afce17dd21af1f740f736b757b52eba0a">&sect;&nbsp;</a></span>showMessageBox()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static void <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a> AlertWindow::showMessageBox </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a>&#160;</td>
          <td class="paramname"><em>iconType</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>title</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>message</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>buttonText</em> = <code><a class="el" href="classString.html">String</a>()</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classComponent.html">Component</a> *&#160;</td>
          <td class="paramname"><em>associatedComponent</em> = <code>nullptr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Shows a dialog box that just has a message and a single button to get rid of it. </p>
<p>The box is shown modally, and the method will block until the user has clicked the button (or pressed the escape or return keys).</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iconType</td><td>the type of icon to show </td></tr>
    <tr><td class="paramname">title</td><td>the headline to show at the top of the box </td></tr>
    <tr><td class="paramname">message</td><td>a longer, more descriptive message to show underneath the headline </td></tr>
    <tr><td class="paramname">buttonText</td><td>the text to show in the button - if this string is empty, the default string "OK" (or a localised version) will be used. </td></tr>
    <tr><td class="paramname">associatedComponent</td><td>if this is non-null, it specifies the component that the alert window should be associated with. Depending on the look and feel, this might be used for positioning of the alert window. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a id="a575b1266a8dc9ce47803b581772c3f0c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a575b1266a8dc9ce47803b581772c3f0c">&sect;&nbsp;</a></span>showMessageBoxAsync()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static void <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a> AlertWindow::showMessageBoxAsync </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a>&#160;</td>
          <td class="paramname"><em>iconType</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>title</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>message</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>buttonText</em> = <code><a class="el" href="classString.html">String</a>()</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classComponent.html">Component</a> *&#160;</td>
          <td class="paramname"><em>associatedComponent</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classModalComponentManager_1_1Callback.html">ModalComponentManager::Callback</a> *&#160;</td>
          <td class="paramname"><em>callback</em> = <code>nullptr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Shows a dialog box that just has a message and a single button to get rid of it. </p>
<p>The box will be displayed and placed into a modal state, but this method will return immediately, and if a callback was supplied, it will be invoked later when the user dismisses the box.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iconType</td><td>the type of icon to show </td></tr>
    <tr><td class="paramname">title</td><td>the headline to show at the top of the box </td></tr>
    <tr><td class="paramname">message</td><td>a longer, more descriptive message to show underneath the headline </td></tr>
    <tr><td class="paramname">buttonText</td><td>the text to show in the button - if this string is empty, the default string "OK" (or a localised version) will be used. </td></tr>
    <tr><td class="paramname">associatedComponent</td><td>if this is non-null, it specifies the component that the alert window should be associated with. Depending on the look and feel, this might be used for positioning of the alert window. </td></tr>
    <tr><td class="paramname">callback</td><td>if this is non-null, the callback will receive a call to its modalStateFinished() when the box is dismissed. The callback object will be owned and deleted by the system, so make sure that it works safely and doesn't keep any references to objects that might be deleted before it gets called. </td></tr>
  </table>
  </dd>
</dl>

<p>Referenced by <a class="el" href="classStandalonePluginHolder.html#ab55d4cd652306a2a344be38464a48358">StandalonePluginHolder::askUserToLoadState()</a>, and <a class="el" href="classStandalonePluginHolder.html#ac28981bbac45dbae6c1fdf617a824c17">StandalonePluginHolder::askUserToSaveState()</a>.</p>

</div>
</div>
<a id="a4aa219f3d3cee59701b5a0ef187599de"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4aa219f3d3cee59701b5a0ef187599de">&sect;&nbsp;</a></span>showOkCancelBox()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static bool <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a> AlertWindow::showOkCancelBox </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a>&#160;</td>
          <td class="paramname"><em>iconType</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>title</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>message</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>button1Text</em> = <code><a class="el" href="classString.html">String</a>()</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>button2Text</em> = <code><a class="el" href="classString.html">String</a>()</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classComponent.html">Component</a> *&#160;</td>
          <td class="paramname"><em>associatedComponent</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classModalComponentManager_1_1Callback.html">ModalComponentManager::Callback</a> *&#160;</td>
          <td class="paramname"><em>callback</em> = <code>nullptr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Shows a dialog box with two buttons. </p>
<p>Ideal for ok/cancel or yes/no choices. The return key can also be used to trigger the first button, and the escape key for the second button.</p>
<p>If the callback parameter is null, the box is shown modally, and the method will block until the user has clicked the button (or pressed the escape or return keys). If the callback parameter is non-null, the box will be displayed and placed into a modal state, but this method will return immediately, and the callback will be invoked later when the user dismisses the box.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iconType</td><td>the type of icon to show </td></tr>
    <tr><td class="paramname">title</td><td>the headline to show at the top of the box </td></tr>
    <tr><td class="paramname">message</td><td>a longer, more descriptive message to show underneath the headline </td></tr>
    <tr><td class="paramname">button1Text</td><td>the text to show in the first button - if this string is empty, the default string "OK" (or a localised version of it) will be used. </td></tr>
    <tr><td class="paramname">button2Text</td><td>the text to show in the second button - if this string is empty, the default string "cancel" (or a localised version of it) will be used. </td></tr>
    <tr><td class="paramname">associatedComponent</td><td>if this is non-null, it specifies the component that the alert window should be associated with. Depending on the look and feel, this might be used for positioning of the alert window. </td></tr>
    <tr><td class="paramname">callback</td><td>if this is non-null, the menu will be launched asynchronously, returning immediately, and the callback will receive a call to its modalStateFinished() when the box is dismissed, with its parameter being 1 if the ok button was pressed, or 0 for cancel. The callback object will be owned and deleted by the system, so make sure that it works safely and doesn't keep any references to objects that might be deleted before it gets called. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if button 1 was clicked, false if it was button 2. If the callback parameter is not null, the method always returns false, and the user's choice is delivered later by the callback. </dd></dl>

</div>
</div>
<a id="aa91c2902742b46fbb390420808cb1294"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa91c2902742b46fbb390420808cb1294">&sect;&nbsp;</a></span>showYesNoCancelBox()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static int <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a> AlertWindow::showYesNoCancelBox </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classAlertWindow.html#a2582d1f79937cb47a6a3764c7d9bdba3">AlertIconType</a>&#160;</td>
          <td class="paramname"><em>iconType</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>title</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>message</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>button1Text</em> = <code><a class="el" href="classString.html">String</a>()</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>button2Text</em> = <code><a class="el" href="classString.html">String</a>()</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>button3Text</em> = <code><a class="el" href="classString.html">String</a>()</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classComponent.html">Component</a> *&#160;</td>
          <td class="paramname"><em>associatedComponent</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classModalComponentManager_1_1Callback.html">ModalComponentManager::Callback</a> *&#160;</td>
          <td class="paramname"><em>callback</em> = <code>nullptr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Shows a dialog box with three buttons. </p>
<p>Ideal for yes/no/cancel boxes.</p>
<p>The escape key can be used to trigger the third button.</p>
<p>If the callback parameter is null, the box is shown modally, and the method will block until the user has clicked the button (or pressed the escape or return keys). If the callback parameter is non-null, the box will be displayed and placed into a modal state, but this method will return immediately, and the callback will be invoked later when the user dismisses the box.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iconType</td><td>the type of icon to show </td></tr>
    <tr><td class="paramname">title</td><td>the headline to show at the top of the box </td></tr>
    <tr><td class="paramname">message</td><td>a longer, more descriptive message to show underneath the headline </td></tr>
    <tr><td class="paramname">button1Text</td><td>the text to show in the first button - if an empty string, then "yes" will be used (or a localised version of it) </td></tr>
    <tr><td class="paramname">button2Text</td><td>the text to show in the first button - if an empty string, then "no" will be used (or a localised version of it) </td></tr>
    <tr><td class="paramname">button3Text</td><td>the text to show in the first button - if an empty string, then "cancel" will be used (or a localised version of it) </td></tr>
    <tr><td class="paramname">associatedComponent</td><td>if this is non-null, it specifies the component that the alert window should be associated with. Depending on the look and feel, this might be used for positioning of the alert window. </td></tr>
    <tr><td class="paramname">callback</td><td>if this is non-null, the menu will be launched asynchronously, returning immediately, and the callback will receive a call to its modalStateFinished() when the box is dismissed, with its parameter being 1 if the "yes" button was pressed, 2 for the "no" button, or 0 if it was cancelled. The callback object will be owned and deleted by the system, so make sure that it works safely and doesn't keep any references to objects that might be deleted before it gets called.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>If the callback parameter has been set, this returns 0. Otherwise, it returns one of the following values:<ul>
<li>0 if the third button was pressed (normally used for 'cancel')</li>
<li>1 if the first button was pressed (normally used for 'yes')</li>
<li>2 if the middle button was pressed (normally used for 'no') </li>
</ul>
</dd></dl>

</div>
</div>
<a id="a796e868eb78c49ec3e7de0f220a5bd00"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a796e868eb78c49ec3e7de0f220a5bd00">&sect;&nbsp;</a></span>showNativeDialogBox()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static bool <a class="el" href="juce__PlatformDefs_8h.html#af0b3f78ca801d88a7912f4c6bbf50e58">JUCE_CALLTYPE</a> AlertWindow::showNativeDialogBox </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>title</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>bodyText</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>isOkCancel</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Shows an operating-system native dialog box. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">title</td><td>the title to use at the top </td></tr>
    <tr><td class="paramname">bodyText</td><td>the longer message to show </td></tr>
    <tr><td class="paramname">isOkCancel</td><td>if true, this will show an ok/cancel box, if false, it'll show a box with just an ok button </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the ok button was pressed, false if they pressed cancel. </dd></dl>

</div>
</div>
<a id="a3b70db27d70ce9972928ece3b0f809ca"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3b70db27d70ce9972928ece3b0f809ca">&sect;&nbsp;</a></span>paint()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::paint </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGraphics.html">Graphics</a> &amp;&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Reimplemented from <a class="el" href="classComponent.html#a7cf1862f4af5909ea72827898114a182">Component</a>.</p>

</div>
</div>
<a id="a0aef30be23c4018bfc8e11407d11aaa8"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0aef30be23c4018bfc8e11407d11aaa8">&sect;&nbsp;</a></span>mouseDown()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::mouseDown </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Reimplemented from <a class="el" href="classComponent.html#a8504490979c2b4a6fdf02471b03a78f6">Component</a>.</p>

</div>
</div>
<a id="a16da21b6606246912135fd2e7cbc0bd1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a16da21b6606246912135fd2e7cbc0bd1">&sect;&nbsp;</a></span>mouseDrag()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::mouseDrag </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Reimplemented from <a class="el" href="classComponent.html#a32ebd26be9c9bc56dd942071227d799d">Component</a>.</p>

</div>
</div>
<a id="ac12c82883bc4d054f7eb5b793c6425e5"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac12c82883bc4d054f7eb5b793c6425e5">&sect;&nbsp;</a></span>keyPressed()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool AlertWindow::keyPressed </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classKeyPress.html">KeyPress</a> &amp;&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Reimplemented from <a class="el" href="classComponent.html#ab063a5c631854864da09106abec78a86">Component</a>.</p>

</div>
</div>
<a id="ad2e031c2dc35670cdb06739d1cc5d3b4"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad2e031c2dc35670cdb06739d1cc5d3b4">&sect;&nbsp;</a></span>buttonClicked()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::buttonClicked </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classButton.html">Button</a> *&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ac4c2559255171d141a30c8a04299c8c1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac4c2559255171d141a30c8a04299c8c1">&sect;&nbsp;</a></span>lookAndFeelChanged()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::lookAndFeelChanged </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Reimplemented from <a class="el" href="classComponent.html#a74af5830b815f6f985768a5673d01cf2">Component</a>.</p>

</div>
</div>
<a id="ac8263176929ac925f0e4aee768094c55"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac8263176929ac925f0e4aee768094c55">&sect;&nbsp;</a></span>userTriedToCloseWindow()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void AlertWindow::userTriedToCloseWindow </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Reimplemented from <a class="el" href="classComponent.html#a543e70d5a3ff75cc3facb476f4cdb131">Component</a>.</p>

</div>
</div>
<a id="ac746247dc73678fab3fbf4836c98e49e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac746247dc73678fab3fbf4836c98e49e">&sect;&nbsp;</a></span>getDesktopWindowStyleFlags()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">int AlertWindow::getDesktopWindowStyleFlags </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Reimplemented from <a class="el" href="classTopLevelWindow.html#a144b319d9e13dc2bb9a11262caf5d23f">TopLevelWindow</a>.</p>

</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="juce__AlertWindow_8h.html">juce_AlertWindow.h</a></li>
</ul>
</div><!-- contents -->
<hr class="footer"/>
<address class="footer"><small>All content &copy ROLI Ltd.</small></address><br/>
</body>
</html>