diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-28 12:26:30 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-28 12:26:30 +0800 |
commit | 350fde81677a44e5203a38c833e5175c3b649de2 (patch) | |
tree | fcf8a53c086d9a34fc0492b98a51128d54ba3753 /addressbook/gui/component/e-addressbook-model.c | |
parent | f91435fc0c0186d48079dc44d8626135eba92462 (diff) | |
download | gsoc2013-evolution-350fde81677a44e5203a38c833e5175c3b649de2.tar.gz gsoc2013-evolution-350fde81677a44e5203a38c833e5175c3b649de2.tar.zst gsoc2013-evolution-350fde81677a44e5203a38c833e5175c3b649de2.zip |
Added double click to open contact editor.
2000-05-25 Christopher James Lahey <clahey@helixcode.com>
* gui/component/addressbook.c,
gui/component/e-addressbook-model.c,
gui/component/e-addressbook-model.h: Added double click to open
contact editor.
svn path=/trunk/; revision=3239
Diffstat (limited to 'addressbook/gui/component/e-addressbook-model.c')
-rw-r--r-- | addressbook/gui/component/e-addressbook-model.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/addressbook/gui/component/e-addressbook-model.c b/addressbook/gui/component/e-addressbook-model.c index 598f6786cf..5d71757b60 100644 --- a/addressbook/gui/component/e-addressbook-model.c +++ b/addressbook/gui/component/e-addressbook-model.c @@ -284,6 +284,21 @@ get_view(EAddressbookModel *model) return FALSE; } +ECard * +e_addressbook_model_get_card(EAddressbookModel *model, + int row) +{ + if (model->data && row < model->data_count) { + ECard *card; + gtk_object_get(GTK_OBJECT(model->data[row]), + "card", &card, + NULL); + gtk_object_ref(GTK_OBJECT(card)); + return card; + } + return NULL; +} + static void e_addressbook_model_set_arg (GtkObject *o, GtkArg *arg, guint arg_id) { |