]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkgrid.h
a11y: Emit text-changed signals when the text-buffer changes
[~andy/gtk] / gtk / gtkgrid.h
index 530ef0be25caa953c1b4e935aed441e93988455c..0e37277ad7afc39289231c64d7664c344aa130c0 100644 (file)
  * 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 <http://www.gnu.org/licenses/>.
  */
 
-#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
-#error "Only <gtk/gtk.h> can be included directly."
-#endif
-
 #ifndef __GTK_GRID_H__
 #define __GTK_GRID_H__
 
 
+#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
+#error "Only <gtk/gtk.h> can be included directly."
+#endif
+
 #include <gtk/gtkcontainer.h>
 
 
@@ -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);