-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathCefContextMenuParams_N.cpp
231 lines (203 loc) · 8.3 KB
/
CefContextMenuParams_N.cpp
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
// Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include "CefContextMenuParams_N.h"
#include "include/cef_context_menu_handler.h"
#include "jni_util.h"
namespace {
CefRefPtr<CefContextMenuParams> GetSelf(jlong self) {
return reinterpret_cast<CefContextMenuParams*>(self);
}
} // namespace
JNIEXPORT jint JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetXCoord(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return 0;
return menuParams->GetXCoord();
}
JNIEXPORT jint JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetYCoord(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return 0;
return menuParams->GetYCoord();
}
JNIEXPORT jint JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetTypeFlags(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return 0;
return (jint)menuParams->GetTypeFlags();
}
JNIEXPORT jstring JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetLinkUrl(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return nullptr;
return NewJNIString(env, menuParams->GetLinkUrl());
}
JNIEXPORT jstring JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetUnfilteredLinkUrl(
JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return nullptr;
return NewJNIString(env, menuParams->GetUnfilteredLinkUrl());
}
JNIEXPORT jstring JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetSourceUrl(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return nullptr;
return NewJNIString(env, menuParams->GetSourceUrl());
}
JNIEXPORT jboolean JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1HasImageContents(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return JNI_FALSE;
return menuParams->HasImageContents() ? JNI_TRUE : JNI_FALSE;
}
JNIEXPORT jstring JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetPageUrl(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return nullptr;
return NewJNIString(env, menuParams->GetPageUrl());
}
JNIEXPORT jstring JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetFrameUrl(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return nullptr;
return NewJNIString(env, menuParams->GetFrameUrl());
}
JNIEXPORT jstring JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetFrameCharset(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return nullptr;
return NewJNIString(env, menuParams->GetFrameCharset());
}
JNIEXPORT jobject JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetMediaType(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
jobject result =
GetJNIEnumValue(env, "org/cef/callback/CefContextMenuParams$MediaType",
"CM_MEDIATYPE_NONE");
if (!menuParams)
return result;
switch (menuParams->GetMediaType()) {
JNI_CASE(env, "org/cef/callback/CefContextMenuParams$MediaType",
CM_MEDIATYPE_IMAGE, result);
JNI_CASE(env, "org/cef/callback/CefContextMenuParams$MediaType",
CM_MEDIATYPE_VIDEO, result);
JNI_CASE(env, "org/cef/callback/CefContextMenuParams$MediaType",
CM_MEDIATYPE_AUDIO, result);
JNI_CASE(env, "org/cef/callback/CefContextMenuParams$MediaType",
CM_MEDIATYPE_FILE, result);
JNI_CASE(env, "org/cef/callback/CefContextMenuParams$MediaType",
CM_MEDIATYPE_PLUGIN, result);
default:
JNI_CASE(env, "org/cef/callback/CefContextMenuParams$MediaType",
CM_MEDIATYPE_NONE, result);
}
return result;
}
JNIEXPORT jint JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetMediaStateFlags(
JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return 0;
return (jint)menuParams->GetMediaStateFlags();
}
JNIEXPORT jstring JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetSelectionText(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return nullptr;
return NewJNIString(env, menuParams->GetSelectionText());
}
JNIEXPORT jstring JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetMisspelledWord(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return nullptr;
return NewJNIString(env, menuParams->GetMisspelledWord());
}
JNIEXPORT jboolean JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetDictionarySuggestions(
JNIEnv* env,
jobject obj,
jlong self,
jobject jsuggestions) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return false;
std::vector<CefString> suggestions;
bool result = menuParams->GetDictionarySuggestions(suggestions);
if (!result)
return JNI_FALSE;
for (std::vector<CefString>::size_type i = 0; i < suggestions.size(); ++i) {
AddJNIStringToVector(env, jsuggestions, suggestions.at(i));
}
return JNI_TRUE;
}
JNIEXPORT jboolean JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1IsEditable(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return JNI_FALSE;
return menuParams->IsEditable() ? JNI_TRUE : JNI_FALSE;
}
JNIEXPORT jboolean JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1IsSpellCheckEnabled(
JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return JNI_FALSE;
return menuParams->IsSpellCheckEnabled() ? JNI_TRUE : JNI_FALSE;
}
JNIEXPORT jint JNICALL
Java_org_cef_callback_CefContextMenuParams_1N_N_1GetEditStateFlags(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<CefContextMenuParams> menuParams = GetSelf(self);
if (!menuParams)
return 0;
return (jint)menuParams->GetEditStateFlags();
}