File: classGtk_1_1Range.html

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

<p>Inherits <a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>.</p>

<p>Inherited by <a class="el" href="classGtk_1_1Scale.html">Gtk::Scale</a>, and <a class="el" href="classGtk_1_1Scrollbar.html">Gtk::Scrollbar</a>.</p>
<div class="dynheader">
Collaboration diagram for Gtk::Range:</div>
<div class="dynsection">
<div class="center"><img src="classGtk_1_1Range__coll__graph.png" border="0" usemap="#Gtk_1_1Range_coll__map" alt="Collaboration graph"/></div>
<map name="Gtk_1_1Range_coll__map" id="Gtk_1_1Range_coll__map">
<area shape="rect" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets)." alt="" coords="68,315,159,344"/><area shape="rect" href="classGtk_1_1Object.html" title="Gtk::Object is the base class for all widgets, and for a few non&#45;widget objects such..." alt="" coords="5,237,93,267"/><area shape="rect" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="5,160,96,189"/><area shape="rect" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="51,83,171,112"/><area shape="rect" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="123,160,227,189"/><area shape="rect" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="57,5,164,35"/><area shape="rect" href="classAtk_1_1Implementor.html" title="Atk::Implementor" alt="" coords="117,237,237,267"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classGtk_1_1Range-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a001fc82f2c165a731ea7a17abcf04276">~Range</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GtkRange*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ad1794114e1e316ce6640cef1dc70720b">gobj</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#ad1794114e1e316ce6640cef1dc70720b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const GtkRange*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ad575889c11d88b292188506b361321e5">gobj</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#ad575889c11d88b292188506b361321e5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a683577936eba2cebc102187ec952dfe6">set_update_policy</a> (<a class="el" href="group__gtkmmEnums.html#gaf7fe3a304e500da5690d2d4a2253c8aa">UpdateType</a> policy)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the update policy for the range. <a href="#a683577936eba2cebc102187ec952dfe6"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#gaf7fe3a304e500da5690d2d4a2253c8aa">UpdateType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a5c5b2229af69615267b9f4b26ea9511e">get_update_policy</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the update policy of <em>range</em>. <a href="#a5c5b2229af69615267b9f4b26ea9511e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a610f70cd09e09ceca22ab736b7312b4e">set_adjustment</a> (<a class="el" href="classGtk_1_1Adjustment.html">Gtk::Adjustment</a>&amp; adjustment)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the adjustment to be used as the "model" object for this range widget. <a href="#a610f70cd09e09ceca22ab736b7312b4e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a96a9ad1303f6f8a6d26b28a385538cb4">unset_adjustment</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Adjustment.html">Gtk::Adjustment</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a7eca2fd3708b9afcd7eb37ad43228882">get_adjustment</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a> which is the "model" object for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a>. <a href="#a7eca2fd3708b9afcd7eb37ad43228882"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Adjustment.html">Gtk::Adjustment</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a8549b311d70ec3643cf46ca6c453d533">get_adjustment</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a> which is the "model" object for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a>. <a href="#a8549b311d70ec3643cf46ca6c453d533"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#acdac2c0e3eee4095af408058620b22c3">set_inverted</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Ranges normally move from lower to higher values as the slider moves from top to bottom or left to right. <a href="#acdac2c0e3eee4095af408058620b22c3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a371c2d854a528b7f98b8e6b094b1de59">get_inverted</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Range.html#acdac2c0e3eee4095af408058620b22c3" title="Ranges normally move from lower to higher values as the slider moves from top to...">set_inverted()</a>. <a href="#a371c2d854a528b7f98b8e6b094b1de59"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#adc125774f800480ca6512ed54b1078ce">set_flippable</a> (bool flippable=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If a range is flippable, it will switch its direction if it is horizontal and its direction is <a class="el" href="group__gtkmmEnums.html#ggaabfcae0b9b0cf2aab01ee96352668d3dabaf6a3e3549d6803a0052be93a567b4d">Gtk::TEXT_DIR_RTL</a>. <a href="#adc125774f800480ca6512ed54b1078ce"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a0f6a8a6335bf7209c4f840fffdef92d7">get_flippable</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value set by <a class="el" href="classGtk_1_1Range.html#adc125774f800480ca6512ed54b1078ce" title="If a range is flippable, it will switch its direction if it is horizontal and its...">set_flippable()</a>. <a href="#a0f6a8a6335bf7209c4f840fffdef92d7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#af8985dd99d064e1328816335a43faaf2">set_slider_size_fixed</a> (bool size_fixed=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether the range's slider has a fixed size, or a size that depends on it's adjustment's page size. <a href="#af8985dd99d064e1328816335a43faaf2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#afddd744e06b2414633d7c55286399fff">get_slider_size_fixed</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is useful mainly for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a> subclasses. <a href="#afddd744e06b2414633d7c55286399fff"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ac12275a5761b23df429b83d354913ac5">set_min_slider_size</a> (bool min_size=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the minimum size of the range's slider. <a href="#ac12275a5761b23df429b83d354913ac5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a682b25cf2467a1541989f67fa0770651">get_min_slider_size</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is useful mainly for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a> subclasses. <a href="#a682b25cf2467a1541989f67fa0770651"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#abe25edc43aea2007a8c99c107f3dda8c">get_range_rect</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">This method returns the area that contains the range's trough and its steppers, in the widget's <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> coordinates. <a href="#abe25edc43aea2007a8c99c107f3dda8c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ac73351fc4260a28a07bade62386e7559">get_slider_range</a> (int&amp; slider_start, int&amp; slider_end) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">This function returns sliders range along the long dimension, in widget-&gt;window coordinates. <a href="#ac73351fc4260a28a07bade62386e7559"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#aa5c7ef8052d8d276676928d934eb7d41">set_lower_stepper_sensitivity</a> (<a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a> sensitivity)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the sensitivity policy for the stepper that points to the 'lower' end of the GtkRange's adjustment. <a href="#aa5c7ef8052d8d276676928d934eb7d41"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#af3a7fb6804ebb723fa5a1a671cb50c5a">get_lower_stepper_sensitivity</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the sensitivity policy for the stepper that points to the 'lower' end of the GtkRange's adjustment. <a href="#af3a7fb6804ebb723fa5a1a671cb50c5a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ad29b8ca48aae729e0d56f864c1dbd27d">set_upper_stepper_sensitivity</a> (<a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a> sensitivity)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the sensitivity policy for the stepper that points to the 'upper' end of the GtkRange's adjustment. <a href="#ad29b8ca48aae729e0d56f864c1dbd27d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ab690aecfe53ffedd8312f48c0a9410d4">get_upper_stepper_sensitivity</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the sensitivity policy for the stepper that points to the 'upper' end of the GtkRange's adjustment. <a href="#ab690aecfe53ffedd8312f48c0a9410d4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ad2ee02706b07e1f9feea798b3fae3294">set_increments</a> (double step, double page)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the step and page sizes for the range. <a href="#ad2ee02706b07e1f9feea798b3fae3294"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a499580725b0638ec0f057bd36e3d9ff8">set_range</a> (double <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01163.html#ga49f0c87cb0e1bf950f5c2d49aa106573">min</a>, double <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01163.html#gaacf2fd7d602b70d56279425df06bd02c">max</a>)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the allowable values in the <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a>, and clamps the range value to be between <em>min</em> and <em>max</em>. <a href="#a499580725b0638ec0f057bd36e3d9ff8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a0dcdcc6742cb03a080ff24e376e3645a">set_value</a> (double <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01156.html#ga1c9e781d8d15a3814a601f471797c825">value</a>)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the current value of the range; if the value is outside the minimum or maximum range values, it will be clamped to fit inside them. <a href="#a0dcdcc6742cb03a080ff24e376e3645a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a86b988278f9f201a2cd5fe83e9ab53aa">get_value</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the current value of the range. <a href="#a86b988278f9f201a2cd5fe83e9ab53aa"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#adbc3b0bc676bde91c270a5123cefd00c">set_show_fill_level</a> (bool show_fill_level=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether a graphical fill level is show on the trough. <a href="#adbc3b0bc676bde91c270a5123cefd00c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#afdd70b7ebf77a08e5ba59fe0ca11795f">get_show_fill_level</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets whether the range displays the fill level graphically. <a href="#afdd70b7ebf77a08e5ba59fe0ca11795f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#af893a1164ec656c9e818c34fae7359e9">set_restrict_to_fill_level</a> (bool restrict_to_fill_level=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether the slider is restricted to the fill level. <a href="#af893a1164ec656c9e818c34fae7359e9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ac5f818e90a6cbe7608d71c43c3ce7b9f">get_restrict_to_fill_level</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets whether the range is restricted to the fill level. <a href="#ac5f818e90a6cbe7608d71c43c3ce7b9f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ab8e26d5fdb1b481856efa2ac3f96f39a">set_fill_level</a> (double fill_level)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the new position of the fill level indicator. <a href="#ab8e26d5fdb1b481856efa2ac3f96f39a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a7045a586050d115fe3e65e0ed1c175fd">get_fill_level</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the current position of the fill level indicator. <a href="#a7045a586050d115fe3e65e0ed1c175fd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#adabf4bf83e0798f22093406b96e873ce">signal_value_changed</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void, double &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#af7bdb240ccee224b4b26af141c52a190">signal_adjust_bounds</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void, <br class="typebreak"/>
<a class="el" href="group__gtkmmEnums.html#ga2fd32d0f58465678e475c5cf11b4a0d8">ScrollType</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a5c2e0990aae0d4999f6b68ea7ddf1538">signal_move_slider</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; bool, <br class="typebreak"/>
<a class="el" href="group__gtkmmEnums.html#ga2fd32d0f58465678e475c5cf11b4a0d8">ScrollType</a>, double &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#aab2b754831673ff60e7a5df6822cf7d1">signal_change_value</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The change_value signal is emitted when a scroll action is performed on a range. <a href="#aab2b754831673ff60e7a5df6822cf7d1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="el" href="group__gtkmmEnums.html#gaf7fe3a304e500da5690d2d4a2253c8aa">UpdateType</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a1952759bc949c06921231121f77e7923">property_update_policy</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">How the range should be updated on the screen. <a href="#a1952759bc949c06921231121f77e7923"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="el" href="group__gtkmmEnums.html#gaf7fe3a304e500da5690d2d4a2253c8aa">UpdateType</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#afb989489ea5f680b5d71f07b2c798015">property_update_policy</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">How the range should be updated on the screen. <a href="#afb989489ea5f680b5d71f07b2c798015"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#aa4226adc3c55d9cfe62b281be62cbcbf">property_adjustment</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The GtkAdjustment that contains the current value of this range object. <a href="#aa4226adc3c55d9cfe62b281be62cbcbf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ad556b53eddfd43e3e217dedbd1f3d5f6">property_adjustment</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The GtkAdjustment that contains the current value of this range object. <a href="#ad556b53eddfd43e3e217dedbd1f3d5f6"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a18409c8987a42cd86d07f73e0f7660a8">property_inverted</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Invert direction slider moves to increase range value. <a href="#a18409c8987a42cd86d07f73e0f7660a8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a1a51a74b7ac5279902e7b5374bb7bd41">property_inverted</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Invert direction slider moves to increase range value. <a href="#a1a51a74b7ac5279902e7b5374bb7bd41"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a8b5761ba002b81c9ad5d1eb0e6d9dc24">property_lower_stepper_sensitivity</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The sensitivity policy for the stepper that points to the adjustment's lower side. <a href="#a8b5761ba002b81c9ad5d1eb0e6d9dc24"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a574f04c300108f8d26d97c149bf271fd">property_lower_stepper_sensitivity</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The sensitivity policy for the stepper that points to the adjustment's lower side. <a href="#a574f04c300108f8d26d97c149bf271fd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#af4cc23c00437409c511e1c6c7fdda06a">property_upper_stepper_sensitivity</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The sensitivity policy for the stepper that points to the adjustment's upper side. <a href="#af4cc23c00437409c511e1c6c7fdda06a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a032890db8411f8d1ba7ee385493714d9">property_upper_stepper_sensitivity</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The sensitivity policy for the stepper that points to the adjustment's upper side. <a href="#a032890db8411f8d1ba7ee385493714d9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a4c174130aa95363b01a3e3f12e62d70f">property_show_fill_level</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to display a fill level indicator graphics on trough. <a href="#a4c174130aa95363b01a3e3f12e62d70f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#abbd27eb33f2ed0eed7e4ad5bd74a344b">property_show_fill_level</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to display a fill level indicator graphics on trough. <a href="#abbd27eb33f2ed0eed7e4ad5bd74a344b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#aa68d4dc7749acef14d0763745a89cf41">property_restrict_to_fill_level</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to restrict the upper boundary to the fill level. <a href="#aa68d4dc7749acef14d0763745a89cf41"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a14e29ed99e26969a007d9614017571c9">property_restrict_to_fill_level</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to restrict the upper boundary to the fill level. <a href="#a14e29ed99e26969a007d9614017571c9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; double &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a977e03d85cfac0113894bee43a7f06b2">property_fill_level</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The fill level. <a href="#a977e03d85cfac0113894bee43a7f06b2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; double &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a792a5e12252413ed375aaadd4349e291">property_fill_level</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The fill level. <a href="#a792a5e12252413ed375aaadd4349e291"></a><br/></td></tr>
<tr><td colspan="2"><h2>Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a1d3e4c4da265a723d6ed0707f10d0fb8">on_value_changed</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a17472a7ad11c2f4023a2f36ffe8de61a">on_adjust_bounds</a> (double new_value)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#ab1357af5a89c8d0d136e259fdc11abfc">on_move_slider</a> (<a class="el" href="group__gtkmmEnums.html#ga2fd32d0f58465678e475c5cf11b4a0d8">ScrollType</a> scroll)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#aecb34981203272244e0169ebfcb7c7f2">Range</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a480f8d49b343dc0e3a91e475fee5f43e">get_range_border_vfunc</a> (<a class="el" href="namespaceGtk.html#a0aed0ea6fbd347e76872f23f9313545e">Gtk::Border</a>* border) const </td></tr>
<tr><td colspan="2"><h2>Related Functions</h2></td></tr>
<tr><td colspan="2"><p>(Note that these are not member functions.) </p>
<br/><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Range.html">Gtk::Range</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Range.html#a7cdf860d055a8c82f352f0941a0d2613">wrap</a> (GtkRange* object, bool take_copy=false)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a7cdf860d055a8c82f352f0941a0d2613"></a><br/></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p>Base class for widgets which visualize an adjustment. </p>
<hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a001fc82f2c165a731ea7a17abcf04276"></a><!-- doxytag: member="Gtk::Range::~Range" ref="a001fc82f2c165a731ea7a17abcf04276" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual Gtk::Range::~Range </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="aecb34981203272244e0169ebfcb7c7f2"></a><!-- doxytag: member="Gtk::Range::Range" ref="aecb34981203272244e0169ebfcb7c7f2" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">Gtk::Range::Range </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a8549b311d70ec3643cf46ca6c453d533"></a><!-- doxytag: member="Gtk::Range::get_adjustment" ref="a8549b311d70ec3643cf46ca6c453d533" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classGtk_1_1Adjustment.html">Gtk::Adjustment</a>* Gtk::Range::get_adjustment </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Get the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a> which is the "model" object for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a>. </p>
<p>See <a class="el" href="classGtk_1_1Range.html#a610f70cd09e09ceca22ab736b7312b4e" title="Sets the adjustment to be used as the &quot;model&quot; object for this range widget...">set_adjustment()</a> for details. The return value does not have a reference added, so should not be unreferenced. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a7eca2fd3708b9afcd7eb37ad43228882"></a><!-- doxytag: member="Gtk::Range::get_adjustment" ref="a7eca2fd3708b9afcd7eb37ad43228882" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Adjustment.html">Gtk::Adjustment</a>* Gtk::Range::get_adjustment </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Get the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a> which is the "model" object for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a>. </p>
<p>See <a class="el" href="classGtk_1_1Range.html#a610f70cd09e09ceca22ab736b7312b4e" title="Sets the adjustment to be used as the &quot;model&quot; object for this range widget...">set_adjustment()</a> for details. The return value does not have a reference added, so should not be unreferenced. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a7045a586050d115fe3e65e0ed1c175fd"></a><!-- doxytag: member="Gtk::Range::get_fill_level" ref="a7045a586050d115fe3e65e0ed1c175fd" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Gtk::Range::get_fill_level </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the current position of the fill level indicator. </p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000072">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The current fill level. </dd></dl>

