aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/printing/e-contact-print-style-editor.c
blob: 22a01f05e48a98523f4b6c2b831f544aa50ca9f5 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 * 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) version 3.
 *
 * 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 the program; if not, see <http://www.gnu.org/licenses/>  
 *
 *
 * Authors:
 *      Chris Lahey <clahey@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#include "e-contact-print-style-editor.h"
#include "e-util/e-util-private.h"

static void e_contact_print_style_editor_init       (EContactPrintStyleEditor        *card);
static void e_contact_print_style_editor_class_init (EContactPrintStyleEditorClass   *class);
static void e_contact_print_style_editor_finalize       (GObject *object);

static gpointer parent_class;

GType
e_contact_print_style_editor_get_type (void)
{
    static GType type = 0;

    if (G_UNLIKELY (type == 0)) {
        static const GTypeInfo type_info = {
            sizeof (EContactPrintStyleEditorClass),
            (GBaseInitFunc) NULL,
            (GBaseFinalizeFunc) NULL,
            (GClassInitFunc) e_contact_print_style_editor_class_init,
            (GClassFinalizeFunc) NULL,
            NULL, /* class_data */
            sizeof (EContactPrintStyleEditor),
            0,    /* n_preallocs */
            (GInstanceInitFunc) e_contact_print_style_editor_init,
            NULL  /* value_table */
        };

        type = g_type_register_static (
            GTK_TYPE_VBOX, "EContactPrintStyleEditor",
            &type_info, 0);
    }

    return type;
}

static void
e_contact_print_style_editor_class_init (EContactPrintStyleEditorClass *class)
{
    GObjectClass *object_class;

    parent_class = g_type_class_peek_parent (class);

    object_class = G_OBJECT_CLASS (class);
    object_class->finalize = e_contact_print_style_editor_finalize;
}

#if 0
static void
_add_image(GtkTable *table, gchar *image, int left, int right, int top, int bottom)
{
    gtk_table_attach(table,
             gtk_widget_new(gtk_alignment_get_type(),
                    "child", gnome_pixmap_new_from_file(image),
                    "xalign", (double) 0,
                    "yalign", (double) 0,
                    "xscale", (double) 0,
                    "yscale", (double) 0,
                    NULL),
             left, right, top, bottom,
             GTK_FILL, GTK_FILL,
             0, 0);
}
#endif

static void
e_contact_print_style_editor_init (EContactPrintStyleEditor *e_contact_print_style_editor)
{
    GladeXML *gui;
    char *gladefile;

    /*   e_contact_print_style_editor->card = NULL;*/
    gladefile = g_build_filename (EVOLUTION_GLADEDIR,
                      "e-contact-print.glade",
                      NULL);
    gui = glade_xml_new (gladefile, NULL, NULL);
    g_free (gladefile);

    e_contact_print_style_editor->gui = gui;
    gtk_widget_reparent(glade_xml_get_widget(gui, "vbox-contact-print-style-editor"),
                GTK_WIDGET(e_contact_print_style_editor));
}

static void
e_contact_print_style_editor_finalize (GObject *object)
{
    EContactPrintStyleEditor *e_contact_print_style_editor = E_CONTACT_PRINT_STYLE_EDITOR(object);

    if (e_contact_print_style_editor->gui != NULL) {
        g_object_unref(e_contact_print_style_editor->gui);
        e_contact_print_style_editor->gui = NULL;
    }

    G_OBJECT_CLASS (parent_class)->finalize (object);
}

GtkWidget*
e_contact_print_style_editor_new (char *filename)
{
    return g_object_new (e_contact_print_style_editor_get_type (), NULL);
}