GtkTable: move public members to private structure

This commit is contained in:
Javier Jardón 2010-07-13 03:55:37 +02:00
parent 1af22acbf7
commit 703f7121ae
2 changed files with 371 additions and 298 deletions

File diff suppressed because it is too large Load Diff

View File

@ -46,6 +46,7 @@ G_BEGIN_DECLS
typedef struct _GtkTable GtkTable;
typedef struct _GtkTablePriv GtkTablePriv;
typedef struct _GtkTableClass GtkTableClass;
typedef struct _GtkTableChild GtkTableChild;
typedef struct _GtkTableRowCol GtkTableRowCol;
@ -54,14 +55,8 @@ struct _GtkTable
{
GtkContainer container;
GList *GSEAL (children);
GtkTableRowCol *GSEAL (rows);
GtkTableRowCol *GSEAL (cols);
guint16 GSEAL (nrows);
guint16 GSEAL (ncols);
guint16 GSEAL (column_spacing);
guint16 GSEAL (row_spacing);
guint GSEAL (homogeneous) : 1;
/* <private> */
GtkTablePriv *priv;
};
struct _GtkTableClass