File: classGtk_1_1Adjustment.html

package info (click to toggle)
gtkmm2.4 1%3A2.24.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 76,100 kB
  • sloc: xml: 80,438; sh: 10,948; cpp: 8,005; perl: 236; makefile: 224
file content (1060 lines) | stat: -rw-r--r-- 67,437 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
<!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::Adjustment Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.3 -->
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">gtkmm&#160;<span id="projectnumber">2.24.2</span></div>
  </td>
 </tr>
 </tbody>
</table>
</div>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="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 id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
  <div id="nav-path" class="navpath">
    <ul>
      <li class="navelem"><a class="el" href="namespaceGtk.html">Gtk</a> </li>
      <li class="navelem"><a class="el" href="classGtk_1_1Adjustment.html">Adjustment</a> </li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="#related">Related Functions</a> </div>
  <div class="headertitle">
<h1>Gtk::Adjustment Class Reference</h1> </div>
</div>
<div class="contents">
<!-- doxytag: class="Gtk::Adjustment" --><!-- doxytag: inherits="Gtk::Object" -->
<p>A class representing an adjustable bounded value. <a href="#_details">More...</a></p>
<div class="dynheader">
Inheritance diagram for Gtk::Adjustment:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1Adjustment__inherit__graph.png" border="0" usemap="#Gtk_1_1Adjustment_inherit__map" alt="Inheritance graph"/></div>
<map name="Gtk_1_1Adjustment_inherit__map" id="Gtk_1_1Adjustment_inherit__map">
<area shape="rect" id="node2" href="classGtk_1_1Object.html" title="Gtk::Object is the base class for all widgets, and for a few non&#45;widget objects such as Gtk::Adjustme..." alt="" coords="21,246,109,277"/><area shape="rect" id="node4" 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="20,166,111,197"/><area shape="rect" id="node6" 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="5,86,125,117"/><area shape="rect" id="node8" 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="12,6,119,37"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Gtk::Adjustment:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1Adjustment__coll__graph.png" border="0" usemap="#Gtk_1_1Adjustment_coll__map" alt="Collaboration graph"/></div>
<map name="Gtk_1_1Adjustment_coll__map" id="Gtk_1_1Adjustment_coll__map">
<area shape="rect" id="node2" href="classGtk_1_1Object.html" title="Gtk::Object is the base class for all widgets, and for a few non&#45;widget objects such as Gtk::Adjustme..." alt="" coords="21,246,109,277"/><area shape="rect" id="node4" 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="20,166,111,197"/><area shape="rect" id="node6" 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="5,86,125,117"/><area shape="rect" id="node8" 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="12,6,119,37"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classGtk_1_1Adjustment-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Adjustment.html#ae6d3539498b3276200368995440de533">~Adjustment</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GtkAdjustment*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Adjustment.html#a73a1955c20e1a90ffffe17a597e43ffb">gobj</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a73a1955c20e1a90ffffe17a597e43ffb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const GtkAdjustment*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Adjustment.html#a323ca8d81fe1ed6d052ec4f906e364dd">gobj</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a323ca8d81fe1ed6d052ec4f906e364dd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Adjustment.html#a46faef0350c12e09a3e0249af5673d75">Adjustment</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/a01580.html#ga1c9e781d8d15a3814a601f471797c825">value</a>, double lower, double upper, double step_increment=1, double page_increment=10, double page_size=0)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor to create an <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a> object. <a href="#a46faef0350c12e09a3e0249af5673d75"></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_1Adjustment.html#a01b4c0118ac26897ac783f041a032765">changed</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Emits a "changed" signal from the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a>. <a href="#a01b4c0118ac26897ac783f041a032765"></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_1Adjustment.html#aa9e2a66bf8702196201db86a88da2567">value_changed</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Emits a "value_changed" signal from the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a>. <a href="#aa9e2a66bf8702196201db86a88da2567"></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_1Adjustment.html#a721b1e2ccde935f7c7c13c7ebfba4c44">clamp_page</a> (double lower, double upper)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Updates the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a> value to ensure that the range between the parameters <em>lower</em> and <em>upper</em> is in the current page (i.e. between <em>value</em> and <em>value</em> + <em>page_size</em>). <a href="#a721b1e2ccde935f7c7c13c7ebfba4c44"></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_1Adjustment.html#ac585ad50e95018cd4d0fe7b014102591">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/a01580.html#ga1c9e781d8d15a3814a601f471797c825">value</a>)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the current value of the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a>. <a href="#ac585ad50e95018cd4d0fe7b014102591"></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_1Adjustment.html#ab6bc8e8ad1e4a544eeb8b67eff3d0380">get_value</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the current value of the adjustment. <a href="#ab6bc8e8ad1e4a544eeb8b67eff3d0380"></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_1Adjustment.html#a8b64cd68e91a24d6b7dfc03d8d199437">set_lower</a> (double lower)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the minimum value of the adjustment. <a href="#a8b64cd68e91a24d6b7dfc03d8d199437"></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_1Adjustment.html#acdc5682423c6c3f2bf6107c784b0264f">get_lower</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the minimum value of the adjustment. <a href="#acdc5682423c6c3f2bf6107c784b0264f"></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_1Adjustment.html#ab093897a15d80dba99969abb9bce039f">set_upper</a> (double upper)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the maximum value of the adjustment. <a href="#ab093897a15d80dba99969abb9bce039f"></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_1Adjustment.html#ad5e83e6a664db2b5c0dff303f8425860">get_upper</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the maximum value of the adjustment. <a href="#ad5e83e6a664db2b5c0dff303f8425860"></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_1Adjustment.html#a0057e49eb57b09341b96a7c419ff1dfb">set_step_increment</a> (double step_increment)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the step increment of the adjustment. <a href="#a0057e49eb57b09341b96a7c419ff1dfb"></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_1Adjustment.html#a0750aed1cce1f48c7d2dbd7c56ce214a">get_step_increment</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the step increment of the adjustment. <a href="#a0750aed1cce1f48c7d2dbd7c56ce214a"></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_1Adjustment.html#a7cb297efb8bf3bb30aa51c754718f22a">set_page_increment</a> (double page_increment)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the page increment of the adjustment. <a href="#a7cb297efb8bf3bb30aa51c754718f22a"></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_1Adjustment.html#a137b202f7a1db39e4ced997e29d8e1b3">get_page_increment</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the page increment of the adjustment. <a href="#a137b202f7a1db39e4ced997e29d8e1b3"></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_1Adjustment.html#a8ce619f778049f760ef25269d9da7273">set_page_size</a> (double page_size)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the page size of the adjustment. <a href="#a8ce619f778049f760ef25269d9da7273"></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_1Adjustment.html#ae106f84761de4b8e2dc8f1decb9da278">get_page_size</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the page size of the adjustment. <a href="#ae106f84761de4b8e2dc8f1decb9da278"></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_1Adjustment.html#a02b7d411bd640215392a4f1911028104">configure</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/a01580.html#ga1c9e781d8d15a3814a601f471797c825">value</a>, double lower, double upper, double step_increment, double page_increment, double page_size)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets all properties of the adjustment at once. <a href="#a02b7d411bd640215392a4f1911028104"></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_1Adjustment.html#a5bd834dd1241233069e4932fc69e5155">signal_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_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Adjustment.html#a4be702f855da41b123577032e8148b99">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_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; double &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Adjustment.html#abecc47ef805865c579274cdc15608fc4">property_value</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The value of the adjustment. <a href="#abecc47ef805865c579274cdc15608fc4"></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_1Adjustment.html#aa5f0f89cce27311b32ea352921aabaf9">property_value</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The value of the adjustment. <a href="#aa5f0f89cce27311b32ea352921aabaf9"></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_1Adjustment.html#a2d2698953b4f453e44bb35120429d651">property_lower</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The minimum value of the adjustment. <a href="#a2d2698953b4f453e44bb35120429d651"></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_1Adjustment.html#ac0d64819f312796e1979ee2125c055bb">property_lower</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The minimum value of the adjustment. <a href="#ac0d64819f312796e1979ee2125c055bb"></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_1Adjustment.html#a8cb77014476efccce6b5c847ba65cdf2">property_upper</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The maximum value of the adjustment. <a href="#a8cb77014476efccce6b5c847ba65cdf2"></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_1Adjustment.html#a94b0f9508ceaa2adc13a1d8963ef055f">property_upper</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The maximum value of the adjustment. <a href="#a94b0f9508ceaa2adc13a1d8963ef055f"></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_1Adjustment.html#ab2e8ae6c3f3976b9fe892d45cb35f89b">property_step_increment</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The step increment of the adjustment. <a href="#ab2e8ae6c3f3976b9fe892d45cb35f89b"></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_1Adjustment.html#ae3169b71120030c8f5a56762b027b0fe">property_step_increment</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The step increment of the adjustment. <a href="#ae3169b71120030c8f5a56762b027b0fe"></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_1Adjustment.html#ac5ed5ede3f5d928e5e0d6df5fbdc39c9">property_page_increment</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The page increment of the adjustment. <a href="#ac5ed5ede3f5d928e5e0d6df5fbdc39c9"></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_1Adjustment.html#a7325e6a40a2b845fd288d1f6bc682bfd">property_page_increment</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The page increment of the adjustment. <a href="#a7325e6a40a2b845fd288d1f6bc682bfd"></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_1Adjustment.html#adc196a99aa936fdabae50560a06c1217">property_page_size</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The page size of the adjustment. <a href="#adc196a99aa936fdabae50560a06c1217"></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_1Adjustment.html#a190ad70807a2a99705de6e0fa907b5b3">property_page_size</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The page size of the adjustment. <a href="#a190ad70807a2a99705de6e0fa907b5b3"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Adjustment.html#afd8640b87aa243aa63cf0b4205f26df6">on_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_1Adjustment.html#a2aa54b26614f6824a3dce58afe1080b5">on_value_changed</a> ()</td></tr>
<tr><td colspan="2"><h2><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td colspan="2">(Note that these are not member functions.) <br/></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_1Adjustment.html#a42498ed2e90842549b875fb12d47cf90">wrap</a> (GtkAdjustment* 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="#a42498ed2e90842549b875fb12d47cf90"></a><br/></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>A class representing an adjustable bounded value. </p>
<p>The <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a> object represents a value which has an associated lower and upper bound, together with step and page increments, and a page size. It is used within several gtkmm widgets, including <a class="el" href="classGtk_1_1SpinButton.html" title="numeric Entry with up/down buttons Slightly misnamed, this should be called a SpinEntry.">Gtk::SpinButton</a>, <a class="el" href="classGtk_1_1Viewport.html" title="An adapter which makes widgets scrollable.">Gtk::Viewport</a>, and <a class="el" href="classGtk_1_1Range.html" title="Base class for widgets which visualize an adjustment.">Gtk::Range</a> (which is a base class for <a class="el" href="classGtk_1_1HScrollbar.html" title="A horizontal scrollbar.">Gtk::HScrollbar</a>, <a class="el" href="classGtk_1_1VScrollbar.html" title="A vertical scrollbar.">Gtk::VScrollbar</a>, <a class="el" href="classGtk_1_1HScale.html" title="A horizontal slider for selecting values.">Gtk::HScale</a>, and <a class="el" href="classGtk_1_1VScale.html" title="A vertical slider for selecting values.">Gtk::VScale</a>).</p>
<p>The <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a> object does not update the value itself. Instead it is left up to the owner of the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a> to control the value.</p>
<p>The owner of the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Gtk::Adjustment</a> typically calls the <a class="el" href="classGtk_1_1Adjustment.html#aa9e2a66bf8702196201db86a88da2567" title="Emits a &quot;value_changed&quot; signal from the Adjustment.">value_changed()</a> and <a class="el" href="classGtk_1_1Adjustment.html#a01b4c0118ac26897ac783f041a032765" title="Emits a &quot;changed&quot; signal from the Adjustment.">changed()</a> functions after changing the value and its bounds. This results in the emission of the "value_changed" or "changed" signal respectively. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="ae6d3539498b3276200368995440de533"></a><!-- doxytag: member="Gtk::Adjustment::~Adjustment" ref="ae6d3539498b3276200368995440de533" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual Gtk::Adjustment::~Adjustment </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a46faef0350c12e09a3e0249af5673d75"></a><!-- doxytag: member="Gtk::Adjustment::Adjustment" ref="a46faef0350c12e09a3e0249af5673d75" args="(double value, double lower, double upper, double step_increment=1, double page_increment=10, double page_size=0)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">Gtk::Adjustment::Adjustment </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>value</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>lower</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>upper</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>step_increment</em> = <code>1</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>page_increment</em> = <code>10</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>page_size</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Constructor to create an <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a> object. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">value</td><td>The initial value </td></tr>
    <tr><td class="paramname">lower</td><td>The minimum value </td></tr>
    <tr><td class="paramname">upper</td><td>The maximum value </td></tr>
    <tr><td class="paramname">step_increment</td><td>The step increment </td></tr>
    <tr><td class="paramname">page_increment</td><td>The page increment </td></tr>
    <tr><td class="paramname">page_size</td><td>The page size </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a01b4c0118ac26897ac783f041a032765"></a><!-- doxytag: member="Gtk::Adjustment::changed" ref="a01b4c0118ac26897ac783f041a032765" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Adjustment::changed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Emits a "changed" signal from the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a>. </p>
