This file is indexed.

/usr/share/doc/libjuce/apiref/classSlider.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
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
<!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: Slider 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="classSlider-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">Slider Class Reference</div>  </div>
</div><!--header-->
<div class="contents">

<p>A slider control for changing a value.  
 <a href="classSlider.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 Slider:</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="classSlider.png" usemap="#Slider_map" alt=""/>
  <map id="Slider_map" name="Slider_map">
<area href="classComponent.html" title="The base class for all JUCE user-interface objects. " alt="Component" shape="rect" coords="0,56,126,80"/>
<area href="classSettableTooltipClient.html" title="An implementation of TooltipClient that stores the tooltip string and a method for changing it..." alt="SettableTooltipClient" shape="rect" coords="136,56,262,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,126,24"/>
<area href="classTooltipClient.html" title="Components that want to use pop-up tooltips should implement this interface. " alt="TooltipClient" shape="rect" coords="136,0,262,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">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider_1_1Listener.html">Listener</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">A class for receiving callbacks from a <a class="el" href="classSlider.html" title="A slider control for changing a value. ">Slider</a>.  <a href="classSlider_1_1Listener.html#details">More...</a><br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structSlider_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 slider drawing functionality.  <a href="structSlider_1_1LookAndFeelMethods.html#details">More...</a><br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structSlider_1_1RotaryParameters.html">RotaryParameters</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structSlider_1_1SliderLayout.html">SliderLayout</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">A struct defining the placement of the slider area and the text box area relative to the bounds of the whole <a class="el" href="classSlider.html" title="A slider control for changing a value. ">Slider</a> component.  <a href="structSlider_1_1SliderLayout.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:af1caee82552143dd9ff0fc9f0cdc0888"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888">SliderStyle</a> { <br />
&#160;&#160;<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a0fa5cefcd508c8f26ac9a458272844f9">LinearHorizontal</a>, 
<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a31f9134048fa90fbc4a72b69c6f553d5">LinearVertical</a>, 
<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a0092c810419dab80d4692363d9564c5d">LinearBar</a>, 
<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a8a942813d4d457e0344e725bd9faffc5">LinearBarVertical</a>, 
<br />
&#160;&#160;<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a2043125f6f74c8ceae38baf3fb514f18">Rotary</a>, 
<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a8c359e2cb456e39665bec067273df5fe">RotaryHorizontalDrag</a>, 
<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a46ac50fdae2ac4df9a2f3ad630589224">RotaryVerticalDrag</a>, 
<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a6d72c2ed67c43d22785fe271d3684075">RotaryHorizontalVerticalDrag</a>, 
<br />
&#160;&#160;<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888adcb7bc12a443e3c6cdf598ab3c5e2171">IncDecButtons</a>, 
<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a2ce77695813bb317c2d1863d2e71213b">TwoValueHorizontal</a>, 
<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a7477c3163edc14c8740d464e523e5ac8">TwoValueVertical</a>, 
<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888ad74f46a4848b6c1b3e3cc59da103f504">ThreeValueHorizontal</a>, 
<br />
&#160;&#160;<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888aa2c50364a9dd891a0e5e8022570c8e13">ThreeValueVertical</a>
<br />
 }<tr class="memdesc:af1caee82552143dd9ff0fc9f0cdc0888"><td class="mdescLeft">&#160;</td><td class="mdescRight">The types of slider available.  <a href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:af1caee82552143dd9ff0fc9f0cdc0888"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab6d7dff67151c029b9cb53fc40b4412f"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412f">TextEntryBoxPosition</a> { <br />
&#160;&#160;<a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412fad0badf0233a956017621f284e3e30fc2">NoTextBox</a>, 
<a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412fa66ab77e721cd147f54097b8bed8c6d35">TextBoxLeft</a>, 
<a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412fae50f30d7062c602b8f8b465346f79a3f">TextBoxRight</a>, 
<a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412fa382d14dbd222edf95fdf2836acc33fe9">TextBoxAbove</a>, 
<br />
&#160;&#160;<a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412fa9a20474ba0850feb957b8cea91c6a456">TextBoxBelow</a>
<br />
 }<tr class="memdesc:ab6d7dff67151c029b9cb53fc40b4412f"><td class="mdescLeft">&#160;</td><td class="mdescRight">The position of the slider's text-entry box.  <a href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412f">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:ab6d7dff67151c029b9cb53fc40b4412f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a42fd96ac0f5dca7e6942022c9a75cbde"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a42fd96ac0f5dca7e6942022c9a75cbde">DragMode</a> { <a class="el" href="classSlider.html#a42fd96ac0f5dca7e6942022c9a75cbdea4ac7f9448a8823e0537588615cf71271">notDragging</a>, 
<a class="el" href="classSlider.html#a42fd96ac0f5dca7e6942022c9a75cbdead37417ff73089a45f77534d75e1a1647">absoluteDrag</a>, 
<a class="el" href="classSlider.html#a42fd96ac0f5dca7e6942022c9a75cbdeab6cd67202d007534532a43f4eeeef153">velocityDrag</a>
 }<tr class="memdesc:a42fd96ac0f5dca7e6942022c9a75cbde"><td class="mdescLeft">&#160;</td><td class="mdescRight">Describes the type of mouse-dragging that is happening when a value is being changed.  <a href="classSlider.html#a42fd96ac0f5dca7e6942022c9a75cbde">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:a42fd96ac0f5dca7e6942022c9a75cbde"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ceaddd29269b6ec5a41f35bbb2ff74a"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a0ceaddd29269b6ec5a41f35bbb2ff74a">IncDecButtonMode</a> { <a class="el" href="classSlider.html#a0ceaddd29269b6ec5a41f35bbb2ff74aabc5b1657cd94c709c9086a463b1d7094">incDecButtonsNotDraggable</a>, 
<a class="el" href="classSlider.html#a0ceaddd29269b6ec5a41f35bbb2ff74aa4877104d807899962ee036571ca93f52">incDecButtonsDraggable_AutoDirection</a>, 
<a class="el" href="classSlider.html#a0ceaddd29269b6ec5a41f35bbb2ff74aa19d0b1bdc13c1c673e382045c023868b">incDecButtonsDraggable_Horizontal</a>, 
<a class="el" href="classSlider.html#a0ceaddd29269b6ec5a41f35bbb2ff74aae8e58e3ebb5b43e67e7de0071ba68ea5">incDecButtonsDraggable_Vertical</a>
 }<tr class="memdesc:a0ceaddd29269b6ec5a41f35bbb2ff74a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Used by <a class="el" href="classSlider.html#a188fa57db0d90f931529dc367e76b9f5" title="When the style is IncDecButtons, this lets you turn on a mode where the mouse can be dragged on the b...">setIncDecButtonsMode()</a>.  <a href="classSlider.html#a0ceaddd29269b6ec5a41f35bbb2ff74a">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:a0ceaddd29269b6ec5a41f35bbb2ff74a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1012002c53381ccc7c1fe7e604a75f44"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44">ColourIds</a> { <br />
&#160;&#160;<a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44a7479f5409d832c1fc97697450c00bb57">backgroundColourId</a> = 0x1001200, 
<a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44aee563b22e0033b0ed4f38e5296889835">thumbColourId</a> = 0x1001300, 
<a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44a1a7a91f54b703cf78f028edc0ed7786b">trackColourId</a> = 0x1001310, 
<a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44ad6ece790078ea74733dfa2a0d99905a8">rotarySliderFillColourId</a> = 0x1001311, 
<br />
&#160;&#160;<a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44abc955b1201e3f12967cb3ff472ba86d8">rotarySliderOutlineColourId</a> = 0x1001312, 
<a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44a6e5d3f5c91a314d510d9fc553c881e23">textBoxTextColourId</a> = 0x1001400, 
<a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44ac1eb5559c6e1c8ef115259ceabfd771b">textBoxBackgroundColourId</a> = 0x1001500, 
<a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44aa70515f09dbc0ca6a7250100b35e47f4">textBoxHighlightColourId</a> = 0x1001600, 
<br />
&#160;&#160;<a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44ae65fdadb3e607a23c074074d64a61ffc">textBoxOutlineColourId</a> = 0x1001700
<br />
 }<tr class="memdesc:a1012002c53381ccc7c1fe7e604a75f44"><td class="mdescLeft">&#160;</td><td class="mdescRight">A set of colour IDs to use to change the colour of various aspects of the slider.  <a href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:a1012002c53381ccc7c1fe7e604a75f44"><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:a535033fada8e25ef7291d2a52e6e437b"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a535033fada8e25ef7291d2a52e6e437b">Slider</a> ()</td></tr>
