diff options
author | Miguel de Icaza <miguel@src.gnome.org> | 2000-12-09 10:18:00 +0800 |
---|---|---|
committer | Miguel de Icaza <miguel@src.gnome.org> | 2000-12-09 10:18:00 +0800 |
commit | e68b48fb6e2c34fc0097669ba3a85b04ceb1d618 (patch) | |
tree | 8f3cbf42223788d18467225854257078a328a54c /widgets/table/e-table-col.h | |
parent | c65fda0e894b86fed0a88ecde17f4040e78af946 (diff) | |
download | gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar.gz gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar.bz2 gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar.lz gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar.xz gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar.zst gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.zip |
Work to get a Gtk-Doc infrastructure in place for Gal.
Work to get a Gtk-Doc infrastructure in place for Gal.
Miguel.
svn path=/trunk/; revision=6883
Diffstat (limited to 'widgets/table/e-table-col.h')
-rw-r--r-- | widgets/table/e-table-col.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/widgets/table/e-table-col.h b/widgets/table/e-table-col.h index 3c8b883550..012fa10267 100644 --- a/widgets/table/e-table-col.h +++ b/widgets/table/e-table-col.h @@ -11,20 +11,16 @@ #define E_IS_TABLE_COL(o) (GTK_CHECK_TYPE ((o), E_TABLE_COL_TYPE)) #define E_IS_TABLE_COL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_COL_TYPE)) -typedef struct _ETableCol ETableCol; -typedef struct _ETableColClass ETableColClass; -typedef enum _ETableColArrow ETableColArrow; - -enum _ETableColArrow { +typedef enum { E_TABLE_COL_ARROW_NONE = 0, E_TABLE_COL_ARROW_UP, E_TABLE_COL_ARROW_DOWN -}; +} ETableColArrow; /* * Information about a single column */ -struct _ETableCol { +typedef struct { GtkObject base; char *text; GdkPixbuf *pixbuf; @@ -43,11 +39,11 @@ struct _ETableCol { GtkJustification justification; ECell *ecell; -}; +} ETableCol; -struct _ETableColClass { +typedef struct { GtkObjectClass parent_class; -}; +} ETableColClass; GtkType e_table_col_get_type (void); ETableCol *e_table_col_new (int col_idx, const char *text, |