<p>This is typically called by the owner of the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a> after it has changed any of the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a> fields other than the value. </p>

</div>
</div>
<a class="anchor" id="a721b1e2ccde935f7c7c13c7ebfba4c44"></a><!-- doxytag: member="Gtk::Adjustment::clamp_page" ref="a721b1e2ccde935f7c7c13c7ebfba4c44" args="(double lower, double upper)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Adjustment::clamp_page </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>lower</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>upper</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Updates the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a> value to ensure that the range between the parameters <em>lower</em> and <em>upper</em> is in the current page (i.e. between <em>value</em> and <em>value</em> + <em>page_size</em>). </p>
<p>If this range is larger than the page size, then only the start of it will be in the current page. A "changed" signal will be emitted if the value is changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">upper</td><td>The upper value. </td></tr>
    <tr><td class="paramname">lower</td><td>The lower value. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a02b7d411bd640215392a4f1911028104"></a><!-- doxytag: member="Gtk::Adjustment::configure" ref="a02b7d411bd640215392a4f1911028104" args="(double value, double lower, double upper, double step_increment, double page_increment, double page_size)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Adjustment::configure </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>value</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>lower</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>upper</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>step_increment</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>page_increment</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>page_size</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets all properties of the adjustment at once. </p>
<p>Use this function to avoid multiple emissions of the "changed" signal. See <a class="el" href="classGtk_1_1Adjustment.html#a8b64cd68e91a24d6b7dfc03d8d199437" title="Sets the minimum value of the adjustment.">set_lower()</a> for an alternative way of compressing multiple emissions of "changed" into one.</p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000026">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">value</td><td>The new value. </td></tr>
    <tr><td class="paramname">lower</td><td>The new minimum value. </td></tr>
    <tr><td class="paramname">upper</td><td>The new maximum value. </td></tr>
    <tr><td class="paramname">step_increment</td><td>The new step increment. </td></tr>
    <tr><td class="paramname">page_increment</td><td>The new page increment. </td></tr>
    <tr><td class="paramname">page_size</td><td>The new page size. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="acdc5682423c6c3f2bf6107c784b0264f"></a><!-- doxytag: member="Gtk::Adjustment::get_lower" ref="acdc5682423c6c3f2bf6107c784b0264f" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Gtk::Adjustment::get_lower </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the minimum value of the adjustment. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000017">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The current minimum value of the adjustment. </dd></dl>

