/**
 * mate_ok_dialog_parented:
 * @message: Message to display
 * @parent: Parent window
 *
 * Description:  Creates and shows a simple message dialog.
 *
 * Returns:  Pointer to new MATE dialog object.
 **/
GtkWidget *
mate_ok_dialog_parented (const gchar * message, GtkWindow * parent)
{
  return show_ok_box (message, MATE_MESSAGE_BOX_INFO, parent);
}
/**
 * mate_error_dialog:
 * @error: Message to display
 *
 * Description:  Creates and shows a error dialog.  This is an OK
 * dialog to display on fatally failed operations.
 *
 * Returns:  Pointer to new MATE dialog object.
 **/
GtkWidget *
mate_error_dialog (const gchar * error)
{
  return show_ok_box(error, MATE_MESSAGE_BOX_ERROR, NULL);
}
/**
 * mate_warning_dialog_parented:
 * @warning: Message to display
 * @parent: Parent window
 *
 * Description:  Creates and shows a warning dialog.  For non-fatal
 * warnings.
 *
 * Returns:  Pointer to new MATE dialog object.
 **/
GtkWidget *
mate_warning_dialog_parented (const gchar * warning, GtkWindow * parent)
{
  return show_ok_box(warning, MATE_MESSAGE_BOX_WARNING, parent);
}
/**
 * mate_ok_dialog:
 * @message: Message to display
 *
 * Description:  Creates and shows a simple message dialog.
 *
 * Returns:  Pointer to new MATE dialog object.
 **/
GtkWidget *
mate_ok_dialog (const gchar * message)
{
  return show_ok_box (message, MATE_MESSAGE_BOX_INFO, NULL);
}
/**
 * mate_warning_dialog:
 * @warning: Message to display
 *
 * Description:  Creates and shows a warning dialog.  For non-fatal
 * warnings.
 *
 * Returns:  Pointer to new MATE dialog object.
 **/
GtkWidget *
mate_warning_dialog (const gchar * warning)
{
  return show_ok_box(warning, MATE_MESSAGE_BOX_WARNING, NULL);
}
/**
 * mate_error_dialog_parented:
 * @error: Message to display
 * @parent: Parent window
 *
 * Description:  Creates and shows a error dialog.  This is an OK
 * dialog to display on fatally failed operations.
 *
 * Returns:  Pointer to new MATE dialog object.
 **/
GtkWidget *
mate_error_dialog_parented (const gchar * error, GtkWindow * parent)
{
  return show_ok_box(error, MATE_MESSAGE_BOX_ERROR, parent);
}
/**
 * gnome_error_dialog:
 * @error: Message to display
 *
 * Description:  Creates and shows a error dialog.  This is an OK
 * dialog to display on fatally failed operations.
 *
 * Returns:  Pointer to new GNOME dialog object.
 **/
GtkWidget *
gnome_error_dialog (const gchar * error)
{
  return show_ok_box(error, GNOME_MESSAGE_BOX_ERROR, NULL);
}
/**
 * gnome_ok_dialog:
 * @message: Message to display
 *
 * Description:  Creates and shows a simple message dialog.
 *
 * Returns:  Pointer to new GNOME dialog object.
 **/
GtkWidget *
gnome_ok_dialog (const gchar * message)
{
  return show_ok_box (message, GNOME_MESSAGE_BOX_INFO, NULL);
}
/**
 * gnome_warning_dialog:
 * @warning: Message to display
 *
 * Description:  Creates and shows a warning dialog.  For non-fatal
 * warnings.
 *
 * Returns:  Pointer to new GNOME dialog object.
 **/
GtkWidget *
gnome_warning_dialog (const gchar * warning)
{
  return show_ok_box(warning, GNOME_MESSAGE_BOX_WARNING, NULL);
}