<tr class="memdesc:a535033fada8e25ef7291d2a52e6e437b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a slider.  <a href="#a535033fada8e25ef7291d2a52e6e437b">More...</a><br /></td></tr>
<tr class="separator:a535033fada8e25ef7291d2a52e6e437b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae2c907adc5de6f127138f3f869f683ae"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#ae2c907adc5de6f127138f3f869f683ae">Slider</a> (const <a class="el" href="classString.html">String</a> &amp;componentName)</td></tr>
<tr class="memdesc:ae2c907adc5de6f127138f3f869f683ae"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a slider.  <a href="#ae2c907adc5de6f127138f3f869f683ae">More...</a><br /></td></tr>
<tr class="separator:ae2c907adc5de6f127138f3f869f683ae"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad0d654d54372b23671bfc28f179c339d"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#ad0d654d54372b23671bfc28f179c339d">Slider</a> (<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888">SliderStyle</a> style, <a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412f">TextEntryBoxPosition</a> textBoxPosition)</td></tr>
<tr class="memdesc:ad0d654d54372b23671bfc28f179c339d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a slider with some explicit options.  <a href="#ad0d654d54372b23671bfc28f179c339d">More...</a><br /></td></tr>
<tr class="separator:ad0d654d54372b23671bfc28f179c339d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaca12abbe07a83f925d66339aa332028"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#aaca12abbe07a83f925d66339aa332028">~Slider</a> ()</td></tr>
<tr class="memdesc:aaca12abbe07a83f925d66339aa332028"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#aaca12abbe07a83f925d66339aa332028">More...</a><br /></td></tr>
<tr class="separator:aaca12abbe07a83f925d66339aa332028"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b6917dd3753c7552778977733f0b9ef"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a6b6917dd3753c7552778977733f0b9ef">setSliderStyle</a> (<a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888">SliderStyle</a> newStyle)</td></tr>
<tr class="memdesc:a6b6917dd3753c7552778977733f0b9ef"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the type of slider interface being used.  <a href="#a6b6917dd3753c7552778977733f0b9ef">More...</a><br /></td></tr>
<tr class="separator:a6b6917dd3753c7552778977733f0b9ef"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5fe7b4917ead20eb9c180de81c46b41f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888">SliderStyle</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a5fe7b4917ead20eb9c180de81c46b41f">getSliderStyle</a> () const noexcept</td></tr>
<tr class="memdesc:a5fe7b4917ead20eb9c180de81c46b41f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the slider's current style.  <a href="#a5fe7b4917ead20eb9c180de81c46b41f">More...</a><br /></td></tr>
<tr class="separator:a5fe7b4917ead20eb9c180de81c46b41f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a37d0dd9e0149ecb63c10d8bbb64d7188"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a37d0dd9e0149ecb63c10d8bbb64d7188">setRotaryParameters</a> (<a class="el" href="structSlider_1_1RotaryParameters.html">RotaryParameters</a> newParameters) noexcept</td></tr>
<tr class="memdesc:a37d0dd9e0149ecb63c10d8bbb64d7188"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the properties of a rotary slider.  <a href="#a37d0dd9e0149ecb63c10d8bbb64d7188">More...</a><br /></td></tr>
<tr class="separator:a37d0dd9e0149ecb63c10d8bbb64d7188"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a19ec1c1f7564884be94ecde8dc56f0ab"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a19ec1c1f7564884be94ecde8dc56f0ab">setRotaryParameters</a> (float startAngleRadians, float endAngleRadians, bool stopAtEnd) noexcept</td></tr>
<tr class="memdesc:a19ec1c1f7564884be94ecde8dc56f0ab"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the properties of a rotary slider.  <a href="#a19ec1c1f7564884be94ecde8dc56f0ab">More...</a><br /></td></tr>
<tr class="separator:a19ec1c1f7564884be94ecde8dc56f0ab"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac72f9e6603bb35fd94fdba5f8536827c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structSlider_1_1RotaryParameters.html">RotaryParameters</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#ac72f9e6603bb35fd94fdba5f8536827c">getRotaryParameters</a> () const noexcept</td></tr>
<tr class="memdesc:ac72f9e6603bb35fd94fdba5f8536827c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the properties of a rotary slider.  <a href="#ac72f9e6603bb35fd94fdba5f8536827c">More...</a><br /></td></tr>
<tr class="separator:ac72f9e6603bb35fd94fdba5f8536827c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4bdd8cdb79dcdb06b1e97a21ff2a6c4b"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a4bdd8cdb79dcdb06b1e97a21ff2a6c4b">setMouseDragSensitivity</a> (int distanceForFullScaleDrag)</td></tr>
<tr class="memdesc:a4bdd8cdb79dcdb06b1e97a21ff2a6c4b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the distance the mouse has to move to drag the slider across the full extent of its range.  <a href="#a4bdd8cdb79dcdb06b1e97a21ff2a6c4b">More...</a><br /></td></tr>
<tr class="separator:a4bdd8cdb79dcdb06b1e97a21ff2a6c4b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9bf33100be78b96ce03cd2c50f613cb8"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a9bf33100be78b96ce03cd2c50f613cb8">getMouseDragSensitivity</a> () const noexcept</td></tr>
<tr class="memdesc:a9bf33100be78b96ce03cd2c50f613cb8"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current sensitivity value set by <a class="el" href="classSlider.html#a4bdd8cdb79dcdb06b1e97a21ff2a6c4b" title="Sets the distance the mouse has to move to drag the slider across the full extent of its range...">setMouseDragSensitivity()</a>.  <a href="#a9bf33100be78b96ce03cd2c50f613cb8">More...</a><br /></td></tr>
<tr class="separator:a9bf33100be78b96ce03cd2c50f613cb8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59b616e79738d3adb83093dc532822d0"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a59b616e79738d3adb83093dc532822d0">setVelocityBasedMode</a> (bool isVelocityBased)</td></tr>
<tr class="memdesc:a59b616e79738d3adb83093dc532822d0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the way the mouse is used when dragging the slider.  <a href="#a59b616e79738d3adb83093dc532822d0">More...</a><br /></td></tr>
<tr class="separator:a59b616e79738d3adb83093dc532822d0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a807ee244e5a714a8db257e102ec5496d"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a807ee244e5a714a8db257e102ec5496d">getVelocityBasedMode</a> () const noexcept</td></tr>
<tr class="memdesc:a807ee244e5a714a8db257e102ec5496d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if velocity-based mode is active.  <a href="#a807ee244e5a714a8db257e102ec5496d">More...</a><br /></td></tr>
<tr class="separator:a807ee244e5a714a8db257e102ec5496d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:add6fe31d11f1c783aafeca6294b13858"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#add6fe31d11f1c783aafeca6294b13858">setVelocityModeParameters</a> (double sensitivity=1.0, int threshold=1, double offset=0.0, bool userCanPressKeyToSwapMode=true)</td></tr>
<tr class="memdesc:add6fe31d11f1c783aafeca6294b13858"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes aspects of the scaling used when in velocity-sensitive mode.  <a href="#add6fe31d11f1c783aafeca6294b13858">More...</a><br /></td></tr>
<tr class="separator:add6fe31d11f1c783aafeca6294b13858"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a547bab3deb827a47e12d90a47c957c10"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a547bab3deb827a47e12d90a47c957c10">getVelocitySensitivity</a> () const noexcept</td></tr>
<tr class="memdesc:a547bab3deb827a47e12d90a47c957c10"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the velocity sensitivity setting.  <a href="#a547bab3deb827a47e12d90a47c957c10">More...</a><br /></td></tr>
<tr class="separator:a547bab3deb827a47e12d90a47c957c10"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a52d5cbe2e3676060cdb58cea2b797f24"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a52d5cbe2e3676060cdb58cea2b797f24">getVelocityThreshold</a> () const noexcept</td></tr>
<tr class="memdesc:a52d5cbe2e3676060cdb58cea2b797f24"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the velocity threshold setting.  <a href="#a52d5cbe2e3676060cdb58cea2b797f24">More...</a><br /></td></tr>
<tr class="separator:a52d5cbe2e3676060cdb58cea2b797f24"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adc2df4c66975945ef9aca9eeb350ee86"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#adc2df4c66975945ef9aca9eeb350ee86">getVelocityOffset</a> () const noexcept</td></tr>
<tr class="memdesc:adc2df4c66975945ef9aca9eeb350ee86"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the velocity offset setting.  <a href="#adc2df4c66975945ef9aca9eeb350ee86">More...</a><br /></td></tr>
<tr class="separator:adc2df4c66975945ef9aca9eeb350ee86"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af15caa58f5f70c0f9b52aa5d07604580"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#af15caa58f5f70c0f9b52aa5d07604580">getVelocityModeIsSwappable</a> () const noexcept</td></tr>
<tr class="memdesc:af15caa58f5f70c0f9b52aa5d07604580"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the velocity user key setting.  <a href="#af15caa58f5f70c0f9b52aa5d07604580">More...</a><br /></td></tr>
<tr class="separator:af15caa58f5f70c0f9b52aa5d07604580"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aba8fe3610e7198bd4c1f2804736bfbf2"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#aba8fe3610e7198bd4c1f2804736bfbf2">setSkewFactor</a> (double factor, bool symmetricSkew=false)</td></tr>
<tr class="memdesc:aba8fe3610e7198bd4c1f2804736bfbf2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets up a skew factor to alter the way values are distributed.  <a href="#aba8fe3610e7198bd4c1f2804736bfbf2">More...</a><br /></td></tr>
<tr class="separator:aba8fe3610e7198bd4c1f2804736bfbf2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2d948c662c1f636810d3125d8b3f0d47"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a2d948c662c1f636810d3125d8b3f0d47">setSkewFactorFromMidPoint</a> (double sliderValueToShowAtMidPoint)</td></tr>
<tr class="memdesc:a2d948c662c1f636810d3125d8b3f0d47"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets up a skew factor to alter the way values are distributed.  <a href="#a2d948c662c1f636810d3125d8b3f0d47">More...</a><br /></td></tr>
<tr class="separator:a2d948c662c1f636810d3125d8b3f0d47"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a803021cfc12e4ff54e9b598dabdd8761"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a803021cfc12e4ff54e9b598dabdd8761">getSkewFactor</a> () const noexcept</td></tr>
<tr class="memdesc:a803021cfc12e4ff54e9b598dabdd8761"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current skew factor.  <a href="#a803021cfc12e4ff54e9b598dabdd8761">More...</a><br /></td></tr>
<tr class="separator:a803021cfc12e4ff54e9b598dabdd8761"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a015f98d91fd3f30d74d7f3cce2e9996c"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a015f98d91fd3f30d74d7f3cce2e9996c">isSymmetricSkew</a> () const noexcept</td></tr>
<tr class="memdesc:a015f98d91fd3f30d74d7f3cce2e9996c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the whether the skew is symmetric from the midpoint to both sides.  <a href="#a015f98d91fd3f30d74d7f3cce2e9996c">More...</a><br /></td></tr>
<tr class="separator:a015f98d91fd3f30d74d7f3cce2e9996c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a188fa57db0d90f931529dc367e76b9f5"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a188fa57db0d90f931529dc367e76b9f5">setIncDecButtonsMode</a> (<a class="el" href="classSlider.html#a0ceaddd29269b6ec5a41f35bbb2ff74a">IncDecButtonMode</a> mode)</td></tr>
<tr class="memdesc:a188fa57db0d90f931529dc367e76b9f5"><td class="mdescLeft">&#160;</td><td class="mdescRight">When the style is IncDecButtons, this lets you turn on a mode where the mouse can be dragged on the buttons to drag the values.  <a href="#a188fa57db0d90f931529dc367e76b9f5">More...</a><br /></td></tr>
<tr class="separator:a188fa57db0d90f931529dc367e76b9f5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5bc748a21e72fe14153bc9fe5ac03e77"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a5bc748a21e72fe14153bc9fe5ac03e77">setTextBoxStyle</a> (<a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412f">TextEntryBoxPosition</a> newPosition, bool isReadOnly, int textEntryBoxWidth, int textEntryBoxHeight)</td></tr>
<tr class="memdesc:a5bc748a21e72fe14153bc9fe5ac03e77"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the location and properties of the text-entry box.  <a href="#a5bc748a21e72fe14153bc9fe5ac03e77">More...</a><br /></td></tr>
<tr class="separator:a5bc748a21e72fe14153bc9fe5ac03e77"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6910e59cbc2aa25a8499a9c7e6593bb1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412f">TextEntryBoxPosition</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a6910e59cbc2aa25a8499a9c7e6593bb1">getTextBoxPosition</a> () const noexcept</td></tr>
<tr class="memdesc:a6910e59cbc2aa25a8499a9c7e6593bb1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the status of the text-box.  <a href="#a6910e59cbc2aa25a8499a9c7e6593bb1">More...</a><br /></td></tr>
<tr class="separator:a6910e59cbc2aa25a8499a9c7e6593bb1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaa9719f67d8c819957a5262f2430c4a5"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#aaa9719f67d8c819957a5262f2430c4a5">getTextBoxWidth</a> () const noexcept</td></tr>
<tr class="memdesc:aaa9719f67d8c819957a5262f2430c4a5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the width used for the text-box.  <a href="#aaa9719f67d8c819957a5262f2430c4a5">More...</a><br /></td></tr>
<tr class="separator:aaa9719f67d8c819957a5262f2430c4a5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8258ee0e1222f3e02a696243a3468578"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a8258ee0e1222f3e02a696243a3468578">getTextBoxHeight</a> () const noexcept</td></tr>
<tr class="memdesc:a8258ee0e1222f3e02a696243a3468578"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the height used for the text-box.  <a href="#a8258ee0e1222f3e02a696243a3468578">More...</a><br /></td></tr>
<tr class="separator:a8258ee0e1222f3e02a696243a3468578"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59e3fd9bc86e488070c12889747e7bbe"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a59e3fd9bc86e488070c12889747e7bbe">setTextBoxIsEditable</a> (bool shouldBeEditable)</td></tr>
<tr class="memdesc:a59e3fd9bc86e488070c12889747e7bbe"><td class="mdescLeft">&#160;</td><td class="mdescRight">Makes the text-box editable.  <a href="#a59e3fd9bc86e488070c12889747e7bbe">More...</a><br /></td></tr>
<tr class="separator:a59e3fd9bc86e488070c12889747e7bbe"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd1590a901ef4a8240c8aae05c52e824"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#acd1590a901ef4a8240c8aae05c52e824">isTextBoxEditable</a> () const noexcept</td></tr>
<tr class="memdesc:acd1590a901ef4a8240c8aae05c52e824"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if the text-box is read-only.  <a href="#acd1590a901ef4a8240c8aae05c52e824">More...</a><br /></td></tr>
<tr class="separator:acd1590a901ef4a8240c8aae05c52e824"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3a8e500dc05a6afc52fc61f9001e7a1f"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a3a8e500dc05a6afc52fc61f9001e7a1f">showTextBox</a> ()</td></tr>
<tr class="memdesc:a3a8e500dc05a6afc52fc61f9001e7a1f"><td class="mdescLeft">&#160;</td><td class="mdescRight">If the text-box is editable, this will give it the focus so that the user can type directly into it.  <a href="#a3a8e500dc05a6afc52fc61f9001e7a1f">More...</a><br /></td></tr>
<tr class="separator:a3a8e500dc05a6afc52fc61f9001e7a1f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0780c7da80f4d487703e8247e92bea21"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a0780c7da80f4d487703e8247e92bea21">hideTextBox</a> (bool discardCurrentEditorContents)</td></tr>
<tr class="memdesc:a0780c7da80f4d487703e8247e92bea21"><td class="mdescLeft">&#160;</td><td class="mdescRight">If the text-box currently has focus and is being edited, this resets it and takes keyboard focus away from it.  <a href="#a0780c7da80f4d487703e8247e92bea21">More...</a><br /></td></tr>
<tr class="separator:a0780c7da80f4d487703e8247e92bea21"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a430a5c4e56b39dd622f5800f787e0822"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a430a5c4e56b39dd622f5800f787e0822">setValue</a> (double newValue, <a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9">NotificationType</a> notification=<a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9aa70e4499b93d1738b0ee53de03f7a9c4">sendNotificationAsync</a>)</td></tr>
<tr class="memdesc:a430a5c4e56b39dd622f5800f787e0822"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the slider's current value.  <a href="#a430a5c4e56b39dd622f5800f787e0822">More...</a><br /></td></tr>
<tr class="separator:a430a5c4e56b39dd622f5800f787e0822"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a288c6f5c7a76100a1e7526e002e10eb5"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a288c6f5c7a76100a1e7526e002e10eb5">getValue</a> () const</td></tr>
<tr class="memdesc:a288c6f5c7a76100a1e7526e002e10eb5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the slider's current value.  <a href="#a288c6f5c7a76100a1e7526e002e10eb5">More...</a><br /></td></tr>
<tr class="separator:a288c6f5c7a76100a1e7526e002e10eb5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a40ceae44fd94f912fc10d8a5803b9b01"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classValue.html">Value</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a40ceae44fd94f912fc10d8a5803b9b01">getValueObject</a> () noexcept</td></tr>
<tr class="memdesc:a40ceae44fd94f912fc10d8a5803b9b01"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a> object that represents the slider's current position.  <a href="#a40ceae44fd94f912fc10d8a5803b9b01">More...</a><br /></td></tr>
<tr class="separator:a40ceae44fd94f912fc10d8a5803b9b01"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9fbc23e67deb4a18d172c357a7cff14c"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a9fbc23e67deb4a18d172c357a7cff14c">setRange</a> (double newMinimum, double newMaximum, double newInterval=0)</td></tr>
<tr class="memdesc:a9fbc23e67deb4a18d172c357a7cff14c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the limits that the slider's value can take.  <a href="#a9fbc23e67deb4a18d172c357a7cff14c">More...</a><br /></td></tr>
<tr class="separator:a9fbc23e67deb4a18d172c357a7cff14c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9eb087c868550c699da26ee3df9ecd68"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a9eb087c868550c699da26ee3df9ecd68">getMaximum</a> () const noexcept</td></tr>
<tr class="memdesc:a9eb087c868550c699da26ee3df9ecd68"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current maximum value.  <a href="#a9eb087c868550c699da26ee3df9ecd68">More...</a><br /></td></tr>
<tr class="separator:a9eb087c868550c699da26ee3df9ecd68"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acb7c7f0ca87e34da986ac7f9e732bab1"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#acb7c7f0ca87e34da986ac7f9e732bab1">getMinimum</a> () const noexcept</td></tr>
<tr class="memdesc:acb7c7f0ca87e34da986ac7f9e732bab1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current minimum value.  <a href="#acb7c7f0ca87e34da986ac7f9e732bab1">More...</a><br /></td></tr>
<tr class="separator:acb7c7f0ca87e34da986ac7f9e732bab1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b666bae0c68ff8af0bdb2381b97e89e"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a8b666bae0c68ff8af0bdb2381b97e89e">getInterval</a> () const noexcept</td></tr>
<tr class="memdesc:a8b666bae0c68ff8af0bdb2381b97e89e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current step-size for values.  <a href="#a8b666bae0c68ff8af0bdb2381b97e89e">More...</a><br /></td></tr>
<tr class="separator:a8b666bae0c68ff8af0bdb2381b97e89e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2f8d0736f0fd0ebf95eeda2e1bd155bf"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a2f8d0736f0fd0ebf95eeda2e1bd155bf">getMinValue</a> () const</td></tr>
<tr class="memdesc:a2f8d0736f0fd0ebf95eeda2e1bd155bf"><td class="mdescLeft">&#160;</td><td class="mdescRight">For a slider with two or three thumbs, this returns the lower of its values.  <a href="#a2f8d0736f0fd0ebf95eeda2e1bd155bf">More...</a><br /></td></tr>
<tr class="separator:a2f8d0736f0fd0ebf95eeda2e1bd155bf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adeedf0e9e8a3402e7003bd637f04e167"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classValue.html">Value</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#adeedf0e9e8a3402e7003bd637f04e167">getMinValueObject</a> () noexcept</td></tr>
<tr class="memdesc:adeedf0e9e8a3402e7003bd637f04e167"><td class="mdescLeft">&#160;</td><td class="mdescRight">For a slider with two or three thumbs, this returns the lower of its values.  <a href="#adeedf0e9e8a3402e7003bd637f04e167">More...</a><br /></td></tr>
<tr class="separator:adeedf0e9e8a3402e7003bd637f04e167"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a337ba6b2c740751f5065a190e83dbd87"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a337ba6b2c740751f5065a190e83dbd87">setMinValue</a> (double newValue, <a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9">NotificationType</a> notification=<a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9aa70e4499b93d1738b0ee53de03f7a9c4">sendNotificationAsync</a>, bool allowNudgingOfOtherValues=false)</td></tr>
<tr class="memdesc:a337ba6b2c740751f5065a190e83dbd87"><td class="mdescLeft">&#160;</td><td class="mdescRight">For a slider with two or three thumbs, this sets the lower of its values.  <a href="#a337ba6b2c740751f5065a190e83dbd87">More...</a><br /></td></tr>
<tr class="separator:a337ba6b2c740751f5065a190e83dbd87"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa10981391fe45fec36ebd7d7670a31cf"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#aa10981391fe45fec36ebd7d7670a31cf">getMaxValue</a> () const</td></tr>
<tr class="memdesc:aa10981391fe45fec36ebd7d7670a31cf"><td class="mdescLeft">&#160;</td><td class="mdescRight">For a slider with two or three thumbs, this returns the higher of its values.  <a href="#aa10981391fe45fec36ebd7d7670a31cf">More...</a><br /></td></tr>
<tr class="separator:aa10981391fe45fec36ebd7d7670a31cf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acb8fa9ed28c5760bb095b74086a31eac"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classValue.html">Value</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#acb8fa9ed28c5760bb095b74086a31eac">getMaxValueObject</a> () noexcept</td></tr>
<tr class="memdesc:acb8fa9ed28c5760bb095b74086a31eac"><td class="mdescLeft">&#160;</td><td class="mdescRight">For a slider with two or three thumbs, this returns the higher of its values.  <a href="#acb8fa9ed28c5760bb095b74086a31eac">More...</a><br /></td></tr>
<tr class="separator:acb8fa9ed28c5760bb095b74086a31eac"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a94c2b6bd752081eb344e390a39a31363"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a94c2b6bd752081eb344e390a39a31363">setMaxValue</a> (double newValue, <a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9">NotificationType</a> notification=<a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9aa70e4499b93d1738b0ee53de03f7a9c4">sendNotificationAsync</a>, bool allowNudgingOfOtherValues=false)</td></tr>
<tr class="memdesc:a94c2b6bd752081eb344e390a39a31363"><td class="mdescLeft">&#160;</td><td class="mdescRight">For a slider with two or three thumbs, this sets the lower of its values.  <a href="#a94c2b6bd752081eb344e390a39a31363">More...</a><br /></td></tr>
<tr class="separator:a94c2b6bd752081eb344e390a39a31363"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:add6aae8aca26cf846796e6bf67363ac2"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#add6aae8aca26cf846796e6bf67363ac2">setMinAndMaxValues</a> (double newMinValue, double newMaxValue, <a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9">NotificationType</a> notification=<a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9aa70e4499b93d1738b0ee53de03f7a9c4">sendNotificationAsync</a>)</td></tr>
<tr class="memdesc:add6aae8aca26cf846796e6bf67363ac2"><td class="mdescLeft">&#160;</td><td class="mdescRight">For a slider with two or three thumbs, this sets the minimum and maximum thumb positions.  <a href="#add6aae8aca26cf846796e6bf67363ac2">More...</a><br /></td></tr>
<tr class="separator:add6aae8aca26cf846796e6bf67363ac2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a261f4886ed27ab0f94b1cfb6e9f44011"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a261f4886ed27ab0f94b1cfb6e9f44011">addListener</a> (<a class="el" href="classSlider_1_1Listener.html">Listener</a> *listener)</td></tr>
<tr class="memdesc:a261f4886ed27ab0f94b1cfb6e9f44011"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a listener to be called when this slider's value changes.  <a href="#a261f4886ed27ab0f94b1cfb6e9f44011">More...</a><br /></td></tr>
<tr class="separator:a261f4886ed27ab0f94b1cfb6e9f44011"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a846b68f0fe1624563399e540e38b4609"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a846b68f0fe1624563399e540e38b4609">removeListener</a> (<a class="el" href="classSlider_1_1Listener.html">Listener</a> *listener)</td></tr>
<tr class="memdesc:a846b68f0fe1624563399e540e38b4609"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a previously-registered listener.  <a href="#a846b68f0fe1624563399e540e38b4609">More...</a><br /></td></tr>
<tr class="separator:a846b68f0fe1624563399e540e38b4609"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac22497e650b01ac15fcc992a2494e272"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#ac22497e650b01ac15fcc992a2494e272">setDoubleClickReturnValue</a> (bool shouldDoubleClickBeEnabled, double valueToSetOnDoubleClick)</td></tr>
<tr class="memdesc:ac22497e650b01ac15fcc992a2494e272"><td class="mdescLeft">&#160;</td><td class="mdescRight">This lets you choose whether double-clicking moves the slider to a given position.  <a href="#ac22497e650b01ac15fcc992a2494e272">More...</a><br /></td></tr>
<tr class="separator:ac22497e650b01ac15fcc992a2494e272"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:accd2423167e9b726cb006848b96ab351"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#accd2423167e9b726cb006848b96ab351">getDoubleClickReturnValue</a> () const noexcept</td></tr>
<tr class="memdesc:accd2423167e9b726cb006848b96ab351"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the values last set by <a class="el" href="classSlider.html#ac22497e650b01ac15fcc992a2494e272" title="This lets you choose whether double-clicking moves the slider to a given position. ">setDoubleClickReturnValue()</a> method.  <a href="#accd2423167e9b726cb006848b96ab351">More...</a><br /></td></tr>
<tr class="separator:accd2423167e9b726cb006848b96ab351"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad603b9b073cd1a8df35de2884c22f630"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#ad603b9b073cd1a8df35de2884c22f630">isDoubleClickReturnEnabled</a> () const noexcept</td></tr>
<tr class="memdesc:ad603b9b073cd1a8df35de2884c22f630"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if double-clicking to reset to a default value is enabled.  <a href="#ad603b9b073cd1a8df35de2884c22f630">More...</a><br /></td></tr>
<tr class="separator:ad603b9b073cd1a8df35de2884c22f630"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab41e52ab8941619028a8d57103975029"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#ab41e52ab8941619028a8d57103975029">setChangeNotificationOnlyOnRelease</a> (bool onlyNotifyOnRelease)</td></tr>
<tr class="memdesc:ab41e52ab8941619028a8d57103975029"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tells the slider whether to keep sending change messages while the user is dragging the slider.  <a href="#ab41e52ab8941619028a8d57103975029">More...</a><br /></td></tr>
<tr class="separator:ab41e52ab8941619028a8d57103975029"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acf58b7346a74cfc0a8c809567836df61"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#acf58b7346a74cfc0a8c809567836df61">setSliderSnapsToMousePosition</a> (bool shouldSnapToMouse)</td></tr>
<tr class="memdesc:acf58b7346a74cfc0a8c809567836df61"><td class="mdescLeft">&#160;</td><td class="mdescRight">This lets you change whether the slider thumb jumps to the mouse position when you click.  <a href="#acf58b7346a74cfc0a8c809567836df61">More...</a><br /></td></tr>
<tr class="separator:acf58b7346a74cfc0a8c809567836df61"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8548287936ea455e23036222367df4aa"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a8548287936ea455e23036222367df4aa">getSliderSnapsToMousePosition</a> () const noexcept</td></tr>
<tr class="memdesc:a8548287936ea455e23036222367df4aa"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if <a class="el" href="classSlider.html#acf58b7346a74cfc0a8c809567836df61" title="This lets you change whether the slider thumb jumps to the mouse position when you click...">setSliderSnapsToMousePosition()</a> has been enabled.  <a href="#a8548287936ea455e23036222367df4aa">More...</a><br /></td></tr>
<tr class="separator:a8548287936ea455e23036222367df4aa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0d27965d2fde911bd2a5032402be843f"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a0d27965d2fde911bd2a5032402be843f">setPopupDisplayEnabled</a> (bool <a class="el" href="classComponent.html#a0e12726e34fdd284f036922597914bb3">isEnabled</a>, <a class="el" href="classComponent.html">Component</a> *parentComponentToUse)</td></tr>
<tr class="memdesc:a0d27965d2fde911bd2a5032402be843f"><td class="mdescLeft">&#160;</td><td class="mdescRight">If enabled, this gives the slider a pop-up bubble which appears while the slider is being dragged.  <a href="#a0d27965d2fde911bd2a5032402be843f">More...</a><br /></td></tr>
<tr class="separator:a0d27965d2fde911bd2a5032402be843f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b264e454184d57c69e1ab986eb15d7e"><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="classSlider.html#a1b264e454184d57c69e1ab986eb15d7e">getCurrentPopupDisplay</a> () const noexcept</td></tr>
<tr class="memdesc:a1b264e454184d57c69e1ab986eb15d7e"><td class="mdescLeft">&#160;</td><td class="mdescRight">If a popup display is enabled and is currently visible, this returns the component that is being shown, or nullptr if none is currently in use.  <a href="#a1b264e454184d57c69e1ab986eb15d7e">More...</a><br /></td></tr>
<tr class="separator:a1b264e454184d57c69e1ab986eb15d7e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5dc957ba7c141dab961f0b3d46d46bb7"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a5dc957ba7c141dab961f0b3d46d46bb7">setPopupMenuEnabled</a> (bool menuEnabled)</td></tr>
<tr class="memdesc:a5dc957ba7c141dab961f0b3d46d46bb7"><td class="mdescLeft">&#160;</td><td class="mdescRight">If this is set to true, then right-clicking on the slider will pop-up a menu to let the user change the way it works.  <a href="#a5dc957ba7c141dab961f0b3d46d46bb7">More...</a><br /></td></tr>
<tr class="separator:a5dc957ba7c141dab961f0b3d46d46bb7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0061698886ebcc9e2fc9233398383a3c"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a0061698886ebcc9e2fc9233398383a3c">setScrollWheelEnabled</a> (bool enabled)</td></tr>
<tr class="memdesc:a0061698886ebcc9e2fc9233398383a3c"><td class="mdescLeft">&#160;</td><td class="mdescRight">This can be used to stop the mouse scroll-wheel from moving the slider.  <a href="#a0061698886ebcc9e2fc9233398383a3c">More...</a><br /></td></tr>
<tr class="separator:a0061698886ebcc9e2fc9233398383a3c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aed1a4658f31db573dd8073afb603cef9"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#aed1a4658f31db573dd8073afb603cef9">getThumbBeingDragged</a> () const noexcept</td></tr>
<tr class="memdesc:aed1a4658f31db573dd8073afb603cef9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a number to indicate which thumb is currently being dragged by the mouse.  <a href="#aed1a4658f31db573dd8073afb603cef9">More...</a><br /></td></tr>
<tr class="separator:aed1a4658f31db573dd8073afb603cef9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3f63934b274f0f49bcd38530ca3de80b"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a3f63934b274f0f49bcd38530ca3de80b">startedDragging</a> ()</td></tr>
<tr class="memdesc:a3f63934b274f0f49bcd38530ca3de80b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Callback to indicate that the user is about to start dragging the slider.  <a href="#a3f63934b274f0f49bcd38530ca3de80b">More...</a><br /></td></tr>
<tr class="separator:a3f63934b274f0f49bcd38530ca3de80b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ada61c1382dfcc8a956029f883ad5f83e"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#ada61c1382dfcc8a956029f883ad5f83e">stoppedDragging</a> ()</td></tr>
<tr class="memdesc:ada61c1382dfcc8a956029f883ad5f83e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Callback to indicate that the user has just stopped dragging the slider.  <a href="#ada61c1382dfcc8a956029f883ad5f83e">More...</a><br /></td></tr>
<tr class="separator:ada61c1382dfcc8a956029f883ad5f83e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5988f8e1b98cb0b28330522117d46c1c"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a5988f8e1b98cb0b28330522117d46c1c">valueChanged</a> ()</td></tr>
<tr class="memdesc:a5988f8e1b98cb0b28330522117d46c1c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Callback to indicate that the user has just moved the slider.  <a href="#a5988f8e1b98cb0b28330522117d46c1c">More...</a><br /></td></tr>
<tr class="separator:a5988f8e1b98cb0b28330522117d46c1c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a532774d3294a058784f7d4291b33b720"><td class="memItemLeft" align="right" valign="top">virtual double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a532774d3294a058784f7d4291b33b720">getValueFromText</a> (const <a class="el" href="classString.html">String</a> &amp;text)</td></tr>
<tr class="memdesc:a532774d3294a058784f7d4291b33b720"><td class="mdescLeft">&#160;</td><td class="mdescRight">Subclasses can override this to convert a text string to a value.  <a href="#a532774d3294a058784f7d4291b33b720">More...</a><br /></td></tr>
<tr class="separator:a532774d3294a058784f7d4291b33b720"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5a1693166d0815f812202b1a3a6eb202"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classString.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a5a1693166d0815f812202b1a3a6eb202">getTextFromValue</a> (double value)</td></tr>
<tr class="memdesc:a5a1693166d0815f812202b1a3a6eb202"><td class="mdescLeft">&#160;</td><td class="mdescRight">Turns the slider's current value into a text string.  <a href="#a5a1693166d0815f812202b1a3a6eb202">More...</a><br /></td></tr>
<tr class="separator:a5a1693166d0815f812202b1a3a6eb202"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac416a101b5d9a504f61e2f50dc593f61"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#ac416a101b5d9a504f61e2f50dc593f61">setTextValueSuffix</a> (const <a class="el" href="classString.html">String</a> &amp;suffix)</td></tr>
<tr class="memdesc:ac416a101b5d9a504f61e2f50dc593f61"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a suffix to append to the end of the numeric value when it's displayed as a string.  <a href="#ac416a101b5d9a504f61e2f50dc593f61">More...</a><br /></td></tr>
<tr class="separator:ac416a101b5d9a504f61e2f50dc593f61"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af57fa88f35634ff4f5d71d23b32122cb"><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="classSlider.html#af57fa88f35634ff4f5d71d23b32122cb">getTextValueSuffix</a> () const</td></tr>
<tr class="memdesc:af57fa88f35634ff4f5d71d23b32122cb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the suffix that was set by <a class="el" href="classSlider.html#ac416a101b5d9a504f61e2f50dc593f61" title="Sets a suffix to append to the end of the numeric value when it&#39;s displayed as a string. ">setTextValueSuffix()</a>.  <a href="#af57fa88f35634ff4f5d71d23b32122cb">More...</a><br /></td></tr>
<tr class="separator:af57fa88f35634ff4f5d71d23b32122cb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa5bb046cc2276f034f8ad8a67054057b"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#aa5bb046cc2276f034f8ad8a67054057b">getNumDecimalPlacesToDisplay</a> () const noexcept</td></tr>
<tr class="memdesc:aa5bb046cc2276f034f8ad8a67054057b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the best number of decimal places to use when displaying this slider's value.  <a href="#aa5bb046cc2276f034f8ad8a67054057b">More...</a><br /></td></tr>
<tr class="separator:aa5bb046cc2276f034f8ad8a67054057b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6762e2206ad7e41cb8d6189b244d91f5"><td class="memItemLeft" align="right" valign="top">virtual double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a6762e2206ad7e41cb8d6189b244d91f5">proportionOfLengthToValue</a> (double proportion)</td></tr>
<tr class="memdesc:a6762e2206ad7e41cb8d6189b244d91f5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Allows a user-defined mapping of distance along the slider to its value.  <a href="#a6762e2206ad7e41cb8d6189b244d91f5">More...</a><br /></td></tr>
<tr class="separator:a6762e2206ad7e41cb8d6189b244d91f5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0549ec352b8dca4ca4ba1afa43263370"><td class="memItemLeft" align="right" valign="top">virtual double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a0549ec352b8dca4ca4ba1afa43263370">valueToProportionOfLength</a> (double value)</td></tr>
<tr class="memdesc:a0549ec352b8dca4ca4ba1afa43263370"><td class="mdescLeft">&#160;</td><td class="mdescRight">Allows a user-defined mapping of value to the position of the slider along its length.  <a href="#a0549ec352b8dca4ca4ba1afa43263370">More...</a><br /></td></tr>
<tr class="separator:a0549ec352b8dca4ca4ba1afa43263370"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac04ff1409609c671c120796ecd2e2b22"><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#ac04ff1409609c671c120796ecd2e2b22">getPositionOfValue</a> (double value) const</td></tr>
<tr class="memdesc:ac04ff1409609c671c120796ecd2e2b22"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the X or Y coordinate of a value along the slider's length.  <a href="#ac04ff1409609c671c120796ecd2e2b22">More...</a><br /></td></tr>
<tr class="separator:ac04ff1409609c671c120796ecd2e2b22"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa8ce89d390ea3de9ab58aae59db1d03b"><td class="memItemLeft" align="right" valign="top">virtual double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#aa8ce89d390ea3de9ab58aae59db1d03b">snapValue</a> (double attemptedValue, <a class="el" href="classSlider.html#a42fd96ac0f5dca7e6942022c9a75cbde">DragMode</a> dragMode)</td></tr>
<tr class="memdesc:aa8ce89d390ea3de9ab58aae59db1d03b"><td class="mdescLeft">&#160;</td><td class="mdescRight">This can be overridden to allow the slider to snap to user-definable values.  <a href="#aa8ce89d390ea3de9ab58aae59db1d03b">More...</a><br /></td></tr>
<tr class="separator:aa8ce89d390ea3de9ab58aae59db1d03b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acec04f6f7cca814b66c23ae5cf4a7b6a"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#acec04f6f7cca814b66c23ae5cf4a7b6a">updateText</a> ()</td></tr>
<tr class="memdesc:acec04f6f7cca814b66c23ae5cf4a7b6a"><td class="mdescLeft">&#160;</td><td class="mdescRight">This can be called to force the text box to update its contents.  <a href="#acec04f6f7cca814b66c23ae5cf4a7b6a">More...</a><br /></td></tr>
<tr class="separator:acec04f6f7cca814b66c23ae5cf4a7b6a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a72da5afa45bfdcc642a53eb04c993f1e"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a72da5afa45bfdcc642a53eb04c993f1e">isHorizontal</a> () const noexcept</td></tr>
<tr class="memdesc:a72da5afa45bfdcc642a53eb04c993f1e"><td class="mdescLeft">&#160;</td><td class="mdescRight">True if the slider moves horizontally.  <a href="#a72da5afa45bfdcc642a53eb04c993f1e">More...</a><br /></td></tr>
<tr class="separator:a72da5afa45bfdcc642a53eb04c993f1e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a105d005078031e28d8e23d52d194bcde"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a105d005078031e28d8e23d52d194bcde">isVertical</a> () const noexcept</td></tr>
<tr class="memdesc:a105d005078031e28d8e23d52d194bcde"><td class="mdescLeft">&#160;</td><td class="mdescRight">True if the slider moves vertically.  <a href="#a105d005078031e28d8e23d52d194bcde">More...</a><br /></td></tr>
<tr class="separator:a105d005078031e28d8e23d52d194bcde"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adc48bff087378f8be0e6164e449d655e"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#adc48bff087378f8be0e6164e449d655e">isRotary</a> () const noexcept</td></tr>
<tr class="memdesc:adc48bff087378f8be0e6164e449d655e"><td class="mdescLeft">&#160;</td><td class="mdescRight">True if the slider is in a rotary mode.  <a href="#adc48bff087378f8be0e6164e449d655e">More...</a><br /></td></tr>
<tr class="separator:adc48bff087378f8be0e6164e449d655e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a61db1cd48644cbe6be544924e5d06f60"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a61db1cd48644cbe6be544924e5d06f60">isBar</a> () const noexcept</td></tr>
<tr class="memdesc:a61db1cd48644cbe6be544924e5d06f60"><td class="mdescLeft">&#160;</td><td class="mdescRight">True if the slider is in a linear bar mode.  <a href="#a61db1cd48644cbe6be544924e5d06f60">More...</a><br /></td></tr>
<tr class="separator:a61db1cd48644cbe6be544924e5d06f60"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a443749317634c0080d522d090ae991a5"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a443749317634c0080d522d090ae991a5">paint</a> (<a class="el" href="classGraphics.html">Graphics</a> &amp;) override</td></tr>
<tr class="separator:a443749317634c0080d522d090ae991a5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1aaa7af33f6f90a40fbf70a2bbdebc6d"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a1aaa7af33f6f90a40fbf70a2bbdebc6d">resized</a> () override</td></tr>
<tr class="separator:a1aaa7af33f6f90a40fbf70a2bbdebc6d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a66f2c67d6de570fa0d123ae2b9b394f7"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a66f2c67d6de570fa0d123ae2b9b394f7">mouseDown</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;) override</td></tr>
<tr class="separator:a66f2c67d6de570fa0d123ae2b9b394f7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a064b6ee8d376cbce87b940b9d17c2254"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a064b6ee8d376cbce87b940b9d17c2254">mouseUp</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;) override</td></tr>
<tr class="separator:a064b6ee8d376cbce87b940b9d17c2254"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e117b6ba93f9a1954c52be4b4dfc873"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a6e117b6ba93f9a1954c52be4b4dfc873">mouseDrag</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;) override</td></tr>
<tr class="separator:a6e117b6ba93f9a1954c52be4b4dfc873"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a51130e5125d8483fc45fe32c958bf0cc"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a51130e5125d8483fc45fe32c958bf0cc">mouseDoubleClick</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;) override</td></tr>
<tr class="separator:a51130e5125d8483fc45fe32c958bf0cc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b7ee511b24ee74065f92820423f0c46"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a9b7ee511b24ee74065f92820423f0c46">mouseWheelMove</a> (const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;, const <a class="el" href="structMouseWheelDetails.html">MouseWheelDetails</a> &amp;) override</td></tr>
<tr class="separator:a9b7ee511b24ee74065f92820423f0c46"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a50bfc1f4bc764cd7db7d25abed9e0198"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a50bfc1f4bc764cd7db7d25abed9e0198">modifierKeysChanged</a> (const <a class="el" href="classModifierKeys.html">ModifierKeys</a> &amp;) override</td></tr>
<tr class="separator:a50bfc1f4bc764cd7db7d25abed9e0198"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a70afdb08e7efc4a15e9a6969fae77a63"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a70afdb08e7efc4a15e9a6969fae77a63">lookAndFeelChanged</a> () override</td></tr>
<tr class="separator:a70afdb08e7efc4a15e9a6969fae77a63"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5d5dddfd7d8f254d9097724493878cc1"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a5d5dddfd7d8f254d9097724493878cc1">enablementChanged</a> () override</td></tr>
<tr class="separator:a5d5dddfd7d8f254d9097724493878cc1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a23002c35f14b921ec01069536c0aaef3"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a23002c35f14b921ec01069536c0aaef3">focusOfChildComponentChanged</a> (<a class="el" href="classComponent.html#a7fd775ea6b1190d5d694fdffa539dfac">FocusChangeType</a>) override</td></tr>
<tr class="separator:a23002c35f14b921ec01069536c0aaef3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a35de5e477dd21199f8ed3eb9c0b05f72"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSlider.html#a35de5e477dd21199f8ed3eb9c0b05f72">colourChanged</a> () override</td></tr>
<tr class="separator:a35de5e477dd21199f8ed3eb9c0b05f72"><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:a3859d7aacb18fd51b2fc3e0c51680d1c 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#a3859d7aacb18fd51b2fc3e0c51680d1c">visibilityChanged</a> ()</td></tr>
<tr class="memdesc:a3859d7aacb18fd51b2fc3e0c51680d1c inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when this component's visibility changes.  <a href="classComponent.html#a3859d7aacb18fd51b2fc3e0c51680d1c">More...</a><br /></td></tr>
<tr class="separator:a3859d7aacb18fd51b2fc3e0c51680d1c 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:ad717da76012d971197fd8cf943f3e721 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#ad717da76012d971197fd8cf943f3e721">addToDesktop</a> (int windowStyleFlags, void *nativeWindowToAttachTo=nullptr)</td></tr>
<tr class="memdesc:ad717da76012d971197fd8cf943f3e721 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Makes this component appear as a window on the desktop.  <a href="classComponent.html#ad717da76012d971197fd8cf943f3e721">More...</a><br /></td></tr>
<tr class="separator:ad717da76012d971197fd8cf943f3e721 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:a543e70d5a3ff75cc3facb476f4cdb131 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#a543e70d5a3ff75cc3facb476f4cdb131">userTriedToCloseWindow</a> ()</td></tr>
<tr class="memdesc:a543e70d5a3ff75cc3facb476f4cdb131 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">For components on the desktop, this is called if the system wants to close the window.  <a href="classComponent.html#a543e70d5a3ff75cc3facb476f4cdb131">More...</a><br /></td></tr>
<tr class="separator:a543e70d5a3ff75cc3facb476f4cdb131 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:a83f298a05d7f26a6e50e45dd37eb6313 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#a83f298a05d7f26a6e50e45dd37eb6313">parentHierarchyChanged</a> ()</td></tr>
<tr class="memdesc:a83f298a05d7f26a6e50e45dd37eb6313 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called to indicate that the component's parents have changed.  <a href="classComponent.html#a83f298a05d7f26a6e50e45dd37eb6313">More...</a><br /></td></tr>
<tr class="separator:a83f298a05d7f26a6e50e45dd37eb6313 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: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: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:ab063a5c631854864da09106abec78a86 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#ab063a5c631854864da09106abec78a86">keyPressed</a> (const <a class="el" href="classKeyPress.html">KeyPress</a> &amp;key)</td></tr>
<tr class="memdesc:ab063a5c631854864da09106abec78a86 inherit pub_methods_classComponent"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when a key is pressed.  <a href="classComponent.html#ab063a5c631854864da09106abec78a86">More...</a><br /></td></tr>
<tr class="separator:ab063a5c631854864da09106abec78a86 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: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: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: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>
<tr class="inherit_header pub_methods_classSettableTooltipClient"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classSettableTooltipClient')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classSettableTooltipClient.html">SettableTooltipClient</a></td></tr>
<tr class="memitem:add2c20bbf97c5eeb373660be47659b35 inherit pub_methods_classSettableTooltipClient"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSettableTooltipClient.html#add2c20bbf97c5eeb373660be47659b35">~SettableTooltipClient</a> ()</td></tr>
<tr class="memdesc:add2c20bbf97c5eeb373660be47659b35 inherit pub_methods_classSettableTooltipClient"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="classSettableTooltipClient.html#add2c20bbf97c5eeb373660be47659b35">More...</a><br /></td></tr>
<tr class="separator:add2c20bbf97c5eeb373660be47659b35 inherit pub_methods_classSettableTooltipClient"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa374ef7cc0eea80f3922f5d584da79e9 inherit pub_methods_classSettableTooltipClient"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSettableTooltipClient.html#aa374ef7cc0eea80f3922f5d584da79e9">setTooltip</a> (const <a class="el" href="classString.html">String</a> &amp;newTooltip)</td></tr>
<tr class="memdesc:aa374ef7cc0eea80f3922f5d584da79e9 inherit pub_methods_classSettableTooltipClient"><td class="mdescLeft">&#160;</td><td class="mdescRight">Assigns a new tooltip to this object.  <a href="classSettableTooltipClient.html#aa374ef7cc0eea80f3922f5d584da79e9">More...</a><br /></td></tr>
<tr class="separator:aa374ef7cc0eea80f3922f5d584da79e9 inherit pub_methods_classSettableTooltipClient"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a68efc0af8d287a0255e911178c1f666d inherit pub_methods_classSettableTooltipClient"><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="classSettableTooltipClient.html#a68efc0af8d287a0255e911178c1f666d">getTooltip</a> () override</td></tr>
<tr class="memdesc:a68efc0af8d287a0255e911178c1f666d inherit pub_methods_classSettableTooltipClient"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the tooltip assigned to this object.  <a href="classSettableTooltipClient.html#a68efc0af8d287a0255e911178c1f666d">More...</a><br /></td></tr>
<tr class="separator:a68efc0af8d287a0255e911178c1f666d inherit pub_methods_classSettableTooltipClient"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classTooltipClient"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classTooltipClient')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classTooltipClient.html">TooltipClient</a></td></tr>
<tr class="memitem:a1bc2223e107e4122d251f5b90049140c inherit pub_methods_classTooltipClient"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTooltipClient.html#a1bc2223e107e4122d251f5b90049140c">~TooltipClient</a> ()</td></tr>
<tr class="memdesc:a1bc2223e107e4122d251f5b90049140c inherit pub_methods_classTooltipClient"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="classTooltipClient.html#a1bc2223e107e4122d251f5b90049140c">More...</a><br /></td></tr>
<tr class="separator:a1bc2223e107e4122d251f5b90049140c inherit pub_methods_classTooltipClient"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></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>
<tr class="inherit_header pro_methods_classSettableTooltipClient"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classSettableTooltipClient')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classSettableTooltipClient.html">SettableTooltipClient</a></td></tr>
<tr class="memitem:aa43c53d065d75a122eada74694deaca6 inherit pro_methods_classSettableTooltipClient"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSettableTooltipClient.html#aa43c53d065d75a122eada74694deaca6">SettableTooltipClient</a> ()</td></tr>
<tr class="separator:aa43c53d065d75a122eada74694deaca6 inherit pro_methods_classSettableTooltipClient"><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 slider control for changing a value. </p>
<p>The slider can be horizontal, vertical, or rotary, and can optionally have a text-box inside it to show an editable display of the current value.</p>
<p>To use it, create a <a class="el" href="classSlider.html" title="A slider control for changing a value. ">Slider</a> object and use the <a class="el" href="classSlider.html#a6b6917dd3753c7552778977733f0b9ef" title="Changes the type of slider interface being used. ">setSliderStyle()</a> method to set up the type you want. To set up the text-entry box, use <a class="el" href="classSlider.html#a5bc748a21e72fe14153bc9fe5ac03e77" title="Changes the location and properties of the text-entry box. ">setTextBoxStyle()</a>.</p>
<p>To define the values that it can be set to, see the <a class="el" href="classSlider.html#a9fbc23e67deb4a18d172c357a7cff14c" title="Sets the limits that the slider&#39;s value can take. ">setRange()</a> and <a class="el" href="classSlider.html#a430a5c4e56b39dd622f5800f787e0822" title="Changes the slider&#39;s current value. ">setValue()</a> methods.</p>
<p>There are also lots of custom tweaks you can do by subclassing and overriding some of the virtual methods, such as changing the scaling, changing the format of the text display, custom ways of limiting the values, etc.</p>
<p>You can register <a class="el" href="classSlider_1_1Listener.html" title="A class for receiving callbacks from a Slider. ">Slider::Listener</a> objects with a slider, and they'll be called when the value changes.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider_1_1Listener.html" title="A class for receiving callbacks from a Slider. ">Slider::Listener</a> </dd></dl>
</div><h2 class="groupheader">Member Enumeration Documentation</h2>
<a id="af1caee82552143dd9ff0fc9f0cdc0888"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af1caee82552143dd9ff0fc9f0cdc0888">&sect;&nbsp;</a></span>SliderStyle</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888">Slider::SliderStyle</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>The types of slider available. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a6b6917dd3753c7552778977733f0b9ef" title="Changes the type of slider interface being used. ">setSliderStyle</a>, <a class="el" href="classSlider.html#a37d0dd9e0149ecb63c10d8bbb64d7188" title="Changes the properties of a rotary slider. ">setRotaryParameters</a> </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888a0fa5cefcd508c8f26ac9a458272844f9"></a>LinearHorizontal&#160;</td><td class="fielddoc"><p>A traditional horizontal slider. </p>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888a31f9134048fa90fbc4a72b69c6f553d5"></a>LinearVertical&#160;</td><td class="fielddoc"><p>A traditional vertical slider. </p>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888a0092c810419dab80d4692363d9564c5d"></a>LinearBar&#160;</td><td class="fielddoc"><p>A horizontal bar slider with the text label drawn on top of it. </p>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888a8a942813d4d457e0344e725bd9faffc5"></a>LinearBarVertical&#160;</td><td class="fielddoc"></td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888a2043125f6f74c8ceae38baf3fb514f18"></a>Rotary&#160;</td><td class="fielddoc"><p>A rotary control that you move by dragging the mouse in a circular motion, like a knob. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a37d0dd9e0149ecb63c10d8bbb64d7188" title="Changes the properties of a rotary slider. ">setRotaryParameters</a> </dd></dl>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888a8c359e2cb456e39665bec067273df5fe"></a>RotaryHorizontalDrag&#160;</td><td class="fielddoc"><p>A rotary control that you move by dragging the mouse left-to-right. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a37d0dd9e0149ecb63c10d8bbb64d7188" title="Changes the properties of a rotary slider. ">setRotaryParameters</a> </dd></dl>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888a46ac50fdae2ac4df9a2f3ad630589224"></a>RotaryVerticalDrag&#160;</td><td class="fielddoc"><p>A rotary control that you move by dragging the mouse up-and-down. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a37d0dd9e0149ecb63c10d8bbb64d7188" title="Changes the properties of a rotary slider. ">setRotaryParameters</a> </dd></dl>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888a6d72c2ed67c43d22785fe271d3684075"></a>RotaryHorizontalVerticalDrag&#160;</td><td class="fielddoc"><p>A rotary control that you move by dragging the mouse up-and-down or left-to-right. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a37d0dd9e0149ecb63c10d8bbb64d7188" title="Changes the properties of a rotary slider. ">setRotaryParameters</a> </dd></dl>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888adcb7bc12a443e3c6cdf598ab3c5e2171"></a>IncDecButtons&#160;</td><td class="fielddoc"><p>A pair of buttons that increment or decrement the slider's value by the increment set in <a class="el" href="classSlider.html#a9fbc23e67deb4a18d172c357a7cff14c" title="Sets the limits that the slider&#39;s value can take. ">setRange()</a>. </p>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888a2ce77695813bb317c2d1863d2e71213b"></a>TwoValueHorizontal&#160;</td><td class="fielddoc"><p>A horizontal slider that has two thumbs instead of one, so it can show a minimum and maximum value. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a337ba6b2c740751f5065a190e83dbd87" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMinValue</a>, <a class="el" href="classSlider.html#a94c2b6bd752081eb344e390a39a31363" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMaxValue</a> </dd></dl>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888a7477c3163edc14c8740d464e523e5ac8"></a>TwoValueVertical&#160;</td><td class="fielddoc"><p>A vertical slider that has two thumbs instead of one, so it can show a minimum and maximum value. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a337ba6b2c740751f5065a190e83dbd87" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMinValue</a>, <a class="el" href="classSlider.html#a94c2b6bd752081eb344e390a39a31363" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMaxValue</a> </dd></dl>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888ad74f46a4848b6c1b3e3cc59da103f504"></a>ThreeValueHorizontal&#160;</td><td class="fielddoc"><p>A horizontal slider that has three thumbs instead of one, so it can show a minimum and maximum value, with the current value being somewhere between them. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a337ba6b2c740751f5065a190e83dbd87" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMinValue</a>, <a class="el" href="classSlider.html#a94c2b6bd752081eb344e390a39a31363" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMaxValue</a> </dd></dl>
</td></tr>
<tr><td class="fieldname"><a id="af1caee82552143dd9ff0fc9f0cdc0888aa2c50364a9dd891a0e5e8022570c8e13"></a>ThreeValueVertical&#160;</td><td class="fielddoc"><p>A vertical slider that has three thumbs instead of one, so it can show a minimum and maximum value, with the current value being somewhere between them. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a337ba6b2c740751f5065a190e83dbd87" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMinValue</a>, <a class="el" href="classSlider.html#a94c2b6bd752081eb344e390a39a31363" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMaxValue</a> </dd></dl>
</td></tr>
</table>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412f">Slider::TextEntryBoxPosition</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>The position of the slider's text-entry box. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a5bc748a21e72fe14153bc9fe5ac03e77" title="Changes the location and properties of the text-entry box. ">setTextBoxStyle</a> </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="ab6d7dff67151c029b9cb53fc40b4412fad0badf0233a956017621f284e3e30fc2"></a>NoTextBox&#160;</td><td class="fielddoc"><p>Doesn't display a text box. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab6d7dff67151c029b9cb53fc40b4412fa66ab77e721cd147f54097b8bed8c6d35"></a>TextBoxLeft&#160;</td><td class="fielddoc"><p>Puts the text box to the left of the slider, vertically centred. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab6d7dff67151c029b9cb53fc40b4412fae50f30d7062c602b8f8b465346f79a3f"></a>TextBoxRight&#160;</td><td class="fielddoc"><p>Puts the text box to the right of the slider, vertically centred. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab6d7dff67151c029b9cb53fc40b4412fa382d14dbd222edf95fdf2836acc33fe9"></a>TextBoxAbove&#160;</td><td class="fielddoc"><p>Puts the text box above the slider, horizontally centred. </p>
</td></tr>
<tr><td class="fieldname"><a id="ab6d7dff67151c029b9cb53fc40b4412fa9a20474ba0850feb957b8cea91c6a456"></a>TextBoxBelow&#160;</td><td class="fielddoc"><p>Puts the text box below the slider, horizontally centred. </p>
</td></tr>
</table>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classSlider.html#a42fd96ac0f5dca7e6942022c9a75cbde">Slider::DragMode</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Describes the type of mouse-dragging that is happening when a value is being changed. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#aa8ce89d390ea3de9ab58aae59db1d03b" title="This can be overridden to allow the slider to snap to user-definable values. ">snapValue</a> </dd></dl>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="a42fd96ac0f5dca7e6942022c9a75cbdea4ac7f9448a8823e0537588615cf71271"></a>notDragging&#160;</td><td class="fielddoc"><p>Dragging is not active. </p>
</td></tr>
<tr><td class="fieldname"><a id="a42fd96ac0f5dca7e6942022c9a75cbdead37417ff73089a45f77534d75e1a1647"></a>absoluteDrag&#160;</td><td class="fielddoc"><p>The dragging corresponds directly to the value that is displayed. </p>
</td></tr>
<tr><td class="fieldname"><a id="a42fd96ac0f5dca7e6942022c9a75cbdeab6cd67202d007534532a43f4eeeef153"></a>velocityDrag&#160;</td><td class="fielddoc"><p>The dragging value change is relative to the velocity of the mouse mouvement. </p>
</td></tr>
</table>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classSlider.html#a0ceaddd29269b6ec5a41f35bbb2ff74a">Slider::IncDecButtonMode</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Used by <a class="el" href="classSlider.html#a188fa57db0d90f931529dc367e76b9f5" title="When the style is IncDecButtons, this lets you turn on a mode where the mouse can be dragged on the b...">setIncDecButtonsMode()</a>. </p>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="a0ceaddd29269b6ec5a41f35bbb2ff74aabc5b1657cd94c709c9086a463b1d7094"></a>incDecButtonsNotDraggable&#160;</td><td class="fielddoc"></td></tr>
<tr><td class="fieldname"><a id="a0ceaddd29269b6ec5a41f35bbb2ff74aa4877104d807899962ee036571ca93f52"></a>incDecButtonsDraggable_AutoDirection&#160;</td><td class="fielddoc"></td></tr>
<tr><td class="fieldname"><a id="a0ceaddd29269b6ec5a41f35bbb2ff74aa19d0b1bdc13c1c673e382045c023868b"></a>incDecButtonsDraggable_Horizontal&#160;</td><td class="fielddoc"></td></tr>
<tr><td class="fieldname"><a id="a0ceaddd29269b6ec5a41f35bbb2ff74aae8e58e3ebb5b43e67e7de0071ba68ea5"></a>incDecButtonsDraggable_Vertical&#160;</td><td class="fielddoc"></td></tr>
</table>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="classSlider.html#a1012002c53381ccc7c1fe7e604a75f44">Slider::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 slider. </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="a1012002c53381ccc7c1fe7e604a75f44a7479f5409d832c1fc97697450c00bb57"></a>backgroundColourId&#160;</td><td class="fielddoc"><p>A colour to use to fill the slider's background. </p>
</td></tr>
<tr><td class="fieldname"><a id="a1012002c53381ccc7c1fe7e604a75f44aee563b22e0033b0ed4f38e5296889835"></a>thumbColourId&#160;</td><td class="fielddoc"><p>The colour to draw the thumb with. </p>
<p>It's up to the look and feel class how this is used. </p>
</td></tr>
<tr><td class="fieldname"><a id="a1012002c53381ccc7c1fe7e604a75f44a1a7a91f54b703cf78f028edc0ed7786b"></a>trackColourId&#160;</td><td class="fielddoc"><p>The colour to draw the groove that the thumb moves along. </p>
</td></tr>
<tr><td class="fieldname"><a id="a1012002c53381ccc7c1fe7e604a75f44ad6ece790078ea74733dfa2a0d99905a8"></a>rotarySliderFillColourId&#160;</td><td class="fielddoc"><p>For rotary sliders, this colour fills the outer curve. </p>
</td></tr>
<tr><td class="fieldname"><a id="a1012002c53381ccc7c1fe7e604a75f44abc955b1201e3f12967cb3ff472ba86d8"></a>rotarySliderOutlineColourId&#160;</td><td class="fielddoc"><p>For rotary sliders, this colour is used to draw the outer curve's outline. </p>
</td></tr>
<tr><td class="fieldname"><a id="a1012002c53381ccc7c1fe7e604a75f44a6e5d3f5c91a314d510d9fc553c881e23"></a>textBoxTextColourId&#160;</td><td class="fielddoc"><p>The colour for the text in the text-editor box used for editing the value. </p>
</td></tr>
<tr><td class="fieldname"><a id="a1012002c53381ccc7c1fe7e604a75f44ac1eb5559c6e1c8ef115259ceabfd771b"></a>textBoxBackgroundColourId&#160;</td><td class="fielddoc"><p>The background colour for the text-editor box. </p>
</td></tr>
<tr><td class="fieldname"><a id="a1012002c53381ccc7c1fe7e604a75f44aa70515f09dbc0ca6a7250100b35e47f4"></a>textBoxHighlightColourId&#160;</td><td class="fielddoc"><p>The text highlight colour for the text-editor box. </p>
</td></tr>
<tr><td class="fieldname"><a id="a1012002c53381ccc7c1fe7e604a75f44ae65fdadb3e607a23c074074d64a61ffc"></a>textBoxOutlineColourId&#160;</td><td class="fielddoc"><p>The colour to use for a border around the text-editor box. </p>
</td></tr>
</table>

