diff options
Diffstat (limited to 'src/gs-basic-auth-dialog.h')
-rw-r--r-- | src/gs-basic-auth-dialog.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/gs-basic-auth-dialog.h b/src/gs-basic-auth-dialog.h new file mode 100644 index 0000000..9c07778 --- /dev/null +++ b/src/gs-basic-auth-dialog.h @@ -0,0 +1,29 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * vi:set noexpandtab tabstop=8 shiftwidth=8: + * + * Copyright (C) 2020 Kalev Lember <klember@redhat.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#pragma once + +#include <gtk/gtk.h> + +#include "gnome-software-private.h" + +G_BEGIN_DECLS + +typedef void (*GsBasicAuthCallback) (const gchar *user, const gchar *password, gpointer callback_data); + +#define GS_TYPE_BASIC_AUTH_DIALOG (gs_basic_auth_dialog_get_type ()) + +G_DECLARE_FINAL_TYPE (GsBasicAuthDialog, gs_basic_auth_dialog, GS, BASIC_AUTH_DIALOG, GtkDialog) + +GtkWidget *gs_basic_auth_dialog_new (GtkWindow *parent, + const gchar *remote, + const gchar *realm, + GsBasicAuthCallback callback, + gpointer callback_data); + +G_END_DECLS |