![]() |
![]() |
![]() |
Evolution Shell Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
#define E_ERROR_INFO #define E_ERROR_INFO_PRIMARY #define E_ERROR_WARNING #define E_ERROR_WARNING_PRIMARY #define E_ERROR_ERROR #define E_ERROR_ERROR_PRIMARY #define E_ERROR_ASK_FILE_EXISTS_OVERWRITE #define E_ERROR_NO_SAVE_FILE #define E_ERROR_NO_LOAD_FILE GtkWidget * e_error_new (GtkWindow *parent, const gchar *tag, const gchar *arg0, ...); GtkWidget * e_error_newv (GtkWindow *parent, const gchar *tag, const gchar *arg0, va_list ap); gint e_error_run (GtkWindow *parent, const gchar *tag, const gchar *arg0, ...); gint e_error_runv (GtkWindow *parent, const gchar *tag, const gchar *arg0, va_list ap); guint e_error_count_buttons (GtkDialog *dialog);
#define E_ERROR_ASK_FILE_EXISTS_OVERWRITE "system:ask-save-file-exists-overwrite"
GtkWidget * e_error_new (GtkWindow *parent, const gchar *tag, const gchar *arg0, ...);
Creates a new error widget. The tag
argument is used to determine
which error to use, it is in the format domain:error-id. The NULL
terminated list of arguments, starting with arg0
is used to fill
out the error definition.
|
|
|
error identifier |
|
The first argument for the error formatter. The list must be NULL terminated. |
|
|
Returns : |
A GtkDialog which can be used for showing an error dialog asynchronously. |
GtkWidget * e_error_newv (GtkWindow *parent, const gchar *tag, const gchar *arg0, va_list ap);
|
|
|
|
|
|
|
|
Returns : |
gint e_error_run (GtkWindow *parent, const gchar *tag, const gchar *arg0, ...);
Sets up, displays, runs and destroys a standard evolution error
dialog based on tag
, which is in the format domain:error-id.
|
|
|
|
|
|
|
|
Returns : |
The response id of the button pressed. |
gint e_error_runv (GtkWindow *parent, const gchar *tag, const gchar *arg0, va_list ap);
|
|
|
|
|
|
|
|
Returns : |