1/*
2 * Copyright (C) 2012 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#if !defined(__WEBKIT2_H_INSIDE__) && !defined(WEBKIT2_COMPILATION)
21#error "Only <webkit2/webkit2.h> can be included directly."
22#endif
23
24#ifndef WebKitScriptDialog_h
25#define WebKitScriptDialog_h
26
27#include <glib-object.h>
28#include <webkit2/WebKitDefines.h>
29
30G_BEGIN_DECLS
31
32#define WEBKIT_TYPE_SCRIPT_DIALOG (webkit_script_dialog_get_type())
33
34typedef struct _WebKitScriptDialog WebKitScriptDialog;
35
36/**
37 * WebKitScriptDialogType:
38 * @WEBKIT_SCRIPT_DIALOG_ALERT: Alert script dialog, used to show a
39 * message to the user.
40 * @WEBKIT_SCRIPT_DIALOG_CONFIRM: Confirm script dialog, used to ask
41 * confirmation to the user.
42 * @WEBKIT_SCRIPT_DIALOG_PROMPT: Prompt script dialog, used to ask
43 * information to the user.
44 * @WEBKIT_SCRIPT_DIALOG_BEFORE_UNLOAD_CONFIRM: Before unload confirm dialog,
45 * used to ask confirmation to leave the current page to the user. Since 2.12
46 *
47 * Enum values used for determining the type of #WebKitScriptDialog
48 */
49typedef enum {
50 WEBKIT_SCRIPT_DIALOG_ALERT,
51 WEBKIT_SCRIPT_DIALOG_CONFIRM,
52 WEBKIT_SCRIPT_DIALOG_PROMPT,
53 WEBKIT_SCRIPT_DIALOG_BEFORE_UNLOAD_CONFIRM
54} WebKitScriptDialogType;
55
56WEBKIT_API GType
57webkit_script_dialog_get_type (void);
58
59WEBKIT_API WebKitScriptDialog *
60webkit_script_dialog_ref (WebKitScriptDialog *dialog);
61
62WEBKIT_API void
63webkit_script_dialog_unref (WebKitScriptDialog *dialog);
64
65WEBKIT_API WebKitScriptDialogType
66webkit_script_dialog_get_dialog_type (WebKitScriptDialog *dialog);
67
68WEBKIT_API const gchar *
69webkit_script_dialog_get_message (WebKitScriptDialog *dialog);
70
71WEBKIT_API void
72webkit_script_dialog_confirm_set_confirmed (WebKitScriptDialog *dialog,
73 gboolean confirmed);
74
75WEBKIT_API const gchar *
76webkit_script_dialog_prompt_get_default_text (WebKitScriptDialog *dialog);
77
78WEBKIT_API void
79webkit_script_dialog_prompt_set_text (WebKitScriptDialog *dialog,
80 const gchar *text);
81
82WEBKIT_API void
83webkit_script_dialog_close (WebKitScriptDialog *dialog);
84
85G_END_DECLS
86
87#endif
88