</div>
</div>
<a class="anchor" id="a137b202f7a1db39e4ced997e29d8e1b3"></a><!-- doxytag: member="Gtk::Adjustment::get_page_increment" ref="a137b202f7a1db39e4ced997e29d8e1b3" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Gtk::Adjustment::get_page_increment </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the page increment of the adjustment. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000023">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The current page increment of the adjustment. </dd></dl>

</div>
</div>
<a class="anchor" id="ae106f84761de4b8e2dc8f1decb9da278"></a><!-- doxytag: member="Gtk::Adjustment::get_page_size" ref="ae106f84761de4b8e2dc8f1decb9da278" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Gtk::Adjustment::get_page_size </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the page size of the adjustment. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000025">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The current page size of the adjustment. </dd></dl>

</div>
</div>
<a class="anchor" id="a0750aed1cce1f48c7d2dbd7c56ce214a"></a><!-- doxytag: member="Gtk::Adjustment::get_step_increment" ref="a0750aed1cce1f48c7d2dbd7c56ce214a" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Gtk::Adjustment::get_step_increment </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the step increment of the adjustment. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000021">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The current step increment of the adjustment. </dd></dl>

</div>
</div>
<a class="anchor" id="ad5e83e6a664db2b5c0dff303f8425860"></a><!-- doxytag: member="Gtk::Adjustment::get_upper" ref="ad5e83e6a664db2b5c0dff303f8425860" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Gtk::Adjustment::get_upper </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the maximum value of the adjustment. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000019">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The current maximum value of the adjustment. </dd></dl>

