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 *
45 * Enum values used for determining the type of #WebKitScriptDialog
46 */
47typedef enum {
48    WEBKIT_SCRIPT_DIALOG_ALERT,
49    WEBKIT_SCRIPT_DIALOG_CONFIRM,
50    WEBKIT_SCRIPT_DIALOG_PROMPT
51} WebKitScriptDialogType;
52
53WEBKIT_API GType
54webkit_script_dialog_get_type                (void);
55
56WEBKIT_API WebKitScriptDialogType
57webkit_script_dialog_get_dialog_type         (WebKitScriptDialog *dialog);
58
59WEBKIT_API const gchar *
60webkit_script_dialog_get_message             (WebKitScriptDialog *dialog);
61
62WEBKIT_API void
63webkit_script_dialog_confirm_set_confirmed   (WebKitScriptDialog *dialog,
64                                              gboolean            confirmed);
65
66WEBKIT_API const gchar *
67webkit_script_dialog_prompt_get_default_text (WebKitScriptDialog *dialog);
68
69WEBKIT_API void
70webkit_script_dialog_prompt_set_text         (WebKitScriptDialog *dialog,
71                                              const gchar        *text);
72
73G_END_DECLS
74
75#endif
76