aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/merging/e-card-merging.c
blob: 701ab69da9d4f9cb891a8f673ceee70bc1bf080c (plain) (blame)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Code for checking for duplicates when doing ECard work.
 *
 * Author:
 *   Christopher James Lahey <clahey@ximian.com>
 *
 * Copyright 2001, Ximian, Inc.
 */

#include <config.h>

#include "e-card-merging.h"
#include <libgnomeui/gnome-dialog.h>
#include "e-card-compare.h"
#include <glade/glade.h>
#include <gtk/gtksignal.h>
#include "addressbook/gui/widgets/e-minicard-widget.h"

typedef struct {
    EBook *book;
    ECard *card;
    EBookIdCallback cb;
    gpointer closure;
} ECardMergingLookup;

static void
clicked (GnomeDialog *dialog, int button, ECardMergingLookup *lookup)
{
    switch (button) {
    case 0:
        e_book_add_card (lookup->book, lookup->card, lookup->cb, lookup->closure);
        break;
    case 1:
        if (lookup->cb)
            lookup->cb (lookup->book, E_BOOK_STATUS_CANCELLED, NULL, lookup->closure);
        break;
    }
    g_free (lookup);
    gnome_dialog_close (dialog);
}

static void
match_query_callback (ECard *card, ECard *match, ECardMatchType type, gpointer closure)
{
    ECardMergingLookup *lookup = closure;
    if (type == E_CARD_MATCH_NONE) {
        e_book_add_card (lookup->book, card, lookup->cb, lookup->closure);
        g_free (lookup);
    } else {
        GladeXML *ui = glade_xml_new (EVOLUTION_GLADEDIR "/e-card-duplicate-detected.glade", NULL);
        GtkWidget *widget;

        widget = glade_xml_get_widget (ui, "custom-old-card");
        gtk_object_set (GTK_OBJECT (widget),
                "card", match,
                NULL);

        widget = glade_xml_get_widget (ui, "custom-new-card");
        gtk_object_set (GTK_OBJECT (widget),
                "card", card,
                NULL);

        widget = glade_xml_get_widget (ui, "dialog-duplicate-contact");

        gtk_signal_connect (GTK_OBJECT (widget), "clicked",
                    GTK_SIGNAL_FUNC (clicked), lookup);
    }
}

gboolean
e_card_merging_book_add_card (EBook           *book,
                  ECard           *card,
                  EBookIdCallback  cb,
                  gpointer         closure)
{
    ECardMergingLookup *lookup;
    lookup = g_new (ECardMergingLookup, 1);

    lookup->book = book;
    lookup->card = card;
    lookup->cb = cb;
    lookup->closure = closure;

    e_card_locate_match (card, match_query_callback, lookup);
    return TRUE;
}

GtkWidget *
e_card_merging_create_old_card(gchar *name,
                   gchar *string1, gchar *string2,
                   gint int1, gint int2);

GtkWidget *
e_card_merging_create_old_card(gchar *name,
                 gchar *string1, gchar *string2,
                 gint int1, gint int2)
{
    return e_minicard_widget_new ();
}