diff options
author | Victor Kareh <[email protected]> | 2025-07-25 07:22:50 -0400 |
---|---|---|
committer | Oz Tiram <[email protected]> | 2025-08-03 15:39:12 +0200 |
commit | 3818bb2847b16ecc21320f0208211da4bd883b30 (patch) | |
tree | b580efd39e4bfe2230ed159d15fcd99ce4ea3add /applets/clock/calendar-window.h | |
parent | d62e45c2b0aaf4b15eecc2e8f1529f42fb4c8e6d (diff) | |
download | mate-panel-3818bb2847b16ecc21320f0208211da4bd883b30.tar.bz2 mate-panel-3818bb2847b16ecc21320f0208211da4bd883b30.tar.xz |
clock: Backport Evolution calendar integration from gnome-panel
Add Evolution Data Server (EDS) calendar integration to the MATE panel
clock applet, most of it ported from gnome-panel's clock applet. This
allows users to view calendar events and tasks directly from the clock
popup calendar.
The calendar integration is disabled by default and can be enabled
with --enable-eds during configuration. When disabled, the clock
applet functions normally without any EDS dependencies.
Diffstat (limited to 'applets/clock/calendar-window.h')
-rw-r--r-- | applets/clock/calendar-window.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applets/clock/calendar-window.h b/applets/clock/calendar-window.h index d4ef49dd..e24fdfc3 100644 --- a/applets/clock/calendar-window.h +++ b/applets/clock/calendar-window.h @@ -61,7 +61,8 @@ struct _CalendarWindowClass { GType calendar_window_get_type (void) G_GNUC_CONST; GtkWidget *calendar_window_new (time_t *static_current_time, const char *prefs_dir, - gboolean invert_order); + gboolean invert_order, + GSettings *settings); void calendar_window_refresh (CalendarWindow *calwin); |