</div>
</div>
<a class="anchor" id="a0f6a8a6335bf7209c4f840fffdef92d7"></a><!-- doxytag: member="Gtk::Range::get_flippable" ref="a0f6a8a6335bf7209c4f840fffdef92d7" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Range::get_flippable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Range.html#adc125774f800480ca6512ed54b1078ce" title="If a range is flippable, it will switch its direction if it is horizontal and its...">set_flippable()</a>. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000060">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the range is flippable. </dd></dl>

</div>
</div>
<a class="anchor" id="a371c2d854a528b7f98b8e6b094b1de59"></a><!-- doxytag: member="Gtk::Range::get_inverted" ref="a371c2d854a528b7f98b8e6b094b1de59" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Range::get_inverted </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the value set by <a class="el" href="classGtk_1_1Range.html#acdac2c0e3eee4095af408058620b22c3" title="Ranges normally move from lower to higher values as the slider moves from top to...">set_inverted()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the range is inverted. </dd></dl>

</div>
</div>
<a class="anchor" id="af3a7fb6804ebb723fa5a1a671cb50c5a"></a><!-- doxytag: member="Gtk::Range::get_lower_stepper_sensitivity" ref="af3a7fb6804ebb723fa5a1a671cb50c5a" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a> Gtk::Range::get_lower_stepper_sensitivity </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the sensitivity policy for the stepper that points to the 'lower' end of the GtkRange's adjustment. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000207">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The lower stepper's sensitivity policy. </dd></dl>

