aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-select-names-editable.h
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2005-02-23 09:28:20 +0800
committerJP Rosevear <jpr@src.gnome.org>2005-02-23 09:28:20 +0800
commitb04efc12fa2842852129e25a6a64767c1bbd28f5 (patch)
treefd2ebf29cfc9f494408d65e42b1e2a8e071370bd /calendar/gui/e-select-names-editable.h
parent7c9fac1f90c71124eda269acd2b87b7149f9002c (diff)
downloadgsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar.gz
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar.bz2
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar.lz
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar.xz
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar.zst
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.zip
Fixes #63866, #67714, #62089, #47747, #61495
2005-02-21 JP Rosevear <jpr@novell.com> Fixes #63866, #67714, #62089, #47747, #61495 * gui/e-select-names-renderer.h: update signal * gui/e-select-names-renderer.c (e_select_names_renderer_editing_done): emit the cancelled signal properly and don't update if it was cancelled (e_select_names_renderer_focus_out_event): if the cell loses focus the editing is done (e_select_names_renderer_start_editing): listen for focus out event, and only set the address if appropriate (e_select_names_renderer_get_property): handle name/email props (e_select_names_renderer_set_property): ditto (e_select_names_renderer_finalize): free name/email (e_select_names_renderer_class_init): install name/email props; cell_edited returns lists now * gui/e-select-names-editable.h: update protos * gui/e-select-names-editable.c: don't really override any of the gtkentry editable cell routines since we directly inherit from ENameSelectorEntry (e_select_names_editable_get_emails): get all the email addresses (e_select_names_editable_get_names): get all the names (e_select_names_editable_set_address): set the destination correctly for editing * gui/e-meeting-list-view.c (attendee_edited_cb): handle a blank entry by removing it and don't allow an entry that already exists to be entered (attendee_editing_canceled_cb): if the item editing is cancelled and it has no name or email address, remove it (process_section): if the contact has multiple addresses (ie a mailing list), expand the entries * gui/e-calendar-marshal.list: add new marshaller svn path=/trunk/; revision=28851
Diffstat (limited to 'calendar/gui/e-select-names-editable.h')
-rw-r--r--calendar/gui/e-select-names-editable.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/calendar/gui/e-select-names-editable.h b/calendar/gui/e-select-names-editable.h
index f361c48cd8..15c1908442 100644
--- a/calendar/gui/e-select-names-editable.h
+++ b/calendar/gui/e-select-names-editable.h
@@ -52,13 +52,16 @@ struct _ESelectNamesEditableClass
GType e_select_names_editable_get_type (void);
-ESelectNamesEditable *e_select_names_editable_construct (ESelectNamesEditable *esne);
ESelectNamesEditable *e_select_names_editable_new (void);
-gchar *e_select_names_editable_get_address (ESelectNamesEditable *esne);
-void e_select_names_editable_set_address (ESelectNamesEditable *esne, const gchar *text);
+gchar *e_select_names_editable_get_email (ESelectNamesEditable *esne);
+GList *e_select_names_editable_get_emails (ESelectNamesEditable *esne);
gchar *e_select_names_editable_get_name (ESelectNamesEditable *esne);
+GList *e_select_names_editable_get_names (ESelectNamesEditable *esne);
+
+void e_select_names_editable_set_address (ESelectNamesEditable *esne, const gchar *name, const gchar *email);
+
G_END_DECLS
#endif /* __E_SELECT_NAMES_EDITABLE_H__ */