</div>
</div>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a id="a535033fada8e25ef7291d2a52e6e437b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a535033fada8e25ef7291d2a52e6e437b">&sect;&nbsp;</a></span>Slider() <span class="overload">[1/3]</span></h2>

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

<p>Creates a slider. </p>
<p>When created, you can set up the slider's style and range with <a class="el" href="classSlider.html#a6b6917dd3753c7552778977733f0b9ef" title="Changes the type of slider interface being used. ">setSliderStyle()</a>, <a class="el" href="classSlider.html#a9fbc23e67deb4a18d172c357a7cff14c" title="Sets the limits that the slider&#39;s value can take. ">setRange()</a>, etc. </p>

</div>
</div>
<a id="ae2c907adc5de6f127138f3f869f683ae"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae2c907adc5de6f127138f3f869f683ae">&sect;&nbsp;</a></span>Slider() <span class="overload">[2/3]</span></h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">Slider::Slider </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classString.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>componentName</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Creates a slider. </p>
<p>When created, you can set up the slider's style and range with <a class="el" href="classSlider.html#a6b6917dd3753c7552778977733f0b9ef" title="Changes the type of slider interface being used. ">setSliderStyle()</a>, <a class="el" href="classSlider.html#a9fbc23e67deb4a18d172c357a7cff14c" title="Sets the limits that the slider&#39;s value can take. ">setRange()</a>, etc. </p>

