aboutsummaryrefslogtreecommitdiffstats
path: root/modules/offline-alert/evolution-offline-alert.error.xml
Commit message (Collapse)AuthorAgeFilesLines
* EAlertBar: Add a close button to all alerts.Matthew Barnes2011-11-221-2/+0
| | | | | Replaces the 'Dismiss' button. All alerts appearing in an alert bar should be dismissable (i.e. non-modal). For modal alerts use a dialog.
* Add an EOfflineAlert module.Matthew Barnes2010-10-191-1/+1
| | | | | | | | | 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-191-0/+13
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.