/usr/include/evolution-3.10/calendar/gui/e-calendar-view.h is in evolution-dev 3.10.4-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | /*
* 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:
* Rodrigo Moya <rodrigo@ximian.com>
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
*/
#ifndef E_CALENDAR_VIEW_H
#define E_CALENDAR_VIEW_H
#include <gtk/gtk.h>
#include <libecal/libecal.h>
#include "e-cal-model.h"
#include "gnome-cal.h"
#include "dialogs/comp-editor.h"
/* Standard GObject macros */
#define E_TYPE_CALENDAR_VIEW \
(e_calendar_view_get_type ())
#define E_CALENDAR_VIEW(obj) \
(G_TYPE_CHECK_INSTANCE_CAST \
((obj), E_TYPE_CALENDAR_VIEW, ECalendarView))
#define E_CALENDAR_VIEW_CLASS(cls) \
(G_TYPE_CHECK_CLASS_CAST \
((cls), E_TYPE_CALENDAR_VIEW, ECalendarViewClass))
#define E_IS_CALENDAR_VIEW(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE \
((obj), E_TYPE_CALENDAR_VIEW))
#define E_IS_CALENDAR_VIEW_CLASS(cls) \
(G_TYPE_CHECK_CLASS_TYPE \
((cls), E_TYPE_CALENDAR_VIEW))
#define E_CALENDAR_VIEW_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS \
((obj), E_TYPE_CALENDAR_VIEW, ECalendarViewClass))
G_BEGIN_DECLS
typedef enum {
E_CALENDAR_VIEW_POS_OUTSIDE,
E_CALENDAR_VIEW_POS_NONE,
E_CALENDAR_VIEW_POS_EVENT,
E_CALENDAR_VIEW_POS_LEFT_EDGE,
E_CALENDAR_VIEW_POS_RIGHT_EDGE,
E_CALENDAR_VIEW_POS_TOP_EDGE,
E_CALENDAR_VIEW_POS_BOTTOM_EDGE
} ECalendarViewPosition;
typedef enum {
E_CAL_VIEW_MOVE_UP,
E_CAL_VIEW_MOVE_DOWN,
E_CAL_VIEW_MOVE_LEFT,
E_CAL_VIEW_MOVE_RIGHT,
E_CAL_VIEW_MOVE_PAGE_UP,
E_CAL_VIEW_MOVE_PAGE_DOWN
} ECalViewMoveDirection;
#define E_CALENDAR_VIEW_EVENT_FIELDS \
GnomeCanvasItem *canvas_item; \
ECalModelComponent *comp_data; \
time_t start; \
time_t end; \
guint16 start_minute; \
guint16 end_minute; \
guint different_timezone : 1; \
gboolean is_editable; \
GtkWidget *tooltip; \
gint timeout; \
GdkColor *color; \
gint x,y;
typedef struct {
E_CALENDAR_VIEW_EVENT_FIELDS
} ECalendarViewEvent;
/* checks if event->comp_data is not NULL, returns FALSE
* when it is and prints a warning on a console */
gboolean is_comp_data_valid_func (ECalendarViewEvent *event,
const gchar *location);
#define is_comp_data_valid(_event) \
is_comp_data_valid_func ((ECalendarViewEvent *) (_event), G_STRFUNC)
/* checks if index is within bounds for the array; returns
* FALSE when not, and prints a warning on a console */
gboolean is_array_index_in_bounds_func (GArray *array,
gint index,
const gchar *location);
#define is_array_index_in_bounds(_array, _index) \
is_array_index_in_bounds_func (_array, _index, G_STRFUNC)
typedef struct _ECalendarView ECalendarView;
typedef struct _ECalendarViewClass ECalendarViewClass;
typedef struct _ECalendarViewPrivate ECalendarViewPrivate;
struct _ECalendarView {
GtkTable parent;
gboolean in_focus;
ECalendarViewPrivate *priv;
};
typedef struct {
ECalendarViewEvent * (*get_view_event) (ECalendarView *view,
gint day,
gint event_num);
ECalendarView *cal_view;
gint day;
gint event_num;
} ECalendarViewEventData;
typedef enum {
EDIT_EVENT_AUTODETECT,
EDIT_EVENT_FORCE_MEETING,
EDIT_EVENT_FORCE_APPOINTMENT
} EEditEventMode;
struct _ECalendarViewClass {
GtkTableClass parent_class;
/* Notification signals */
void (*popup_event) (ECalendarView *cal_view,
GdkEvent *button_event);
void (*selection_changed) (ECalendarView *cal_view);
void (*selected_time_changed)(ECalendarView *cal_view);
void (*timezone_changed) (ECalendarView *cal_view,
icaltimezone *old_zone,
icaltimezone *new_zone);
void (*event_changed) (ECalendarView *day_view,
ECalendarViewEvent *event);
void (*event_added) (ECalendarView *day_view,
ECalendarViewEvent *event);
void (*user_created) (ECalendarView *cal_view,
ECalClient *where_was_created);
/* Virtual methods */
GList * (*get_selected_events) (ECalendarView *cal_view);
gboolean (*get_selected_time_range)
(ECalendarView *cal_view,
time_t *start_time,
time_t *end_time);
void (*set_selected_time_range)
(ECalendarView *cal_view,
time_t start_time,
time_t end_time);
gboolean (*get_visible_time_range)
(ECalendarView *cal_view,
time_t *start_time,
time_t *end_time);
void (*update_query) (ECalendarView *cal_view);
void (*open_event) (ECalendarView *cal_view);
void (*paste_text) (ECalendarView *cal_view);
};
GType e_calendar_view_get_type (void);
GnomeCalendar * e_calendar_view_get_calendar (ECalendarView *cal_view);
void e_calendar_view_set_calendar (ECalendarView *cal_view,
GnomeCalendar *calendar);
ECalModel * e_calendar_view_get_model (ECalendarView *cal_view);
icaltimezone * e_calendar_view_get_timezone (ECalendarView *cal_view);
void e_calendar_view_set_timezone (ECalendarView *cal_view,
icaltimezone *zone);
const gchar * e_calendar_view_get_default_category
(ECalendarView *cal_view);
void e_calendar_view_set_default_category
(ECalendarView *cal_view,
const gchar *category);
gint e_calendar_view_get_time_divisions
(ECalendarView *cal_view);
void e_calendar_view_set_time_divisions
(ECalendarView *cal_view,
gint time_divisions);
void e_calendar_view_set_status_message
(ECalendarView *cal_view,
const gchar *message,
gint percent);
GtkTargetList * e_calendar_view_get_copy_target_list
(ECalendarView *cal_view);
GtkTargetList * e_calendar_view_get_paste_target_list
(ECalendarView *cal_view);
GList * e_calendar_view_get_selected_events
(ECalendarView *cal_view);
gboolean e_calendar_view_get_selected_time_range
(ECalendarView *cal_view,
time_t *start_time,
time_t *end_time);
void e_calendar_view_set_selected_time_range
(ECalendarView *cal_view,
time_t start_time,
time_t end_time);
gboolean e_calendar_view_get_visible_time_range
(ECalendarView *cal_view,
time_t *start_time,
time_t *end_time);
void e_calendar_view_update_query (ECalendarView *cal_view);
void e_calendar_view_delete_selected_occurrence
(ECalendarView *cal_view);
CompEditor * e_calendar_view_open_event_with_flags
(ECalendarView *cal_view,
ECalClient *client,
icalcomponent *icalcomp,
guint32 flags);
void e_calendar_view_popup_event (ECalendarView *cal_view,
GdkEvent *button_event);
gboolean e_calendar_view_add_event (ECalendarView *cal_view,
ECalClient *client,
time_t dtstart,
icaltimezone *default_zone,
icalcomponent *icalcomp,
gboolean in_top_canvas);
void e_calendar_view_new_appointment_for
(ECalendarView *cal_view,
time_t dtstart,
time_t dtend,
gboolean all_day,
gboolean meeting);
void e_calendar_view_new_appointment_full
(ECalendarView *cal_view,
gboolean all_day,
gboolean meeting,
gboolean no_past_date);
void e_calendar_view_new_appointment (ECalendarView *cal_view);
void e_calendar_view_edit_appointment
(ECalendarView *cal_view,
ECalClient *client,
icalcomponent *icalcomp,
EEditEventMode mode);
void e_calendar_view_open_event (ECalendarView *cal_view);
void e_calendar_view_modify_and_send (ECalendarView *cal_view,
ECalComponent *comp,
ECalClient *client,
CalObjModType mod,
GtkWindow *toplevel,
gboolean new);
gboolean e_calendar_view_modify (ECalendarView *cal_view,
ECalComponent *comp,
ECalClient *client,
CalObjModType mod);
void e_calendar_view_send (ECalendarView *cal_view,
ECalComponent *comp,
ECalClient *client,
CalObjModType mod,
GtkWindow *toplevel,
gboolean strip_alarms,
gboolean only_new_attendees);
gboolean e_calendar_view_get_tooltips (const ECalendarViewEventData *data);
void e_calendar_view_move_tip (GtkWidget *widget,
gint x,
gint y);
const gchar * e_calendar_view_get_icalcomponent_summary
(ECalClient *ecal,
icalcomponent *icalcomp,
gboolean *free_text);
void e_calendar_view_emit_user_created
(ECalendarView *cal_view,
ECalClient *where_was_created);
void draw_curved_rectangle (cairo_t *cr,
gdouble x0,
gdouble y0,
gdouble rect_width,
gdouble rect_height,
gdouble radius);
GdkColor get_today_background (GdkColor event_background);
gboolean e_calendar_view_is_editing (ECalendarView *cal_view);
G_END_DECLS
#endif /* E_CALENDAR_VIEW_H */
|