X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkgrid.h;h=0e37277ad7afc39289231c64d7664c344aa130c0;hb=a89d420270d1a856e072ed87c365b0176f102e6c;hp=860658a0b715b9c5e77af196e541367d117d890b;hpb=520a6aeb8ff06217373b9f567578850cb3598106;p=~andy%2Fgtk diff --git a/gtk/gtkgrid.h b/gtk/gtkgrid.h index 860658a0b..0e37277ad 100644 --- a/gtk/gtkgrid.h +++ b/gtk/gtkgrid.h @@ -13,19 +13,17 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library. If not, see . */ -#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) -#error "Only can be included directly." -#endif - #ifndef __GTK_GRID_H__ #define __GTK_GRID_H__ +#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) +#error "Only can be included directly." +#endif + #include @@ -45,7 +43,7 @@ typedef struct _GtkGridClass GtkGridClass; struct _GtkGrid { - /* */ + /*< private >*/ GtkContainer container; GtkGridPrivate *priv; @@ -79,6 +77,20 @@ void gtk_grid_attach_next_to (GtkGrid *grid, GtkPositionType side, gint width, gint height); +GDK_AVAILABLE_IN_3_2 +GtkWidget *gtk_grid_get_child_at (GtkGrid *grid, + gint left, + gint top); +GDK_AVAILABLE_IN_3_2 +void gtk_grid_insert_row (GtkGrid *grid, + gint position); +GDK_AVAILABLE_IN_3_2 +void gtk_grid_insert_column (GtkGrid *grid, + gint position); +GDK_AVAILABLE_IN_3_2 +void gtk_grid_insert_next_to (GtkGrid *grid, + GtkWidget *sibling, + GtkPositionType side); void gtk_grid_set_row_homogeneous (GtkGrid *grid, gboolean homogeneous); gboolean gtk_grid_get_row_homogeneous (GtkGrid *grid);