aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-tag-editor.c
blob: 3622611fec9daa300dbeb5d4547bb4d91f29f657 (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
124
125
126
127
128
129
130
131
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 *  Authors: Jeffrey Stedfast <fejj@ximian.com>
 *
 *  Copyright 2002 Ximian, Inc. (www.ximian.com)
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
 *
 */


#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <libgnomeui/gnome-stock.h>
#include <libgnomeui/gnome-window-icon.h>
#include "message-tag-editor.h"


static void message_tag_editor_class_init (MessageTagEditorClass *class);
static void message_tag_editor_init (MessageTagEditor *editor);
static void message_tag_editor_finalise (GtkObject *obj);

static CamelTag *get_tag_list (MessageTagEditor *editor);
static void set_tag_list (MessageTagEditor *editor, CamelTag *value);


static GnomeDialogClass *parent_class = NULL;


GtkType
message_tag_editor_get_type (void)
{
    static GtkType type = 0;
    
    if (!type) {
        GtkTypeInfo type_info = {
            "MessageTagEditor",
            sizeof (MessageTagEditor),
            sizeof (MessageTagEditorClass),
            (GtkClassInitFunc) message_tag_editor_class_init,
            (GtkObjectInitFunc) message_tag_editor_init,
            (GtkArgSetFunc) NULL,
            (GtkArgGetFunc) NULL
        };
        
        type = gtk_type_unique (gnome_dialog_get_type (), &type_info);
    }
    
    return type;
}

static void
message_tag_editor_class_init (MessageTagEditorClass *klass)
{
    GtkObjectClass *object_class;
    
    object_class = (GtkObjectClass *) klass;
    parent_class = gtk_type_class (gnome_dialog_get_type ());
    
    object_class->finalize = message_tag_editor_finalise;
    
    klass->get_tag_list = get_tag_list;
    klass->set_tag_list = set_tag_list;
}

static void
message_tag_editor_init (MessageTagEditor *editor)
{
    gtk_window_set_policy (GTK_WINDOW (editor), FALSE, TRUE, FALSE);
    
    gnome_dialog_append_buttons (GNOME_DIALOG (editor),
                     GNOME_STOCK_BUTTON_OK,
                     GNOME_STOCK_BUTTON_CANCEL,
                     NULL);
    
    gnome_dialog_set_default (GNOME_DIALOG (editor), 0);
}


static void
message_tag_editor_finalise (GtkObject *obj)
{
    /*  MessageTagEditor *editor = (MessageTagEditor *) obj;*/
    
        ((GtkObjectClass *)(parent_class))->finalize (obj);
}

static CamelTag *
get_tag_list (MessageTagEditor *editor)
{
    return NULL;
}

CamelTag *
message_tag_editor_get_tag_list (MessageTagEditor *editor)
{
    g_return_val_if_fail (IS_MESSAGE_TAG_EDITOR (editor), NULL);
    
    return ((MessageTagEditorClass *)((GtkObject *) editor)->klass)->get_tag_list (editor);
}


static void
set_tag_list (MessageTagEditor *editor, CamelTag *tags)
{
    /* no-op */
    ;
}

void
message_tag_editor_set_tag_list (MessageTagEditor *editor, CamelTag *tags)
{
    g_return_if_fail (IS_MESSAGE_TAG_EDITOR (editor));
    g_return_if_fail (tags != NULL);
    
    ((MessageTagEditorClass *)((GtkObject *) editor)->klass)->set_tag_list (editor, tags);
}