Add gtk_grid_remove_{row,column}

It is sometimes convenient to deal with entire rows or
columns at a time.
https://bugzilla.gnome.org/show_bug.cgi?id=695994
This commit is contained in:
Matthias Clasen
2013-03-23 15:40:44 -04:00
parent 666d10ec76
commit cc86a7bb7e
4 changed files with 112 additions and 0 deletions

View File

@ -87,6 +87,12 @@ void gtk_grid_insert_row (GtkGrid *grid,
GDK_AVAILABLE_IN_3_2
void gtk_grid_insert_column (GtkGrid *grid,
gint position);
GDK_AVAILABLE_IN_3_10
void gtk_grid_remove_row (GtkGrid *grid,
gint position);
GDK_AVAILABLE_IN_3_10
void gtk_grid_remove_column (GtkGrid *grid,
gint position);
GDK_AVAILABLE_IN_3_2
void gtk_grid_insert_next_to (GtkGrid *grid,
GtkWidget *sibling,