aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/e-minicard-view.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2002-04-24 03:42:37 +0800
committerChris Lahey <clahey@src.gnome.org>2002-04-24 03:42:37 +0800
commit5df4d67be220866f4dd6121cb26158cf5299193f (patch)
treee4b847b3c9883c4e4cb62c2fcd260006b286aa9d /addressbook/gui/widgets/e-minicard-view.h
parent619f8c41a390d40d074ace283e4d6c374a142766 (diff)
downloadgsoc2013-evolution-5df4d67be220866f4dd6121cb26158cf5299193f.tar
gsoc2013-evolution-5df4d67be220866f4dd6121cb26158cf5299193f.tar.gz
gsoc2013-evolution-5df4d67be220866f4dd6121cb26158cf5299193f.tar.bz2
gsoc2013-evolution-5df4d67be220866f4dd6121cb26158cf5299193f.tar.lz
gsoc2013-evolution-5df4d67be220866f4dd6121cb26158cf5299193f.tar.xz
gsoc2013-evolution-5df4d67be220866f4dd6121cb26158cf5299193f.tar.zst
gsoc2013-evolution-5df4d67be220866f4dd6121cb26158cf5299193f.zip
Removed e_addressbook_reflow_adapter_right_click and
2002-04-23 Christopher James Lahey <clahey@ximian.com> * gui/widgets/e-addressbook-reflow-adapter.c, gui/widgets/e-addressbook-reflow-adapter.h: Removed e_addressbook_reflow_adapter_right_click and e_addressbook_reflow_adapter_base_right_click. * gui/widgets/e-addressbook-view.c: Handle right click menu for both types of view. Merged right click on white space with right click on main area. General clean up. * gui/widgets/e-minicard-view-widget.c, gui/widgets/e-minicard-view-widget.h: Removed a couple unnecessary functions. Added e_minicard_view_widget_get_view. Added right_click signal. * gui/widgets/e-minicard-view.c, gui/widgets/e-minicard-view.h: Added the right_click signal and the e_minicard_view_get_card_list function. svn path=/trunk/; revision=16567
Diffstat (limited to 'addressbook/gui/widgets/e-minicard-view.h')
-rw-r--r--addressbook/gui/widgets/e-minicard-view.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/addressbook/gui/widgets/e-minicard-view.h b/addressbook/gui/widgets/e-minicard-view.h
index e13dd08c05..1f23c62754 100644
--- a/addressbook/gui/widgets/e-minicard-view.h
+++ b/addressbook/gui/widgets/e-minicard-view.h
@@ -70,8 +70,6 @@ struct _EMinicardView
/* item specific fields */
- ESelectionModelSimple *selection;
-
GList *drag_list;
guint canvas_drag_data_get_id;
@@ -82,14 +80,17 @@ struct _EMinicardView
struct _EMinicardViewClass
{
EReflowClass parent_class;
+
+ void (*right_click) (EMinicardView *view, GdkEvent *event);
};
-GtkType e_minicard_view_get_type (void);
-void e_minicard_view_remove_selection (EMinicardView *view,
- EBookCallback cb,
- gpointer closure);
-void e_minicard_view_jump_to_letter (EMinicardView *view,
- gunichar letter);
+GtkType e_minicard_view_get_type (void);
+void e_minicard_view_remove_selection (EMinicardView *view,
+ EBookCallback cb,
+ gpointer closure);
+void e_minicard_view_jump_to_letter (EMinicardView *view,
+ gunichar letter);
+GList *e_minicard_view_get_card_list (EMinicardView *view);
#ifdef __cplusplus
}