aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference/shell/tmpl/e-alert.sgml
Commit message (Collapse)AuthorAgeFilesLines
* Kill gtk-doc tmpl files.Matthew Barnes2011-11-081-82/+0
| | | | Bump our gtk-doc requirement to 1.14 and use --flavour no-tmpl.
* Send errors to an EAlertSink instead of the task bar.Matthew Barnes2010-10-191-9/+0
| | | | | | This marks the end of unintrusive error dialogs, which were too unintrusive. We now show errors directly in the main window using the EAlert / EAlertSink framework.
* Messin around with EAlerts.Matthew Barnes2010-09-301-42/+0
| | | | | | | | | | | | | | | | | | | Trying out a new interface called EAlertSink. The idea is to centralize how errors are shown to the user. A GtkWindow subclass would implement the EAlertSink interface, which consists of a single method: void (*submit_alert) (EAlertSink *alert_sink, EAlert *alert); The subclass has complete control over what to do with the EAlert, although I imagine we'll wind up implementing various alert-handling policies as standalone widgets such as EAlertDialog. I'd like to try an EAlertInfoBar. Code that would otherwise display an error dialog itself would instead pass the EAlert to an appropriate EAlertSink and be done with it. Nothing is final yet. Still hacking on EAlert trying to find an API that feels right for these use cases.
* Fix compiler warnings.Matthew Barnes2010-04-211-0/+3
|
* Prevent future bugs like #612792.Matthew Barnes2010-03-151-2/+0
| | | | | | Add G_GNUC_NULL_TERMINATED to EAlert functions with variable-length parameter lists and drop the unnecessary "arg0" parameter so the function attribute works correctly.
* Introduce EMailSidebar into libevolution-mail.Matthew Barnes2009-12-151-43/+2
| | | | | | EMailSidebar is a subclass of EMFolderTree that implements the state saving and restoration feature from EMailShellSidebar. Placing this in the shared mail library allows Anjal to reuse it.
* Add private virtual methods to EShellWindowClass.Matthew Barnes2009-12-021-0/+173
So Anjal can override what it needs to for its own purpose. Also makes the EShellWindow design a little cleaner. Methods added: GtkWidget * (*construct_menubar) (EShellWindow *shell_window); GtkWidget * (*construct_toolbar) (EShellWindow *shell_window); GtkWidget * (*construct_sidebar) (EShellWindow *shell_window); GtkWidget * (*construct_content) (EShellWindow *shell_window); GtkWidget * (*construct_taskbar) (EShellWindow *shell_window); EShellView * (*create_shell_view) (EShellWindow *shell_window, const gchar *view_name); Also added some new GObject properties to help decouple actions from internal EShellWindow widgets created by these methods: EShellWindow:sidebar-visible EShellWindow:switcher-visible EShellWindow:taskbar-visible EShellWindow:toolbar-visible