</div>
</div>
<a id="ad0d654d54372b23671bfc28f179c339d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad0d654d54372b23671bfc28f179c339d">&sect;&nbsp;</a></span>Slider() <span class="overload">[3/3]</span></h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">Slider::Slider </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888">SliderStyle</a>&#160;</td>
          <td class="paramname"><em>style</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412f">TextEntryBoxPosition</a>&#160;</td>
          <td class="paramname"><em>textBoxPosition</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Creates a slider with some explicit options. </p>

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

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

<p>Destructor. </p>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setSliderStyle </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888">SliderStyle</a>&#160;</td>
          <td class="paramname"><em>newStyle</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Changes the type of slider interface being used. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">newStyle</td><td>the type of interface </td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a37d0dd9e0149ecb63c10d8bbb64d7188" title="Changes the properties of a rotary slider. ">setRotaryParameters</a>, <a class="el" href="classSlider.html#a59b616e79738d3adb83093dc532822d0" title="Changes the way the mouse is used when dragging the slider. ">setVelocityBasedMode</a>, </dd></dl>

</div>
</div>
<a id="a5fe7b4917ead20eb9c180de81c46b41f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5fe7b4917ead20eb9c180de81c46b41f">&sect;&nbsp;</a></span>getSliderStyle()</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="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888">SliderStyle</a> Slider::getSliderStyle </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 slider's current style. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a6b6917dd3753c7552778977733f0b9ef" title="Changes the type of slider interface being used. ">setSliderStyle</a> </dd></dl>

