Files
evolution/widgets/table/e-table-one.h
Christopher James Lahey 2e8ac028ee Changed the API for the append_row function. Now accepts a model to copy
2000-08-02  Christopher James Lahey  <clahey@helixcode.com>

	* e-table-model.c, e-table-model.h: Changed the API for the
	append_row function.  Now accepts a model to copy data from
	instead of returning a row number and leaving it up to ETableOne
	to copy the data in.

	* e-table-one.c, e-table-one.h: Adapted to use new append_row API.

	* e-table-simple.c, e-table-simple.h, e-table-subset.c: Adapted to
	supply new append_row API.

svn path=/trunk/; revision=4468
2000-08-02 10:44:28 +00:00

31 lines
886 B
C

/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _E_TABLE_ONE_H_
#define _E_TABLE_ONE_H_
#include "e-table-model.h"
#define E_TABLE_ONE_TYPE (e_table_one_get_type ())
#define E_TABLE_ONE(o) (GTK_CHECK_CAST ((o), E_TABLE_ONE_TYPE, ETableOne))
#define E_TABLE_ONE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TABLE_ONE_TYPE, ETableOneClass))
#define E_IS_TABLE_ONE(o) (GTK_CHECK_TYPE ((o), E_TABLE_ONE_TYPE))
#define E_IS_TABLE_ONE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_ONE_TYPE))
typedef struct {
ETableModel parent;
ETableModel *source;
void **data;
} ETableOne;
typedef struct {
ETableModelClass parent_class;
} ETableOneClass;
GtkType e_table_one_get_type (void);
ETableModel *e_table_one_new (ETableModel *source);
void e_table_one_commit (ETableOne *one);
#endif /* _E_TABLE_ONE_H_ */