2000-06-26 Christopher James Lahey <clahey@helixcode.com> * widgets/e-text/e-text.c: Calculate height including if clip_height is set to -1. From addressbook/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * contact-editor/e-contact-editor-categories.c, addressbook/gui/component/e-cardlist-model.c: Added value_to_string handlers. * demo/addressbook-widget.c, demo/demo.c: Removed usage of "x" and "y" arguments. * addressbook/gui/component/addressbook.c: Activated Click To Add and set the click to add message. * addressbook/gui/component/e-addressbook-model.c: Added value_to_string and append_row handlers. * addressbook/gui/component/e-select-names.c: Added a column. From calendar/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * gui/calendar-model.c: Added an #ifdefed value_to_string handler assignment. From camel/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * providers/mbox/camel-mbox-summary.c: Added debugging information. From composer/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added e-msg-composer-select-file.h for make distcheck. From e-util/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added e-canvas-vbox.c and e-canvas-vbox.h. * e-canvas-vbox.c, e-canvas-vbox.h: New canvas object to act like a vbox using the reflow system. From mail/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * message-list.c: Added a value_to_string handler. From shell/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * glade/Makefile.am: Added EXTRA_DIST for make distcheck. From widgets/e-table/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added e-table-click-to-add.c, e-table-click-to-add.h, e-table-one.c, and e-table-one.h. * e-table-click-to-add.c, e-table-click-to-add.h: A new canvas item that represents a single row that sometimes exists. It's for adding new rows to your table. * e-table-example-1.c, e-table-example-2.c, e-table-size-test.c, test-check.c, test-cols.c, test-table.c: Added value_to_string handlers. * e-table-group-container.c: Use value_to_string to make grouping not crash for non string columns. Made some changes to work properly in an ECanvasVbox. * e-table-group-leaf.c, e-table-item.c: Made some changes to work properly in an ECanvasVbox. * e-table-model.c, e-table-model.h: Added append_row and value_to_string methods. * e-table-one.c, e-table-one.h: Given a source ETableModel, this provides a single row model that uses the initialize_value, duplicate_value, free_value, and value_is_empty methods of the original source to implement set_value and value_at (and proxies most of the other methods.) This is used for ETableClickToAdd. * e-table-simple.c, e-table-simple.h: Added append_row and value_to_string handlers. append_row uses a GtkArg instead of a parameter to e_table_simple_new. * e-table-subset.c: Added append_row and value_to_string handlers. * e-table.c, e-table.h: Use a vbox containing an ETableClickToAdd and an ETableItem instead of an ETableItem directly. Only show the ETableClickToAdd if the top level of the xml SPEC has the attribute click-to-add set to some non-zero integer. (click-to-add="1"). Add a "click_to_add_message" argument. * e-tree-model.c: Add a commented out value_to_string handler. From widgets/meeting-time-sel/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added the include path to top_srcdir. svn path=/trunk/; revision=3744
245 lines
5.6 KiB
C
245 lines
5.6 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* e-table-model.c: a simple table model implementation that uses function
|
|
* pointers to simplify the creation of new, exotic and colorful tables in
|
|
* no time.
|
|
*
|
|
* Author:
|
|
* Miguel de Icaza (miguel@gnu.org)
|
|
*
|
|
* (C) 1999 Helix Code, Inc.
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include "e-table-simple.h"
|
|
|
|
enum {
|
|
ARG_0,
|
|
ARG_APPEND_ROW,
|
|
};
|
|
|
|
#define PARENT_TYPE e_table_model_get_type ()
|
|
|
|
static int
|
|
simple_column_count (ETableModel *etm)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->col_count)
|
|
return simple->col_count (etm, simple->data);
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
simple_row_count (ETableModel *etm)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->row_count)
|
|
return simple->row_count (etm, simple->data);
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
static void *
|
|
simple_value_at (ETableModel *etm, int col, int row)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->value_at)
|
|
return simple->value_at (etm, col, row, simple->data);
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
static void
|
|
simple_set_value_at (ETableModel *etm, int col, int row, const void *val)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->set_value_at)
|
|
simple->set_value_at (etm, col, row, val, simple->data);
|
|
}
|
|
|
|
static gboolean
|
|
simple_is_cell_editable (ETableModel *etm, int col, int row)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->is_cell_editable)
|
|
return simple->is_cell_editable (etm, col, row, simple->data);
|
|
else
|
|
return FALSE;
|
|
}
|
|
|
|
/* The default for simple_duplicate_value is to return the raw value. */
|
|
static void *
|
|
simple_duplicate_value (ETableModel *etm, int col, const void *value)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->duplicate_value)
|
|
return simple->duplicate_value (etm, col, value, simple->data);
|
|
else
|
|
return (void *)value;
|
|
}
|
|
|
|
static void
|
|
simple_free_value (ETableModel *etm, int col, void *value)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->free_value)
|
|
simple->free_value (etm, col, value, simple->data);
|
|
}
|
|
|
|
static void *
|
|
simple_initialize_value (ETableModel *etm, int col)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->initialize_value)
|
|
return simple->initialize_value (etm, col, simple->data);
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
static gboolean
|
|
simple_value_is_empty (ETableModel *etm, int col, const void *value)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->value_is_empty)
|
|
return simple->value_is_empty (etm, col, value, simple->data);
|
|
else
|
|
return FALSE;
|
|
}
|
|
|
|
static char *
|
|
simple_value_to_string (ETableModel *etm, int col, const void *value)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->value_to_string)
|
|
return simple->value_to_string (etm, col, value, simple->data);
|
|
else
|
|
return g_strdup ("");
|
|
}
|
|
|
|
static int
|
|
simple_append_row (ETableModel *etm)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE(etm);
|
|
|
|
if (simple->append_row)
|
|
return simple->append_row (etm, simple->data);
|
|
else
|
|
return -1;
|
|
}
|
|
|
|
static void
|
|
simple_get_arg (GtkObject *o, GtkArg *arg, guint arg_id)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE (o);
|
|
|
|
switch (arg_id){
|
|
case ARG_APPEND_ROW:
|
|
GTK_VALUE_POINTER(*arg) = simple->append_row;
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
simple_set_arg (GtkObject *o, GtkArg *arg, guint arg_id)
|
|
{
|
|
ETableSimple *simple = E_TABLE_SIMPLE (o);
|
|
|
|
switch (arg_id){
|
|
case ARG_APPEND_ROW:
|
|
simple->append_row = GTK_VALUE_POINTER(*arg);
|
|
break;
|
|
default:
|
|
arg->type = GTK_TYPE_INVALID;
|
|
}
|
|
}
|
|
|
|
static void
|
|
e_table_simple_class_init (GtkObjectClass *object_class)
|
|
{
|
|
ETableModelClass *model_class = (ETableModelClass *) object_class;
|
|
|
|
object_class->set_arg = simple_set_arg;
|
|
object_class->get_arg = simple_get_arg;
|
|
|
|
model_class->column_count = simple_column_count;
|
|
model_class->row_count = simple_row_count;
|
|
model_class->value_at = simple_value_at;
|
|
model_class->set_value_at = simple_set_value_at;
|
|
model_class->is_cell_editable = simple_is_cell_editable;
|
|
model_class->duplicate_value = simple_duplicate_value;
|
|
model_class->free_value = simple_free_value;
|
|
model_class->initialize_value = simple_initialize_value;
|
|
model_class->value_is_empty = simple_value_is_empty;
|
|
model_class->value_to_string = simple_value_to_string;
|
|
model_class->append_row = simple_append_row;
|
|
|
|
gtk_object_add_arg_type ("ETableSimple::append_row", GTK_TYPE_POINTER,
|
|
GTK_ARG_READWRITE, ARG_APPEND_ROW);
|
|
}
|
|
|
|
GtkType
|
|
e_table_simple_get_type (void)
|
|
{
|
|
static GtkType type = 0;
|
|
|
|
if (!type){
|
|
GtkTypeInfo info = {
|
|
"ETableSimple",
|
|
sizeof (ETableSimple),
|
|
sizeof (ETableSimpleClass),
|
|
(GtkClassInitFunc) e_table_simple_class_init,
|
|
(GtkObjectInitFunc) NULL,
|
|
NULL, /* reserved 1 */
|
|
NULL, /* reserved 2 */
|
|
(GtkClassInitFunc) NULL
|
|
};
|
|
|
|
type = gtk_type_unique (PARENT_TYPE, &info);
|
|
}
|
|
|
|
return type;
|
|
}
|
|
|
|
ETableModel *
|
|
e_table_simple_new (ETableSimpleColumnCountFn col_count,
|
|
ETableSimpleRowCountFn row_count,
|
|
ETableSimpleValueAtFn value_at,
|
|
ETableSimpleSetValueAtFn set_value_at,
|
|
ETableSimpleIsCellEditableFn is_cell_editable,
|
|
ETableSimpleDuplicateValueFn duplicate_value,
|
|
ETableSimpleFreeValueFn free_value,
|
|
ETableSimpleInitializeValueFn initialize_value,
|
|
ETableSimpleValueIsEmptyFn value_is_empty,
|
|
ETableSimpleValueToStringFn value_to_string,
|
|
void *data)
|
|
{
|
|
ETableSimple *et;
|
|
|
|
et = gtk_type_new (e_table_simple_get_type ());
|
|
|
|
et->col_count = col_count;
|
|
et->row_count = row_count;
|
|
et->value_at = value_at;
|
|
et->set_value_at = set_value_at;
|
|
et->is_cell_editable = is_cell_editable;
|
|
et->duplicate_value = duplicate_value;
|
|
et->free_value = free_value;
|
|
et->initialize_value = initialize_value;
|
|
et->value_is_empty = value_is_empty;
|
|
et->value_to_string = value_to_string;
|
|
et->data = data;
|
|
|
|
return (ETableModel *) et;
|
|
}
|