aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/comp-editor-page.h
blob: f8ab87de6389abdbaebc5384c1a602c517e52575 (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
/*
 * Evolution calendar - Base class for calendar component editor pages
 *
 * 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:
 *      Federico Mena-Quintero <federico@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifndef COMP_EDITOR_PAGE_H
#define COMP_EDITOR_PAGE_H

#include <time.h>
#include <gtk/gtk.h>
#include <libecal/e-cal-component.h>
#include <libecal/e-cal-client.h>

#include <calendar/gui/e-meeting-attendee.h>

/* Standard GObject macros */
#define TYPE_COMP_EDITOR_PAGE \
    (comp_editor_page_get_type ())
#define COMP_EDITOR_PAGE(obj) \
    (G_TYPE_CHECK_INSTANCE_CAST \
    ((obj), TYPE_COMP_EDITOR_PAGE, CompEditorPage))
#define COMP_EDITOR_PAGE_CLASS(cls) \
    (G_TYPE_CHECK_CLASS_CAST \
    ((cls), TYPE_COMP_EDITOR_PAGE, CompEditorPageClass))
#define IS_COMP_EDITOR_PAGE(obj) \
    (G_TYPE_CHECK_INSTANCE_TYPE \
    ((obj), TYPE_COMP_EDITOR_PAGE))
#define IS_COMP_EDITOR_PAGE_CLASS(cls) \
    (G_TYPE_CHECK_CLASS_TYPE \
    ((obj), TYPE_COMP_EDITOR_PAGE))
#define COMP_EDITOR_PAGE_GET_CLASS(obj) \
    (G_TYPE_INSTANCE_GET_CLASS \
    ((obj), TYPE_COMP_EDITOR_PAGE, CompEditorPageClass))

G_BEGIN_DECLS

/* Use a forward declaration to avoid a circular reference. */
struct _CompEditor;

typedef struct _CompEditorPage CompEditorPage;
typedef struct _CompEditorPageClass CompEditorPageClass;
typedef struct _CompEditorPagePrivate CompEditorPagePrivate;

typedef struct {
    ECalComponentDateTime *start;
    ECalComponentDateTime *end;
    ECalComponentDateTime *due;
    struct icaltimetype *complete;
} CompEditorPageDates;

struct _CompEditorPage {
    GObject object;

    /* The GtkAccelGroup for the page. We install this when the page is
     * mapped, and uninstall when it is unmapped. libglade would do this
     * normally, but we create our pages individually so have to do it
     * ourselves. */
    GtkAccelGroup *accel_group;

    CompEditorPagePrivate *priv;
};

struct _CompEditorPageClass {
    GObjectClass parent_class;

    /* Signals */
    void        (*dates_changed)    (CompEditorPage *page,
                         const gchar *dates);

    /* Methods */
    GtkWidget * (*get_widget)       (CompEditorPage *page);
    void        (*focus_main_widget)    (CompEditorPage *page);
    gboolean    (*fill_widgets)     (CompEditorPage *page,
                         ECalComponent *comp);
    gboolean    (*fill_component)   (CompEditorPage *page,
                         ECalComponent *comp);
    gboolean    (*fill_timezones)   (CompEditorPage *page,
                         GHashTable *timezones);
    void        (*set_dates)        (CompEditorPage *page,
                         CompEditorPageDates *dates);
    void        (*add_attendee)     (CompEditorPage *page,
                         EMeetingAttendee *attendee);
};

GType       comp_editor_page_get_type   (void);
struct _CompEditor *
        comp_editor_page_get_editor (CompEditorPage *page);
GtkWidget * comp_editor_page_get_widget (CompEditorPage *page);
gboolean    comp_editor_page_get_updating   (CompEditorPage *page);
void        comp_editor_page_set_updating   (CompEditorPage *page,
                         gboolean updating);
void        comp_editor_page_changed    (CompEditorPage *page);
void        comp_editor_page_focus_main_widget
                        (CompEditorPage *page);
gboolean    comp_editor_page_fill_widgets   (CompEditorPage *page,
                         ECalComponent *comp);
gboolean    comp_editor_page_fill_component (CompEditorPage *page,
                         ECalComponent *comp);
gboolean    comp_editor_page_fill_timezones (CompEditorPage *page,
                         GHashTable *timezones);
void        comp_editor_page_set_dates  (CompEditorPage *page,
                         CompEditorPageDates *dates);
void        comp_editor_page_add_attendee   (CompEditorPage *page,
                         EMeetingAttendee *attendee);
void        comp_editor_page_notify_dates_changed
                        (CompEditorPage *page,
                         CompEditorPageDates *dates);
void        comp_editor_page_display_validation_error
                        (CompEditorPage *page,
                         const gchar *msg,
                         GtkWidget *field);

G_END_DECLS

#endif /* COMP_EDITOR_PAGE_H */