File: deprecated.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 (928 lines) | stat: -rw-r--r-- 59,203 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
<!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: Deprecated List</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 class="current"><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><a href="annotated.html"><span>Classes</span></a></li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="headertitle">
<h1>Deprecated List </h1> </div>
</div>
<div class="contents">
<div class="textblock"><p><a class="anchor" id="_deprecated000026"></a> </p>
<dl>
<dt>Member <a class="el" href="namespaceGdk_1_1Cairo.html#ac5843747eec1a700ce321c27e28638c0">Gdk::Cairo::rectangle</a> (::Cairo::RefPtr&lt; ::Cairo::Context &gt;&amp; context, const <a class="el" href="classGdk_1_1Rectangle.html" title="Gdk::Rectangle is a structure holding the position and size of a rectangle.">Gdk::Rectangle</a>&amp; rectangle) </dt>
<dd>Use add_rectangle_to_path() instead reference.</dd>
</dl>
<p><a class="anchor" id="_deprecated000027"></a> </p>
<dl>
<dt>Member <a class="el" href="namespaceGdk_1_1Cairo.html#aeb596dbc23d99a46fb670592d609cd42">Gdk::Cairo::region</a> (::Cairo::RefPtr&lt; ::Cairo::Context &gt;&amp; context, const <a class="el" href="classGdk_1_1Region.html" title="This is an opaque data type holding a set of arbitrary pixels, and is usually used for clipping graph...">Gdk::Region</a>&amp; region) </dt>
<dd>Use add_region_to_path() instead</dd>
</dl>
<p><a class="anchor" id="_deprecated000023"></a> </p>
<dl>
<dt>Member <a class="el" href="namespaceGdk_1_1Cairo.html#a446ae433add90dc0f467c08a6e0fd7db">Gdk::Cairo::set_source_color</a> (::Cairo::RefPtr&lt; ::Cairo::Context &gt;&amp; context, const <a class="el" href="classGdk_1_1Color.html" title="Gdk::Color is used to describe an allocated or unallocated color.">Gdk::Color</a>&amp; color) </dt>
<dd>Use the overloaded function that takes a const RefPtr reference.</dd>
</dl>
<p><a class="anchor" id="_deprecated000024"></a> </p>
<dl>
<dt>Member <a class="el" href="namespaceGdk_1_1Cairo.html#a0d32070139c2a323ed0ecf54441978c9">Gdk::Cairo::set_source_pixbuf</a> (::Cairo::RefPtr&lt; ::Cairo::Context &gt;&amp; context, const Glib::RefPtr&lt; Gdk::Pixbuf &gt;&amp; pixbuf, double pixbuf_x=0, double pixbuf_y=0) </dt>
<dd>Use the overloaded function that takes a const RefPtr reference.</dd>
</dl>
<p><a class="anchor" id="_deprecated000025"></a> </p>
<dl>
<dt>Member <a class="el" href="namespaceGdk_1_1Cairo.html#a7445c7de80f4f01f65fc73682c8af20a">Gdk::Cairo::set_source_pixmap</a> (::Cairo::RefPtr&lt; ::Cairo::Context &gt;&amp; context, const Glib::RefPtr&lt; Gdk::Pixmap &gt;&amp; pixmap, double pixmap_x, double pixmap_y) </dt>
<dd>Use the overloaded function that takes a const RefPtr reference.</dd>
</dl>
<p><a class="anchor" id="_deprecated000001"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Color.html#a332b783371b11101b88c3f17d43316d3">Gdk::Color::parse</a> (const <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_1ustring.html">Glib::ustring</a>&amp; spec) </dt>
<dd>See set().</dd>
</dl>
<p><a class="anchor" id="_deprecated000002"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Color.html#aacc24614ed01888f6fcedfb9a6738e36">Gdk::Color::rgb_find_color</a> (const Glib::RefPtr&lt; Gdk::Colormap &gt;&amp; map) </dt>
<dd><a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a> handles colors automatically. </dd>
</dl>
<p><a class="anchor" id="_deprecated000003"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Colormap.html#a572fe8fade77afbdcc7f7cf56ff489f6">Gdk::Colormap::alloc_colors</a> (ArrayHandle_Color&amp; colors, int ncolors, bool writeable, bool best_match, Glib::ArrayHandle&lt; bool &gt;&amp; success) </dt>
<dd>Use alloc_color(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000004"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Colormap.html#a79d4fec03cb95c71b64d4a0bc6282fe6">Gdk::Colormap::free_colors</a> (Color&amp; colors, int ncolors) </dt>
<dd>Use free_color() </dd>
</dl>
<p><a class="anchor" id="_deprecated000005"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Display.html#aaa4d96cef880080d17123d3ff4a24494">Gdk::Display::unset_pointer_hooks</a> () </dt>
<dd>This method has been removed in gtkmm-3.0 for lack of use cases.</dd>
</dl>
<p><a class="anchor" id="_deprecated000007"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1DragContext.html#a1cd2c10b4c4e3346bbf0346bba33a7ca">Gdk::DragContext::create</a> () </dt>
<dd>This method is not useful, you always obtain drag contexts by <a class="el" href="classGdk_1_1Window.html#aa1456c4781e4c38e336039b7168302d2" title="Starts a drag and creates a new drag context for it.">Gdk::Window::drag_begin()</a> or similar.</dd>
</dl>
<p><a class="anchor" id="_deprecated000006"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1DragContext.html#a7d7ee53ae6f03bf7afd2f0f106368079">Gdk::DragContext::DragContext</a> () </dt>
<dd>This method is not useful, you always obtain drag contexts by <a class="el" href="classGdk_1_1Window.html#aa1456c4781e4c38e336039b7168302d2" title="Starts a drag and creates a new drag context for it.">Gdk::Window::drag_begin()</a> or similar.</dd>
</dl>
<p><a class="anchor" id="_deprecated000008"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1DragContext.html#a384015be2fe78f597bb73c029a203c7c">Gdk::DragContext::get_action</a> () const </dt>
<dd>Use get_selected_action() </dd>
</dl>
<p><a class="anchor" id="_deprecated000011"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Drawable.html#a38a6e490519e5ab89adef59b78ee2590">Gdk::Drawable::draw_lines</a> (const Glib::RefPtr&lt; const GC &gt;&amp; gc, const Glib::ArrayHandle&lt; Point &gt;&amp; points) </dt>
<dd>Use cairo_line_to() and cairo_stroke() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000012"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Drawable.html#a2b0f0fa71a27ef18f53a47b6e81787e6">Gdk::Drawable::draw_pixbuf</a> (const Glib::RefPtr&lt; Pixbuf &gt;&amp; pixbuf, int src_x, int src_y, int dest_x, int dest_y, int width, int height, RgbDither dither, int x_dither, int y_dither) </dt>
<dd>Use gdk_cairo_set_source_pixbuf() and cairo_paint() or cairo_rectangle() and cairo_fill() instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000010"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Drawable.html#ab7c474844251ed7561900530b55406f1">Gdk::Drawable::draw_points</a> (const Glib::RefPtr&lt; const GC &gt;&amp; gc, const Glib::ArrayHandle&lt; Point &gt;&amp; points) </dt>
<dd>Use n_points calls to cairo_rectangle() and cairo_fill() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000009"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Drawable.html#a938f9da906aafcfa089a9aab8e30749d">Gdk::Drawable::get_size</a> (int&amp; width, int&amp; height) </dt>
<dd>Use the const version of this method. </dd>
</dl>
<p><a class="anchor" id="_deprecated000013"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1GC.html#a9f83feb6a71dcea826f80f65f778eff8">Gdk::GC::set_clip_rectangle</a> (Rectangle&amp; rectangle) </dt>
<dd>Use set_clip_rectangle(const Rectangle&amp; rectangle) instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000015"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Image.html#a9a624bcb50829f0b920f1bbb2e76bfba">Gdk::Image::get_bpl</a> () const </dt>
<dd>Use get_bytes_per_line() </dd>
</dl>
<p><a class="anchor" id="_deprecated000014"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Image.html#a156b6e5f8eaadc1755a247b23891315c">Gdk::Image::get_bpp</a> () const </dt>
<dd>Use get_bytes_per_pixel() </dd>
</dl>
<p><a class="anchor" id="_deprecated000016"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Image.html#a92ae3cbb3f5893081f0429f206b09b36">Gdk::Image::get_mem</a> () </dt>
<dd>Use get_pixels().</dd>
</dl>
<p><a class="anchor" id="_deprecated000019"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Pixbuf.html#a519fae58f951e669b3693a624661e076">Gdk::Pixbuf::create</a> (const Glib::RefPtr&lt; Drawable &gt;&amp; src, const Glib::RefPtr&lt; Colormap &gt;&amp; cmap, int src_x, int src_y, int dest_x, int dest_y, int width, int height) </dt>
<dd>Use the create() methods that don't have the unused dest_x and dest_y parameters.</dd>
</dl>
<p><a class="anchor" id="_deprecated000020"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Pixbuf.html#a71d217289b55598fba056d4b69fa5831">Gdk::Pixbuf::create</a> (const Glib::RefPtr&lt; Image &gt;&amp; src, const Glib::RefPtr&lt; Colormap &gt;&amp; cmap, int src_x, int src_y, int dest_x, int dest_y, int width, int height) </dt>
<dd>Use the create() methods that that don't have the unused dest_x and dest_y parameters.</dd>
</dl>
<p><a class="anchor" id="_deprecated000017"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Pixbuf.html#a3445465fb0e98edbbc89c015dcd2d941">Gdk::Pixbuf::Pixbuf</a> (const Glib::RefPtr&lt; Drawable &gt;&amp; src, const Glib::RefPtr&lt; Colormap &gt;&amp; cmap, int src_x, int src_y, int dest_x, int dest_y, int width, int height) </dt>
<dd>Use the constructor without dest_x and dest_y parameters. </dd>
</dl>
<p><a class="anchor" id="_deprecated000018"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Pixbuf.html#a3b0ca678f26d95814c041bac591a911f">Gdk::Pixbuf::Pixbuf</a> (const Glib::RefPtr&lt; Image &gt;&amp; src, const Glib::RefPtr&lt; Colormap &gt;&amp; cmap, int src_x, int src_y, int dest_x, int dest_y, int width, int height) </dt>
<dd>Use the constructors without dest_x and dest_y parameters. </dd>
</dl>
<p><a class="anchor" id="_deprecated000021"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Pixbuf.html#a9c5c35a5cfcb38c5bda55378906b60a5">Gdk::Pixbuf::render_to_drawable</a> (const Glib::RefPtr&lt; Drawable &gt;&amp; drawable, const Glib::RefPtr&lt; Gdk::GC &gt;&amp; gc, int src_x, int src_y, int dest_x, int dest_y, int width, int height, RgbDither dither, int x_dither, int y_dither) </dt>
<dd>Use <a class="el" href="classGdk_1_1Drawable.html#a7530941e96a44e882961d5358fb8eb68" title="Renders a rectangular portion of a pixbuf to a drawable.">Gdk::Drawable::draw_pixbuf()</a> instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000022"></a> </p>
<dl>
<dt>Member <a class="el" href="classGdk_1_1Pixbuf.html#a1cec5870a00a59aa7940fb28f9eef5e3">Gdk::Pixbuf::render_to_drawable_alpha</a> (const Glib::RefPtr&lt; Drawable &gt;&amp; drawable, int src_x, int src_y, int dest_x, int dest_y, int width, int height, PixbufAlphaMode alpha_mode, int alpha_threshold, RgbDither dither, int x_dither, int y_dither) </dt>
<dd>Use <a class="el" href="classGdk_1_1Drawable.html#a7530941e96a44e882961d5358fb8eb68" title="Renders a rectangular portion of a pixbuf to a drawable.">Gdk::Drawable::draw_pixbuf()</a> instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000029"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1AboutDialog.html#a3bddecbc076481ba1af82227072665c2">Gtk::AboutDialog::set_email_hook</a> (const SlotActivateLink&amp; slot) </dt>
<dd>Use signal_activate_link() instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000030"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1AboutDialog.html#ac95ce94cacea3b691018ad5157164d5b">Gtk::AboutDialog::set_url_hook</a> (const SlotActivateLink&amp; slot) </dt>
<dd>Use signal_activate_link() instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000028"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1AboutDialog.html#aad14950354fa1d9e7d02e951bd0f232e">Gtk::AboutDialog::SlotActivateLink</a> </dt>
<dd>Use signal_activate_link() instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000043"></a> </p>
<dl>
<dt>Member <a class="el" href="group__gtkmmEnums.html#gga98983d4e80f67ffa5148dd554706ffacab809a05b7daf750f21aeb1ee086b33ef">Gtk::ALIGN_BOTTOM</a> </dt>
<dd>Use ALIGN_END.</dd>
</dl>
<p><a class="anchor" id="_deprecated000040"></a> </p>
<dl>
<dt>Member <a class="el" href="group__gtkmmEnums.html#gga98983d4e80f67ffa5148dd554706ffaca447f2bbed131df7f0f0001b5c8a3c6f4">Gtk::ALIGN_LEFT</a> </dt>
<dd>Use ALIGN_START.</dd>
</dl>
<p><a class="anchor" id="_deprecated000041"></a> </p>
<dl>
<dt>Member <a class="el" href="group__gtkmmEnums.html#gga98983d4e80f67ffa5148dd554706ffacadad6854824688299bc59eb3c72190d85">Gtk::ALIGN_RIGHT</a> </dt>
<dd>Use ALIGN_END.</dd>
</dl>
<p><a class="anchor" id="_deprecated000042"></a> </p>
<dl>
<dt>Member <a class="el" href="group__gtkmmEnums.html#gga98983d4e80f67ffa5148dd554706ffaca6596a3b991643260079ddd198517ccb1">Gtk::ALIGN_TOP</a> </dt>
<dd>Use ALIGN_START.</dd>
</dl>
<p><a class="anchor" id="_deprecated000031"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1CellRenderer.html#a9aaef65d7b80a4ad7378b20f76ef4760">Gtk::CellRenderer::editing_canceled</a> () </dt>
<dd>Use stop_editing(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000035"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ColorSelectionDialog.html#a537d69f6dbd8d7b962c833553ef2fc96">Gtk::ColorSelectionDialog::get_cancel_button</a> () </dt>
<dd>Use <a class="el" href="classGtk_1_1Dialog.html#af259947b29ba1dc093bc1d112400c03c" title="Gets the widget button that uses the given response ID in the action area of a dialog.">Gtk::Dialog::get_widget_for_response()</a> instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000032"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ColorSelectionDialog.html#aa9d63665d32f1b7ce9cb7f8903917dec">Gtk::ColorSelectionDialog::get_colorsel</a> () </dt>
<dd>Use get_color_selection() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000033"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ColorSelectionDialog.html#a5eb58c5ac5d5909f280747d0fa64afe0">Gtk::ColorSelectionDialog::get_colorsel</a> () const </dt>
<dd>Use get_color_selection() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000036"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ColorSelectionDialog.html#a27e1d5a95229502c1ee7ea743470a258">Gtk::ColorSelectionDialog::get_help_button</a> () </dt>
<dd>Use <a class="el" href="classGtk_1_1Dialog.html#af259947b29ba1dc093bc1d112400c03c" title="Gets the widget button that uses the given response ID in the action area of a dialog.">Gtk::Dialog::get_widget_for_response()</a> instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000034"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ColorSelectionDialog.html#a8da088a7ec2805b6563fb01a52da11bb">Gtk::ColorSelectionDialog::get_ok_button</a> () </dt>
<dd>Use <a class="el" href="classGtk_1_1Dialog.html#af259947b29ba1dc093bc1d112400c03c" title="Gets the widget button that uses the given response ID in the action area of a dialog.">Gtk::Dialog::get_widget_for_response()</a> instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000163"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1Combo.html">Gtk::Combo</a> </dt>
<dd>Use the ComboBox widget instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000037"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1ComboBoxEntry.html">Gtk::ComboBoxEntry</a> </dt>
<dd>Instead use ComboBox with has_entry = true. </dd>
</dl>
<p><a class="anchor" id="_deprecated000166"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1ComboBoxEntryText.html">Gtk::ComboBoxEntryText</a> </dt>
<dd>Instead use ComboBoxText with has_entry = true.</dd>
</dl>
<p><a class="anchor" id="_deprecated000167"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxEntryText.html#a9a9d9779f9ace589924a2399d35c371e">Gtk::ComboBoxEntryText::append_text</a> (const <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_1ustring.html">Glib::ustring</a>&amp; text) </dt>
<dd>Use append(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000170"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxEntryText.html#a52e3bc91e1153c36aa046ec249880022">Gtk::ComboBoxEntryText::clear</a> () </dt>
<dd>See clear_items(). Since 2.8. </dd>
</dl>
<p><a class="anchor" id="_deprecated000168"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxEntryText.html#a9bf819020740e33033096aa96c81c14e">Gtk::ComboBoxEntryText::insert_text</a> (int position, const <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_1ustring.html">Glib::ustring</a>&amp; text) </dt>
<dd>Use insert().</dd>
</dl>
<p><a class="anchor" id="_deprecated000169"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxEntryText.html#a72ab993ada0ce630115d7c5536f13c3b">Gtk::ComboBoxEntryText::prepend_text</a> (const <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_1ustring.html">Glib::ustring</a>&amp; text) </dt>
<dd>Use prepend(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000171"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxText.html#ab6a4b6f833c964144ecb9ce79b9f949d">Gtk::ComboBoxText::append_text</a> (const <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_1ustring.html">Glib::ustring</a>&amp; text) </dt>
<dd>Use append(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000175"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxText.html#aff2f7bdb9e8796eb4f30fba36a37435e">Gtk::ComboBoxText::clear</a> () </dt>
<dd>Use remove_all(). Since 2.8. </dd>
</dl>
<p><a class="anchor" id="_deprecated000174"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxText.html#aec3e17b23e8b13957e25547f1ef08d05">Gtk::ComboBoxText::clear_items</a> () </dt>
<dd>Use remove_all(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000172"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxText.html#a9c8f65b084135fefe8831a60294298ee">Gtk::ComboBoxText::insert_text</a> (int position, const <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_1ustring.html">Glib::ustring</a>&amp; text) </dt>
<dd>Use insert().</dd>
</dl>
<p><a class="anchor" id="_deprecated000173"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ComboBoxText.html#a6a1e6e454739ae9b1bd4a56b1de72189">Gtk::ComboBoxText::prepend_text</a> (const <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_1ustring.html">Glib::ustring</a>&amp; text) </dt>
<dd>Use prepend(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000162"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1ComboDropDown.html">Gtk::ComboDropDown</a> </dt>
<dd>Use the ComboBox widget instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000161"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1ComboDropDownItem.html">Gtk::ComboDropDownItem</a> </dt>
<dd>Use the ComboBox widget instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000164"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1Curve.html">Gtk::Curve</a> </dt>
<dd>As of gtkmm 2.20, this widget has been deprecated since it is too specialized. </dd>
</dl>
<p><a class="anchor" id="_deprecated000039"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#ae1ebde7c0f0629dbbb1285ca5e6c68cd">Gtk::EntryCompletion::get_text_column</a> () </dt>
<dd>Use the const version of this method. </dd>
</dl>
<p><a class="anchor" id="_deprecated000038"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1EntryCompletion.html#ab5bb9eb43f264a2c72de1c114696236d">Gtk::EntryCompletion::set_popup_single_width</a> (bool popup_single_match=true) </dt>
<dd>Use set_popup_single_match() instead. This function was wrongly named. </dd>
</dl>
<p><a class="anchor" id="_deprecated000044"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1FileSelection.html">Gtk::FileSelection</a> </dt>
<dd>Use the FileChooserDialog instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000049"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1FontSelection.html#a5eaf3a8153d9de00aef74ad1df05973a">Gtk::FontSelection::get_filter_button</a> () </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000045"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1FontSelection.html#a2ea43a275d570e895f880ee2467c1725">Gtk::FontSelection::get_font_entry</a> () </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000046"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1FontSelection.html#a19e28b7bae0e9e0160c3ac967f8adab5">Gtk::FontSelection::get_font_style_entry</a> () </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000047"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1FontSelection.html#a54d5be93a73f065b877cd93a023efff0">Gtk::FontSelection::get_pixels_button</a> () </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000048"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1FontSelection.html#ab4452a551f395c940d48bc33f96060db">Gtk::FontSelection::get_points_button</a> () </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000050"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1HandleBox.html#a1a5f6572d7ebbd6846210bc33d835044">Gtk::HandleBox::get_bin_window</a> () </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000051"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1HandleBox.html#a12e8b902936ebc6c1d95acb5f35cb9bb">Gtk::HandleBox::get_float_window</a> () </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000052"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1HandleBox.html#ad7dba424951525b05911e5967ce14b7a">Gtk::HandleBox::is_float_window_mapped</a> () const </dt>
<dd>This method does not seem to be useful and will be removed from a future version of gtkmm, due to changes in GTK+.</dd>
</dl>
<p><a class="anchor" id="_deprecated000053"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1HandleBox.html#aec1848532415cebfe7786897a8122015">Gtk::HandleBox::is_in_drag</a> () const </dt>
<dd>This method does not seem to be useful and will be removed from a future version of gtkmm, due to changes in GTK+.</dd>
</dl>
<p><a class="anchor" id="_deprecated000054"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1HandleBox.html#accff250090d6dcfc91dd8f9f6b145b4c">Gtk::HandleBox::shrinks_on_detach</a> () const </dt>
<dd>This method does not seem to be useful and will be removed from a future version of gtkmm, due to changes in GTK+.</dd>
</dl>
<p><a class="anchor" id="_deprecated000087"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1HRuler.html">Gtk::HRuler</a> </dt>
<dd>This has been removed from gtkmm-3.0 because it was unmaintained and too specialized. There is no replacement other than using the original GtkRuler and <a class="el" href="classGtk_1_1Ruler.html" title="Base class for horizontal or vertical rulers.">Gtk::Ruler</a> source files in your application. </dd>
</dl>
<p><a class="anchor" id="_deprecated000055"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1IconInfo.html#a4e0ff5422c708a3a5e451786190a6f07">Gtk::IconInfo::operator bool</a> () </dt>
<dd>Use the const version. </dd>
</dl>
<p><a class="anchor" id="_deprecated000056"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Image.html#a9a65d453012ec244f11cf34ac701a88b">Gtk::Image::Image</a> (IconSet&amp; icon_set, IconSize icon_size) </dt>
<dd>Use the constructor that takes a const IconSet&amp; icon_set instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000057"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Image.html#a4b562580a074436703f9aaf35e3273e1">Gtk::Image::set</a> (IconSet&amp; icon_set, IconSize size) </dt>
<dd>Use the method that takes a const IconSet&amp; instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000165"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1InputDialog.html">Gtk::InputDialog</a> </dt>
<dd>As of gtkmm 2.20, this widget has been deprecated since it is too specialized.</dd>
</dl>
<p><a class="anchor" id="_deprecated000059"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1LinkButton.html#a39dd06e4ccff7e94ba4564227d593fa0">Gtk::LinkButton::set_uri_hook</a> (const SlotUri&amp; slot) </dt>
<dd>Use Button::signal_clicked() instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000058"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1LinkButton.html#a32709649516d5e155b4cb814a70747b4">Gtk::LinkButton::SlotUri</a> </dt>
<dd>Use Button::signal_clicked() instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000060"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1LinkButton.html#a9fc2b98375a8527dde28883929bbdeeb">Gtk::LinkButton::unset_uri_hook</a> () </dt>
<dd>Use Button::signal_clicked() instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000176"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ListViewText.html#a3cdeed88eaff196851646f35ecbc3bf4">Gtk::ListViewText::append_text</a> (const <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_1ustring.html">Glib::ustring</a>&amp; column_one_value=Glib::ustring()) </dt>
<dd>Use append(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000178"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ListViewText.html#a9c7aa9e85ddceb4c6c3a2a1a6530e6ef">Gtk::ListViewText::insert_text</a> (guint row, const <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_1ustring.html">Glib::ustring</a>&amp; column_one_value=Glib::ustring()) </dt>
<dd>Use insert(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000177"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ListViewText.html#aaf4222fd257888b89914660c11740ea1">Gtk::ListViewText::prepend_text</a> (const <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_1ustring.html">Glib::ustring</a>&amp; column_one_value=Glib::ustring()) </dt>
<dd>Use prepend(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000061"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Main.html#ac1b6ae5b79cb84158f3caf3e9382492d">Gtk::Main::signal_quit</a> () </dt>
<dd>This was removed in gtkmm-3.0 because it is not useful. </dd>
</dl>
<p><a class="anchor" id="_deprecated000062"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1MenuToolButton.html#aafe7aa1160bed6ab4b22f0cc7cdce180">Gtk::MenuToolButton::set_arrow_tooltip</a> (Tooltips&amp; tooltips, const <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_1ustring.html">Glib::ustring</a>&amp; tip_text, const <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_1ustring.html">Glib::ustring</a>&amp; tip_private) </dt>
<dd>Use set_arrow_tooltip_text() or set_arrow_tooltip_markup() instead </dd>
</dl>
<p><a class="anchor" id="_deprecated000063"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1MessageDialog.html#aae83c9c8501dcd04103eb5d995c1c752">Gtk::MessageDialog::set_markup</a> (const <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_1ustring.html">Glib::ustring</a>&amp; str) </dt>
<dd>Use set_message(string, true). </dd>
</dl>
<p><a class="anchor" id="_deprecated000078"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Notebook.html#ae97d0078795417a1b6f86643590a8bbd">Gtk::Notebook::get_current</a> () </dt>
<dd>Use Notebook::get_current_page(), Notebook::get_nth_page(), etc.</dd>
</dl>
<p><a class="anchor" id="_deprecated000075"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Notebook.html#a50419a0bde1c5d4d4fe6124dd40c4462">Gtk::Notebook::get_n_pages</a> () </dt>
<dd>Use the const method. </dd>
</dl>
<p><a class="anchor" id="_deprecated000076"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Notebook.html#a7fc37088ba103763547e6c67796c011f">Gtk::Notebook::page_num</a> (const Widget&amp; child) </dt>
<dd>Use the const method. </dd>
</dl>
<p><a class="anchor" id="_deprecated000073"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Notebook.html#a475484a8d8ca5e1c01ece85c0505e5f2">Gtk::Notebook::PageList</a> </dt>
<dd>Use Notebook::get_current_page(), Notebook::get_nth_page(), etc.</dd>
</dl>
<p><a class="anchor" id="_deprecated000079"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Notebook.html#a6a14099d90a2179001b88f0a08132faa">Gtk::Notebook::pages</a> () </dt>
<dd>Use Notebook::get_current_page(), Notebook::get_nth_page(), etc.</dd>
</dl>
<p><a class="anchor" id="_deprecated000080"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Notebook.html#aea78704b42407487c313439f1b05a944">Gtk::Notebook::pages</a> () const </dt>
<dd>Use Notebook::get_current_page(), Notebook::get_nth_page(), etc.</dd>
</dl>
<p><a class="anchor" id="_deprecated000077"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Notebook.html#a8cea404ff5620d26de81ce63bec2c41f">Gtk::Notebook::query_tab_label_packing</a> (Widget&amp; child, bool&amp; expand, bool&amp; fill, PackType&amp; pack_type) </dt>
<dd>Modify the "tab-expand" and "tab-fill" child properties instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000074"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Notebook.html#aaa7a4dabcd0ed602eb9478561c976160">Gtk::Notebook::set_window_creation_hook</a> (const SlotWindowCreation&amp; slot) </dt>
<dd>Use the GtkNotebook::create-window signal instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000064"></a> </p>
<dl>
<dt>Namespace <a class="el" href="namespaceGtk_1_1Notebook__Helpers.html">Gtk::Notebook_Helpers</a> </dt>
<dd>Use Notebook::get_current_page(), Notebook::get_nth_page(), etc.</dd>
</dl>
<p><a class="anchor" id="_deprecated000069"></a> </p>
<dl>
<dt>Class <a class="el" href="structGtk_1_1Notebook__Helpers_1_1MenuElem.html">Gtk::Notebook_Helpers::MenuElem</a> </dt>
<dd>Use Notebook::get_current_page(), Notebook::get_nth_page(), etc.</dd>
</dl>
<p><a class="anchor" id="_deprecated000066"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1Notebook__Helpers_1_1Page.html">Gtk::Notebook_Helpers::Page</a> </dt>
<dd>Use Notebook::get_current_page(), Notebook::get_nth_page(), etc.</dd>
</dl>
<p><a class="anchor" id="_deprecated000071"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Notebook__Helpers_1_1Page.html#a6ebc17bff934659fb10202980e1dfde1">Gtk::Notebook_Helpers::Page::query_tab_label_packing</a> (bool&amp; expand, bool&amp; fill, PackType&amp; pack_type) </dt>
<dd>Query the "tab-expand" and "tab-fill" child properties instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000072"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Notebook__Helpers_1_1Page.html#a4308a39b97ab03eb969fcff8a79d2a18">Gtk::Notebook_Helpers::Page::set_tab_label_packing</a> (bool expand, bool fill, PackType pack_type) </dt>
<dd>Modify the "tab-expand" and "tab-fill" child properties instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000065"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageIterator.html">Gtk::Notebook_Helpers::PageIterator</a> </dt>
<dd>Use Notebook::get_current_page(), Notebook::get_nth_page(), etc.</dd>
</dl>
<p><a class="anchor" id="_deprecated000070"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageList.html">Gtk::Notebook_Helpers::PageList</a> </dt>
<dd>Use Notebook::get_current_page(), Notebook::get_nth_page(), etc. instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000068"></a> </p>
<dl>
<dt>Class <a class="el" href="structGtk_1_1Notebook__Helpers_1_1TabElem.html">Gtk::Notebook_Helpers::TabElem</a> </dt>
<dd>Use Notebook::get_current_page(), Notebook::get_nth_page(), etc.</dd>
</dl>
<p><a class="anchor" id="_deprecated000081"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1OptionMenu.html">Gtk::OptionMenu</a> </dt>
<dd>Use the ComboBox widget instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000083"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1PageSetup.html#a9b679ce0339a396e2e331493c9ea4bc0">Gtk::PageSetup::save_to_key_file</a> (<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_1KeyFile.html">Glib::KeyFile</a>&amp; key_file) </dt>
<dd>Use the const version. </dd>
</dl>
<p><a class="anchor" id="_deprecated000082"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1PageSetup.html#a2ee9cd31943c51cd62fe51c07e3f7af9">Gtk::PageSetup::save_to_key_file</a> (<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_1KeyFile.html">Glib::KeyFile</a>&amp; key_file, const <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_1ustring.html">Glib::ustring</a>&amp; group_name) </dt>
<dd>Use the const version. </dd>
</dl>
<p><a class="anchor" id="_deprecated000084"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1PrintSettings.html#aed701e7035d0c0416d4656c95015c620">Gtk::PrintSettings::save_to_key_file</a> (<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_1KeyFile.html">Glib::KeyFile</a>&amp; key_file) </dt>
<dd>Use the const version. </dd>
</dl>
<p><a class="anchor" id="_deprecated000085"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1Ruler.html">Gtk::Ruler</a> </dt>
<dd>This has been removed from gtkmm-3.0 because it was unmaintained and too specialized. There is no replacement other than using the original GtkRuler and <a class="el" href="classGtk_1_1Ruler.html" title="Base class for horizontal or vertical rulers.">Gtk::Ruler</a> source files in your application. </dd>
</dl>
<p><a class="anchor" id="_deprecated000088"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Ruler.html#af58d6e9b70486b32aa2482146b54a6e9">Gtk::Ruler::get_metric</a> () </dt>
<dd>Use the const version </dd>
</dl>
<p><a class="anchor" id="_deprecated000089"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Ruler.html#ac62fa390f2bec13d89c4d1288264879d">Gtk::Ruler::get_range_lower</a> () const </dt>
<dd>Use get_range() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000090"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Ruler.html#af57557b0e2bc0f4c029a14321ce52e6c">Gtk::Ruler::get_range_upper</a> () const </dt>
<dd>Use get_range() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000092"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ScrolledWindow.html#ae09cec3d10d8ef12dc4afa602702307d">Gtk::ScrolledWindow::get_hscrollbar_visible</a> () const </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000091"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ScrolledWindow.html#ad18d851ff0e8549c3543b987edb7ad6c">Gtk::ScrolledWindow::get_vscrollbar_visible</a> () const </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000094"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Style.html#ab7878635807a4e44aa93b29333cfc3cc">Gtk::Style::copy</a> () </dt>
<dd>Use the const version </dd>
</dl>
<p><a class="anchor" id="_deprecated000093"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Style.html#a82c1d8db30391f0bf83f2ed67789dd18">Gtk::Style::set_bg_pixmap</a> (Gtk::StateType state_type, const Glib::RefPtr&lt; Gdk::Pixmap &gt;&amp; pixmap) </dt>
<dd>Use set_bg_pixmap(Gtk::StateType state_type, const Glib::RefPtr&lt;const Gdk::Pixmap&gt;&amp; pixmap) </dd>
</dl>
<p><a class="anchor" id="_deprecated000099"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Table.html#a437b02c2a52cbbb7be96ade6783810bf">Gtk::Table::children</a> () const </dt>
<dd>Use Container::get_children() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000098"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Table.html#a524cbe5effb04026af48070d021149c3">Gtk::Table::children</a> () </dt>
<dd>Use Container::get_children() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000097"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Table.html#a26ca0b1279094591c011dd70f54adc87">Gtk::Table::TableList</a> </dt>
<dd>Use Container::get_children() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000095"></a> </p>
<dl>
<dt>Namespace <a class="el" href="namespaceGtk_1_1Table__Helpers.html">Gtk::Table_Helpers</a> </dt>
<dd>Use Container::get_children() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000096"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1Table__Helpers_1_1Child.html">Gtk::Table_Helpers::Child</a> </dt>
<dd>Use Container::get_children() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000100"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TearoffMenuItem.html#aa459bb3df8f5b4504f27b61c76450620">Gtk::TearoffMenuItem::is_torn_off</a> () const </dt>
<dd>This method was apparently not useful and will be removed in a later gtkmm version, due to changes in GTK+.</dd>
</dl>
<p><a class="anchor" id="_deprecated000102"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TextBuffer.html#ae6cffbcb3b2d2fc2ba4f18e5518549aa">Gtk::TextBuffer::assign</a> (const char* text_begin, const char* text_end) </dt>
<dd>Use set_text() </dd>
</dl>
<p><a class="anchor" id="_deprecated000101"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TextBuffer.html#a0df024c51b2bb46dd0288b96a5edcd7f">Gtk::TextBuffer::assign</a> (const <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_1ustring.html">Glib::ustring</a>&amp; text) </dt>
<dd>Use set_text() </dd>
</dl>
<p><a class="anchor" id="_deprecated000105"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TextBuffer.html#ab07f68f1c4705bdfe7271eaeb36d65e5">Gtk::TextBuffer::get_slice</a> (const iterator&amp; start, const iterator&amp; end, bool include_hidden_chars=true) </dt>
<dd>Use get_slice(const iterator&amp; start, const iterator&amp; end, bool include_hidden_chars) const.</dd>
</dl>
<p><a class="anchor" id="_deprecated000103"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TextBuffer.html#ae4f9e04000110dbfd1014ef05067a593">Gtk::TextBuffer::get_text</a> (const iterator&amp; start, const iterator&amp; end, bool include_hidden_chars=true) </dt>
<dd>Use get_text(const iterator&amp; start, const iterator&amp; end, bool include_hidden_chars) const </dd>
</dl>
<p><a class="anchor" id="_deprecated000104"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TextBuffer.html#a77434f057d68314a823ae47da426013a">Gtk::TextBuffer::get_text</a> (bool include_hidden_chars=true) </dt>
<dd>Use get_text(bool include_hidden_chars) const.</dd>
</dl>
<p><a class="anchor" id="_deprecated000108"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TextView.html#abda033b9f21259af66c1afb93e7eeb4b">Gtk::TextView::scroll_mark_onscreen</a> (const Glib::RefPtr&lt; TextBuffer::Mark &gt;&amp; mark) </dt>
<dd>Use scroll_to() </dd>
</dl>
<p><a class="anchor" id="_deprecated000106"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TextView.html#aa01a5796543403272c1f100d58f99cb4">Gtk::TextView::scroll_to_iter</a> (TextBuffer::iterator&amp; iter, double within_margin) </dt>
<dd>Use scroll_to().</dd>
</dl>
<p><a class="anchor" id="_deprecated000107"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TextView.html#afbb08ef213741a47b151bd922497eb1e">Gtk::TextView::scroll_to_mark</a> (const Glib::RefPtr&lt; TextBuffer::Mark &gt;&amp; mark, double within_margin) </dt>
<dd>Use scroll_to().</dd>
</dl>
<p><a class="anchor" id="_deprecated000110"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#ab88732228ccb77624af602eddc2e5de3">Gtk::Toolbar::get_tooltips</a> () const </dt>
<dd>Use The toolkit-wide <a class="el" href="classGtk_1_1Settings.html#a87f99b73cdc423f0df229c9b939d57f7" title="Whether tooltips should be shown on widgets.">Gtk::Settings::property_gtk_enable_tooltips</a> instead </dd>
</dl>
<p><a class="anchor" id="_deprecated000111"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#aa7f339d5c02125a64473d87c2a4e6a39">Gtk::Toolbar::get_tooltips_object</a> () const </dt>
<dd>Use the <a class="el" href="classGtk_1_1Tooltip.html" title="Add tips to your widgets.">Gtk::Tooltip</a> API instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000109"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Toolbar.html#abd053073333579c0d0b30e9f683897cf">Gtk::Toolbar::set_tooltips</a> (bool enable=true) </dt>
<dd>Use The toolkit-wide <a class="el" href="classGtk_1_1Settings.html#a87f99b73cdc423f0df229c9b939d57f7" title="Whether tooltips should be shown on widgets.">Gtk::Settings::property_gtk_enable_tooltips</a> instead </dd>
</dl>
<p><a class="anchor" id="_deprecated000112"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ToolButton.html#ae915a27bf5f180e8998b7063565a8cac">Gtk::ToolButton::signal_clicked</a> () </dt>
<dd>This is an "action" key-binding signal that you should rarely need to use.</dd>
</dl>
<p><a class="anchor" id="_deprecated000113"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#aeabf9f4f654dfedbc40d0b7b9bc3eacc">Gtk::ToolItem::set_tooltip</a> (Tooltips&amp; tooltips, const <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_1ustring.html">Glib::ustring</a>&amp; tip_text, const <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_1ustring.html">Glib::ustring</a>&amp; tip_private=Glib::ustring()) </dt>
<dd>Use set_tooltip_text() or set_tooltip_markup() instead </dd>
</dl>
<p><a class="anchor" id="_deprecated000114"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1ToolItem.html#a3bc4e262d1e5b1ebd13d01c313406fb8">Gtk::ToolItem::signal_set_tooltip</a> () </dt>
<dd>Use the new <a class="el" href="classGtk_1_1Tooltip.html" title="Add tips to your widgets.">Gtk::Tooltip</a> API. This signal will now never be emitted.</dd>
</dl>
<p><a class="anchor" id="_deprecated000115"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1Tooltips.html">Gtk::Tooltips</a> </dt>
<dd>Use the <a class="el" href="classGtk_1_1Tooltip.html" title="Add tips to your widgets.">Gtk::Tooltip</a> API instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000116"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModel.html#aa5c6526633d0fa8a78fd3d14d1fbd6cf">Gtk::TreeModel::iter_is_valid</a> (const iterator&amp; iter) const </dt>
<dd>Use iter_is_valid() in the derived class. </dd>
</dl>
<p><a class="anchor" id="_deprecated000117"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#a0a63732c0a5c08c010489ae707790561">Gtk::TreeModelFilter::convert_child_path_to_path</a> (const Path&amp; child_path) </dt>
<dd>Use convert_child_path_to_path(const Path&amp; child_path) const </dd>
</dl>
<p><a class="anchor" id="_deprecated000118"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeModelFilter.html#ad0ebeafdbb46411bf176d909d9a645a7">Gtk::TreeModelFilter::convert_path_to_child_path</a> (const Path&amp; filter_path) </dt>
<dd>convert_path_to_child_path(const Path&amp; filter_path) const </dd>
</dl>
<p><a class="anchor" id="_deprecated000119"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreePath.html#ae820187447ee186420613c6f1550a822">Gtk::TreePath::append_index</a> (int index) </dt>
<dd>replaced by push_back() </dd>
</dl>
<p><a class="anchor" id="_deprecated000121"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreePath.html#a0e53f0a586dff94c3f3cc85ffa53dc96">Gtk::TreePath::get_depth</a> () const </dt>
<dd>replaced by <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01568.html#ga445a43f417432dd1b9aed90ef239c700">size()</a>. </dd>
</dl>
<p><a class="anchor" id="_deprecated000122"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreePath.html#a37a5c625b3115c4f489f111e72d9e54e">Gtk::TreePath::get_indices</a> () const </dt>
<dd>replaced by <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01568.html#ga324e4ed17c2462ba8fe19dbca8955262">begin()</a>, <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01568.html#ga9390a942ee3787d3c444ebeb276d872f">end()</a>, and operator[] </dd>
</dl>
<p><a class="anchor" id="_deprecated000120"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreePath.html#a5ea3035347d0b0412fe7a45169e7d8c2">Gtk::TreePath::prepend_index</a> (int index) </dt>
<dd>replaced by push_front(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000123"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeSortable.html#aa77c110372c63404e57f647d4ee71cc2">Gtk::TreeSortable::set_sort_column_id</a> (const TreeModelColumnBase&amp; sort_column_id, SortType order) </dt>
<dd>Use set_sort_column() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000124"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeSortable.html#a2e2fc64a1d14b7edfddbc82ce20577fc">Gtk::TreeSortable::set_sort_column_id</a> (int sort_column_id, SortType order) </dt>
<dd>Use set_sort_column() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000127"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeView.html#a13e6c879a94459ea5e5db987b4677e55">Gtk::TreeView::get_background_area</a> (const TreeModel::Path&amp; path, TreeViewColumn&amp; column, <a class="el" href="classGdk_1_1Rectangle.html" title="Gdk::Rectangle is a structure holding the position and size of a rectangle.">Gdk::Rectangle</a>&amp; rect) </dt>
<dd>Use the const version. </dd>
</dl>
<p><a class="anchor" id="_deprecated000126"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeView.html#ac814f38a9b6bef86df5a99fe1ecbc497">Gtk::TreeView::get_cell_area</a> (const TreeModel::Path&amp; path, TreeViewColumn&amp; column, <a class="el" href="classGdk_1_1Rectangle.html" title="Gdk::Rectangle is a structure holding the position and size of a rectangle.">Gdk::Rectangle</a>&amp; rect) </dt>
<dd>Use the const version </dd>
</dl>
<p><a class="anchor" id="_deprecated000125"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeView.html#a4c392d4a9e28b6df2638806bc52465a8">Gtk::TreeView::get_path_at_pos</a> (int x, int y, TreeModel::Path&amp; path, TreeViewColumn*&amp; column, int&amp; cell_x, int&amp; cell_y) </dt>
<dd>Use the const version.</dd>
</dl>
<p><a class="anchor" id="_deprecated000128"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeView.html#a33d8135891f7805390e498546baeda58">Gtk::TreeView::get_visible_rect</a> (<a class="el" href="classGdk_1_1Rectangle.html" title="Gdk::Rectangle is a structure holding the position and size of a rectangle.">Gdk::Rectangle</a>&amp; visible_rect) </dt>
<dd>Use the const version. </dd>
</dl>
<p><a class="anchor" id="_deprecated000130"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeView.html#ae46f6f124425287cd7f29318a4037759">Gtk::TreeView::tree_to_widget_coords</a> (int tx, int ty, int&amp; wx, int&amp; wy) </dt>
<dd>Use the const version. </dd>
</dl>
<p><a class="anchor" id="_deprecated000129"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeView.html#a79d8d24cd09b6615bc676c60790f0792">Gtk::TreeView::widget_to_tree_coords</a> (int wx, int wy, int&amp; tx, int&amp; ty) </dt>
<dd>Use the const version </dd>
</dl>
<p><a class="anchor" id="_deprecated000135"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeViewColumn.html#a87250eac1ecb51dc457816be64a5650d">Gtk::TreeViewColumn::cell_get_size</a> (<a class="el" href="classGdk_1_1Rectangle.html" title="Gdk::Rectangle is a structure holding the position and size of a rectangle.">Gdk::Rectangle</a>&amp; cell_area, int&amp; x_offset, int&amp; y_offset, int&amp; width, int&amp; height) const </dt>
<dd>Use the cell_get_size() method override that takes a const cell_area. </dd>
</dl>
<p><a class="anchor" id="_deprecated000131"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeViewColumn.html#a51a182a223c1dcd27a734d1ea9f87bf8">Gtk::TreeViewColumn::get_first_cell_renderer</a> () </dt>
<dd>Use get_first_cell(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000132"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeViewColumn.html#a4b84503853c1dd46633277f9fe3c053c">Gtk::TreeViewColumn::get_first_cell_renderer</a> () const </dt>
<dd>Use get_first_cell(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000134"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeViewColumn.html#a06470fa5ec45cc749df8f714af681447">Gtk::TreeViewColumn::set_sort_column_id</a> (int sort_column_id) </dt>
<dd>Use set_sort_column() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000133"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1TreeViewColumn.html#afd3872d6889393c120987d802d90ebd0">Gtk::TreeViewColumn::set_sort_column_id</a> (const TreeModelColumnBase&amp; sort_column_id) </dt>
<dd>Use set_sort_column() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000086"></a> </p>
<dl>
<dt>Class <a class="el" href="classGtk_1_1VRuler.html">Gtk::VRuler</a> </dt>
<dd>This has been removed from gtkmm-3.0 because it was unmaintained and too specialized. There is no replacement other than using the original GtkRuler and <a class="el" href="classGtk_1_1Ruler.html" title="Base class for horizontal or vertical rulers.">Gtk::Ruler</a> source files in your application. </dd>
</dl>
<p><a class="anchor" id="_deprecated000147"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#affca5f0ffb80e88c2f48fca64879fb0e">Gtk::Widget::app_paintable</a> () const </dt>
<dd>Use get_app_paintable() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000138"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a5067c8af8ab09f6fdf872d6d25d32a53">Gtk::Widget::can_default</a> () const </dt>
<dd>Replaced by get_can_default(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000137"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#aa267cd0f120a56d6908c0ba66d3accf3">Gtk::Widget::can_focus</a> () const </dt>
<dd>Replaced by get_can_focus(). </dd>
</dl>
<p><a class="anchor" id="_deprecated000149"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#af58f9055080f391ed5cff1aaebba0613">Gtk::Widget::double_buffered</a> () const </dt>
<dd>Use get_double_buffered() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000139"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#af7f64bdff212b777efd1b63e30b2b942">Gtk::Widget::get_direction</a> () </dt>
<dd>Use the const version of this method. </dd>
</dl>
<p><a class="anchor" id="_deprecated000153"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#abf7c9888b68a7495453efdf4c4be82fd">Gtk::Widget::get_flags</a> () const </dt>
<dd>Use the proper method to test individual states, suchas get_app_paintable(), get_can_default(), get_can_focus(), get_double_buffered(), has_default(), is_drawable(), has_focus(), has_grab(), get_mapped(), get_has_window(), has_rc_style(), get_realized(), get_receives_default(), get_sensitive(), is_sensitive(), is_toplevel() or get_visible().</dd>
</dl>
<p><a class="anchor" id="_deprecated000156"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#aeda580e803fef5bb17f231ff4d9167c4">Gtk::Widget::get_saved_state</a> () const </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000140"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a06b4b64c885d73464f395d717adbcd40">Gtk::Widget::has_no_window</a> () const </dt>
<dd>Use !get_has_window() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000152"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a14162bc0dfd3b81c7b8aceb04fad08a6">Gtk::Widget::is_composite_child</a> () const </dt>
<dd>Use the "composite-child" property instead. </dd>
</dl>
<p><a class="anchor" id="_deprecated000144"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a16f279bed6c075050709d82b7f799e6a">Gtk::Widget::is_drawable</a> () const </dt>
<dd>Use get_is_drawable() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000142"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#af15e59c3ced30a26cd1dcf79cbd42cdf">Gtk::Widget::is_mapped</a> () const </dt>
<dd>Use get_mapped() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000141"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a4b00f5f4193832b65e54434fc3f75df9">Gtk::Widget::is_realized</a> () const </dt>
<dd>Use get_realized() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000143"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a06d954e357299ff48ed2ebe157dbe777">Gtk::Widget::is_toplevel</a> () const </dt>
<dd>Use get_is_toplevel() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000145"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a4c9d61aa7062c3010dd7473ef60d4fa9">Gtk::Widget::is_visible</a> () const </dt>
<dd>Use get_visible() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000150"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a0f864ffb900e34a6b3d98a5bb7100dc9">Gtk::Widget::parent_sensitive</a> () const </dt>
<dd>Call get_sensitive() on the result of get_parent() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000151"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a9b347d7a5f2a112027c9cefff5cdd045">Gtk::Widget::rc_style</a> () const </dt>
<dd>Use has_rc_style() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000148"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a5283879ace0f2f71f0abb5b316fe1667">Gtk::Widget::receives_default</a> () const </dt>
<dd>Use get_receives_default() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000146"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a324726ce185f229b79b6fe051ba37fce">Gtk::Widget::sensitive</a> () const </dt>
<dd>Use get_sensitive() instead.</dd>
</dl>
<p><a class="anchor" id="_deprecated000154"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a18e5abffbbede2e0036bb29d2edae42f">Gtk::Widget::set_flags</a> (WidgetFlags flags) </dt>
<dd>Use the proper function instead, such as set_app_paintable(), set_can_default(), set_can_focus(), set_double_buffered(), set_has_window(), set_mapped(), set_no_show_all(), set_realized(), set_receives_default(), set_sensitive() or set_visible().</dd>
</dl>
<p><a class="anchor" id="_deprecated000157"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a87a32b9d94f3b01e413e62a3de7a4c09">Gtk::Widget::signal_get_accessible</a> () </dt>
<dd>This should never have been in the API.</dd>
</dl>
<p><a class="anchor" id="_deprecated000136"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#a586fa49ce02d677cd35a47d8fe225c01">Gtk::Widget::size_request</a> (const Requisition&amp; requisition) </dt>
<dd>Use size_request() const. </dd>
</dl>
<p><a class="anchor" id="_deprecated000155"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Widget.html#ad0d3839b9ed0e222f0a2d1684e431765">Gtk::Widget::unset_flags</a> (WidgetFlags flags) </dt>
<dd>Use the proper function instead, such as set_app_paintable(), set_can_default(), set_can_focus(), set_double_buffered(), set_has_window(), set_mapped(), set_no_show_all(), set_realized(), set_receives_default(), set_sensitive() or set_visible().</dd>
</dl>
<p><a class="anchor" id="_deprecated000160"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Window.html#a5f8db9bfe5bd90300152272692a6b0d6">Gtk::Window::get_frame</a> () </dt>
<dd>You should not need to call this method.</dd>
</dl>
<p><a class="anchor" id="_deprecated000159"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Window.html#a24dc3ad6da6c8342ba5ca0fd87d2340e">Gtk::Window::is_popup</a> () const </dt>
<dd>Use get_window_type().</dd>
</dl>
<p><a class="anchor" id="_deprecated000158"></a> </p>
<dl>
<dt>Member <a class="el" href="classGtk_1_1Window.html#a932b1c81b9c0559a60ba2b8c2b1ce179">Gtk::Window::is_toplevel</a> () const </dt>
<dd>Use <a class="el" href="classGtk_1_1Widget.html#a06d954e357299ff48ed2ebe157dbe777">Gtk::Widget::is_toplevel()</a>.</dd>
</dl>
</div></div>
<hr class="footer"/><address class="footer"><small>Generated on Fri Jul 8 2011 13:31:43 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>