</div>
</div>
<a class="anchor" id="ab6bc8e8ad1e4a544eeb8b67eff3d0380"></a><!-- doxytag: member="Gtk::Adjustment::get_value" ref="ab6bc8e8ad1e4a544eeb8b67eff3d0380" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">double Gtk::Adjustment::get_value </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the current value of the adjustment. </p>
<p>See <a class="el" href="classGtk_1_1Adjustment.html#ac585ad50e95018cd4d0fe7b014102591" title="Sets the current value of the Adjustment.">set_value()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The current value of the adjustment. </dd></dl>

</div>
</div>
<a class="anchor" id="a73a1955c20e1a90ffffe17a597e43ffb"></a><!-- doxytag: member="Gtk::Adjustment::gobj" ref="a73a1955c20e1a90ffffe17a597e43ffb" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">GtkAdjustment* Gtk::Adjustment::gobj </td>
          <td>(</td>
          <td class="paramname"></td><td>)</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_1Object.html#ae3541ec02d1b7cd56cfabe7295f8948f">Gtk::Object</a>.</p>

</div>
</div>
<a class="anchor" id="a323ca8d81fe1ed6d052ec4f906e364dd"></a><!-- doxytag: member="Gtk::Adjustment::gobj" ref="a323ca8d81fe1ed6d052ec4f906e364dd" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const GtkAdjustment* Gtk::Adjustment::gobj </td>
          <td>(</td>
          <td class="paramname"></td><td>)</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_1Object.html#a5a0e5941619df9ec0cc52feccad99005">Gtk::Object</a>.</p>

