aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar/evolution-module-calendar.c
Commit message (Collapse)AuthorAgeFilesLines
* Add a "settings" module.Matthew Barnes2013-01-211-16/+0
| | | | | | Collect all the "config" extensions from the "addressbook", "calendar", and "mail" modules into one place. These extensions typically just bind GObject properties of extensible classes to app-specific GSettings keys.
* ECalConfigView: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-101-1/+1
| | | | Follow the usual GObject conventions.
* ECalConfigModel: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-101-1/+1
| | | | Follow the usual GObject conventions.
* ECalConfigMeetingTimeSelector: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-101-1/+1
| | | | Follow the usual GObject conventions.
* ECalConfigMeetingStore: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-101-1/+1
| | | | Follow the usual GObject conventions.
* ECalConfigDateEdit: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-101-1/+1
| | | | Follow the usual GObject conventions.
* ECalConfigCompEditor: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-101-1/+1
| | | | Follow the usual GObject conventions.
* ECalConfigCalendarItem: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-101-1/+1
| | | | Follow the usual GObject conventions.
* Miscellaneous EShellView-related cleanups.Matthew Barnes2011-12-081-9/+9
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-0/+4
|
* Move calendar preferences to the calendar module.Matthew Barnes2010-11-051-0/+6
| | | | | Continue replacing the use of calendar-config functions with GObject property bindings to EShellSettings properties.
* Add extensions to configure calender widgets.Matthew Barnes2010-03-201-0/+14
| | | | | | Make ECalendarItem, ECalendarView, ECalModel, EDateEdit, EMeetingStore, and EMeetingTimeSelector extensible and register extensions to automatically bind every instance to the appropriate EShellSettings.
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-301-0/+10
| | | | | | | | | | | | | - Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+65
- Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets.