aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell-size.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-01-16 09:52:27 +0800
committerChris Lahey <clahey@src.gnome.org>2001-01-16 09:52:27 +0800
commitf914742fe75e1c14f6879a96561d076ed6b0effc (patch)
treefd18773dc7e9d695b74e258f51b6eff09b4abc0e /widgets/table/e-cell-size.h
parentd9b76e981fae89ad0da878cb8bb5b261a9988ddd (diff)
downloadgsoc2013-evolution-f914742fe75e1c14f6879a96561d076ed6b0effc.tar
gsoc2013-evolution-f914742fe75e1c14f6879a96561d076ed6b0effc.tar.gz
gsoc2013-evolution-f914742fe75e1c14f6879a96561d076ed6b0effc.tar.bz2
gsoc2013-evolution-f914742fe75e1c14f6879a96561d076ed6b0effc.tar.lz
gsoc2013-evolution-f914742fe75e1c14f6879a96561d076ed6b0effc.tar.xz
gsoc2013-evolution-f914742fe75e1c14f6879a96561d076ed6b0effc.tar.zst
gsoc2013-evolution-f914742fe75e1c14f6879a96561d076ed6b0effc.zip
Added e-cell-date.c, e-cell-date.h, e-cell-size.c, and e-cell-size.h.
2001-01-15 Christopher James Lahey <clahey@ximian.com> * Makefile.am: Added e-cell-date.c, e-cell-date.h, e-cell-size.c, and e-cell-size.h. * e-cell-date.c, e-cell-date.h: New cell to implement displaying a date. * e-cell-size.c, e-cell-size.h: New cell to implement displaying a file size. * e-cell-text.c, e-cell-text.h: Got rid of the filter arguments. Replaced them with the ability to subclass ECellText and override the get_text method. Added free_text to override if your get_text implementation returns allocated memory. * e-table-extras.c (ete_init): Added "size" and "date" cells to the default ETableExtras. svn path=/trunk/; revision=7523
Diffstat (limited to 'widgets/table/e-cell-size.h')
-rw-r--r--widgets/table/e-cell-size.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/widgets/table/e-cell-size.h b/widgets/table/e-cell-size.h
new file mode 100644
index 0000000000..229d316642
--- /dev/null
+++ b/widgets/table/e-cell-size.h
@@ -0,0 +1,28 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/* ECellSize - Size item for e-table.
+ * Copyright (C) 2001 Ximian, Inc.
+ * Author: Chris Lahey <clahey@ximian.com>
+ */
+#ifndef _E_CELL_SIZE_H_
+#define _E_CELL_SIZE_H_
+
+#include <gal/e-table/e-cell-text.h>
+
+#define E_CELL_SIZE_TYPE (e_cell_size_get_type ())
+#define E_CELL_SIZE(o) (GTK_CHECK_CAST ((o), E_CELL_SIZE_TYPE, ECellSize))
+#define E_CELL_SIZE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_CELL_SIZE_TYPE, ECellSizeClass))
+#define E_IS_CELL_SIZE(o) (GTK_CHECK_TYPE ((o), E_CELL_SIZE_TYPE))
+#define E_IS_CELL_SIZE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_CELL_SIZE_TYPE))
+
+typedef struct {
+ ECellText base;
+} ECellSize;
+
+typedef struct {
+ ECellTextClass parent_class;
+} ECellSizeClass;
+
+GtkType e_cell_size_get_type (void);
+ECell *e_cell_size_new (const char *fontname, GtkJustification justify);
+
+#endif /* _E_CELL_SIZE_H_ */