</div>
</div>
<a class="anchor" id="a682b25cf2467a1541989f67fa0770651"></a><!-- doxytag: member="Gtk::Range::get_min_slider_size" ref="a682b25cf2467a1541989f67fa0770651" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Range::get_min_slider_size </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>This function is useful mainly for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a> subclasses. </p>
<p>See <a class="el" href="classGtk_1_1Range.html#ac12275a5761b23df429b83d354913ac5" title="Sets the minimum size of the range&#39;s slider.">set_min_slider_size()</a>.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000023">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The minimum size of the range's slider. </dd></dl>

</div>
</div>
<a class="anchor" id="a480f8d49b343dc0e3a91e475fee5f43e"></a><!-- doxytag: member="Gtk::Range::get_range_border_vfunc" ref="a480f8d49b343dc0e3a91e475fee5f43e" args="(Gtk::Border *border) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gtk::Range::get_range_border_vfunc </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="namespaceGtk.html#a0aed0ea6fbd347e76872f23f9313545e">Gtk::Border</a>*&#160;</td>
          <td class="paramname"> <em>border</em></td>
          <td>&#160;)&#160;</td>
          <td> const<code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="abe25edc43aea2007a8c99c107f3dda8c"></a><!-- doxytag: member="Gtk::Range::get_range_rect" ref="abe25edc43aea2007a8c99c107f3dda8c" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGdk_1_1Rectangle.html">Gdk::Rectangle</a> Gtk::Range::get_range_rect </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>This method returns the area that contains the range's trough and its steppers, in the widget's <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> coordinates. </p>
