initial import
[vuplus_webkit] / Source / WebKit2 / WebProcess / gtk / WebAuthDialog.cpp
1 /*
2  * Copyright (C) 2011 Igalia S.L.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB.  If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #include "config.h"
21 #include "WebAuthDialog.h"
22
23 #include <WebCore/GtkAuthenticationDialog.h>
24
25 typedef struct {
26     GObject parent;
27 } WebAuthDialog;
28
29 typedef struct {
30     GObjectClass parent;
31 } WebAuthDialogClass;
32
33 static void webAuthDialogSessionFeatureInit(SoupSessionFeatureInterface*, gpointer);
34
35 G_DEFINE_TYPE_WITH_CODE(WebAuthDialog, web_auth_dialog, G_TYPE_OBJECT,
36                         G_IMPLEMENT_INTERFACE(SOUP_TYPE_SESSION_FEATURE,
37                                               webAuthDialogSessionFeatureInit))
38
39 static void web_auth_dialog_class_init(WebAuthDialogClass*)
40 {
41 }
42
43 static void web_auth_dialog_init(WebAuthDialog*)
44 {
45 }
46
47 static void sessionAuthenticate(SoupSession* session, SoupMessage* message, SoupAuth* auth, gboolean, gpointer)
48 {
49     WebCore::GtkAuthenticationDialog* authDialog = new WebCore::GtkAuthenticationDialog(0, session, message, auth);
50     authDialog->show();
51 }
52
53 static void attach(SoupSessionFeature*, SoupSession* session)
54 {
55     g_signal_connect(session, "authenticate", G_CALLBACK(sessionAuthenticate), 0);
56 }
57
58 static void detach(SoupSessionFeature*, SoupSession* session)
59 {
60     g_signal_handlers_disconnect_by_func(session, reinterpret_cast<gpointer>(sessionAuthenticate), 0);
61 }
62
63 static void webAuthDialogSessionFeatureInit(SoupSessionFeatureInterface* feature, gpointer)
64 {
65     feature->attach = attach;
66     feature->detach = detach;
67 }