Index

C++ Code Documentation

gtk::widget0::Table

Derived from: gtk::widget0::Container

File: WIDGET/gtk/widget0/Table.H

public:
  • Table( uint rows, uint columns, bool homogeneous ) : Container( gtk_table_new( rows, columns, homogeneous ) );
  • void add( Widget *child, uint left_attach, uint right_attach, uint top_attach, uint bottom_attach, GtkAttachOptions xoptions, GtkAttachOptions yoptions, uint xpadding, uint ypadding );
  • void resize( uint rows, uint columns );
  • void attach( GtkWidget *child, uint left_attach, uint right_attach, uint top_attach, uint bottom_attach, GtkAttachOptions xoptions, GtkAttachOptions yoptions, uint xpadding, uint ypadding );
  • void attach_defaults( GtkWidget *widget, uint left_attach, uint right_attach, uint top_attach, uint bottom_attach );
  • void set_row_spacing( uint row, uint spacing );
  • void set_col_spacing( uint column, uint spacing );
  • void set_row_spacings( uint spacing );
  • void set_col_spacings( uint spacing );
  • void set_homogeneous( bool homogeneous );
protected:
  • Table( GtkWidget *x ) : Container(x);
private:


gtk::widget0::Table GANG