<p>This method is useful mainly for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Range</a> subclasses.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The range rectangle.</dd></dl>
<p>@newin{2,20} </p>

</div>
</div>
<a class="anchor" id="ac5f818e90a6cbe7608d71c43c3ce7b9f"></a><!-- doxytag: member="Gtk::Range::get_restrict_to_fill_level" ref="ac5f818e90a6cbe7608d71c43c3ce7b9f" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Range::get_restrict_to_fill_level </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets whether the range is restricted to the fill level. </p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000070">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>range</em> is restricted to the fill level. </dd></dl>

</div>
</div>
<a class="anchor" id="afdd70b7ebf77a08e5ba59fe0ca11795f"></a><!-- doxytag: member="Gtk::Range::get_show_fill_level" ref="afdd70b7ebf77a08e5ba59fe0ca11795f" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Range::get_show_fill_level </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets whether the range displays the fill level graphically. </p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000068">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>range</em> shows the fill level. </dd></dl>

</div>
</div>
<a class="anchor" id="ac73351fc4260a28a07bade62386e7559"></a><!-- doxytag: member="Gtk::Range::get_slider_range" ref="ac73351fc4260a28a07bade62386e7559" args="(int &amp;slider_start, int &amp;slider_end) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::get_slider_range </td>
          <td>(</td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>slider_start</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int &amp;&#160;</td>
          <td class="paramname"> <em>slider_end</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>This function returns sliders range along the long dimension, in widget-&gt;window coordinates. </p>
<p>This function is useful mainly for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a> subclasses.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000024">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>slider_start</em>&#160;</td><td>Return location for the slider's start, or <code>0</code>. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>slider_end</em>&#160;</td><td>Return location for the slider's end, or <code>0</code>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="afddd744e06b2414633d7c55286399fff"></a><!-- doxytag: member="Gtk::Range::get_slider_size_fixed" ref="afddd744e06b2414633d7c55286399fff" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Range::get_slider_size_fixed </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>This function is useful mainly for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a> subclasses. </p>
<p>See <a class="el" href="classGtk_1_1Range.html#af8985dd99d064e1328816335a43faaf2" title="Sets whether the range&#39;s slider has a fixed size, or a size that depends on it&#39;s...">set_slider_size_fixed()</a>.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000021">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether the range's slider has a fixed size. </dd></dl>

</div>
</div>
<a class="anchor" id="a5c5b2229af69615267b9f4b26ea9511e"></a><!-- doxytag: member="Gtk::Range::get_update_policy" ref="a5c5b2229af69615267b9f4b26ea9511e" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__gtkmmEnums.html#gaf7fe3a304e500da5690d2d4a2253c8aa">UpdateType</a> Gtk::Range::get_update_policy </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the update policy of <em>range</em>. </p>
<p>See <a class="el" href="classGtk_1_1Range.html#a683577936eba2cebc102187ec952dfe6" title="Sets the update policy for the range.">set_update_policy()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The current update policy. </dd></dl>

</div>
</div>
<a class="anchor" id="ab690aecfe53ffedd8312f48c0a9410d4"></a><!-- doxytag: member="Gtk::Range::get_upper_stepper_sensitivity" ref="ab690aecfe53ffedd8312f48c0a9410d4" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a> Gtk::Range::get_upper_stepper_sensitivity </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the sensitivity policy for the stepper that points to the 'upper' end of the GtkRange's adjustment. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000209">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The upper stepper's sensitivity policy. </dd></dl>

</div>
</div>
<a class="anchor" id="a86b988278f9f201a2cd5fe83e9ab53aa"></a><!-- doxytag: member="Gtk::Range::get_value" ref="a86b988278f9f201a2cd5fe83e9ab53aa" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Gtk::Range::get_value </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the current value of the range. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Current value of the range. </dd></dl>

</div>
</div>
<a class="anchor" id="ad575889c11d88b292188506b361321e5"></a><!-- doxytag: member="Gtk::Range::gobj" ref="ad575889c11d88b292188506b361321e5" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const GtkRange* Gtk::Range::gobj </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const<code> [inline]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Provides access to the underlying C GtkObject. </p>

<p>Reimplemented from <a class="el" href="classGtk_1_1Widget.html#ad998178529a53b80f3de96d10b1deffd">Gtk::Widget</a>.</p>

<p>Reimplemented in <a class="el" href="classGtk_1_1Scale.html#a07df5a12a5e4a27aff06cbe9e66e3d86">Gtk::Scale</a>, <a class="el" href="classGtk_1_1VScale.html#ac6e6ee0b573d46e6d0510ce5d6a3fe59">Gtk::VScale</a>, <a class="el" href="classGtk_1_1HScale.html#a52e921b7a37716ff8d6f33993a3cb1f6">Gtk::HScale</a>, <a class="el" href="classGtk_1_1Scrollbar.html#ac3128aa0a3a8116b3c7b740184085cf8">Gtk::Scrollbar</a>, <a class="el" href="classGtk_1_1VScrollbar.html#a2e550157a3a2dc18478b2e6f1a74270c">Gtk::VScrollbar</a>, and <a class="el" href="classGtk_1_1HScrollbar.html#a9a6e4e47e633bb9d1d0680587d1ced0b">Gtk::HScrollbar</a>.</p>

</div>
</div>
<a class="anchor" id="ad1794114e1e316ce6640cef1dc70720b"></a><!-- doxytag: member="Gtk::Range::gobj" ref="ad1794114e1e316ce6640cef1dc70720b" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">GtkRange* Gtk::Range::gobj </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [inline]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Provides access to the underlying C GtkObject. </p>

<p>Reimplemented from <a class="el" href="classGtk_1_1Widget.html#a6667a82920375b2ebde07bc1ffdc3641">Gtk::Widget</a>.</p>

<p>Reimplemented in <a class="el" href="classGtk_1_1Scale.html#afc7d5fb5223af20c105c473dff2cb5bf">Gtk::Scale</a>, <a class="el" href="classGtk_1_1VScale.html#a902a9a6fa87f96142c06b272e8b84513">Gtk::VScale</a>, <a class="el" href="classGtk_1_1HScale.html#af8619097cce3380c90770b0f70fb032e">Gtk::HScale</a>, <a class="el" href="classGtk_1_1Scrollbar.html#a37b9bc182ebc88880d99d6dd8155a247">Gtk::Scrollbar</a>, <a class="el" href="classGtk_1_1VScrollbar.html#a5681ed8b45d6e71c97fee8563fafc403">Gtk::VScrollbar</a>, and <a class="el" href="classGtk_1_1HScrollbar.html#ae713c43436a82d402a6ec5e8876d8ed0">Gtk::HScrollbar</a>.</p>

</div>
</div>
<a class="anchor" id="a17472a7ad11c2f4023a2f36ffe8de61a"></a><!-- doxytag: member="Gtk::Range::on_adjust_bounds" ref="a17472a7ad11c2f4023a2f36ffe8de61a" args="(double new_value)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gtk::Range::on_adjust_bounds </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"> <em>new_value</em></td>
          <td>&#160;)&#160;</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="ab1357af5a89c8d0d136e259fdc11abfc"></a><!-- doxytag: member="Gtk::Range::on_move_slider" ref="ab1357af5a89c8d0d136e259fdc11abfc" args="(ScrollType scroll)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gtk::Range::on_move_slider </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga2fd32d0f58465678e475c5cf11b4a0d8">ScrollType</a>&#160;</td>
          <td class="paramname"> <em>scroll</em></td>
          <td>&#160;)&#160;</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a1d3e4c4da265a723d6ed0707f10d0fb8"></a><!-- doxytag: member="Gtk::Range::on_value_changed" ref="a1d3e4c4da265a723d6ed0707f10d0fb8" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gtk::Range::on_value_changed </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="ad556b53eddfd43e3e217dedbd1f3d5f6"></a><!-- doxytag: member="Gtk::Range::property_adjustment" ref="ad556b53eddfd43e3e217dedbd1f3d5f6" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>*&gt; Gtk::Range::property_adjustment </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The GtkAdjustment that contains the current value of this range object. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="aa4226adc3c55d9cfe62b281be62cbcbf"></a><!-- doxytag: member="Gtk::Range::property_adjustment" ref="aa4226adc3c55d9cfe62b281be62cbcbf" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a>*&gt; Gtk::Range::property_adjustment </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The GtkAdjustment that contains the current value of this range object. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a792a5e12252413ed375aaadd4349e291"></a><!-- doxytag: member="Gtk::Range::property_fill_level" ref="a792a5e12252413ed375aaadd4349e291" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;double&gt; Gtk::Range::property_fill_level </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The fill level. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a977e03d85cfac0113894bee43a7f06b2"></a><!-- doxytag: member="Gtk::Range::property_fill_level" ref="a977e03d85cfac0113894bee43a7f06b2" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;double&gt; Gtk::Range::property_fill_level </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The fill level. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a1a51a74b7ac5279902e7b5374bb7bd41"></a><!-- doxytag: member="Gtk::Range::property_inverted" ref="a1a51a74b7ac5279902e7b5374bb7bd41" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Range::property_inverted </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Invert direction slider moves to increase range value. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a18409c8987a42cd86d07f73e0f7660a8"></a><!-- doxytag: member="Gtk::Range::property_inverted" ref="a18409c8987a42cd86d07f73e0f7660a8" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Range::property_inverted </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Invert direction slider moves to increase range value. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a574f04c300108f8d26d97c149bf271fd"></a><!-- doxytag: member="Gtk::Range::property_lower_stepper_sensitivity" ref="a574f04c300108f8d26d97c149bf271fd" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a>&gt; Gtk::Range::property_lower_stepper_sensitivity </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The sensitivity policy for the stepper that points to the adjustment's lower side. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a8b5761ba002b81c9ad5d1eb0e6d9dc24"></a><!-- doxytag: member="Gtk::Range::property_lower_stepper_sensitivity" ref="a8b5761ba002b81c9ad5d1eb0e6d9dc24" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a>&gt; Gtk::Range::property_lower_stepper_sensitivity </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The sensitivity policy for the stepper that points to the adjustment's lower side. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a14e29ed99e26969a007d9614017571c9"></a><!-- doxytag: member="Gtk::Range::property_restrict_to_fill_level" ref="a14e29ed99e26969a007d9614017571c9" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Range::property_restrict_to_fill_level </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether to restrict the upper boundary to the fill level. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="aa68d4dc7749acef14d0763745a89cf41"></a><!-- doxytag: member="Gtk::Range::property_restrict_to_fill_level" ref="aa68d4dc7749acef14d0763745a89cf41" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Range::property_restrict_to_fill_level </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether to restrict the upper boundary to the fill level. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="abbd27eb33f2ed0eed7e4ad5bd74a344b"></a><!-- doxytag: member="Gtk::Range::property_show_fill_level" ref="abbd27eb33f2ed0eed7e4ad5bd74a344b" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::Range::property_show_fill_level </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether to display a fill level indicator graphics on trough. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a4c174130aa95363b01a3e3f12e62d70f"></a><!-- doxytag: member="Gtk::Range::property_show_fill_level" ref="a4c174130aa95363b01a3e3f12e62d70f" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::Range::property_show_fill_level </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether to display a fill level indicator graphics on trough. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="afb989489ea5f680b5d71f07b2c798015"></a><!-- doxytag: member="Gtk::Range::property_update_policy" ref="afb989489ea5f680b5d71f07b2c798015" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="el" href="group__gtkmmEnums.html#gaf7fe3a304e500da5690d2d4a2253c8aa">UpdateType</a>&gt; Gtk::Range::property_update_policy </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>How the range should be updated on the screen. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a1952759bc949c06921231121f77e7923"></a><!-- doxytag: member="Gtk::Range::property_update_policy" ref="a1952759bc949c06921231121f77e7923" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="el" href="group__gtkmmEnums.html#gaf7fe3a304e500da5690d2d4a2253c8aa">UpdateType</a>&gt; Gtk::Range::property_update_policy </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>How the range should be updated on the screen. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a032890db8411f8d1ba7ee385493714d9"></a><!-- doxytag: member="Gtk::Range::property_upper_stepper_sensitivity" ref="a032890db8411f8d1ba7ee385493714d9" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a>&gt; Gtk::Range::property_upper_stepper_sensitivity </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The sensitivity policy for the stepper that points to the adjustment's upper side. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="af4cc23c00437409c511e1c6c7fdda06a"></a><!-- doxytag: member="Gtk::Range::property_upper_stepper_sensitivity" ref="af4cc23c00437409c511e1c6c7fdda06a" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a>&gt; Gtk::Range::property_upper_stepper_sensitivity </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The sensitivity policy for the stepper that points to the adjustment's upper side. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a610f70cd09e09ceca22ab736b7312b4e"></a><!-- doxytag: member="Gtk::Range::set_adjustment" ref="a610f70cd09e09ceca22ab736b7312b4e" args="(Gtk::Adjustment &amp;adjustment)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_adjustment </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Adjustment.html">Gtk::Adjustment</a>&amp;&#160;</td>
          <td class="paramname"> <em>adjustment</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the adjustment to be used as the "model" object for this range widget. </p>
<p>The adjustment indicates the current range value, the minimum and maximum range values, the step/page increments used for keybindings and scrolling, and the page size. The page size is normally 0 for <a class="el" href="classGtk_1_1Scale.html" title="Abstract base clase for Gtk::HScale and Gtk::VScale.">Gtk::Scale</a> and nonzero for <a class="el" href="classGtk_1_1Scrollbar.html" title="The Gtk::Scrollbar widget is an abstract base class for Gtk::HScrollbar and Gtk::VScrollbar...">Gtk::Scrollbar</a>, and indicates the size of the visible area of the widget being scrolled. The page size affects the size of the scrollbar slider. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>adjustment</em>&#160;</td><td>A <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ab8e26d5fdb1b481856efa2ac3f96f39a"></a><!-- doxytag: member="Gtk::Range::set_fill_level" ref="ab8e26d5fdb1b481856efa2ac3f96f39a" args="(double fill_level)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_fill_level </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"> <em>fill_level</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the new position of the fill level indicator. </p>
<p>The "fill level" is probably best described by its most prominent use case, which is an indicator for the amount of pre-buffering in a streaming media player. In that use case, the value of the range would indicate the current play position, and the fill level would be the position up to which the file/stream has been downloaded.</p>
<p>This amount of prebuffering can be displayed on the range's trough and is themeable separately from the trough. To enable fill level display, use <a class="el" href="classGtk_1_1Range.html#adbc3b0bc676bde91c270a5123cefd00c" title="Sets whether a graphical fill level is show on the trough.">set_show_fill_level()</a>. The range defaults to not showing the fill level.</p>
<p>Additionally, it's possible to restrict the range's slider position to values which are smaller than the fill level. This is controller by <a class="el" href="classGtk_1_1Range.html#af893a1164ec656c9e818c34fae7359e9" title="Sets whether the slider is restricted to the fill level.">set_restrict_to_fill_level()</a> and is by default enabled.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000071">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>fill_level</em>&#160;</td><td>The new position of the fill level indicator. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="adc125774f800480ca6512ed54b1078ce"></a><!-- doxytag: member="Gtk::Range::set_flippable" ref="adc125774f800480ca6512ed54b1078ce" args="(bool flippable=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_flippable </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>flippable</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If a range is flippable, it will switch its direction if it is horizontal and its direction is <a class="el" href="group__gtkmmEnums.html#ggaabfcae0b9b0cf2aab01ee96352668d3dabaf6a3e3549d6803a0052be93a567b4d">Gtk::TEXT_DIR_RTL</a>. </p>
<p>See <a class="el" href="classGtk_1_1Widget.html#af7f64bdff212b777efd1b63e30b2b942" title="Gets the reading direction for a particular widget.">Gtk::Widget::get_direction()</a>.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000059">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>flippable</em>&#160;</td><td><code>true</code> to make the range flippable. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ad2ee02706b07e1f9feea798b3fae3294"></a><!-- doxytag: member="Gtk::Range::set_increments" ref="ad2ee02706b07e1f9feea798b3fae3294" args="(double step, double page)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_increments </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"> <em>step</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"> <em>page</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the step and page sizes for the range. </p>
<p>The step size is used when the user clicks the <a class="el" href="classGtk_1_1Scrollbar.html" title="The Gtk::Scrollbar widget is an abstract base class for Gtk::HScrollbar and Gtk::VScrollbar...">Gtk::Scrollbar</a> arrows or moves <a class="el" href="classGtk_1_1Scale.html" title="Abstract base clase for Gtk::HScale and Gtk::VScale.">Gtk::Scale</a> via arrow keys. The page size is used for example when moving via Page Up or Page Down keys. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>step</em>&#160;</td><td>Step size. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>page</em>&#160;</td><td>Page size. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="acdac2c0e3eee4095af408058620b22c3"></a><!-- doxytag: member="Gtk::Range::set_inverted" ref="acdac2c0e3eee4095af408058620b22c3" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_inverted </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>setting</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Ranges normally move from lower to higher values as the slider moves from top to bottom or left to right. </p>
<p>Inverted ranges have higher values at the top or on the right rather than on the bottom or left. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>setting</em>&#160;</td><td><code>true</code> to invert the range. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aa5c7ef8052d8d276676928d934eb7d41"></a><!-- doxytag: member="Gtk::Range::set_lower_stepper_sensitivity" ref="aa5c7ef8052d8d276676928d934eb7d41" args="(SensitivityType sensitivity)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_lower_stepper_sensitivity </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a>&#160;</td>
          <td class="paramname"> <em>sensitivity</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the sensitivity policy for the stepper that points to the 'lower' end of the GtkRange's adjustment. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000206">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>sensitivity</em>&#160;</td><td>The lower stepper's sensitivity policy. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ac12275a5761b23df429b83d354913ac5"></a><!-- doxytag: member="Gtk::Range::set_min_slider_size" ref="ac12275a5761b23df429b83d354913ac5" args="(bool min_size=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_min_slider_size </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>min_size</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the minimum size of the range's slider. </p>
<p>This function is useful mainly for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a> subclasses.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000022">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>min_size</em>&#160;</td><td>The slider's minimum size. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a499580725b0638ec0f057bd36e3d9ff8"></a><!-- doxytag: member="Gtk::Range::set_range" ref="a499580725b0638ec0f057bd36e3d9ff8" args="(double min, double max)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_range </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"> <em>min</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"> <em>max</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the allowable values in the <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a>, and clamps the range value to be between <em>min</em> and <em>max</em>. </p>
<p>(If the range has a non-zero page size, it is clamped between <em>min</em> and <em>max</em> - page-size.) </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>min</em>&#160;</td><td>Minimum range value. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>max</em>&#160;</td><td>Maximum range value. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="af893a1164ec656c9e818c34fae7359e9"></a><!-- doxytag: member="Gtk::Range::set_restrict_to_fill_level" ref="af893a1164ec656c9e818c34fae7359e9" args="(bool restrict_to_fill_level=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_restrict_to_fill_level </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>restrict_to_fill_level</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets whether the slider is restricted to the fill level. </p>
<p>See <a class="el" href="classGtk_1_1Range.html#ab8e26d5fdb1b481856efa2ac3f96f39a" title="Set the new position of the fill level indicator.">set_fill_level()</a> for a general description of the fill level concept.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000069">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>restrict_to_fill_level</em>&#160;</td><td>Whether the fill level restricts slider movement. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="adbc3b0bc676bde91c270a5123cefd00c"></a><!-- doxytag: member="Gtk::Range::set_show_fill_level" ref="adbc3b0bc676bde91c270a5123cefd00c" args="(bool show_fill_level=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_show_fill_level </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>show_fill_level</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets whether a graphical fill level is show on the trough. </p>
<p>See <a class="el" href="classGtk_1_1Range.html#ab8e26d5fdb1b481856efa2ac3f96f39a" title="Set the new position of the fill level indicator.">set_fill_level()</a> for a general description of the fill level concept.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000067">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>show_fill_level</em>&#160;</td><td>Whether a fill level indicator graphics is shown. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="af8985dd99d064e1328816335a43faaf2"></a><!-- doxytag: member="Gtk::Range::set_slider_size_fixed" ref="af8985dd99d064e1328816335a43faaf2" args="(bool size_fixed=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_slider_size_fixed </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>size_fixed</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets whether the range's slider has a fixed size, or a size that depends on it's adjustment's page size. </p>
<p>This function is useful mainly for <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a> subclasses.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000020">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>size_fixed</em>&#160;</td><td><code>true</code> to make the slider size constant. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a683577936eba2cebc102187ec952dfe6"></a><!-- doxytag: member="Gtk::Range::set_update_policy" ref="a683577936eba2cebc102187ec952dfe6" args="(UpdateType policy)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_update_policy </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gaf7fe3a304e500da5690d2d4a2253c8aa">UpdateType</a>&#160;</td>
          <td class="paramname"> <em>policy</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the update policy for the range. </p>
<p><a class="el" href="group__gtkmmEnums.html#ggaf7fe3a304e500da5690d2d4a2253c8aaa004caccf1b1a1f15a797e0a13c4415d2">Gtk::UPDATE_CONTINUOUS</a> means that anytime the range slider is moved, the range value will change and the value_changed signal will be emitted. <a class="el" href="group__gtkmmEnums.html#ggaf7fe3a304e500da5690d2d4a2253c8aaa1db4ba84f5677dc478330291641ecec9">Gtk::UPDATE_DELAYED</a> means that the value will be updated after a brief timeout where no slider motion occurs, so updates are spaced by a short time rather than continuous. <a class="el" href="group__gtkmmEnums.html#ggaf7fe3a304e500da5690d2d4a2253c8aaa8a3091cca2b0f4b97895ebb4aa8f3d74">Gtk::UPDATE_DISCONTINUOUS</a> means that the value will only be updated when the user releases the button and ends the slider drag operation. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>policy</em>&#160;</td><td>Update policy. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ad29b8ca48aae729e0d56f864c1dbd27d"></a><!-- doxytag: member="Gtk::Range::set_upper_stepper_sensitivity" ref="ad29b8ca48aae729e0d56f864c1dbd27d" args="(SensitivityType sensitivity)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_upper_stepper_sensitivity </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga20c60e5d15f0bd720bdbd72567414baa">SensitivityType</a>&#160;</td>
          <td class="paramname"> <em>sensitivity</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the sensitivity policy for the stepper that points to the 'upper' end of the GtkRange's adjustment. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000208">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>sensitivity</em>&#160;</td><td>The upper stepper's sensitivity policy. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a0dcdcc6742cb03a080ff24e376e3645a"></a><!-- doxytag: member="Gtk::Range::set_value" ref="a0dcdcc6742cb03a080ff24e376e3645a" args="(double value)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::set_value </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"> <em>value</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the current value of the range; if the value is outside the minimum or maximum range values, it will be clamped to fit inside them. </p>
<p>The range emits the <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01156.html#ga1c9e781d8d15a3814a601f471797c825">Gtk::Range::value</a>-changed signal if the value changes. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>value</em>&#160;</td><td>New value of the range. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="af7bdb240ccee224b4b26af141c52a190"></a><!-- doxytag: member="Gtk::Range::signal_adjust_bounds" ref="af7bdb240ccee224b4b26af141c52a190" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void,double &gt; Gtk::Range::signal_adjust_bounds </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>void on_my_adjust_bounds(double new_value)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="aab2b754831673ff60e7a5df6822cf7d1"></a><!-- doxytag: member="Gtk::Range::signal_change_value" ref="aab2b754831673ff60e7a5df6822cf7d1" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; bool,<a class="el" href="group__gtkmmEnums.html#ga2fd32d0f58465678e475c5cf11b4a0d8">ScrollType</a>,double &gt; Gtk::Range::signal_change_value </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The change_value signal is emitted when a scroll action is performed on a range. </p>
<p>It allows an application to determine the type of scroll event that occurred and the resultant new value. The application can handle the event itself and return true to prevent further processing. Or, by returning false, it can pass the event to other handlers until the default GTK+ handler is reached.</p>
<p>The value parameter is unrounded. An application that overrides the change_value signal is responsible for clamping the value to the desired number of decimal digits; the default handler clamps the value based on range-&gt;round_digits.</p>
<p>It is not possible to use delayed update policies in an overridden change_value handler.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>scroll</em>&#160;</td><td>the type of scroll action that was performed. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>new_value</em>&#160;</td><td>the new value resulting from the scroll action. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true to prevent other handlers from being invoked for the signal, or false to propagate the signal further.</dd></dl>
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>bool on_my_change_value(ScrollType scroll, double new_value)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a5c2e0990aae0d4999f6b68ea7ddf1538"></a><!-- doxytag: member="Gtk::Range::signal_move_slider" ref="a5c2e0990aae0d4999f6b68ea7ddf1538" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void,<a class="el" href="group__gtkmmEnums.html#ga2fd32d0f58465678e475c5cf11b4a0d8">ScrollType</a> &gt; Gtk::Range::signal_move_slider </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>void on_my_move_slider(ScrollType scroll)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="adabf4bf83e0798f22093406b96e873ce"></a><!-- doxytag: member="Gtk::Range::signal_value_changed" ref="adabf4bf83e0798f22093406b96e873ce" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt; Gtk::Range::signal_value_changed </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>void on_my_value_changed()</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a96a9ad1303f6f8a6d26b28a385538cb4"></a><!-- doxytag: member="Gtk::Range::unset_adjustment" ref="a96a9ad1303f6f8a6d26b28a385538cb4" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Range::unset_adjustment </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<hr/><h2>Friends And Related Function Documentation</h2>
<a class="anchor" id="a7cdf860d055a8c82f352f0941a0d2613"></a><!-- doxytag: member="Gtk::Range::wrap" ref="a7cdf860d055a8c82f352f0941a0d2613" args="(GtkRange *object, bool take_copy=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Range.html">Gtk::Range</a>* wrap </td>
          <td>(</td>
          <td class="paramtype">GtkRange *&#160;</td>
          <td class="paramname"> <em>object</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>take_copy</em> = <code>false</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td><code> [related]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>object</em>&#160;</td><td>The C instance. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>take_copy</em>&#160;</td><td>False if the result should take ownership of the C instance. True if it should take a new copy or ref. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A C++ instance that wraps this C instance. </dd></dl>

</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>gtkmm/range.h</li>
</ul>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on Tue May 4 13:21:58 2010 for gtkmm by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>