aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/task-editor.c
blob: 6fcff0d2cb775398bcc960e9e24c15917ddce96e (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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

/* Evolution calendar - Event editor dialog
 *
 * Copyright (C) 2000 Helix Code, Inc.
 * Copyright (C) 2001 Ximian, Inc.
 *
 * Authors: Miguel de Icaza <miguel@ximian.com>
 *          Federico Mena-Quintero <federico@ximian.com>
 *          Seth Alves <alves@hungry.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 Place, Suite 330, Boston, MA 02111-1307, USA.
 */

#include <config.h>
#include <string.h>
#include <glade/glade.h>
#include <gal/widgets/e-unicode.h>
#include <libgnome/gnome-i18n.h>

#include "task-page.h"
#include "task-details-page.h"
#include "recurrence-page.h"
#include "task-editor.h"

struct _TaskEditorPrivate {
    TaskPage *task_page;
    TaskDetailsPage *task_details_page;
};



static void task_editor_class_init (TaskEditorClass *class);
static void task_editor_init (TaskEditor *te);
static void task_editor_destroy (GtkObject *object);

static void forward_cmd (GtkWidget *widget, gpointer data);

static BonoboUIVerb verbs [] = {
    BONOBO_UI_UNSAFE_VERB ("ActionForward", forward_cmd),

    BONOBO_UI_VERB_END
};

static CompEditor *parent_class;



/**
 * task_editor_get_type:
 *
 * Registers the #TaskEditor class if necessary, and returns the type ID
 * associated to it.
 *
 * Return value: The type ID of the #TaskEditor class.
 **/
GtkType
task_editor_get_type (void)
{
    static GtkType task_editor_type = 0;

    if (!task_editor_type) {
        static const GtkTypeInfo task_editor_info = {
            "TaskEditor",
            sizeof (TaskEditor),
            sizeof (TaskEditorClass),
            (GtkClassInitFunc) task_editor_class_init,
            (GtkObjectInitFunc) task_editor_init,
            NULL, /* reserved_1 */
            NULL, /* reserved_2 */
            (GtkClassInitFunc) NULL
        };

        task_editor_type = gtk_type_unique (TYPE_COMP_EDITOR,
                             &task_editor_info);
    }

    return task_editor_type;
}

/* Class initialization function for the event editor */
static void
task_editor_class_init (TaskEditorClass *class)
{
    GtkObjectClass *object_class;

    object_class = (GtkObjectClass *) class;

    parent_class = gtk_type_class (TYPE_COMP_EDITOR);

    object_class->destroy = task_editor_destroy;
}

/* Object initialization function for the event editor */
static void
task_editor_init (TaskEditor *te)
{
    TaskEditorPrivate *priv;
    
    priv = g_new0 (TaskEditorPrivate, 1);
    te->priv = priv;

    priv->task_page = task_page_new ();
    comp_editor_append_page (COMP_EDITOR (te), 
                 COMP_EDITOR_PAGE (priv->task_page),
                 _("Task"));

    priv->task_details_page = task_details_page_new ();
    comp_editor_append_page (COMP_EDITOR (te),
                 COMP_EDITOR_PAGE (priv->task_details_page),
                 _("Details"));

    comp_editor_merge_ui (COMP_EDITOR (te), EVOLUTION_DATADIR 
                  "/gnome/ui/evolution-task-editor.xml",
                  verbs);
}

/* Destroy handler for the event editor */
static void
task_editor_destroy (GtkObject *object)
{
    TaskEditor *te;
    TaskEditorPrivate *priv;

    g_return_if_fail (object != NULL);
    g_return_if_fail (IS_TASK_EDITOR (object));

    te = TASK_EDITOR (object);
    priv = te->priv;

    if (GTK_OBJECT_CLASS (parent_class)->destroy)
        (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}

/**
 * task_editor_new:
 *
 * Creates a new event editor dialog.
 *
 * Return value: A newly-created event editor dialog, or NULL if the event
 * editor could not be created.
 **/
TaskEditor *
task_editor_new (void)
{
    return TASK_EDITOR (gtk_type_new (TYPE_TASK_EDITOR));
}

static void
forward_cmd (GtkWidget *widget, gpointer data)
{
    TaskEditor *te = TASK_EDITOR (data);
    
    comp_editor_send_comp (COMP_EDITOR (te), CAL_COMPONENT_METHOD_PUBLISH);
}