From 529c50f134e9b0fdaa7e02eb8dd9d5efd6e4179e Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 8 Mar 2013 07:11:48 -0500 Subject: Add ESettingsWeekdayChooser. Configures the "week-start-day" property of EWeekdayChooser. --- modules/settings/Makefile.am | 2 + modules/settings/e-settings-weekday-chooser.c | 96 +++++++++++++++++++++++++++ modules/settings/e-settings-weekday-chooser.h | 66 ++++++++++++++++++ modules/settings/evolution-module-settings.c | 2 + 4 files changed, 166 insertions(+) create mode 100644 modules/settings/e-settings-weekday-chooser.c create mode 100644 modules/settings/e-settings-weekday-chooser.h (limited to 'modules') diff --git a/modules/settings/Makefile.am b/modules/settings/Makefile.am index ca70841f4d..42a7115cd6 100644 --- a/modules/settings/Makefile.am +++ b/modules/settings/Makefile.am @@ -41,6 +41,8 @@ module_settings_la_SOURCES = \ e-settings-web-view.h \ e-settings-web-view-gtkhtml.c \ e-settings-web-view-gtkhtml.h \ + e-settings-weekday-chooser.c \ + e-settings-weekday-chooser.h \ $(NULL) module_settings_la_LIBADD = \ diff --git a/modules/settings/e-settings-weekday-chooser.c b/modules/settings/e-settings-weekday-chooser.c new file mode 100644 index 0000000000..e4b92d73c5 --- /dev/null +++ b/modules/settings/e-settings-weekday-chooser.c @@ -0,0 +1,96 @@ +/* + * e-settings-weekday-chooser.c + * + * 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 + * + */ + +#include "e-settings-weekday-chooser.h" + +#include +#include + +#define E_SETTINGS_WEEKDAY_CHOOSER_GET_PRIVATE(obj) \ + (G_TYPE_INSTANCE_GET_PRIVATE \ + ((obj), E_TYPE_SETTINGS_WEEKDAY_CHOOSER, ESettingsWeekdayChooserPrivate)) + +struct _ESettingsWeekdayChooserPrivate { + gint placeholder; +}; + +G_DEFINE_DYNAMIC_TYPE ( + ESettingsWeekdayChooser, + e_settings_weekday_chooser, + E_TYPE_EXTENSION) + +static void +settings_weekday_chooser_constructed (GObject *object) +{ + EExtension *extension; + EExtensible *extensible; + EShellSettings *shell_settings; + EShell *shell; + + extension = E_EXTENSION (object); + extensible = e_extension_get_extensible (extension); + + shell = e_shell_get_default (); + shell_settings = e_shell_get_shell_settings (shell); + + g_object_bind_property ( + shell_settings, "cal-week-start-day", + extensible, "week-start-day", + G_BINDING_SYNC_CREATE); + + /* Chain up to parent's constructed() method. */ + G_OBJECT_CLASS (e_settings_weekday_chooser_parent_class)-> + constructed (object); +} + +static void +e_settings_weekday_chooser_class_init (ESettingsWeekdayChooserClass *class) +{ + GObjectClass *object_class; + EExtensionClass *extension_class; + + g_type_class_add_private ( + class, sizeof (ESettingsWeekdayChooserPrivate)); + + object_class = G_OBJECT_CLASS (class); + object_class->constructed = settings_weekday_chooser_constructed; + + extension_class = E_EXTENSION_CLASS (class); + extension_class->extensible_type = E_TYPE_WEEKDAY_CHOOSER; +} + +static void +e_settings_weekday_chooser_class_finalize (ESettingsWeekdayChooserClass *class) +{ +} + +static void +e_settings_weekday_chooser_init (ESettingsWeekdayChooser *extension) +{ + extension->priv = E_SETTINGS_WEEKDAY_CHOOSER_GET_PRIVATE (extension); +} + +void +e_settings_weekday_chooser_type_register (GTypeModule *type_module) +{ + /* XXX G_DEFINE_DYNAMIC_TYPE declares a static type registration + * function, so we have to wrap it with a public function in + * order to register types from a separate compilation unit. */ + e_settings_weekday_chooser_register_type (type_module); +} + diff --git a/modules/settings/e-settings-weekday-chooser.h b/modules/settings/e-settings-weekday-chooser.h new file mode 100644 index 0000000000..e4c868183b --- /dev/null +++ b/modules/settings/e-settings-weekday-chooser.h @@ -0,0 +1,66 @@ +/* + * e-settings-weekday-chooser.h + * + * 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 + * + */ + +#ifndef E_SETTINGS_WEEKDAY_CHOOSER_H +#define E_SETTINGS_WEEKDAY_CHOOSER_H + +#include + +/* Standard GObject macros */ +#define E_TYPE_SETTINGS_WEEKDAY_CHOOSER \ + (e_settings_weekday_chooser_get_type ()) +#define E_SETTINGS_WEEKDAY_CHOOSER(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST \ + ((obj), E_TYPE_SETTINGS_WEEKDAY_CHOOSER, ESettingsWeekdayChooser)) +#define E_SETTINGS_WEEKDAY_CHOOSER_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_CAST \ + ((cls), E_TYPE_SETTINGS_WEEKDAY_CHOOSER, ESettingsWeekdayChooserClass)) +#define E_IS_SETTINGS_WEEKDAY_CHOOSER(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE \ + ((obj), E_TYPE_SETTINGS_WEEKDAY_CHOOSER)) +#define E_IS_SETTINGS_WEEKDAY_CHOOSER_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_TYPE \ + ((cls), E_TYPE_SETTINGS_WEEKDAY_CHOOSER)) +#define E_SETTINGS_WEEKDAY_CHOOSER_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS \ + ((obj), E_TYPE_SETTINGS_WEEKDAY_CHOOSER, ESettingsWeekdayChooserClass)) + +G_BEGIN_DECLS + +typedef struct _ESettingsWeekdayChooser ESettingsWeekdayChooser; +typedef struct _ESettingsWeekdayChooserClass ESettingsWeekdayChooserClass; +typedef struct _ESettingsWeekdayChooserPrivate ESettingsWeekdayChooserPrivate; + +struct _ESettingsWeekdayChooser { + EExtension parent; + ESettingsWeekdayChooserPrivate *priv; +}; + +struct _ESettingsWeekdayChooserClass { + EExtensionClass parent_class; +}; + +GType e_settings_weekday_chooser_get_type + (void) G_GNUC_CONST; +void e_settings_weekday_chooser_type_register + (GTypeModule *type_module); + +G_END_DECLS + +#endif /* E_SETTINGS_WEEKDAY_CHOOSER_H */ + diff --git a/modules/settings/evolution-module-settings.c b/modules/settings/evolution-module-settings.c index 79ffed45ee..34fd5997c8 100644 --- a/modules/settings/evolution-module-settings.c +++ b/modules/settings/evolution-module-settings.c @@ -30,6 +30,7 @@ #include "e-settings-photo-cache.h" #include "e-settings-web-view.h" #include "e-settings-web-view-gtkhtml.h" +#include "e-settings-weekday-chooser.h" /* Module Entry Points */ void e_module_load (GTypeModule *type_module); @@ -52,6 +53,7 @@ e_module_load (GTypeModule *type_module) e_settings_photo_cache_type_register (type_module); e_settings_web_view_type_register (type_module); e_settings_web_view_gtkhtml_type_register (type_module); + e_settings_weekday_chooser_type_register (type_module); } G_MODULE_EXPORT void -- cgit v1.2.3