aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar/e-cal-shell-view-actions.c
Commit message (Collapse)AuthorAgeFilesLines
* Kill ETableScrolled.Matthew Barnes2009-12-081-6/+2
| | | | | ETableScrolled is nothing but a GtkScrolledWindow containing an ETable. It adds nothing of value and actually makes customizing ETable harder.
* Port all error code to use GObject-ified EAlert / EAlertDialogJonathon Jongsma2009-12-081-1/+1
| | | | | | The changes are mainly including the e-alert-header.h header instead of just e-alert.h. This allows us to include e-alert.h in non-UI situations when necessary.
* Rename EError to EAlert to match general use betterJonathon Jongsma2009-12-011-1/+2
| | | | | | | | | | The EError mechanism is used both for error dialogs as well as basic alerts or user prompts, so we should give it a more general name which matches this use. This patch also cleans up a few includes of e-alert.h (formerly e-error.h) that were not actually being used. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* port modules/ to new EError API.Jonathon Jongsma2009-12-011-1/+1
| | | | | | This should be everything now. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* Bug 494394 - No way for the user to refresh a calendarMilan Crha2009-11-301-0/+40
|
* Bug #558030 - Convert meeting to appointment popup menu optionMilan Crha2009-11-261-5/+52
|
* Bug #579599 - Let the Advanced Search work againMilan Crha2009-11-191-25/+15
|
* BugĀ 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-171-1/+1
|
* BugĀ 601767 - Delete action in calendar view has glitchesMatthew Barnes2009-11-141-1/+1
|
* Kill more redundant save dialogs and related utilities.Matthew Barnes2009-11-111-1/+1
|
* Bug #593751 - Show correct context menu in calendar viewsMilan Crha2009-11-111-4/+4
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-081-9/+23
| | | | | | | | | | This introduces e-shell-utils for miscellaneous utility functions that integrate with the shell or shell settings. First function is e_shell_run_save_dialog(), which automatically remembers the selected folder in the file chooser dialog. Also, kill some redundant save dialog functions, as well as some write-this-string-to-disk functions that block.
* Bug 597533 - e_file_dialog_save() does not pass parent windowMatthew Barnes2009-10-071-1/+7
|
* Typo fixAndre Klapper2009-09-211-1/+1
|
* Bug 593646 - Starting in day view does not restore panels correctlyMatthew Barnes2009-09-101-1/+16
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-031-28/+2
| | | | | | | | | | | | 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.
* Fix compiler warnings and deprecated GTK+ API usage.Matthew Barnes2009-08-161-1/+4
|
* Get the calendar view popup menu working.Matthew Barnes2009-08-161-11/+565
|
* Start re-enabling parts of the calendar.Matthew Barnes2009-07-281-30/+15
|
* Get GnomeCalendar and the a11y stuff building.Matthew Barnes2009-07-281-3/+45
|
* Re-enable building GnomeCalendar, except it doesn't yet.Matthew Barnes2009-07-261-11/+17
| | | | Also, start trimming the API down a bit. Lots of redundancy there.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+1202
- 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.