</div>
</div>
<a class="anchor" id="afd8640b87aa243aa63cf0b4205f26df6"></a><!-- doxytag: member="Gtk::Adjustment::on_changed" ref="afd8640b87aa243aa63cf0b4205f26df6" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gtk::Adjustment::on_changed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

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

</div>
</div>
<a class="anchor" id="a2d2698953b4f453e44bb35120429d651"></a><!-- doxytag: member="Gtk::Adjustment::property_lower" ref="a2d2698953b4f453e44bb35120429d651" 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::Adjustment::property_lower </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The minimum value of the adjustment. </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="ac0d64819f312796e1979ee2125c055bb"></a><!-- doxytag: member="Gtk::Adjustment::property_lower" ref="ac0d64819f312796e1979ee2125c055bb" 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::Adjustment::property_lower </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The minimum value of the adjustment. </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="a7325e6a40a2b845fd288d1f6bc682bfd"></a><!-- doxytag: member="Gtk::Adjustment::property_page_increment" ref="a7325e6a40a2b845fd288d1f6bc682bfd" 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::Adjustment::property_page_increment </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The page increment of the adjustment. </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="ac5ed5ede3f5d928e5e0d6df5fbdc39c9"></a><!-- doxytag: member="Gtk::Adjustment::property_page_increment" ref="ac5ed5ede3f5d928e5e0d6df5fbdc39c9" 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::Adjustment::property_page_increment </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The page increment of the adjustment. </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="a190ad70807a2a99705de6e0fa907b5b3"></a><!-- doxytag: member="Gtk::Adjustment::property_page_size" ref="a190ad70807a2a99705de6e0fa907b5b3" 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::Adjustment::property_page_size </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The page size of the adjustment. </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="adc196a99aa936fdabae50560a06c1217"></a><!-- doxytag: member="Gtk::Adjustment::property_page_size" ref="adc196a99aa936fdabae50560a06c1217" 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::Adjustment::property_page_size </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The page size of the adjustment. </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="ae3169b71120030c8f5a56762b027b0fe"></a><!-- doxytag: member="Gtk::Adjustment::property_step_increment" ref="ae3169b71120030c8f5a56762b027b0fe" 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::Adjustment::property_step_increment </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The step increment of the adjustment. </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="ab2e8ae6c3f3976b9fe892d45cb35f89b"></a><!-- doxytag: member="Gtk::Adjustment::property_step_increment" ref="ab2e8ae6c3f3976b9fe892d45cb35f89b" 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::Adjustment::property_step_increment </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The step increment of the adjustment. </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="a8cb77014476efccce6b5c847ba65cdf2"></a><!-- doxytag: member="Gtk::Adjustment::property_upper" ref="a8cb77014476efccce6b5c847ba65cdf2" 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::Adjustment::property_upper </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The maximum value of the adjustment. </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="a94b0f9508ceaa2adc13a1d8963ef055f"></a><!-- doxytag: member="Gtk::Adjustment::property_upper" ref="a94b0f9508ceaa2adc13a1d8963ef055f" 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::Adjustment::property_upper </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The maximum value of the adjustment. </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="abecc47ef805865c579274cdc15608fc4"></a><!-- doxytag: member="Gtk::Adjustment::property_value" ref="abecc47ef805865c579274cdc15608fc4" 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::Adjustment::property_value </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The value of the adjustment. </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="aa5f0f89cce27311b32ea352921aabaf9"></a><!-- doxytag: member="Gtk::Adjustment::property_value" ref="aa5f0f89cce27311b32ea352921aabaf9" 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::Adjustment::property_value </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The value of the adjustment. </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="a8b64cd68e91a24d6b7dfc03d8d199437"></a><!-- doxytag: member="Gtk::Adjustment::set_lower" ref="a8b64cd68e91a24d6b7dfc03d8d199437" args="(double lower)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Adjustment::set_lower </td>
          <td>(</td>
          <td class="paramtype">double&#160;</td>
          <td class="paramname"><em>lower</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the minimum value of the adjustment. </p>
<p>When setting multiple adjustment properties via their individual setters, multiple "changed" signals will be emitted. However, since the emission of the "changed" signal is tied to the emission of the "GObject::notify" signals of the changed properties, it's possible to compress the "changed" signals into one by calling Glib::object_freeze_notify() and Glib::object_thaw_notify() around the calls to the individual setters.</p>
<p>Alternatively, using a single Glib::object_set() for all the properties to change, or using <a class="el" href="classGtk_1_1Adjustment.html#a02b7d411bd640215392a4f1911028104" title="Sets all properties of the adjustment at once.">configure()</a> has the same effect of compressing "changed" emissions.</p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000016">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">lower</td><td>The new minimum value. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Sets the page increment of the adjustment. </p>
<p>See <a class="el" href="classGtk_1_1Adjustment.html#a8b64cd68e91a24d6b7dfc03d8d199437" title="Sets the minimum value of the adjustment.">set_lower()</a> about how to compress multiple emissions of the "changed" signal when setting multiple adjustment properties.</p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000022">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">page_increment</td><td>The new page increment. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Sets the page size of the adjustment. </p>
<p>See <a class="el" href="classGtk_1_1Adjustment.html#a8b64cd68e91a24d6b7dfc03d8d199437" title="Sets the minimum value of the adjustment.">set_lower()</a> about how to compress multiple emissions of the "changed" signal when setting multiple adjustment properties.</p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000024">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">page_size</td><td>The new page size. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Sets the step increment of the adjustment. </p>
<p>See <a class="el" href="classGtk_1_1Adjustment.html#a8b64cd68e91a24d6b7dfc03d8d199437" title="Sets the minimum value of the adjustment.">set_lower()</a> about how to compress multiple emissions of the "changed" signal when setting multiple adjustment properties.</p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000020">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">step_increment</td><td>The new step increment. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Sets the maximum value of the adjustment. </p>
<p>Note that values will be restricted by <code>upper - page-size</code> if the page-size property is nonzero.</p>
<p>See <a class="el" href="classGtk_1_1Adjustment.html#a8b64cd68e91a24d6b7dfc03d8d199437" title="Sets the minimum value of the adjustment.">set_lower()</a> about how to compress multiple emissions of the "changed" signal when setting multiple adjustment properties.</p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000018">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">upper</td><td>The new maximum value. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Sets the current value of the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">value</td><td>The new value of the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a5bd834dd1241233069e4932fc69e5155"></a><!-- doxytag: member="Gtk::Adjustment::signal_changed" ref="a5bd834dd1241233069e4932fc69e5155" 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::Adjustment::signal_changed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>void on_my_changed()</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a4be702f855da41b123577032e8148b99"></a><!-- doxytag: member="Gtk::Adjustment::signal_value_changed" ref="a4be702f855da41b123577032e8148b99" 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::Adjustment::signal_value_changed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</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="aa9e2a66bf8702196201db86a88da2567"></a><!-- doxytag: member="Gtk::Adjustment::value_changed" ref="aa9e2a66bf8702196201db86a88da2567" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Adjustment::value_changed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Emits a "value_changed" signal from the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a>. </p>
<p>This is typically called by the owner of the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a> after it has changed the <a class="el" href="classGtk_1_1Adjustment.html" title="A class representing an adjustable bounded value.">Adjustment</a> value field. </p>

</div>
</div>
<hr/><h2>Friends And Related Function Documentation</h2>
<a class="anchor" id="a42498ed2e90842549b875fb12d47cf90"></a><!-- doxytag: member="Gtk::Adjustment::wrap" ref="a42498ed2e90842549b875fb12d47cf90" args="(GtkAdjustment *object, bool take_copy=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Adjustment.html">Gtk::Adjustment</a>* wrap </td>
          <td>(</td>
          <td class="paramtype">GtkAdjustment *&#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>&#160;</td>
        </tr>
        <tr>
          <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 class="params">
    <tr><td class="paramname">object</td><td>The C instance. </td></tr>
    <tr><td class="paramname">take_copy</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/adjustment.h</li>
</ul>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Fri Jul 8 2011 13:31:44 for gtkmm by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
</body>
</html>