</div>
</div>
<a id="a37d0dd9e0149ecb63c10d8bbb64d7188"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a37d0dd9e0149ecb63c10d8bbb64d7188">&sect;&nbsp;</a></span>setRotaryParameters() <span class="overload">[1/2]</span></h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setRotaryParameters </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="structSlider_1_1RotaryParameters.html">RotaryParameters</a>&#160;</td>
          <td class="paramname"><em>newParameters</em></td><td>)</td>
          <td></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>Changes the properties of a rotary slider. </p>

</div>
</div>
<a id="a19ec1c1f7564884be94ecde8dc56f0ab"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a19ec1c1f7564884be94ecde8dc56f0ab">&sect;&nbsp;</a></span>setRotaryParameters() <span class="overload">[2/2]</span></h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setRotaryParameters </td>
          <td>(</td>
          <td class="paramtype">float&#160;</td>
          <td class="paramname"><em>startAngleRadians</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">float&#160;</td>
          <td class="paramname"><em>endAngleRadians</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>stopAtEnd</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">noexcept</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Changes the properties of a rotary slider. </p>

</div>
</div>
<a id="ac72f9e6603bb35fd94fdba5f8536827c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac72f9e6603bb35fd94fdba5f8536827c">&sect;&nbsp;</a></span>getRotaryParameters()</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="structSlider_1_1RotaryParameters.html">RotaryParameters</a> Slider::getRotaryParameters </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>Changes the properties of a rotary slider. </p>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setMouseDragSensitivity </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>distanceForFullScaleDrag</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the distance the mouse has to move to drag the slider across the full extent of its range. </p>
<p>This only applies when in modes like RotaryHorizontalDrag, where it's using relative mouse movements to adjust the slider. </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">int Slider::getMouseDragSensitivity </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 current sensitivity value set by <a class="el" href="classSlider.html#a4bdd8cdb79dcdb06b1e97a21ff2a6c4b" title="Sets the distance the mouse has to move to drag the slider across the full extent of its range...">setMouseDragSensitivity()</a>. </p>

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

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

<p>Changes the way the mouse is used when dragging the slider. </p>
<p>If true, this will turn on velocity-sensitive dragging, so that the faster the mouse moves, the bigger the movement to the slider. This helps when making accurate adjustments if the slider's range is quite large.</p>
<p>If false, the slider will just try to snap to wherever the mouse is. </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool Slider::getVelocityBasedMode </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 true if velocity-based mode is active. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a59b616e79738d3adb83093dc532822d0" title="Changes the way the mouse is used when dragging the slider. ">setVelocityBasedMode</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setVelocityModeParameters </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>sensitivity</em> = <code>1.0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>threshold</em> = <code>1</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>offset</em> = <code>0.0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>userCanPressKeyToSwapMode</em> = <code>true</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Changes aspects of the scaling used when in velocity-sensitive mode. </p>
<p>These apply when you've used <a class="el" href="classSlider.html#a59b616e79738d3adb83093dc532822d0" title="Changes the way the mouse is used when dragging the slider. ">setVelocityBasedMode()</a> to turn on velocity mode, or if you're holding down ctrl.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">sensitivity</td><td>higher values than 1.0 increase the range of acceleration used </td></tr>
    <tr><td class="paramname">threshold</td><td>the minimum number of pixels that the mouse needs to move for it to be treated as a movement </td></tr>
    <tr><td class="paramname">offset</td><td>values greater than 0.0 increase the minimum speed that will be used when the threshold is reached </td></tr>
    <tr><td class="paramname">userCanPressKeyToSwapMode</td><td>if true, then the user can hold down the ctrl or command key to toggle velocity-sensitive mode </td></tr>
  </table>
  </dd>
</dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">double Slider::getVelocitySensitivity </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 velocity sensitivity setting. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#add6fe31d11f1c783aafeca6294b13858" title="Changes aspects of the scaling used when in velocity-sensitive mode. ">setVelocityModeParameters</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">int Slider::getVelocityThreshold </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 velocity threshold setting. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#add6fe31d11f1c783aafeca6294b13858" title="Changes aspects of the scaling used when in velocity-sensitive mode. ">setVelocityModeParameters</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">double Slider::getVelocityOffset </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 velocity offset setting. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#add6fe31d11f1c783aafeca6294b13858" title="Changes aspects of the scaling used when in velocity-sensitive mode. ">setVelocityModeParameters</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool Slider::getVelocityModeIsSwappable </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 velocity user key setting. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#add6fe31d11f1c783aafeca6294b13858" title="Changes aspects of the scaling used when in velocity-sensitive mode. ">setVelocityModeParameters</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setSkewFactor </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>factor</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>symmetricSkew</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets up a skew factor to alter the way values are distributed. </p>
<p>You may want to use a range of values on the slider where more accuracy is required towards one end of the range, so this will logarithmically spread the values across the length of the slider.</p>
<p>If the factor is &lt; 1.0, the lower end of the range will fill more of the slider's length; if the factor is &gt; 1.0, the upper end of the range will be expanded instead. A factor of 1.0 doesn't skew it at all.</p>
<p>If symmetricSkew is true, the skew factor applies from the middle of the slider to each of its ends.</p>
<p>To set the skew position by using a mid-point, use the <a class="el" href="classSlider.html#a2d948c662c1f636810d3125d8b3f0d47" title="Sets up a skew factor to alter the way values are distributed. ">setSkewFactorFromMidPoint()</a> method instead.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a803021cfc12e4ff54e9b598dabdd8761" title="Returns the current skew factor. ">getSkewFactor</a>, <a class="el" href="classSlider.html#a2d948c662c1f636810d3125d8b3f0d47" title="Sets up a skew factor to alter the way values are distributed. ">setSkewFactorFromMidPoint</a>, <a class="el" href="classSlider.html#a015f98d91fd3f30d74d7f3cce2e9996c" title="Returns the whether the skew is symmetric from the midpoint to both sides. ">isSymmetricSkew</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setSkewFactorFromMidPoint </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>sliderValueToShowAtMidPoint</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets up a skew factor to alter the way values are distributed. </p>
<p>This allows you to specify the slider value that should appear in the centre of the slider's visible range.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#aba8fe3610e7198bd4c1f2804736bfbf2" title="Sets up a skew factor to alter the way values are distributed. ">setSkewFactor</a>, <a class="el" href="classSlider.html#a803021cfc12e4ff54e9b598dabdd8761" title="Returns the current skew factor. ">getSkewFactor</a>, <a class="el" href="classSlider.html#a015f98d91fd3f30d74d7f3cce2e9996c" title="Returns the whether the skew is symmetric from the midpoint to both sides. ">isSymmetricSkew</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">double Slider::getSkewFactor </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 current skew factor. </p>
<p>See setSkewFactor for more info. </p><dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#aba8fe3610e7198bd4c1f2804736bfbf2" title="Sets up a skew factor to alter the way values are distributed. ">setSkewFactor</a>, <a class="el" href="classSlider.html#a2d948c662c1f636810d3125d8b3f0d47" title="Sets up a skew factor to alter the way values are distributed. ">setSkewFactorFromMidPoint</a>, <a class="el" href="classSlider.html#a015f98d91fd3f30d74d7f3cce2e9996c" title="Returns the whether the skew is symmetric from the midpoint to both sides. ">isSymmetricSkew</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool Slider::isSymmetricSkew </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 whether the skew is symmetric from the midpoint to both sides. </p>
<p>See setSkewFactor for more info. </p><dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a803021cfc12e4ff54e9b598dabdd8761" title="Returns the current skew factor. ">getSkewFactor</a>, <a class="el" href="classSlider.html#aba8fe3610e7198bd4c1f2804736bfbf2" title="Sets up a skew factor to alter the way values are distributed. ">setSkewFactor</a>, <a class="el" href="classSlider.html#a2d948c662c1f636810d3125d8b3f0d47" title="Sets up a skew factor to alter the way values are distributed. ">setSkewFactorFromMidPoint</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setIncDecButtonsMode </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classSlider.html#a0ceaddd29269b6ec5a41f35bbb2ff74a">IncDecButtonMode</a>&#160;</td>
          <td class="paramname"><em>mode</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>When the style is IncDecButtons, this lets you turn on a mode where the mouse can be dragged on the buttons to drag the values. </p>
<p>By default this is turned off. When enabled, clicking on the buttons still works them as normal, but by holding down the mouse on a button and dragging it a little distance, it flips into a mode where the value can be dragged. The drag direction can either be set explicitly to be vertical or horizontal, or can be set to incDecButtonsDraggable_AutoDirection so that it depends on whether the buttons are side-by-side or above each other. </p>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setTextBoxStyle </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412f">TextEntryBoxPosition</a>&#160;</td>
          <td class="paramname"><em>newPosition</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>isReadOnly</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>textEntryBoxWidth</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>textEntryBoxHeight</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Changes the location and properties of the text-entry box. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">newPosition</td><td>where it should go (or NoTextBox to not have one at all) </td></tr>
    <tr><td class="paramname">isReadOnly</td><td>if true, it's a read-only display </td></tr>
    <tr><td class="paramname">textEntryBoxWidth</td><td>the width of the text-box in pixels. Make sure this leaves enough room for the slider as well! </td></tr>
    <tr><td class="paramname">textEntryBoxHeight</td><td>the height of the text-box in pixels. Make sure this leaves enough room for the slider as well!</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a59e3fd9bc86e488070c12889747e7bbe" title="Makes the text-box editable. ">setTextBoxIsEditable</a>, <a class="el" href="classSlider.html#a532774d3294a058784f7d4291b33b720" title="Subclasses can override this to convert a text string to a value. ">getValueFromText</a>, <a class="el" href="classSlider.html#a5a1693166d0815f812202b1a3a6eb202" title="Turns the slider&#39;s current value into a text string. ">getTextFromValue</a> </dd></dl>

</div>
</div>
<a id="a6910e59cbc2aa25a8499a9c7e6593bb1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6910e59cbc2aa25a8499a9c7e6593bb1">&sect;&nbsp;</a></span>getTextBoxPosition()</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="classSlider.html#ab6d7dff67151c029b9cb53fc40b4412f">TextEntryBoxPosition</a> Slider::getTextBoxPosition </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 status of the text-box. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a5bc748a21e72fe14153bc9fe5ac03e77" title="Changes the location and properties of the text-entry box. ">setTextBoxStyle</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">int Slider::getTextBoxWidth </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 width used for the text-box. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a5bc748a21e72fe14153bc9fe5ac03e77" title="Changes the location and properties of the text-entry box. ">setTextBoxStyle</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">int Slider::getTextBoxHeight </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 height used for the text-box. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a5bc748a21e72fe14153bc9fe5ac03e77" title="Changes the location and properties of the text-entry box. ">setTextBoxStyle</a> </dd></dl>

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

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

<p>Makes the text-box editable. </p>
<p>By default this is true, and the user can enter values into the textbox, but it can be turned off if that's not suitable.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a5bc748a21e72fe14153bc9fe5ac03e77" title="Changes the location and properties of the text-entry box. ">setTextBoxStyle</a>, <a class="el" href="classSlider.html#a532774d3294a058784f7d4291b33b720" title="Subclasses can override this to convert a text string to a value. ">getValueFromText</a>, <a class="el" href="classSlider.html#a5a1693166d0815f812202b1a3a6eb202" title="Turns the slider&#39;s current value into a text string. ">getTextFromValue</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool Slider::isTextBoxEditable </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 true if the text-box is read-only. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a5bc748a21e72fe14153bc9fe5ac03e77" title="Changes the location and properties of the text-entry box. ">setTextBoxStyle</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::showTextBox </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>If the text-box is editable, this will give it the focus so that the user can type directly into it. </p>
<p>This is basically the effect as the user clicking on it. </p>

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

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

<p>If the text-box currently has focus and is being edited, this resets it and takes keyboard focus away from it. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">discardCurrentEditorContents</td><td>if true, the slider's value will be left unchanged; if false, the current contents of the text editor will be used to set the slider position before it is hidden. </td></tr>
  </table>
  </dd>
</dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setValue </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>newValue</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9">NotificationType</a>&#160;</td>
          <td class="paramname"><em>notification</em> = <code><a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9aa70e4499b93d1738b0ee53de03f7a9c4">sendNotificationAsync</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Changes the slider's current value. </p>
<p>This will trigger a callback to <a class="el" href="classSlider_1_1Listener.html#a127bfe68835dc3e584cf3c2a427a27e5" title="Called when the slider&#39;s value is changed. ">Slider::Listener::sliderValueChanged()</a> for any listeners that are registered, and will synchronously call the <a class="el" href="classSlider.html#a5988f8e1b98cb0b28330522117d46c1c" title="Callback to indicate that the user has just moved the slider. ">valueChanged()</a> method in case subclasses want to handle it.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">newValue</td><td>the new value to set - this will be restricted by the minimum and maximum range, and will be snapped to the nearest interval if one has been set </td></tr>
    <tr><td class="paramname">notification</td><td>can be one of the NotificationType values, to request a synchronous or asynchronous call to the <a class="el" href="classSlider.html#a5988f8e1b98cb0b28330522117d46c1c" title="Callback to indicate that the user has just moved the slider. ">valueChanged()</a> method of any Slider::Listeners that are registered. </td></tr>
  </table>
  </dd>
</dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Slider::getValue </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the slider's current value. </p>

</div>
</div>
<a id="a40ceae44fd94f912fc10d8a5803b9b01"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a40ceae44fd94f912fc10d8a5803b9b01">&sect;&nbsp;</a></span>getValueObject()</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="classValue.html">Value</a>&amp; Slider::getValueObject </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></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 <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a> object that represents the slider's current position. </p>
<p>You can use this <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a> object to connect the slider's position to external values or setters, either by taking a copy of the <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a>, or by using <a class="el" href="classValue.html#a127b52830b5d62b478224b670d9e78f9" title="Makes this object refer to the same underlying ValueSource as another one. ">Value::referTo()</a> to make it point to your own <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a> object. </p><dl class="section see"><dt>See also</dt><dd><a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a>, <a class="el" href="classSlider.html#aa10981391fe45fec36ebd7d7670a31cf" title="For a slider with two or three thumbs, this returns the higher of its values. ">getMaxValue</a>, <a class="el" href="classSlider.html#adeedf0e9e8a3402e7003bd637f04e167" title="For a slider with two or three thumbs, this returns the lower of its values. ">getMinValueObject</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setRange </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>newMinimum</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>newMaximum</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>newInterval</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the limits that the slider's value can take. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">newMinimum</td><td>the lowest value allowed </td></tr>
    <tr><td class="paramname">newMaximum</td><td>the highest value allowed </td></tr>
    <tr><td class="paramname">newInterval</td><td>the steps in which the value is allowed to increase - if this is not zero, the value will always be (newMinimum + (newInterval * an integer)). </td></tr>
  </table>
  </dd>
</dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">double Slider::getMaximum </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 current maximum value. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a9fbc23e67deb4a18d172c357a7cff14c" title="Sets the limits that the slider&#39;s value can take. ">setRange</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">double Slider::getMinimum </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 current minimum value. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a9fbc23e67deb4a18d172c357a7cff14c" title="Sets the limits that the slider&#39;s value can take. ">setRange</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">double Slider::getInterval </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 current step-size for values. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a9fbc23e67deb4a18d172c357a7cff14c" title="Sets the limits that the slider&#39;s value can take. ">setRange</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Slider::getMinValue </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>For a slider with two or three thumbs, this returns the lower of its values. </p>
<p>For a two-value slider, the values are controlled with <a class="el" href="classSlider.html#a2f8d0736f0fd0ebf95eeda2e1bd155bf" title="For a slider with two or three thumbs, this returns the lower of its values. ">getMinValue()</a> and <a class="el" href="classSlider.html#aa10981391fe45fec36ebd7d7670a31cf" title="For a slider with two or three thumbs, this returns the higher of its values. ">getMaxValue()</a>. A slider with three values also uses the normal <a class="el" href="classSlider.html#a288c6f5c7a76100a1e7526e002e10eb5" title="Returns the slider&#39;s current value. ">getValue()</a> and <a class="el" href="classSlider.html#a430a5c4e56b39dd622f5800f787e0822" title="Changes the slider&#39;s current value. ">setValue()</a> methods to control the middle value.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a337ba6b2c740751f5065a190e83dbd87" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMinValue</a>, <a class="el" href="classSlider.html#aa10981391fe45fec36ebd7d7670a31cf" title="For a slider with two or three thumbs, this returns the higher of its values. ">getMaxValue</a>, <a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a2ce77695813bb317c2d1863d2e71213b" title="A horizontal slider that has two thumbs instead of one, so it can show a minimum and maximum value...">TwoValueHorizontal</a>, <a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a7477c3163edc14c8740d464e523e5ac8" title="A vertical slider that has two thumbs instead of one, so it can show a minimum and maximum value...">TwoValueVertical</a>, <a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888ad74f46a4848b6c1b3e3cc59da103f504" title="A horizontal slider that has three thumbs instead of one, so it can show a minimum and maximum value...">ThreeValueHorizontal</a>, <a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888aa2c50364a9dd891a0e5e8022570c8e13" title="A vertical slider that has three thumbs instead of one, so it can show a minimum and maximum value...">ThreeValueVertical</a> </dd></dl>

</div>
</div>
<a id="adeedf0e9e8a3402e7003bd637f04e167"></a>
<h2 class="memtitle"><span class="permalink"><a href="#adeedf0e9e8a3402e7003bd637f04e167">&sect;&nbsp;</a></span>getMinValueObject()</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="classValue.html">Value</a>&amp; Slider::getMinValueObject </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></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>For a slider with two or three thumbs, this returns the lower of its values. </p>
<p>You can use this <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a> object to connect the slider's position to external values or setters, either by taking a copy of the <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a>, or by using <a class="el" href="classValue.html#a127b52830b5d62b478224b670d9e78f9" title="Makes this object refer to the same underlying ValueSource as another one. ">Value::referTo()</a> to make it point to your own <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a> object. </p><dl class="section see"><dt>See also</dt><dd><a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a>, <a class="el" href="classSlider.html#a2f8d0736f0fd0ebf95eeda2e1bd155bf" title="For a slider with two or three thumbs, this returns the lower of its values. ">getMinValue</a>, <a class="el" href="classSlider.html#acb8fa9ed28c5760bb095b74086a31eac" title="For a slider with two or three thumbs, this returns the higher of its values. ">getMaxValueObject</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setMinValue </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>newValue</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9">NotificationType</a>&#160;</td>
          <td class="paramname"><em>notification</em> = <code><a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9aa70e4499b93d1738b0ee53de03f7a9c4">sendNotificationAsync</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>allowNudgingOfOtherValues</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>For a slider with two or three thumbs, this sets the lower of its values. </p>
<p>This will trigger a callback to <a class="el" href="classSlider_1_1Listener.html#a127bfe68835dc3e584cf3c2a427a27e5" title="Called when the slider&#39;s value is changed. ">Slider::Listener::sliderValueChanged()</a> for any listeners that are registered, and will synchronously call the <a class="el" href="classSlider.html#a5988f8e1b98cb0b28330522117d46c1c" title="Callback to indicate that the user has just moved the slider. ">valueChanged()</a> method in case subclasses want to handle it.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">newValue</td><td>the new value to set - this will be restricted by the minimum and maximum range, and will be snapped to the nearest interval if one has been set. </td></tr>
    <tr><td class="paramname">notification</td><td>can be one of the NotificationType values, to request a synchronous or asynchronous call to the <a class="el" href="classSlider.html#a5988f8e1b98cb0b28330522117d46c1c" title="Callback to indicate that the user has just moved the slider. ">valueChanged()</a> method of any Slider::Listeners that are registered. </td></tr>
    <tr><td class="paramname">allowNudgingOfOtherValues</td><td>if false, this value will be restricted to being below the max value (in a two-value slider) or the mid value (in a three-value slider). If true, then if this value goes beyond those values, it will push them along with it. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a2f8d0736f0fd0ebf95eeda2e1bd155bf" title="For a slider with two or three thumbs, this returns the lower of its values. ">getMinValue</a>, <a class="el" href="classSlider.html#a94c2b6bd752081eb344e390a39a31363" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMaxValue</a>, <a class="el" href="classSlider.html#a430a5c4e56b39dd622f5800f787e0822" title="Changes the slider&#39;s current value. ">setValue</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Slider::getMaxValue </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>For a slider with two or three thumbs, this returns the higher of its values. </p>
<p>For a two-value slider, the values are controlled with <a class="el" href="classSlider.html#a2f8d0736f0fd0ebf95eeda2e1bd155bf" title="For a slider with two or three thumbs, this returns the lower of its values. ">getMinValue()</a> and <a class="el" href="classSlider.html#aa10981391fe45fec36ebd7d7670a31cf" title="For a slider with two or three thumbs, this returns the higher of its values. ">getMaxValue()</a>. A slider with three values also uses the normal <a class="el" href="classSlider.html#a288c6f5c7a76100a1e7526e002e10eb5" title="Returns the slider&#39;s current value. ">getValue()</a> and <a class="el" href="classSlider.html#a430a5c4e56b39dd622f5800f787e0822" title="Changes the slider&#39;s current value. ">setValue()</a> methods to control the middle value.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a2f8d0736f0fd0ebf95eeda2e1bd155bf" title="For a slider with two or three thumbs, this returns the lower of its values. ">getMinValue</a>, <a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a2ce77695813bb317c2d1863d2e71213b" title="A horizontal slider that has two thumbs instead of one, so it can show a minimum and maximum value...">TwoValueHorizontal</a>, <a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888a7477c3163edc14c8740d464e523e5ac8" title="A vertical slider that has two thumbs instead of one, so it can show a minimum and maximum value...">TwoValueVertical</a>, <a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888ad74f46a4848b6c1b3e3cc59da103f504" title="A horizontal slider that has three thumbs instead of one, so it can show a minimum and maximum value...">ThreeValueHorizontal</a>, <a class="el" href="classSlider.html#af1caee82552143dd9ff0fc9f0cdc0888aa2c50364a9dd891a0e5e8022570c8e13" title="A vertical slider that has three thumbs instead of one, so it can show a minimum and maximum value...">ThreeValueVertical</a> </dd></dl>

</div>
</div>
<a id="acb8fa9ed28c5760bb095b74086a31eac"></a>
<h2 class="memtitle"><span class="permalink"><a href="#acb8fa9ed28c5760bb095b74086a31eac">&sect;&nbsp;</a></span>getMaxValueObject()</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="classValue.html">Value</a>&amp; Slider::getMaxValueObject </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></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>For a slider with two or three thumbs, this returns the higher of its values. </p>
<p>You can use this <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a> object to connect the slider's position to external values or setters, either by taking a copy of the <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a>, or by using <a class="el" href="classValue.html#a127b52830b5d62b478224b670d9e78f9" title="Makes this object refer to the same underlying ValueSource as another one. ">Value::referTo()</a> to make it point to your own <a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a> object. </p><dl class="section see"><dt>See also</dt><dd><a class="el" href="classValue.html" title="Represents a shared variant value. ">Value</a>, <a class="el" href="classSlider.html#aa10981391fe45fec36ebd7d7670a31cf" title="For a slider with two or three thumbs, this returns the higher of its values. ">getMaxValue</a>, <a class="el" href="classSlider.html#adeedf0e9e8a3402e7003bd637f04e167" title="For a slider with two or three thumbs, this returns the lower of its values. ">getMinValueObject</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setMaxValue </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>newValue</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9">NotificationType</a>&#160;</td>
          <td class="paramname"><em>notification</em> = <code><a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9aa70e4499b93d1738b0ee53de03f7a9c4">sendNotificationAsync</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>allowNudgingOfOtherValues</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>For a slider with two or three thumbs, this sets the lower of its values. </p>
<p>This will trigger a callback to <a class="el" href="classSlider_1_1Listener.html#a127bfe68835dc3e584cf3c2a427a27e5" title="Called when the slider&#39;s value is changed. ">Slider::Listener::sliderValueChanged()</a> for any listeners that are registered, and will synchronously call the <a class="el" href="classSlider.html#a5988f8e1b98cb0b28330522117d46c1c" title="Callback to indicate that the user has just moved the slider. ">valueChanged()</a> method in case subclasses want to handle it.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">newValue</td><td>the new value to set - this will be restricted by the minimum and maximum range, and will be snapped to the nearest interval if one has been set. </td></tr>
    <tr><td class="paramname">notification</td><td>can be one of the NotificationType values, to request a synchronous or asynchronous call to the <a class="el" href="classSlider.html#a5988f8e1b98cb0b28330522117d46c1c" title="Callback to indicate that the user has just moved the slider. ">valueChanged()</a> method of any Slider::Listeners that are registered. </td></tr>
    <tr><td class="paramname">allowNudgingOfOtherValues</td><td>if false, this value will be restricted to being above the min value (in a two-value slider) or the mid value (in a three-value slider). If true, then if this value goes beyond those values, it will push them along with it. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#aa10981391fe45fec36ebd7d7670a31cf" title="For a slider with two or three thumbs, this returns the higher of its values. ">getMaxValue</a>, <a class="el" href="classSlider.html#a337ba6b2c740751f5065a190e83dbd87" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMinValue</a>, <a class="el" href="classSlider.html#a430a5c4e56b39dd622f5800f787e0822" title="Changes the slider&#39;s current value. ">setValue</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setMinAndMaxValues </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>newMinValue</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>newMaxValue</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9">NotificationType</a>&#160;</td>
          <td class="paramname"><em>notification</em> = <code><a class="el" href="juce__NotificationType_8h.html#a25a31a4bdc02a0d0adb743e26dd14ba9aa70e4499b93d1738b0ee53de03f7a9c4">sendNotificationAsync</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>For a slider with two or three thumbs, this sets the minimum and maximum thumb positions. </p>
<p>This will trigger a callback to <a class="el" href="classSlider_1_1Listener.html#a127bfe68835dc3e584cf3c2a427a27e5" title="Called when the slider&#39;s value is changed. ">Slider::Listener::sliderValueChanged()</a> for any listeners that are registered, and will synchronously call the <a class="el" href="classSlider.html#a5988f8e1b98cb0b28330522117d46c1c" title="Callback to indicate that the user has just moved the slider. ">valueChanged()</a> method in case subclasses want to handle it.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">newMinValue</td><td>the new minimum value to set - this will be snapped to the nearest interval if one has been set. </td></tr>
    <tr><td class="paramname">newMaxValue</td><td>the new minimum value to set - this will be snapped to the nearest interval if one has been set. </td></tr>
    <tr><td class="paramname">notification</td><td>can be one of the NotificationType values, to request a synchronous or asynchronous call to the <a class="el" href="classSlider.html#a5988f8e1b98cb0b28330522117d46c1c" title="Callback to indicate that the user has just moved the slider. ">valueChanged()</a> method of any Slider::Listeners that are registered. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a94c2b6bd752081eb344e390a39a31363" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMaxValue</a>, <a class="el" href="classSlider.html#a337ba6b2c740751f5065a190e83dbd87" title="For a slider with two or three thumbs, this sets the lower of its values. ">setMinValue</a>, <a class="el" href="classSlider.html#a430a5c4e56b39dd622f5800f787e0822" title="Changes the slider&#39;s current value. ">setValue</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::addListener </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classSlider_1_1Listener.html">Listener</a> *&#160;</td>
          <td class="paramname"><em>listener</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a listener to be called when this slider's value changes. </p>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::removeListener </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classSlider_1_1Listener.html">Listener</a> *&#160;</td>
          <td class="paramname"><em>listener</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Removes a previously-registered listener. </p>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setDoubleClickReturnValue </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>shouldDoubleClickBeEnabled</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>valueToSetOnDoubleClick</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This lets you choose whether double-clicking moves the slider to a given position. </p>
<p>By default this is turned off, but it's handy if you want a double-click to act as a quick way of resetting a slider. Just pass in the value you want it to go to when double-clicked.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#accd2423167e9b726cb006848b96ab351" title="Returns the values last set by setDoubleClickReturnValue() method. ">getDoubleClickReturnValue</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">double Slider::getDoubleClickReturnValue </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 values last set by <a class="el" href="classSlider.html#ac22497e650b01ac15fcc992a2494e272" title="This lets you choose whether double-clicking moves the slider to a given position. ">setDoubleClickReturnValue()</a> method. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#ac22497e650b01ac15fcc992a2494e272" title="This lets you choose whether double-clicking moves the slider to a given position. ">setDoubleClickReturnValue</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool Slider::isDoubleClickReturnEnabled </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 true if double-clicking to reset to a default value is enabled. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#ac22497e650b01ac15fcc992a2494e272" title="This lets you choose whether double-clicking moves the slider to a given position. ">setDoubleClickReturnValue</a> </dd></dl>

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

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

<p>Tells the slider whether to keep sending change messages while the user is dragging the slider. </p>
<p>If set to true, a change message will only be sent when the user has dragged the slider and let go. If set to false (the default), then messages will be continuously sent as they drag it while the mouse button is still held down. </p>

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

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

<p>This lets you change whether the slider thumb jumps to the mouse position when you click. </p>
<p>By default, this is true. If it's false, then the slider moves with relative motion when you drag it.</p>
<p>This only applies to linear bars, and won't affect two- or three- value sliders. </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool Slider::getSliderSnapsToMousePosition </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 true if <a class="el" href="classSlider.html#acf58b7346a74cfc0a8c809567836df61" title="This lets you change whether the slider thumb jumps to the mouse position when you click...">setSliderSnapsToMousePosition()</a> has been enabled. </p>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::setPopupDisplayEnabled </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>isEnabled</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>parentComponentToUse</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>If enabled, this gives the slider a pop-up bubble which appears while the slider is being dragged. </p>
<p>This can be handy if your slider doesn't have a text-box, so that users can see the value just when they're changing it.</p>
<p>If you pass a component as the parentComponentToUse parameter, the pop-up bubble will be added as a child of that component when it's needed. If you pass nullptr, the pop-up will be placed on the desktop instead (note that it's a transparent window, so if you're using an OS that can't do transparent windows you'll have to add it to a parent component instead). </p>

</div>
</div>
<a id="a1b264e454184d57c69e1ab986eb15d7e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1b264e454184d57c69e1ab986eb15d7e">&sect;&nbsp;</a></span>getCurrentPopupDisplay()</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="classComponent.html">Component</a>* Slider::getCurrentPopupDisplay </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>If a popup display is enabled and is currently visible, this returns the component that is being shown, or nullptr if none is currently in use. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a0d27965d2fde911bd2a5032402be843f" title="If enabled, this gives the slider a pop-up bubble which appears while the slider is being dragged...">setPopupDisplayEnabled</a> </dd></dl>

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

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

<p>If this is set to true, then right-clicking on the slider will pop-up a menu to let the user change the way it works. </p>
<p>By default this is turned off, but when turned on, the menu will include things like velocity sensitivity, and for rotary sliders, whether they use a linear or rotary mouse-drag to move them. </p>

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

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

<p>This can be used to stop the mouse scroll-wheel from moving the slider. </p>
<p>By default it's enabled. </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">int Slider::getThumbBeingDragged </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 a number to indicate which thumb is currently being dragged by the mouse. </p>
<p>This will return 0 for the main thumb, 1 for the minimum-value thumb, 2 for the maximum-value thumb, or -1 if none is currently down. </p>

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

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

<p>Callback to indicate that the user is about to start dragging the slider. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider_1_1Listener.html#a47d244924786c6a047c81c1a05f21dc0" title="Called when the slider is about to be dragged. ">Slider::Listener::sliderDragStarted</a> </dd></dl>

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

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

<p>Callback to indicate that the user has just stopped dragging the slider. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider_1_1Listener.html#a39fd22d0de8881350b786c98f70efe57" title="Called after a drag operation has finished. ">Slider::Listener::sliderDragEnded</a> </dd></dl>

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

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

<p>Callback to indicate that the user has just moved the slider. </p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider_1_1Listener.html#a127bfe68835dc3e584cf3c2a427a27e5" title="Called when the slider&#39;s value is changed. ">Slider::Listener::sliderValueChanged</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual double Slider::getValueFromText </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>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Subclasses can override this to convert a text string to a value. </p>
<p>When the user enters something into the text-entry box, this method is called to convert it to a value. The default implementation just tries to convert it to a double.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a5a1693166d0815f812202b1a3a6eb202" title="Turns the slider&#39;s current value into a text string. ">getTextFromValue</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual <a class="el" href="classString.html">String</a> Slider::getTextFromValue </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>value</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Turns the slider's current value into a text string. </p>
<p>Subclasses can override this to customise the formatting of the text-entry box.</p>
<p>The default implementation just turns the value into a string, using a number of decimal places based on the range interval. If a suffix string has been set using <a class="el" href="classSlider.html#ac416a101b5d9a504f61e2f50dc593f61" title="Sets a suffix to append to the end of the numeric value when it&#39;s displayed as a string. ">setTextValueSuffix()</a>, this will be appended to the text.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a532774d3294a058784f7d4291b33b720" title="Subclasses can override this to convert a text string to a value. ">getValueFromText</a> </dd></dl>

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

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

<p>Sets a suffix to append to the end of the numeric value when it's displayed as a string. </p>
<p>This is used by the default implementation of <a class="el" href="classSlider.html#a5a1693166d0815f812202b1a3a6eb202" title="Turns the slider&#39;s current value into a text string. ">getTextFromValue()</a>, and is just appended to the numeric value. For more advanced formatting, you can override <a class="el" href="classSlider.html#a5a1693166d0815f812202b1a3a6eb202" title="Turns the slider&#39;s current value into a text string. ">getTextFromValue()</a> and do something else. </p>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classString.html">String</a> Slider::getTextValueSuffix </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the suffix that was set by <a class="el" href="classSlider.html#ac416a101b5d9a504f61e2f50dc593f61" title="Sets a suffix to append to the end of the numeric value when it&#39;s displayed as a string. ">setTextValueSuffix()</a>. </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">int Slider::getNumDecimalPlacesToDisplay </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 best number of decimal places to use when displaying this slider's value. </p>
<p>It calculates the fewest decimal places needed to represent numbers with the slider's interval setting. </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual double Slider::proportionOfLengthToValue </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>proportion</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Allows a user-defined mapping of distance along the slider to its value. </p>
<p>The default implementation for this performs the skewing operation that can be set up in the <a class="el" href="classSlider.html#aba8fe3610e7198bd4c1f2804736bfbf2" title="Sets up a skew factor to alter the way values are distributed. ">setSkewFactor()</a> method. Override it if you need some kind of custom mapping instead, but make sure you also implement the inverse function in <a class="el" href="classSlider.html#a0549ec352b8dca4ca4ba1afa43263370" title="Allows a user-defined mapping of value to the position of the slider along its length. ">valueToProportionOfLength()</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proportion</td><td>a value 0 to 1.0, indicating a distance along the slider </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the slider value that is represented by this position </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a0549ec352b8dca4ca4ba1afa43263370" title="Allows a user-defined mapping of value to the position of the slider along its length. ">valueToProportionOfLength</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual double Slider::valueToProportionOfLength </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>value</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Allows a user-defined mapping of value to the position of the slider along its length. </p>
<p>The default implementation for this performs the skewing operation that can be set up in the <a class="el" href="classSlider.html#aba8fe3610e7198bd4c1f2804736bfbf2" title="Sets up a skew factor to alter the way values are distributed. ">setSkewFactor()</a> method. Override it if you need some kind of custom mapping instead, but make sure you also implement the inverse function in <a class="el" href="classSlider.html#a6762e2206ad7e41cb8d6189b244d91f5" title="Allows a user-defined mapping of distance along the slider to its value. ">proportionOfLengthToValue()</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">value</td><td>a valid slider value, between the range of values specified in <a class="el" href="classSlider.html#a9fbc23e67deb4a18d172c357a7cff14c" title="Sets the limits that the slider&#39;s value can take. ">setRange()</a> </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>a value 0 to 1.0 indicating the distance along the slider that represents this value </dd></dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="classSlider.html#a6762e2206ad7e41cb8d6189b244d91f5" title="Allows a user-defined mapping of distance along the slider to its value. ">proportionOfLengthToValue</a> </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">float Slider::getPositionOfValue </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>value</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the X or Y coordinate of a value along the slider's length. </p>
<p>If the slider is horizontal, this will be the X coordinate of the given value, relative to the left of the slider. If it's vertical, then this will be the Y coordinate, relative to the top of the slider.</p>
<p>If the slider is rotary, this will throw an assertion and return 0. If the value is out-of-range, it will be constrained to the length of the slider. </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual double Slider::snapValue </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>attemptedValue</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classSlider.html#a42fd96ac0f5dca7e6942022c9a75cbde">DragMode</a>&#160;</td>
          <td class="paramname"><em>dragMode</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">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This can be overridden to allow the slider to snap to user-definable values. </p>
<p>If overridden, it will be called when the user tries to move the slider to a given position, and allows a subclass to sanity-check this value, possibly returning a different value to use instead.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">attemptedValue</td><td>the value the user is trying to enter </td></tr>
    <tr><td class="paramname">dragMode</td><td>indicates whether the user is dragging with the mouse; notDragging if they are entering the value using the text box or other non-dragging interaction </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>the value to use instead </dd></dl>

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

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::updateText </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This can be called to force the text box to update its contents. </p>
<p>(Not normally needed, as this is done automatically). </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool Slider::isHorizontal </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>True if the slider moves horizontally. </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool Slider::isVertical </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>True if the slider moves vertically. </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool Slider::isRotary </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>True if the slider is in a rotary mode. </p>

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool Slider::isBar </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>True if the slider is in a linear bar mode. </p>

</div>
</div>
<a id="a443749317634c0080d522d090ae991a5"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a443749317634c0080d522d090ae991a5">&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 Slider::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">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="a1aaa7af33f6f90a40fbf70a2bbdebc6d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1aaa7af33f6f90a40fbf70a2bbdebc6d">&sect;&nbsp;</a></span>resized()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::resized </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">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

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

</div>
</div>
<a id="a66f2c67d6de570fa0d123ae2b9b394f7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a66f2c67d6de570fa0d123ae2b9b394f7">&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 Slider::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">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="a064b6ee8d376cbce87b940b9d17c2254"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a064b6ee8d376cbce87b940b9d17c2254">&sect;&nbsp;</a></span>mouseUp()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::mouseUp </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">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

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

</div>
</div>
<a id="a6e117b6ba93f9a1954c52be4b4dfc873"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6e117b6ba93f9a1954c52be4b4dfc873">&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 Slider::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">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="a51130e5125d8483fc45fe32c958bf0cc"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a51130e5125d8483fc45fe32c958bf0cc">&sect;&nbsp;</a></span>mouseDoubleClick()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::mouseDoubleClick </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">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

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

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::mouseWheelMove </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classMouseEvent.html">MouseEvent</a> &amp;&#160;</td>
          <td class="paramname">, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="structMouseWheelDetails.html">MouseWheelDetails</a> &amp;&#160;</td>
          <td class="paramname">&#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">override</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

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

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::modifierKeysChanged </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classModifierKeys.html">ModifierKeys</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">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

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

</div>
</div>
<a id="a70afdb08e7efc4a15e9a6969fae77a63"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a70afdb08e7efc4a15e9a6969fae77a63">&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 Slider::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">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="a5d5dddfd7d8f254d9097724493878cc1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5d5dddfd7d8f254d9097724493878cc1">&sect;&nbsp;</a></span>enablementChanged()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::enablementChanged </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">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

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

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::focusOfChildComponentChanged </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classComponent.html#a7fd775ea6b1190d5d694fdffa539dfac">FocusChangeType</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">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

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

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

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void Slider::colourChanged </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">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

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

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