
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
29 lines
938 B
C
29 lines
938 B
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/* ECellDate - Date item for e-table.
|
|
* Copyright (C) 2001 Ximian, Inc.
|
|
* Author: Chris Lahey <clahey@ximian.com>
|
|
*/
|
|
#ifndef _E_CELL_DATE_H_
|
|
#define _E_CELL_DATE_H_
|
|
|
|
#include <gal/e-table/e-cell-text.h>
|
|
|
|
#define E_CELL_DATE_TYPE (e_cell_date_get_type ())
|
|
#define E_CELL_DATE(o) (GTK_CHECK_CAST ((o), E_CELL_DATE_TYPE, ECellDate))
|
|
#define E_CELL_DATE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_CELL_DATE_TYPE, ECellDateClass))
|
|
#define E_IS_CELL_DATE(o) (GTK_CHECK_TYPE ((o), E_CELL_DATE_TYPE))
|
|
#define E_IS_CELL_DATE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_CELL_DATE_TYPE))
|
|
|
|
typedef struct {
|
|
ECellText base;
|
|
} ECellDate;
|
|
|
|
typedef struct {
|
|
ECellTextClass parent_class;
|
|
} ECellDateClass;
|
|
|
|
GtkType e_cell_date_get_type (void);
|
|
ECell *e_cell_date_new (const char *fontname, GtkJustification justify);
|
|
|
|
#endif /* _E_CELL_DATE_H_ */
|