/* Day view notebook panel for gncal * * Copyright (C) 1998 The Free Software Foundation * * Author: Federico Mena */ #ifndef GNCAL_DAY_PANEL_H #define GNCAL_DAY_PANEL_H #include #include #include #include #include "gnome-cal.h" #include "gncal-full-day.h" #include "gncal-todo.h" BEGIN_GNOME_DECLS #define GNCAL_DAY_PANEL(obj) GTK_CHECK_CAST (obj, gncal_day_panel_get_type (), GncalDayPanel) #define GNCAL_DAY_PANEL_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gncal_day_panel_get_type (), GncalDayPanelClass) #define GNCAL_IS_DAY_PANEL(obj) GTK_CHECK_TYPE (obj, gncal_day_panel_get_type ()) typedef struct _GncalDayPanel GncalDayPanel; typedef struct _GncalDayPanelClass GncalDayPanelClass; struct _GncalDayPanel { GtkTable table; GnomeCalendar *calendar; /* the calendar we are associated to */ time_t start_of_day; GtkLabel *date_label; GncalFullDay *fullday; GtkScrolledWindow *fullday_sw; GtkCalendar *gtk_calendar; GncalTodo *todo; guint day_selected_id; }; struct _GncalDayPanelClass { GtkTableClass parent_class; }; guint gncal_day_panel_get_type (void); GtkWidget *gncal_day_panel_new (GnomeCalendar *calendar, time_t start_of_day); void gncal_day_panel_update (GncalDayPanel *dpanel, iCalObject *ico, int flags); void gncal_day_panel_set (GncalDayPanel *dpanel, time_t start_of_day); void gncal_day_panel_time_format_changed (GncalDayPanel *dpanel); void todo_list_properties_changed (GncalDayPanel *dpanel); END_GNOME_DECLS #endif tr> Google Summer of Code 2013 - GNOME - Archive Integration workspace
aboutsummaryrefslogtreecommitdiffstats
blob: 568d1cfaf535d581288d7eaa3940dbbb1ac04357 (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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * folder-browser-factory.c: A Bonobo Control factory for Folder Browsers
 *
 * Author:
 *   Miguel de Icaza (miguel@ximian.com)
 *
 * (C) 2000 Ximian, Inc.
 */

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

#include <bonobo/bonobo-main.h>
#include <bonobo/bonobo-object.h>
#include <bonobo/bonobo-generic-factory.h>
#include <bonobo/bonobo-control.h>
#include <bonobo/bonobo-ui-component.h>
#include <bonobo/bonobo-ui-util.h>

#include <gal/util/e-util.h>
#include <gal/widgets/e-gui-utils.h>

#include "widgets/menus/gal-view-menus.h"

#include <gal/menus/gal-view-factory-etable.h>
#include <gal/menus/gal-view-etable.h>

#include "folder-browser-factory.h"

#include "folder-browser.h"
#include "folder-browser-ui.h"
#include "mail.h"
#include "mail-callbacks.h"
#include "shell/Evolution.h"
#include "mail-config.h"
#include "mail-ops.h"
#include "mail-session.h"
#include "mail-folder-cache.h"

#include "evolution-shell-component-utils.h"
#include "camel/camel-vtrash-folder.h"

/* The FolderBrowser BonoboControls we have.  */
static EList *control_list = NULL;

/* copied from mail-display.c for now.... */
static GNOME_Evolution_ShellView
fb_get_svi (BonoboControl *control)
{
    Bonobo_ControlFrame control_frame;
    GNOME_Evolution_ShellView shell_view_interface;
    CORBA_Environment ev;
    
    control_frame = bonobo_control_get_control_frame (control);

    if (control_frame == NULL)
        return CORBA_OBJECT_NIL;

    CORBA_exception_init (&ev);
    shell_view_interface = Bonobo_Unknown_queryInterface (control_frame,
                                  "IDL:GNOME/Evolution/ShellView:1.0",
                                  &ev);
    CORBA_exception_free (&ev);

    if (shell_view_interface == CORBA_OBJECT_NIL)
        g_warning ("Control frame doesn't have Evolution/ShellView.");

    return shell_view_interface;