Functions | |
void | rox_error_init (void) |
void | rox_error (const char *fmt,...) |
void | rox_error_report_gerror (GError *err, int del) |
void | rox_error_queue (GError *err) |
gboolean | rox_error_queue_empty (void) |
GError * | rox_error_queue_peek (void) |
GError * | rox_error_queue_fetch (void) |
GError * | rox_error_queue_peek_last (void) |
GError * | rox_error_queue_fetch_last (void) |
void | rox_error_queue_flush (void) |
void | rox_error_queue_report (void) |
Variables | |
GQuark | rox_error_quark |
Display error message, or queue for later handling.
|
Display an error message in a modal dialogue box.
|
|
Initialize error system. This is called by rox_init_with_domain() and should not be called directly. |
|
Push an error onto the end of the error queue. ROX-CLib assumes responsibilty for deleting the error.
|
|
|
|
Return the error at the head of the error queue and remove it from the queue. The caller assumes responsibilty for deleting the error.
|
|
Return the error at the end of the error queue and remove it from the queue. The caller assumes responsibilty for deleting the error.
|
|
Delete all errors from the error queue. |
|
Return the error at the head of the error queue, leaving it on the queue.
|
|
Return the error at the end of the error queue, leaving it on the queue.
|
|
Report all errors (using rox_error_report_gerror()) in the queue in the order in which they were queued. |
|
Report an error (via rox_error()) stored in a GError type.
|
|
Quark used by ROX-CLib in creating GErrors. This is initialized by rox_error_init(). |