blob: 9c0777804e995b89f1f522147002ab943134eed3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
|