aboutsummaryrefslogtreecommitdiffstats
path: root/modules/offline-alert
Commit message (Collapse)AuthorAgeFilesLines
* Add e_shell_submit_alert().Matthew Barnes2011-06-301-14/+2
| | | | | | An easy way to broadcast application-wide alerts to shell windows. These alerts will persist in all current and future shell windows until responded to (either programmatically or by the user).
* Free/busy meeting view doesn't work due to non-working extensionMilan Crha2011-06-301-0/+3
|
* Fix distcheck errors.Matthew Barnes2010-11-101-0/+4
|
* Pass an EAlertSink to e_alert_sink_submit_alert().Matthew Barnes2010-11-101-2/+3
| | | | | | | Passing a random GtkWidget and then searching its ancestors for an EAlertSink turned out to be not as useful as I thought. Most of the time we know about and have access to the widget that implements EAlertSink, so just pass it directly as an EAlertSink.
* Add an EOfflineAlert module.Matthew Barnes2010-10-194-1/+236
| | | | | | | | | This module posts an alert to the first EShellWindow when starting offline, and also posts an alert when the network connection drops. We get frequent questions on the mailing list from users not realizing Evolution is starting in offline mode, so this is meant to help address that confusion.
* EAlert: Allow arbitrary actions to be added.Matthew Barnes2010-10-192-0/+39
You can now amend the predefined actions in an EAlert by calling e_alert_add_action(). Useful for adding actions from an existing GtkUIManager. Call e_alert_peek_actions() to obtain a combined list of predefined and custom actions. These will typically serve as "related" actions for GtkButtons (cf. gtk_activatable_set_related_action()). Also, both EShellWindow and EShellView now implement EAlertSink. Use EShellWindow for application-wide alerts, EShellView for view-specific alerts.