]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtktextchild.h
a11y: Emit text-changed signals directly
[~andy/gtk] / gtk / gtktextchild.h
index dd132f4278596d45a75b4ce6f5dfe073eda8abbd..2aa859a91630664e1cf0cce0afead82fac828b4d 100644 (file)
@@ -12,9 +12,7 @@
  * 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/>.
  */
 
 /*
  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  */
 
+#ifndef __GTK_TEXT_CHILD_H__
+#define __GTK_TEXT_CHILD_H__
+
 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
 #error "Only <gtk/gtk.h> can be included directly."
 #endif
 
-#ifndef __GTK_TEXT_CHILD_H__
-#define __GTK_TEXT_CHILD_H__
-
-#include <gdkconfig.h>
+#include <gdk/gdk.h>
 #include <glib-object.h>
 
 G_BEGIN_DECLS
@@ -58,7 +56,8 @@ struct _GtkTextChildAnchor
 {
   GObject parent_instance;
 
-  gpointer GSEAL (segment);
+  /*< private >*/
+  gpointer segment;
 };
 
 struct _GtkTextChildAnchorClass
@@ -72,12 +71,12 @@ struct _GtkTextChildAnchorClass
   void (*_gtk_reserved4) (void);
 };
 
-GType gtk_text_child_anchor_get_type (void) G_GNUC_CONST;
+GType               gtk_text_child_anchor_get_type    (void) G_GNUC_CONST;
 
-GtkTextChildAnchor* gtk_text_child_anchor_new (void);
+GtkTextChildAnchor* gtk_text_child_anchor_new         (void);
 
-GList*   gtk_text_child_anchor_get_widgets (GtkTextChildAnchor *anchor);
-gboolean gtk_text_child_anchor_get_deleted (GtkTextChildAnchor *anchor);
+GList*              gtk_text_child_anchor_get_widgets (GtkTextChildAnchor *anchor);
+gboolean            gtk_text_child_anchor_get_deleted (GtkTextChildAnchor *anchor);
 
 G_END_DECLS