forked from AuroraMiddleware/gtk
Add GtkDialogError
This error domain will be used by async apis in future commits.
This commit is contained in:
parent
bd5dedce12
commit
2fce117d15
@ -95,6 +95,7 @@
|
|||||||
#include <gtk/gtkcustomsorter.h>
|
#include <gtk/gtkcustomsorter.h>
|
||||||
#include <gtk/gtkdebug.h>
|
#include <gtk/gtkdebug.h>
|
||||||
#include <gtk/gtkdialog.h>
|
#include <gtk/gtkdialog.h>
|
||||||
|
#include <gtk/gtkdialogerror.h>
|
||||||
#include <gtk/gtkdirectorylist.h>
|
#include <gtk/gtkdirectorylist.h>
|
||||||
#include <gtk/gtkdragicon.h>
|
#include <gtk/gtkdragicon.h>
|
||||||
#include <gtk/gtkdragsource.h>
|
#include <gtk/gtkdragsource.h>
|
||||||
|
27
gtk/gtkdialogerror.c
Normal file
27
gtk/gtkdialogerror.c
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/* GTK - The GIMP Toolkit
|
||||||
|
*
|
||||||
|
* Copyright (C) 2022 Red Hat, Inc.
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
#include "gtk/gtkdialogerror.h"
|
||||||
|
|
||||||
|
GQuark
|
||||||
|
gtk_dialog_error_quark (void)
|
||||||
|
{
|
||||||
|
return g_quark_from_static_string ("gtk-dialog-error-quark");
|
||||||
|
}
|
62
gtk/gtkdialogerror.h
Normal file
62
gtk/gtkdialogerror.h
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
/* GTK - The GIMP Toolkit
|
||||||
|
*
|
||||||
|
* Copyright (C) 2022 Red Hat, Inc.
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
||||||
|
#error "Only <gtk/gtk.h> can be included directly."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <gdk/gdk.h>
|
||||||
|
|
||||||
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GTK_DIALOG_ERROR:
|
||||||
|
*
|
||||||
|
* The error domain for errors returned by async dialog functions.
|
||||||
|
*
|
||||||
|
* Since: 4.10
|
||||||
|
*/
|
||||||
|
#define GTK_DIALOG_ERROR (gtk_dialog_error_quark ())
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GtkDialogError:
|
||||||
|
* @GTK_DIALOG_ERROR_FAILED: Generic error condition for when
|
||||||
|
* an operation fails and no more specific code is applicable
|
||||||
|
* @GTK_DIALOG_ERROR_ABORTED: The async function call was aborted
|
||||||
|
* programmatically (via its `GCancellable`)
|
||||||
|
* @GTK_DIALOG_ERROR_CANCELLED: The async operation was cancelled
|
||||||
|
* by the user (via a Close button)
|
||||||
|
*
|
||||||
|
* Error codes in the `GTK_DIALOG_ERROR` domain that can be returned
|
||||||
|
* by async dialog functions.
|
||||||
|
*
|
||||||
|
* Since: 4.10
|
||||||
|
*/
|
||||||
|
typedef enum
|
||||||
|
{
|
||||||
|
GTK_DIALOG_ERROR_FAILED,
|
||||||
|
GTK_DIALOG_ERROR_ABORTED,
|
||||||
|
GTK_DIALOG_ERROR_CANCELLED
|
||||||
|
} GtkDialogError;
|
||||||
|
|
||||||
|
GDK_AVAILABLE_IN_4_10
|
||||||
|
GQuark gtk_dialog_error_quark (void);
|
||||||
|
|
||||||
|
G_END_DECLS
|
@ -199,6 +199,7 @@ gtk_public_sources = files([
|
|||||||
'gtkcustomlayout.c',
|
'gtkcustomlayout.c',
|
||||||
'gtkcustomsorter.c',
|
'gtkcustomsorter.c',
|
||||||
'gtkdialog.c',
|
'gtkdialog.c',
|
||||||
|
'gtkdialogerror.c',
|
||||||
'gtkdirectorylist.c',
|
'gtkdirectorylist.c',
|
||||||
'gtkdragicon.c',
|
'gtkdragicon.c',
|
||||||
'gtkdragsource.c',
|
'gtkdragsource.c',
|
||||||
@ -455,6 +456,7 @@ gtk_public_headers = files([
|
|||||||
'gtkcustomsorter.h',
|
'gtkcustomsorter.h',
|
||||||
'gtkdebug.h',
|
'gtkdebug.h',
|
||||||
'gtkdialog.h',
|
'gtkdialog.h',
|
||||||
|
'gtkdialogerror.h',
|
||||||
'gtkdirectorylist.h',
|
'gtkdirectorylist.h',
|
||||||
'gtkdragicon.h',
|
'gtkdragicon.h',
|
||||||
'gtkdragsource.h',
|
'gtkdragsource.h',
|
||||||
|
Loading…
Reference in New Issue
Block a user