2000-02-11 Christopher James Lahey <clahey@helixcode.com> * test-check.c: Added test of sort arrows. * e-table-col.h, e-table-col.c: Added sort arrows for column headers (It doesn't actually sort. It just displays the arrows.) * e-table-header-item.c: Added display of arrows. svn path=/trunk/; revision=1743
65 lines
1.8 KiB
C
65 lines
1.8 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
#ifndef _E_TABLE_COL_H_
|
|
#define _E_TABLE_COL_H_
|
|
|
|
#include "e-cell.h"
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
#define E_TABLE_COL_TYPE (e_table_col_get_type ())
|
|
#define E_TABLE_COL(o) (GTK_CHECK_CAST ((o), E_TABLE_COL_TYPE, ETableCol))
|
|
#define E_TABLE_COL_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TABLE_COL_TYPE, ETableColClass))
|
|
#define E_IS_TABLE_COL(o) (GTK_CHECK_TYPE ((o), E_TABLE_COL_TYPE))
|
|
#define E_IS_TABLE_COL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_COL_TYPE))
|
|
|
|
typedef struct _ETableCol ETableCol;
|
|
typedef struct _ETableColClass ETableColClass;
|
|
typedef enum _ETableColArrow ETableColArrow;
|
|
|
|
enum _ETableColArrow {
|
|
E_TABLE_COL_ARROW_NONE,
|
|
E_TABLE_COL_ARROW_UP,
|
|
E_TABLE_COL_ARROW_DOWN
|
|
};
|
|
|
|
/*
|
|
* Information about a single column
|
|
*/
|
|
struct _ETableCol {
|
|
GtkObject base;
|
|
char *text;
|
|
GdkPixbuf *pixbuf;
|
|
short width;
|
|
short min_width;
|
|
short x;
|
|
GCompareFunc compare;
|
|
unsigned int is_pixbuf:1;
|
|
unsigned int selected:1;
|
|
unsigned int resizeable:1;
|
|
int col_idx;
|
|
|
|
ETableColArrow arrow;
|
|
|
|
ECell *ecell;
|
|
};
|
|
|
|
struct _ETableColClass {
|
|
GtkObjectClass parent_class;
|
|
};
|
|
|
|
GtkType e_table_col_get_type (void);
|
|
ETableCol *e_table_col_new (int col_idx, const char *text,
|
|
int width, int min_width,
|
|
ECell *ecell, GCompareFunc compare,
|
|
gboolean resizable);
|
|
ETableCol *e_table_col_new_with_pixbuf (int col_idx, GdkPixbuf *pixbuf,
|
|
int width, int min_width,
|
|
ECell *ecell, GCompareFunc compare,
|
|
gboolean resizable);
|
|
void e_table_col_destroy (ETableCol *etc);
|
|
void e_table_col_set_arrow (ETableCol *col, ETableColArrow arrow);
|
|
ETableColArrow e_table_col_get_arrow (ETableCol *col);
|
|
|
|
|
|
#endif /* _E_TABLE_COL_H_ */
|
|
|