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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/*
* Copyright (C) 2012 Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "WebKitScriptDialog.h"
#include "WebKitScriptDialogPrivate.h"
static WebKitScriptDialog* webkitScriptDialogCopy(WebKitScriptDialog* dialog)
{
WebKitScriptDialog* copy = g_slice_new0(WebKitScriptDialog);
new (copy) WebKitScriptDialog(dialog);
return copy;
}
static void webkitScriptDialogFree(WebKitScriptDialog* dialog)
{
dialog->~WebKitScriptDialog();
g_slice_free(WebKitScriptDialog, dialog);
}
G_DEFINE_BOXED_TYPE(WebKitScriptDialog, webkit_script_dialog, webkitScriptDialogCopy, webkitScriptDialogFree)
/**
* webkit_script_dialog_get_dialog_type:
* @dialog: a #WebKitScriptDialog
*
* Get the dialog type of a #WebKitScriptDialog.
*
* Returns: the #WebKitScriptDialogType of @dialog
*/
WebKitScriptDialogType webkit_script_dialog_get_dialog_type(WebKitScriptDialog* dialog)
{
g_return_val_if_fail(dialog, WEBKIT_SCRIPT_DIALOG_ALERT);
return static_cast<WebKitScriptDialogType>(dialog->type);
}
/**
* webkit_script_dialog_get_message:
* @dialog: a #WebKitScriptDialog
*
* Get the message of a #WebKitScriptDialog.
*
* Returns: the message of @dialog.
*/
const char* webkit_script_dialog_get_message(WebKitScriptDialog* dialog)
{
g_return_val_if_fail(dialog, 0);
return dialog->message.data();
}
/**
* webkit_script_dialog_confirm_set_confirmed:
* @dialog: a #WebKitScriptDialog
* @confirmed: whether user confirmed the dialog
*
* This method is used for %WEBKIT_SCRIPT_DIALOG_CONFIRM dialogs when
* #WebKitWebView::script-dialog signal is emitted to set whether the user
* confirmed the dialog or not. The default implementation of #WebKitWebView::script-dialog
* signal sets %TRUE when the OK button is clicked and %FALSE otherwise.
* It's an error to use this method with a #WebKitScriptDialog that is not of type
* %WEBKIT_SCRIPT_DIALOG_CONFIRM.
*/
void webkit_script_dialog_confirm_set_confirmed(WebKitScriptDialog* dialog, gboolean confirmed)
{
g_return_if_fail(dialog);
g_return_if_fail(dialog->type == WEBKIT_SCRIPT_DIALOG_CONFIRM);
dialog->confirmed = confirmed;
}
/**
* webkit_script_dialog_prompt_get_default_text:
* @dialog: a #WebKitScriptDialog
*
* Get the default text of a #WebKitScriptDialog of type %WEBKIT_SCRIPT_DIALOG_PROMPT.
* It's an error to use this method with a #WebKitScriptDialog that is not of type
* %WEBKIT_SCRIPT_DIALOG_PROMPT.
*
* Returns: the default text of @dialog
*/
const char* webkit_script_dialog_prompt_get_default_text(WebKitScriptDialog* dialog)
{
g_return_val_if_fail(dialog, 0);
g_return_val_if_fail(dialog->type == WEBKIT_SCRIPT_DIALOG_PROMPT, 0);
return dialog->defaultText.data();
}
/**
* webkit_script_dialog_prompt_set_text:
* @dialog: a #WebKitScriptDialog
* @text: the text to set
*
* This method is used for %WEBKIT_SCRIPT_DIALOG_PROMPT dialogs when
* #WebKitWebView::script-dialog signal is emitted to set the text
* entered by the user. The default implementation of #WebKitWebView::script-dialog
* signal sets the text of the entry form when OK button is clicked, otherwise %NULL is set.
* It's an error to use this method with a #WebKitScriptDialog that is not of type
* %WEBKIT_SCRIPT_DIALOG_PROMPT.
*/
void webkit_script_dialog_prompt_set_text(WebKitScriptDialog* dialog, const char* text)
{
g_return_if_fail(dialog);
g_return_if_fail(dialog->type == WEBKIT_SCRIPT_DIALOG_PROMPT);
dialog->text = text;
}
|