diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-03-12 06:51:50 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-03-12 06:51:50 +0800 |
commit | e94b86c4b5d7fa2d431d2dbbca0c29ef5e48a7e6 (patch) | |
tree | 0243389d5889b83af49e14b354cbb3c43d1bf2bd /widgets/table/e-table-memory-store.h | |
parent | b24b3e4ecdf17d041662d2dd71d084c63e8ab58d (diff) | |
download | gsoc2013-evolution-e94b86c4b5d7fa2d431d2dbbca0c29ef5e48a7e6.tar.gz gsoc2013-evolution-e94b86c4b5d7fa2d431d2dbbca0c29ef5e48a7e6.tar.zst gsoc2013-evolution-e94b86c4b5d7fa2d431d2dbbca0c29ef5e48a7e6.zip |
Added a pixbuf column type.
2002-03-11 Christopher James Lahey <clahey@ximian.com>
* e-table-memory-store.c, e-table-memory-store.h
(E_TABLE_MEMORY_STORE_PIXBUF): Added a pixbuf column type.
* e-table-specification.c, e-table-specification.h: Added
horizontal-resize attribute.
* e-table.c, e-table.h: Handle horizontal_resize.
svn path=/trunk/; revision=16108
Diffstat (limited to 'widgets/table/e-table-memory-store.h')
-rw-r--r-- | widgets/table/e-table-memory-store.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/widgets/table/e-table-memory-store.h b/widgets/table/e-table-memory-store.h index 33a84a2b1b..3a68e6df94 100644 --- a/widgets/table/e-table-memory-store.h +++ b/widgets/table/e-table-memory-store.h @@ -40,6 +40,7 @@ typedef enum { E_TABLE_MEMORY_STORE_COLUMN_TYPE_TERMINATOR, E_TABLE_MEMORY_STORE_COLUMN_TYPE_INTEGER, E_TABLE_MEMORY_STORE_COLUMN_TYPE_STRING, + E_TABLE_MEMORY_STORE_COLUMN_TYPE_PIXBUF, E_TABLE_MEMORY_STORE_COLUMN_TYPE_CUSTOM } ETableMemoryStoreColumnType; @@ -60,6 +61,7 @@ typedef struct { #define E_TABLE_MEMORY_STORE_TERMINATOR { E_TABLE_MEMORY_STORE_COLUMN_TYPE_TERMINATOR, { NULL }, FALSE } #define E_TABLE_MEMORY_STORE_INTEGER { E_TABLE_MEMORY_STORE_COLUMN_TYPE_INTEGER, { NULL }, FALSE } #define E_TABLE_MEMORY_STORE_STRING { E_TABLE_MEMORY_STORE_COLUMN_TYPE_STRING, { NULL }, FALSE } +#define E_TABLE_MEMORY_STORE_PIXBUF { E_TABLE_MEMORY_STORE_COLUMN_TYPE_PIXBUF, { NULL }, FALSE } #define E_TABLE_MEMORY_STORE_EDITABLE_STRING { E_TABLE_MEMORY_STORE_COLUMN_TYPE_STRING, { NULL }, TRUE } #define E_TABLE_MEMORY_STORE_CUSTOM(editable, duplicate, free, initialize, empty, string) \ { E_TABLE_MEMORY_STORE_COLUMN_TYPE_CUSTOM, \ @@ -106,4 +108,3 @@ void e_table_memory_store_clear (ETableMemoryStore END_GNOME_DECLS #endif /* _E_TABLE_MEMORY_STORE_H_ */ - |