X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkcellrenderertext.h;h=82c94df3f0778707b94c38da270c529ebe5f8119;hb=9d0febc9a64a5bfb0fcfc3a88de4757f6c1ff090;hp=2875b272cb7b96ae09cd679f1ec3fc48018f5b08;hpb=cd19149ad5033e403171229afa0fb569802e62a2;p=~andy%2Fgtk diff --git a/gtk/gtkcellrenderertext.h b/gtk/gtkcellrenderertext.h index 2875b272c..82c94df3f 100644 --- a/gtk/gtkcellrenderertext.h +++ b/gtk/gtkcellrenderertext.h @@ -12,19 +12,17 @@ * 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_CELL_RENDERER_TEXT_H__ #define __GTK_CELL_RENDERER_TEXT_H__ -#include + #include @@ -38,44 +36,16 @@ G_BEGIN_DECLS #define GTK_IS_CELL_RENDERER_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CELL_RENDERER_TEXT)) #define GTK_CELL_RENDERER_TEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CELL_RENDERER_TEXT, GtkCellRendererTextClass)) -typedef struct _GtkCellRendererText GtkCellRendererText; -typedef struct _GtkCellRendererTextClass GtkCellRendererTextClass; +typedef struct _GtkCellRendererText GtkCellRendererText; +typedef struct _GtkCellRendererTextPrivate GtkCellRendererTextPrivate; +typedef struct _GtkCellRendererTextClass GtkCellRendererTextClass; struct _GtkCellRendererText { GtkCellRenderer parent; /*< private >*/ - gchar *GSEAL (text); - PangoFontDescription *GSEAL (font); - gdouble GSEAL (font_scale); - PangoColor GSEAL (foreground); - PangoColor GSEAL (background); - - PangoAttrList *GSEAL (extra_attrs); - - PangoUnderline GSEAL (underline_style); - - gint GSEAL (rise); - gint GSEAL (fixed_height_rows); - - guint GSEAL (strikethrough) : 1; - - guint GSEAL (editable) : 1; - - guint GSEAL (scale_set) : 1; - - guint GSEAL (foreground_set) : 1; - guint GSEAL (background_set) : 1; - - guint GSEAL (underline_set) : 1; - - guint GSEAL (rise_set) : 1; - - guint GSEAL (strikethrough_set) : 1; - - guint GSEAL (editable_set) : 1; - guint GSEAL (calc_fixed_height) : 1; + GtkCellRendererTextPrivate *priv; }; struct _GtkCellRendererTextClass