aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar/e-cal-shell-view.c
Commit message (Collapse)AuthorAgeFilesLines
* EShellView can load the GalViewCollection itself now.Matthew Barnes2013-07-061-35/+23
| | | | | | | | EShellView no longer needs help from subclasses other than getting the needed GalView subclasses registered. A nice side-effect of this is EShellView subclasses can now use the G_DEFINE_DYNAMIC_TYPE macro.
* Remove gal_view_collection_add_factory().Matthew Barnes2013-07-061-0/+9
| | | | | | No longer needed. Instead, use g_type_ensure() to ensure the necessary GalView subclasses are registered in the GType system before loading a GalViewCollection. Best place to ensure types is from GClassInitFunc.
* Calendar views inline text edit with Ctrl+C/V/X does not workMilan Crha2013-06-211-0/+31
| | | | | | | | The shortcuts Ctrl+C/V/X are used for whole calendar items copy/paste/cut, not for text when editing event details inline, either in a day/week view or in a list view. By tracking the is-editing property of respective cell editor and using it when enabling/disabling clipboard actions makes the respective text operations work as expected.
* ECalShellView: Disconnect "prepare-for-quit" handler on dispose().Matthew Barnes2013-06-111-1/+5
| | | | | | This is another source of crashes after creating and destroying a second shell window. The signal handler was left connected with the destroyed shell window as the closure.
* ECalShellView cleanups.Matthew Barnes2013-06-111-55/+57
|
* Bug #700812 - Search in Calendar view is brokenMilan Crha2013-05-301-3/+26
|
* Remove more Express Mode hacks.Matthew Barnes2013-04-011-27/+0
| | | | | | This removes all traces of Express Mode from all but the contact editor and calendar appointment editor. Need to evaluate the remaining cases individually.
* Missing search buttons in Calendar viewMilan Crha2012-11-061-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-1/+2
|
* Add cal_shell_content_check_state().Matthew Barnes2012-08-191-153/+69
|
* Enable "delete" action for remote-deletable sources.Matthew Barnes2012-08-031-1/+6
|
* Disable 'Rename' if source is a collection member.Matthew Barnes2012-06-151-4/+9
| | | | | | For consistency with the Preferences window. We assume the display names are server-assigned and not user-assigned, at least not assigned through Evolution.
* Adapt modules/calendar to the new ESource API.Matthew Barnes2012-06-031-12/+27
|
* Whitespace cleanups.Matthew Barnes2012-05-131-2/+2
|
* Show calendar Find Next/Prev/Stop buttons beside Search text entryMilan Crha2012-04-161-0/+56
|
* Bug #584143 - Global Search Function withing CalendarMilan Crha2012-04-111-1/+23
|
* Miscellaneous EShellView-related cleanups.Matthew Barnes2011-12-081-6/+11
|
* Bug #632619 - Recurring events can clutter month viewMilan Crha2011-09-291-0/+6
|
* Bug #659568 - One day delay in calendar viewMilan Crha2011-09-261-6/+10
|
* Coding style and whitespace cleanup.Matthew Barnes2011-09-041-2/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2011-08-131-3/+7
|
* Do not use deprecated EBook/ECal APIMilan Crha2011-06-141-7/+5
|
* Coding style and whitespace cleanups.Matthew Barnes2011-06-091-5/+9
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-0/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2011-05-221-10/+14
|
* Coding style cleanups.Matthew Barnes2011-05-091-1/+1
|
* Remove redundant EAccountList utilities.Matthew Barnes2011-04-261-1/+1
| | | | | Kill itip_addresses_get() and itip_addresses_get_default(), and use e_get_account_list() and e_get_default_account() instead.
* Coding style and whitespace cleanup.Matthew Barnes2011-03-061-1/+2
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-251-3/+2
|
* Bug #639483 - Category list includes weather informationMilan Crha2011-02-181-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-10-041-1/+7
|
* Bug #629462 - Tasks 'Due' filters don't work properlyMilan Crha2010-09-291-5/+8
|
* Fix critical warning in calendar express mode.Matthew Barnes2010-05-281-13/+9
|
* Coding style and whitespace cleanup.Matthew Barnes2010-05-271-2/+7
|
* Merge branch 'express2'Matthew Barnes2010-05-271-15/+7
|\
| * Coding style and whitespace cleanup.Matthew Barnes2010-05-251-6/+6
| |
| * hide meeting creation if we have no accounts configured, for EvoMichael Meeks2010-05-191-0/+5
| | | | | | | | calendar in standalone mode
| * add proxy support to auto-configurationMichael Meeks2010-04-201-1/+2
| |
| * remove custom close / searchbar hiding hacks for express mode,Michael Meeks2010-04-151-4/+0
| | | | | | | | use the new / stock shell versions now.
| * remove special case for calendarMichael Meeks2010-04-121-11/+0
| |
| * Hide searchbar in calendar view in express mode.Srinivasa Ragavan2010-04-071-1/+5
| |
| * Redo Calendar for express mode. Just design/layout changes.Srinivasa Ragavan2010-04-071-0/+30
| |
* | Bug #607257 - Add checks for event->comp_data != NULLMilan Crha2010-05-141-1/+1
| |
* | Coding style and whitespace cleanup.Matthew Barnes2010-05-021-13/+15
| |
* | Use accessor functions instead direct access (GSEAL work)Javier Jardón2010-04-131-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Still remaining: GtkAccessible::widget GtkAssistant::forward GtkAssistant::back GtkObject::flags GtkTreeStore::stamp The GtkAssistant fields are related to bug #596428. We don't need accessor functions so much as the enhancement described there implemented. https://bugzilla.gnome.org/show_bug.cgi?id=615613
* | Hide searchbar in calendar view in express mode.Srinivasa Ragavan2010-03-301-1/+5
| |
* | Redo Calendar for express mode. Just design/layout changes.Srinivasa Ragavan2010-03-201-0/+30
|/
* Remove dead assignments found by clang.Matthew Barnes2010-01-161-5/+0
|
* Coding style and whitespace cleanup.Matthew Barnes2010-01-051-29/+32
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-261-17/+3
| | | | | | | | | | | | | | | | | | EFocusTracker tracks the input focus within a window and helps keep the sensitivity of "selectable" actions in the main menu up-to-date. Selectable actions include Cut, Copy, Paste, Select All and Delete. EFocusTracker has built-in support for widgets that implement the GtkEditable interface such as GtkEntry and GtkTextView. It also supports custom widgets that implement the ESelectable interface, which is a subset of GtkEditable and can apply to anything that displays selectable content (esp. tree views and ETables). This commit integrates EFocusTracker with EShellWindow, CompEditor, EMsgComposer, and ESignatureManager. It also bumps the GtkHTML requirement to 2.29.5 to utilize the new GtkhtmlEditor:html constructor property.
* Refactor the EShell search API.Matthew Barnes2009-12-191-5/+11
| | | | | | | | | | | | | | | | | Move the search interface to a new widget: EShellSearchbar The current search rule is now stored in EShellView, and the search context in EShellViewClass similar to GalViewCollection (since it's class-specific, not instance-specific). Also add a couple new signals to EShellView: "clear-search" and "custom-search" ("custom" refers to an advanced search or a saved search -- something more complex than a quick search). Still working out a few kinks. The search entry is clearly trying to be too many things. We need a different way of indicating that you're looking at search results. Perhaps a search results banner similar to Nautilus.
* Bug 494394 - No way for the user to refresh a calendarMilan Crha2009-11-301-0/+7
|
* Bug #558030 - Convert meeting to appointment popup menu optionMilan Crha2009-11-261-0/+4
|
* Bug #579599 - Let the Advanced Search work againMilan Crha2009-11-191-31/+34
|
* Disallow renaming a non-deletable ESource.Matthew Barnes2009-11-191-1/+1
| | | | This is a partial solution to bug #600397.
* Bug 600397 - Delete option enabled for undeletable ESourceMatthew Barnes2009-11-141-19/+23
|
* Simplify clipboard handling in calendar.Matthew Barnes2009-11-121-1/+6
|
* Bug 601516 - Calendar views missing from calendar popup menuMatthew Barnes2009-11-111-9/+17
| | | | This also fixes a couple other popup menu glitches.
* Bug #593751 - Show correct context menu in calendar viewsMilan Crha2009-11-111-11/+129
|
* Bug 600402 - Clear search is always enabled in calendar/contact/taskMatthew Barnes2009-11-041-4/+1
|
* Cleanup and rename filter classes.Matthew Barnes2009-10-271-4/+4
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-031-0/+157
| | | | | | | | | | | | This addresses bug #593896 but is also a cleaner design than before. It introduces an EShellView::execute-search signal and renames the "search-execute" action to "search-quick" to clarify that it's only meant for the "quick" search bar in the main window. Shell view subclasses should implement the execute_search() method to actually execute a search. e_shell_view_execute_search() emits the new signal.
* Make switching between calendar views work.Matthew Barnes2009-08-131-9/+0
|
* Re-enable building GnomeCalendar, except it doesn't yet.Matthew Barnes2009-07-261-4/+6
| | | | Also, start trimming the API down a bit. Lots of redundancy there.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+226
- 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.