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
114
115
116
117
118
119
|
/*
* Copyright (C) 2002 Jorn Baayen <jorn@nl.linux.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
*/
#ifndef __EPHY_NODE_VIEW_H
#define __EPHY_NODE_VIEW_H
#include <gtk/gtktreeview.h>
#include <gtk/gtkdnd.h>
#include "ephy-tree-model-node.h"
#include "ephy-node-filter.h"
G_BEGIN_DECLS
#define EPHY_TYPE_NODE_VIEW (ephy_node_view_get_type ())
#define EPHY_NODE_VIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_NODE_VIEW, EphyNodeView))
#define EPHY_NODE_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_NODE_VIEW, EphyNodeViewClass))
#define EPHY_IS_NODE_VIEW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_NODE_VIEW))
#define EPHY_IS_NODE_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_NODE_VIEW))
#define EPHY_NODE_VIEW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_NODE_VIEW, EphyNodeViewClass))
typedef struct EphyNodeViewPrivate EphyNodeViewPrivate;
typedef struct
{
GtkTreeView parent;
EphyNodeViewPrivate *priv;
} EphyNodeView;
typedef enum
{
EPHY_NODE_VIEW_ALL_PRIORITY,
EPHY_NODE_VIEW_SPECIAL_PRIORITY,
EPHY_NODE_VIEW_NORMAL_PRIORITY
} EphyNodeViewPriority;
typedef enum
{
EPHY_NODE_VIEW_AUTO_SORT = 1,
EPHY_NODE_VIEW_USER_SORT = 2,
EPHY_NODE_VIEW_EDITABLE = 4,
EPHY_NODE_VIEW_SEARCHABLE = 8
} EphyNodeViewFlags;
typedef struct
{
GtkTreeViewClass parent;
void (*node_activated) (EphyNodeView *view, EphyNode *node);
void (*node_selected) (EphyNodeView *view, EphyNode *node);
void (*node_dropped) (EphyNodeView *view, EphyNode *node, GList *nodes);
void (*show_popup) (EphyNodeView *view);
} EphyNodeViewClass;
GType ephy_node_view_get_type (void);
GtkWidget *ephy_node_view_new (EphyNode *root,
EphyNodeFilter *filter);
void ephy_node_view_enable_dnd (EphyNodeView *view);
GtkTreeViewColumn *ephy_node_view_add_column (EphyNodeView *view,
const char *title,
GType value_type,
int prop_id,
int priority_prop_id,
EphyNodeViewFlags flags,
EphyTreeModelNodeValueFunc icon_func);
int ephy_node_view_add_data_column (EphyNodeView *view,
GType value_type,
int prop_id,
EphyTreeModelNodeValueFunc func,
gpointer data);
void ephy_node_view_remove (EphyNodeView *view);
gboolean ephy_node_view_has_selection (EphyNodeView *view,
gboolean *multiple);
GList *ephy_node_view_get_selection (EphyNodeView *view);
void ephy_node_view_select_node (EphyNodeView *view,
EphyNode *node);
void ephy_node_view_enable_drag_source (EphyNodeView *view,
GtkTargetEntry *types,
int n_types,
int column_id);
void ephy_node_view_enable_drag_dest (EphyNodeView *view,
GtkTargetEntry *types,
int n_types);
void ephy_node_view_edit (EphyNodeView *view);
gboolean ephy_node_view_is_target (EphyNodeView *view);
G_END_DECLS
#endif /* EPHY_NODE_VIEW_H */
|