| 12
 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
 
 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>gtkmm 2.4: Gtk::Table Class Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#ffffff">
<table border="0" width="100%">
<tr>
    <td width="10%" height="40"><img src="../../images/gtkmm_logo.gif" alt="logo" border="0" width="100%" height="100%"/></td>
    <td width="90%" height="40"><img src="../../images/top.gif" alt="top" width="100%" height="40"/></td>
</tr>
</table>
<center>
  <a class="qindex" href="../../index.html">Main Page</a>  
  <a href="group__Widgets.html">Widgets</a>  
  <a class="qindex" href="namespaces.html"> Namespaces</a>  
  <a href="../../tutorial/html/index.html"> Book</a>  
</center>
<hr width="100%"/>
<!-- begin main content -->
<div id="content">
<!-- Generated by Doxygen 1.5.1 -->
<div class="nav">
<a class="el" href="namespaceGtk.html">Gtk</a>::<a class="el" href="classGtk_1_1Table.html">Table</a></div>
<h1>Gtk::Table Class Reference<br>
<small>
[<a class="el" href="group__Widgets.html">Widgets</a>, <a class="el" href="group__Containers.html">Container Widgets</a>]</small>
</h1><!-- doxytag: class="Gtk::Table" --><!-- doxytag: inherits="Gtk::Container" -->Inheritance diagram for Gtk::Table:<p><center><img src="classGtk_1_1Table__inherit__graph.png" border="0" usemap="#Gtk_1_1Table__inherit__map" alt="Inheritance graph"></center>
<map name="Gtk_1_1Table__inherit__map">
<area href="classGtk_1_1Container.html" shape="rect" coords="61,393,173,420" alt="">
<area href="classGtk_1_1Widget.html" shape="rect" coords="71,316,164,343" alt="">
<area href="classGtk_1_1Object.html" shape="rect" coords="5,239,96,265" alt="">
<area doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1Object.html" shape="rect" coords="7,161,100,188" alt="">
<area doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ObjectBase.html" shape="rect" coords="53,84,179,111" alt="">
<area doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1Interface.html" shape="rect" coords="128,161,237,188" alt="">
<area doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classsigc_1_1trackable.html" shape="rect" coords="60,7,172,33" alt="">
<area href="classAtk_1_1Implementor.html" shape="rect" coords="120,239,251,265" alt="">
</map>
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center><a href="classGtk_1_1Table-members.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2>
Pack widgets in regular patterns. 
<p>
<a class="el" href="classGtk_1_1Table.html">Gtk::Table</a> is one of the primary ways of grouping widgets together. It consists of a set of lattice points to to which widgets can be attached. There are <em>rows</em> + 1 lattice points vertically and <em>columns</em> + 1 lattice points horizontally. Lattice points start counting from 0. Lattice points can either be specified to be <em>homogeneous</em>, meaning equally spaced, or not <em>homogeneous</em>, meaning each cell should be calculated based on the widgets contained in the row and column. The <em>homogeneous</em> property defaults to false.<p>
Widgets can be attached to the table by specifying the top, bottom, left and right points corresponding to upper, lefthand lattice point and the lower, righthand lattice point which the widget should span. Widgets can either be contained in a cell or may span cells. A number of options control the resizing behavior of widgets contained in the table.<p>
<dl class="user" compact><dt><b>Packing options:</b></dt><dd>There are a number of packing options that can be specified when adding a widget. With <code><a class="el" href="group__gtkmmEnums.html#ggd0ae047e9bb4f262003dbb94468f5d81376c39238459ee8d7dcb06ba100c4259">Gtk::EXPAND</a></code>, the lattice is allowed to grow to fill space. With <code><a class="el" href="group__gtkmmEnums.html#ggd0ae047e9bb4f262003dbb94468f5d81a150380dbcd41f196d5fa3b1761c0160">Gtk::SHRINK</a></code>, the lattice is allowed to shrink when resized. It is also possible to specify the behaviour of the widgets allocation within the table. The flag <code><a class="el" href="group__gtkmmEnums.html#ggd0ae047e9bb4f262003dbb94468f5d81036abcca77c9906e325a7bbd2a9787ea">Gtk::FILL</a></code> declares the widget should grow to fill lattice. If this is not set any extra space is used as padding. The default is <code>(<a class="el" href="group__gtkmmEnums.html#ggd0ae047e9bb4f262003dbb94468f5d81036abcca77c9906e325a7bbd2a9787ea">Gtk::FILL</a> | <a class="el" href="group__gtkmmEnums.html#ggd0ae047e9bb4f262003dbb94468f5d81376c39238459ee8d7dcb06ba100c4259">Gtk::EXPAND</a>)</code>.</dd></dl>
<dl class="user" compact><dt><b>Table sizing:</b></dt><dd>The table size is calculated based on the size of the widgets contained within and the restrictions imposed by specified options. Padding and spacing can be used in the table. Padding is added on either side of a widget, while spacing is placed between widgets.</dd></dl>
A <a class="el" href="classGtk_1_1Table.html">Table</a> widget looks like this: <div align="center">
<img src="table1.png" alt="table1.png">
</div>
<p>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classGtk_1_1HBox.html">Gtk::HBox</a>, <a class="el" href="classGtk_1_1VBox.html">Gtk::VBox</a> </dd></dl>
<p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Public Types</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">typedef <a class="el" href="classGtk_1_1Table__Helpers_1_1TableList.html">Table_Helpers::TableList</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#26ca0b1279094591c011dd70f54adc87">TableList</a></td></tr>
<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#28b6926e68337a51ba29f2b4dd69f087">attach</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>& child, guint left_attach, guint right_attach, guint top_attach, guint bottom_attach, <a class="el" href="group__gtkmmEnums.html#gd0ae047e9bb4f262003dbb94468f5d81">AttachOptions</a> xoptions=FILL|EXPAND, <a class="el" href="group__gtkmmEnums.html#gd0ae047e9bb4f262003dbb94468f5d81">AttachOptions</a> yoptions=FILL|EXPAND, guint xpadding=0, guint ypadding=0)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="classGtk_1_1Table__Helpers_1_1TableList.html">TableList</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#777d1d346997d75913ba157e2a1de81f">children</a> () const</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classGtk_1_1Table__Helpers_1_1TableList.html">TableList</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#524cbe5effb04026af48070d021149c3">children</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">guint </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#9dc52f72111ea2b96043ed14cbe0a6d7">get_col_spacing</a> (guint column) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the amount of space between column <em>col</em>, and column <em>col</em> + 1.  <a href="#9dc52f72111ea2b96043ed14cbe0a6d7"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">guint </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#f38e361d93a52d82d4396a8e427eafe8">get_default_col_spacing</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the default column spacing for the table.  <a href="#f38e361d93a52d82d4396a8e427eafe8"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">guint </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#62c9dddf829da9c26b46c27d1dfab542">get_default_row_spacing</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the default row spacing for the table.  <a href="#62c9dddf829da9c26b46c27d1dfab542"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#5bf78bc9fab3826ce7dfac2514f22c9c">get_homogeneous</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the table cells are all constrained to the same width and height.  <a href="#5bf78bc9fab3826ce7dfac2514f22c9c"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">guint </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#b9e1bccfd42d91491ae51d73bcf1ee80">get_row_spacing</a> (guint row) const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the amount of space between row <em>row</em>, and row <em>row</em> + 1.  <a href="#b9e1bccfd42d91491ae51d73bcf1ee80"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const GtkTable* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#2d88bb27e682556c195d69b485a59051">gobj</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject.  <a href="#2d88bb27e682556c195d69b485a59051"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">GtkTable* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#dc4b3dbe18d9cf298b8acb52b29ca1cf">gobj</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject.  <a href="#dc4b3dbe18d9cf298b8acb52b29ca1cf"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><<br>
 guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#2dd8312dad902dc5d2a4667db3e72672">property_column_spacing</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The amount of space between two consecutive columns.  <a href="#2dd8312dad902dc5d2a4667db3e72672"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><guint> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#bf97ec2979409e904514f62359d39b82">property_column_spacing</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The amount of space between two consecutive columns.  <a href="#bf97ec2979409e904514f62359d39b82"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><<br>
 guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#dadcce8668383617fa7a74145b4b8750">property_n_columns</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The number of columns in the table.  <a href="#dadcce8668383617fa7a74145b4b8750"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><guint> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#d568998787d11cb188541f3cc2571deb">property_n_columns</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The number of columns in the table.  <a href="#d568998787d11cb188541f3cc2571deb"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><<br>
 guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#832be7fab8facff865f2e4aaccf7879c">property_n_rows</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The number of rows in the table.  <a href="#832be7fab8facff865f2e4aaccf7879c"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><guint> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#cfb09e787e160f8a10aaf8a51a3edd8d">property_n_rows</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The number of rows in the table.  <a href="#cfb09e787e160f8a10aaf8a51a3edd8d"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><<br>
 guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#a1d7ab9345128dc756df9a4b3093ec30">property_row_spacing</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The amount of space between two consecutive rows.  <a href="#a1d7ab9345128dc756df9a4b3093ec30"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><guint> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#acba83aaed638547c0fd6c08d4294b7e">property_row_spacing</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The amount of space between two consecutive rows.  <a href="#acba83aaed638547c0fd6c08d4294b7e"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#4f424987552a7ab8497eee384004b2dc">resize</a> (guint rows, guint columns)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#f77b4b9ea80e32d1c76c0e4466425676">set_col_spacing</a> (guint column, guint spacing)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#ea0cda0ce75493573df0fca34bb3e05d">set_col_spacings</a> (guint spacing)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#62eac0bc438bc052d247739833d0a84a">set_homogeneous</a> (bool homogeneous=true)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#eaa6413b00c0a37f31f4c3334e906f67">set_row_spacing</a> (guint row, guint spacing)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#9a65db5a52a77361ccf6dae3b30e04d7">set_row_spacings</a> (guint spacing)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#b9f12c5410e9d93f6b1aaa23aedcd342">set_spacings</a> (guint spacing)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#737661795265212dc75b876dd97034f8">Table</a> (guint n_rows=1, guint n_columns=1, bool homogeneous=false)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#e680cef1bee0049182eae639c3b90fd7">~Table</a> ()</td></tr>
