X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkliststore.h;h=568e10cd2bfda56fe01b15951966d26f66c81bd9;hb=9d0febc9a64a5bfb0fcfc3a88de4757f6c1ff090;hp=0d893b8484a5480d4b845becbeb087dceeeafc8d;hpb=cd19149ad5033e403171229afa0fb569802e62a2;p=~andy%2Fgtk diff --git a/gtk/gtkliststore.h b/gtk/gtkliststore.h index 0d893b848..568e10cd2 100644 --- a/gtk/gtkliststore.h +++ b/gtk/gtkliststore.h @@ -12,19 +12,16 @@ * Library General Public License for more details. * * You should have received a copy of the GNU Library 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_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) +#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) #error "Only can be included directly." #endif #ifndef __GTK_LIST_STORE_H__ #define __GTK_LIST_STORE_H__ -#include #include #include @@ -39,27 +36,16 @@ G_BEGIN_DECLS #define GTK_IS_LIST_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LIST_STORE)) #define GTK_LIST_STORE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_LIST_STORE, GtkListStoreClass)) -typedef struct _GtkListStore GtkListStore; -typedef struct _GtkListStoreClass GtkListStoreClass; +typedef struct _GtkListStore GtkListStore; +typedef struct _GtkListStorePrivate GtkListStorePrivate; +typedef struct _GtkListStoreClass GtkListStoreClass; struct _GtkListStore { GObject parent; /*< private >*/ - gint GSEAL (stamp); - gpointer GSEAL (seq); /* head of the list */ - gpointer GSEAL (_gtk_reserved1); - GList *GSEAL (sort_list); - gint GSEAL (n_columns); - gint GSEAL (sort_column_id); - GtkSortType GSEAL (order); - GType *GSEAL (column_headers); - gint GSEAL (length); - GtkTreeIterCompareFunc GSEAL (default_sort_func); - gpointer GSEAL (default_sort_data); - GtkDestroyNotify GSEAL (default_sort_destroy); - guint GSEAL (columns_dirty) : 1; + GtkListStorePrivate *priv; }; struct _GtkListStoreClass