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
|
/*
* Copyright (c) 2011 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author: Cosimo Cecchi <cosimoc@redhat.com>
*
*/
#ifndef __GD_MAIN_VIEW_GENERIC_H__
#define __GD_MAIN_VIEW_GENERIC_H__
#include <glib-object.h>
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define GD_TYPE_MAIN_VIEW_GENERIC gd_main_view_generic_get_type()
#define GD_MAIN_VIEW_GENERIC(obj) \
(G_TYPE_CHECK_INSTANCE_CAST ((obj), \
GD_TYPE_MAIN_VIEW_GENERIC, GdMainViewGeneric))
#define GD_MAIN_VIEW_GENERIC_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST ((klass), \
GD_TYPE_MAIN_VIEW_GENERIC, GdMainViewGenericIface))
#define GD_IS_MAIN_VIEW_GENERIC(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
GD_TYPE_MAIN_VIEW_GENERIC))
#define GD_IS_MAIN_VIEW_GENERIC_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), \
GD_TYPE_MAIN_VIEW_GENERIC))
#define GD_MAIN_VIEW_GENERIC_GET_IFACE(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE ((obj), \
GD_TYPE_MAIN_VIEW_GENERIC, GdMainViewGenericIface))
typedef struct _GdMainViewGeneric GdMainViewGeneric;
typedef struct _GdMainViewGenericIface GdMainViewGenericIface;
struct _GdMainViewGenericIface
{
GTypeInterface base_iface;
/* signals */
void (* selection_changed) (GdMainViewGeneric *self);
/* vtable */
void (* set_model) (GdMainViewGeneric *self,
GtkTreeModel *model);
GtkTreePath * (* get_path_at_pos) (GdMainViewGeneric *self,
gint x,
gint y);
void (* scroll_to_path) (GdMainViewGeneric *self,
GtkTreePath *path);
void (* set_selection_mode) (GdMainViewGeneric *self,
gboolean selection_mode);
};
GType gd_main_view_generic_get_type (void) G_GNUC_CONST;
void gd_main_view_generic_set_model (GdMainViewGeneric *self,
GtkTreeModel *model);
void gd_main_view_generic_scroll_to_path (GdMainViewGeneric *self,
GtkTreePath *path);
void gd_main_view_generic_set_selection_mode (GdMainViewGeneric *self,
gboolean selection_mode);
GtkTreePath * gd_main_view_generic_get_path_at_pos (GdMainViewGeneric *self,
gint x,
gint y);
/* private */
void _gd_main_view_generic_dnd_common (GtkTreeModel *model,
gboolean selection_mode,
GtkTreePath *path,
GtkSelectionData *data);
void _gd_main_view_generic_item_delete_clicked (GdMainViewGeneric *self,
const gchar *path);
G_END_DECLS
#endif /* __GD_MAIN_VIEW_GENERIC_H__ */
|