2000-06-29 Christopher James Lahey <clahey@helixcode.com> * message-list.c, mail-ops.c: Changed the name of e_table_select_row to e_table_set_cursor_row. From widgets/e-table: 2000-06-29 Christopher James Lahey <clahey@helixcode.com> * e-table-click-to-add.c: Made this appear a bit better. * e-table-defines.h: Cleaned this up a bit, added ETableForeachFunc. * e-table-group-container.c, e-table-group-leaf.c, e-table-group.c, e-table-group.h, e-table-item.c, e-table-item.h, e-table.c, e-table.h: Changed e_table_select_row to e_table_set_cursor_row. Changed e_table_get_selected_view_row to e_table_get_cursor_row. Added e_table_selected_row_foreach. * e-table-header-item.c: Fixed some warnings. * e-table-sorted-variable.c: Removed some unneeded debugging print statments. * e-tree-example-1.c: Changed e_table_get_selected_view_row to e_table_get_cursor_row. svn path=/trunk/; revision=3799
17 lines
394 B
C
17 lines
394 B
C
#ifndef __E_TABLE_DEFINES__
|
|
#define __E_TABLE_DEFINES__ 1
|
|
|
|
#define BUTTON_HEIGHT 10
|
|
#define BUTTON_PADDING 2
|
|
#define GROUP_INDENT (BUTTON_HEIGHT + (BUTTON_PADDING * 2))
|
|
|
|
/* Padding above and below of the string in the header display */
|
|
#define HEADER_PADDING 2
|
|
|
|
#define MIN_ARROW_SIZE 10
|
|
|
|
typedef void (*ETableForeachFunc) (int model_row,
|
|
gpointer closure);
|
|
|
|
#endif
|