~ubuntu-branches/ubuntu/quantal/gtkmm3.0/quantal

« back to all changes in this revision

Viewing changes to gtk/src/grid.hg

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-03-01 23:42:36 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120301234236-12w6m0hkomhi7h53
Tags: 3.3.16-0ubuntu1
* New upstream version
* debian/control.in: updated the glib requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
  _WRAP_METHOD(void attach(Widget& child, int left, int top, int width, int height), gtk_grid_attach)
61
61
  _WRAP_METHOD(void attach_next_to(Widget& child, Widget& sibling, PositionType side, int width, int height), gtk_grid_attach_next_to)
62
62
 
 
63
  _WRAP_METHOD(Widget* get_child_at(int left, int top), gtk_grid_get_child_at)
 
64
  _WRAP_METHOD(const Widget* get_child_at(int left, int top) const, gtk_grid_get_child_at)
 
65
  _WRAP_METHOD(void insert_row(int position), gtk_grid_insert_row)
 
66
  _WRAP_METHOD(void insert_column(int position), gtk_grid_insert_column)
 
67
  _WRAP_METHOD(void insert_next_to(Widget& sibling, PositionType side), gtk_grid_insert_next_to)
 
68
                                                         
63
69
  _WRAP_METHOD(void set_row_homogeneous(bool homogeneous = true), gtk_grid_set_row_homogeneous)
64
70
  _WRAP_METHOD(bool get_row_homogeneous() const, gtk_grid_get_row_homogeneous)
65
71
  _WRAP_METHOD(void set_row_spacing(guint spacing), gtk_grid_set_row_spacing)