1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _E_SELECTION_MODEL_H_
#define _E_SELECTION_MODEL_H_
#include <gtk/gtkobject.h>
#include <gal/util/e-sorter.h>
#include <gdk/gdktypes.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define E_SELECTION_MODEL_TYPE (e_selection_model_get_type ())
#define E_SELECTION_MODEL(o) (GTK_CHECK_CAST ((o), E_SELECTION_MODEL_TYPE, ESelectionModel))
#define E_SELECTION_MODEL_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_SELECTION_MODEL_TYPE, ESelectionModelClass))
#define E_IS_SELECTION_MODEL(o) (GTK_CHECK_TYPE ((o), E_SELECTION_MODEL_TYPE))
#define E_IS_SELECTION_MODEL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_SELECTION_MODEL_TYPE))
typedef void (*EForeachFunc) (int model_row,
gpointer closure);
/* list selection modes */
typedef enum {
E_CURSOR_LINE,
E_CURSOR_SIMPLE,
E_CURSOR_SPREADSHEET,
} ECursorMode;
typedef struct {
GtkObject base;
ESorter *sorter;
gint row_count;
guint32 *selection;
gint cursor_row;
gint cursor_col;
gint selection_start_row;
guint model_changed_id;
guint model_row_inserted_id, model_row_deleted_id;
guint frozen : 1;
guint selection_model_changed : 1;
guint group_info_changed : 1;
GtkSelectionMode mode;
ECursorMode cursor_mode;
} ESelectionModel;
typedef struct {
GtkObjectClass parent_class;
gint (*get_row_count) (ESelectionModel *selection);
/*
* Signals
*/
void (*cursor_changed) (ESelectionModel *selection, int row, int col);
void (*cursor_activated) (ESelectionModel *selection, int row, int col);
void (*selection_changed) (ESelectionModel *selection);
} ESelectionModelClass;
GtkType e_selection_model_get_type (void);
gboolean e_selection_model_is_row_selected (ESelectionModel *selection,
gint n);
void e_selection_model_foreach (ESelectionModel *selection,
EForeachFunc callback,
gpointer closure);
void e_selection_model_do_something (ESelectionModel *selection,
guint row,
guint col,
GdkModifierType state);
void e_selection_model_maybe_do_something (ESelectionModel *selection,
guint row,
guint col,
GdkModifierType state);
gint e_selection_model_key_press (ESelectionModel *selection,
GdkEventKey *key);
void e_selection_model_clear (ESelectionModel *selection);
gint e_selection_model_selected_count (ESelectionModel *selection);
void e_selection_model_select_all (ESelectionModel *selection);
void e_selection_model_invert_selection (ESelectionModel *selection);
/* Private Functions */
void e_selection_model_insert_rows (ESelectionModel *esm,
int row,
int count);
void e_selection_model_delete_rows (ESelectionModel *esm,
int row,
int count);
void e_selection_model_move_row (ESelectionModel *esm,
int old_row,
int new_row);
void e_selection_model_change_one_row (ESelectionModel *esm,
int row,
gboolean on);
void e_selection_model_change_cursor (ESelectionModel *esm,
int row);
gboolean e_selection_model_confirm_row_count (ESelectionModel *esm);
/* Virtual Function */
gint e_selection_model_get_row_count (ESelectionModel *esm);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* _E_SELECTION_MODEL_H_ */
|