<tr><td colspan="2"><br><h2>Related Functions</h2></td></tr>
<tr><td colspan="2">(Note that these are not member functions.) <br><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classGtk_1_1Table.html">Gtk::Table</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Table.html#59d0a83c09436cb8e8b11e156dd513db">wrap</a> (GtkTable* object, bool take_copy=false)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/namespaceGlib.html#671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object.  <a href="#59d0a83c09436cb8e8b11e156dd513db"></a><br></td></tr>
</table>
<hr><h2>Member Typedef Documentation</h2>
<a class="anchor" name="26ca0b1279094591c011dd70f54adc87"></a><!-- doxytag: member="Gtk::Table::TableList" ref="26ca0b1279094591c011dd70f54adc87" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef <a class="el" href="classGtk_1_1Table__Helpers_1_1TableList.html">Table_Helpers::TableList</a> <a class="el" href="classGtk_1_1Table__Helpers_1_1TableList.html">Gtk::Table::TableList</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<hr><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" name="e680cef1bee0049182eae639c3b90fd7"></a><!-- doxytag: member="Gtk::Table::~Table" ref="e680cef1bee0049182eae639c3b90fd7" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual Gtk::Table::~Table           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="737661795265212dc75b876dd97034f8"></a><!-- doxytag: member="Gtk::Table::Table" ref="737661795265212dc75b876dd97034f8" args="(guint n_rows=1, guint n_columns=1, bool homogeneous=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">Gtk::Table::Table           </td>
          <td>(</td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>n_rows</em> = <code>1</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>n_columns</em> = <code>1</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool </td>
          <td class="paramname"> <em>homogeneous</em> = <code>false</code></td><td> </td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [explicit]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="28b6926e68337a51ba29f2b4dd69f087"></a><!-- doxytag: member="Gtk::Table::attach" ref="28b6926e68337a51ba29f2b4dd69f087" args="(Widget &child, guint left_attach, guint right_attach, guint top_attach, guint bottom_attach, AttachOptions xoptions=FILL|EXPAND, AttachOptions yoptions=FILL|EXPAND, guint xpadding=0, guint ypadding=0)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Table::attach           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>left_attach</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>right_attach</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>top_attach</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>bottom_attach</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gd0ae047e9bb4f262003dbb94468f5d81">AttachOptions</a> </td>
          <td class="paramname"> <em>xoptions</em> = <code>FILL|EXPAND</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gd0ae047e9bb4f262003dbb94468f5d81">AttachOptions</a> </td>
          <td class="paramname"> <em>yoptions</em> = <code>FILL|EXPAND</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>xpadding</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>ypadding</em> = <code>0</code></td><td> </td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="777d1d346997d75913ba157e2a1de81f"></a><!-- doxytag: member="Gtk::Table::children" ref="777d1d346997d75913ba157e2a1de81f" args="() const" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classGtk_1_1Table__Helpers_1_1TableList.html">TableList</a>& Gtk::Table::children           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="524cbe5effb04026af48070d021149c3"></a><!-- doxytag: member="Gtk::Table::children" ref="524cbe5effb04026af48070d021149c3" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Table__Helpers_1_1TableList.html">TableList</a>& Gtk::Table::children           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="9dc52f72111ea2b96043ed14cbe0a6d7"></a><!-- doxytag: member="Gtk::Table::get_col_spacing" ref="9dc52f72111ea2b96043ed14cbe0a6d7" args="(guint column) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">guint Gtk::Table::get_col_spacing           </td>
          <td>(</td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>column</em>          </td>
          <td> ) </td>
          <td width="100%"> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
Gets the amount of space between column <em>col</em>, and column <em>col</em> + 1. 
<p>
See <a class="el" href="classGtk_1_1Table.html#f77b4b9ea80e32d1c76c0e4466425676">set_col_spacing()</a>. <dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>column</em> </td><td>A column in the table, 0 indicates the first column. </td></tr>
  </table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The column spacing. </dd></dl>
</div>
</div><p>
<a class="anchor" name="f38e361d93a52d82d4396a8e427eafe8"></a><!-- doxytag: member="Gtk::Table::get_default_col_spacing" ref="f38e361d93a52d82d4396a8e427eafe8" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">guint Gtk::Table::get_default_col_spacing           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
Gets the default column spacing for the table. 
<p>
This is the spacing that will be used for newly added columns. (See <a class="el" href="classGtk_1_1Table.html#ea0cda0ce75493573df0fca34bb3e05d">set_col_spacings()</a>) <dl class="return" compact><dt><b>Returns:</b></dt><dd>Value: the default column spacing. </dd></dl>
</div>
</div><p>
<a class="anchor" name="62c9dddf829da9c26b46c27d1dfab542"></a><!-- doxytag: member="Gtk::Table::get_default_row_spacing" ref="62c9dddf829da9c26b46c27d1dfab542" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">guint Gtk::Table::get_default_row_spacing           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
Gets the default row spacing for the table. 
<p>
This is the spacing that will be used for newly added rows. (See <a class="el" href="classGtk_1_1Table.html#9a65db5a52a77361ccf6dae3b30e04d7">set_row_spacings()</a>) <dl class="return" compact><dt><b>Returns:</b></dt><dd>Value: the default row spacing. </dd></dl>
</div>
</div><p>
<a class="anchor" name="5bf78bc9fab3826ce7dfac2514f22c9c"></a><!-- doxytag: member="Gtk::Table::get_homogeneous" ref="5bf78bc9fab3826ce7dfac2514f22c9c" args="() const" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Table::get_homogeneous           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
Returns whether the table cells are all constrained to the same width and height. 
<p>
(See set_homogenous()) <dl class="return" compact><dt><b>Returns:</b></dt><dd><code>true</code> if the cells are all constrained to the same size. </dd></dl>
</div>
</div><p>
<a class="anchor" name="b9e1bccfd42d91491ae51d73bcf1ee80"></a><!-- doxytag: member="Gtk::Table::get_row_spacing" ref="b9e1bccfd42d91491ae51d73bcf1ee80" args="(guint row) const" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">guint Gtk::Table::get_row_spacing           </td>
          <td>(</td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>row</em>          </td>
          <td> ) </td>
          <td width="100%"> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
Gets the amount of space between row <em>row</em>, and row <em>row</em> + 1. 
<p>
See <a class="el" href="classGtk_1_1Table.html#eaa6413b00c0a37f31f4c3334e906f67">set_row_spacing()</a>. <dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>row</em> </td><td>A row in the table, 0 indicates the first row. </td></tr>
  </table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The row spacing. </dd></dl>
</div>
</div><p>
<a class="anchor" name="2d88bb27e682556c195d69b485a59051"></a><!-- doxytag: member="Gtk::Table::gobj" ref="2d88bb27e682556c195d69b485a59051" args="() const" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const GtkTable* Gtk::Table::gobj           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"> 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_1Container.html#a9c925218a599711b415da4aafca475d">Gtk::Container</a>.
</div>
</div><p>
<a class="anchor" name="dc4b3dbe18d9cf298b8acb52b29ca1cf"></a><!-- doxytag: member="Gtk::Table::gobj" ref="dc4b3dbe18d9cf298b8acb52b29ca1cf" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">GtkTable* Gtk::Table::gobj           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"><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_1Container.html#1b45ff015f4b09b143699bad9d4e423d">Gtk::Container</a>.
</div>
</div><p>
<a class="anchor" name="2dd8312dad902dc5d2a4667db3e72672"></a><!-- doxytag: member="Gtk::Table::property_column_spacing" ref="2dd8312dad902dc5d2a4667db3e72672" args="() const" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><guint> Gtk::Table::property_column_spacing           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
The amount of space between two consecutive columns. 
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><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><p>
<a class="anchor" name="bf97ec2979409e904514f62359d39b82"></a><!-- doxytag: member="Gtk::Table::property_column_spacing" ref="bf97ec2979409e904514f62359d39b82" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><guint> Gtk::Table::property_column_spacing           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
The amount of space between two consecutive columns. 
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><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><p>
<a class="anchor" name="dadcce8668383617fa7a74145b4b8750"></a><!-- doxytag: member="Gtk::Table::property_n_columns" ref="dadcce8668383617fa7a74145b4b8750" args="() const" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><guint> Gtk::Table::property_n_columns           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
The number of columns in the table. 
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><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><p>
<a class="anchor" name="d568998787d11cb188541f3cc2571deb"></a><!-- doxytag: member="Gtk::Table::property_n_columns" ref="d568998787d11cb188541f3cc2571deb" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><guint> Gtk::Table::property_n_columns           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
The number of columns in the table. 
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><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><p>
<a class="anchor" name="832be7fab8facff865f2e4aaccf7879c"></a><!-- doxytag: member="Gtk::Table::property_n_rows" ref="832be7fab8facff865f2e4aaccf7879c" args="() const" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><guint> Gtk::Table::property_n_rows           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
The number of rows in the table. 
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><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><p>
<a class="anchor" name="cfb09e787e160f8a10aaf8a51a3edd8d"></a><!-- doxytag: member="Gtk::Table::property_n_rows" ref="cfb09e787e160f8a10aaf8a51a3edd8d" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><guint> Gtk::Table::property_n_rows           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
The number of rows in the table. 
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><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><p>
<a class="anchor" name="a1d7ab9345128dc756df9a4b3093ec30"></a><!-- doxytag: member="Gtk::Table::property_row_spacing" ref="a1d7ab9345128dc756df9a4b3093ec30" args="() const" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><guint> Gtk::Table::property_row_spacing           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
The amount of space between two consecutive rows. 
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><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><p>
<a class="anchor" name="acba83aaed638547c0fd6c08d4294b7e"></a><!-- doxytag: member="Gtk::Table::property_row_spacing" ref="acba83aaed638547c0fd6c08d4294b7e" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><guint> Gtk::Table::property_row_spacing           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
The amount of space between two consecutive rows. 
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><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><p>
<a class="anchor" name="4f424987552a7ab8497eee384004b2dc"></a><!-- doxytag: member="Gtk::Table::resize" ref="4f424987552a7ab8497eee384004b2dc" args="(guint rows, guint columns)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Table::resize           </td>
          <td>(</td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>rows</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>columns</em></td><td> </td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="f77b4b9ea80e32d1c76c0e4466425676"></a><!-- doxytag: member="Gtk::Table::set_col_spacing" ref="f77b4b9ea80e32d1c76c0e4466425676" args="(guint column, guint spacing)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Table::set_col_spacing           </td>
          <td>(</td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>column</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>spacing</em></td><td> </td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="ea0cda0ce75493573df0fca34bb3e05d"></a><!-- doxytag: member="Gtk::Table::set_col_spacings" ref="ea0cda0ce75493573df0fca34bb3e05d" args="(guint spacing)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Table::set_col_spacings           </td>
          <td>(</td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>spacing</em>          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="62eac0bc438bc052d247739833d0a84a"></a><!-- doxytag: member="Gtk::Table::set_homogeneous" ref="62eac0bc438bc052d247739833d0a84a" args="(bool homogeneous=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Table::set_homogeneous           </td>
          <td>(</td>
          <td class="paramtype">bool </td>
          <td class="paramname"> <em>homogeneous</em> = <code>true</code>          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="eaa6413b00c0a37f31f4c3334e906f67"></a><!-- doxytag: member="Gtk::Table::set_row_spacing" ref="eaa6413b00c0a37f31f4c3334e906f67" args="(guint row, guint spacing)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Table::set_row_spacing           </td>
          <td>(</td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>row</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>spacing</em></td><td> </td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="9a65db5a52a77361ccf6dae3b30e04d7"></a><!-- doxytag: member="Gtk::Table::set_row_spacings" ref="9a65db5a52a77361ccf6dae3b30e04d7" args="(guint spacing)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Table::set_row_spacings           </td>
          <td>(</td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>spacing</em>          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="b9f12c5410e9d93f6b1aaa23aedcd342"></a><!-- doxytag: member="Gtk::Table::set_spacings" ref="b9f12c5410e9d93f6b1aaa23aedcd342" args="(guint spacing)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Table::set_spacings           </td>
          <td>(</td>
          <td class="paramtype">guint </td>
          <td class="paramname"> <em>spacing</em>          </td>
          <td> ) </td>
          <td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<hr><h2>Friends And Related Function Documentation</h2>
<a class="anchor" name="59d0a83c09436cb8e8b11e156dd513db"></a><!-- doxytag: member="Gtk::Table::wrap" ref="59d0a83c09436cb8e8b11e156dd513db" args="(GtkTable *object, bool take_copy=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Table.html">Gtk::Table</a>* wrap           </td>
          <td>(</td>
          <td class="paramtype">GtkTable * </td>
          <td class="paramname"> <em>object</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool </td>
          <td class="paramname"> <em>take_copy</em> = <code>false</code></td><td> </td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [related]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>
A <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/namespaceGlib.html#671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>object</em> </td><td>The C instance. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>take_copy</em> </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>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A C++ instance that wraps this C instance. </dd></dl>
</div>
</div><p>
<hr>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="gtk_2gtkmm_2table_8h.html">gtk/gtkmm/table.h</a></ul>
</div>
<!-- end main content -->
<hr><address><small>
Generated for gtkmm 2.4 by <a href="http://www.doxygen.org/index.html">
Doxygen</a> 1.5.1 © 1997-2001</small></address>
</body>
</html>
 |