forked from chromiumembedded/java-cef
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCefMenuModel_N.java
More file actions
568 lines (515 loc) · 18.1 KB
/
CefMenuModel_N.java
File metadata and controls
568 lines (515 loc) · 18.1 KB
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
// 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.
package org.cef.callback;
import org.cef.misc.BoolRef;
import org.cef.misc.IntRef;
class CefMenuModel_N extends CefNativeAdapter implements CefMenuModel {
public CefMenuModel_N() {}
@Override
public boolean clear() {
try {
return N_Clear(getNativeRef(null));
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public int getCount() {
try {
return N_GetCount(getNativeRef(null));
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return 0;
}
@Override
public boolean addSeparator() {
try {
return N_AddSeparator(getNativeRef(null));
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean addItem(int command_id, String label) {
try {
return N_AddItem(getNativeRef(null), command_id, label);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean addCheckItem(int command_id, String label) {
try {
return N_AddCheckItem(getNativeRef(null), command_id, label);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean addRadioItem(int command_id, String label, int group_id) {
try {
return N_AddRadioItem(getNativeRef(null), command_id, label, group_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public CefMenuModel addSubMenu(int command_id, String label) {
try {
return N_AddSubMenu(getNativeRef(null), command_id, label);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return null;
}
@Override
public boolean insertSeparatorAt(int index) {
try {
return N_InsertSeparatorAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean insertItemAt(int index, int command_id, String label) {
try {
return N_InsertItemAt(getNativeRef(null), index, command_id, label);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean insertCheckItemAt(int index, int command_id, String label) {
try {
return N_InsertCheckItemAt(getNativeRef(null), index, command_id, label);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean insertRadioItemAt(int index, int command_id, String label, int group_id) {
try {
return N_InsertRadioItemAt(getNativeRef(null), index, command_id, label, group_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public CefMenuModel insertSubMenuAt(int index, int command_id, String label) {
try {
return N_InsertSubMenuAt(getNativeRef(null), index, command_id, label);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return null;
}
@Override
public boolean remove(int command_id) {
try {
return N_Remove(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean removeAt(int index) {
try {
return N_RemoveAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public int getIndexOf(int command_id) {
try {
return N_GetIndexOf(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return 0;
}
@Override
public int getCommandIdAt(int index) {
try {
return N_GetCommandIdAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return 0;
}
@Override
public boolean setCommandIdAt(int index, int command_id) {
try {
return N_SetCommandIdAt(getNativeRef(null), index, command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public String getLabel(int command_id) {
try {
return N_GetLabel(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return null;
}
@Override
public String getLabelAt(int index) {
try {
return N_GetLabelAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return null;
}
@Override
public boolean setLabel(int command_id, String label) {
try {
return N_SetLabel(getNativeRef(null), command_id, label);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean setLabelAt(int index, String label) {
try {
return N_SetLabelAt(getNativeRef(null), index, label);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public MenuItemType getType(int command_id) {
try {
return N_GetType(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return null;
}
@Override
public MenuItemType getTypeAt(int index) {
try {
return N_GetTypeAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return null;
}
@Override
public int getGroupId(int command_id) {
try {
return N_GetGroupId(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return 0;
}
@Override
public int getGroupIdAt(int index) {
try {
return N_GetGroupIdAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return 0;
}
@Override
public boolean setGroupId(int command_id, int group_id) {
try {
return N_SetGroupId(getNativeRef(null), command_id, group_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean setGroupIdAt(int index, int group_id) {
try {
return N_SetGroupIdAt(getNativeRef(null), index, group_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public CefMenuModel getSubMenu(int command_id) {
try {
return N_GetSubMenu(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return null;
}
@Override
public CefMenuModel getSubMenuAt(int index) {
try {
return N_GetSubMenuAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return null;
}
@Override
public boolean isVisible(int command_id) {
try {
return N_IsVisible(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean isVisibleAt(int index) {
try {
return N_IsVisibleAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean setVisible(int command_id, boolean visible) {
try {
return N_SetVisible(getNativeRef(null), command_id, visible);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean setVisibleAt(int index, boolean visible) {
try {
return N_SetVisibleAt(getNativeRef(null), index, visible);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean isEnabled(int command_id) {
try {
return N_IsEnabled(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean isEnabledAt(int index) {
try {
return N_IsEnabledAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean setEnabled(int command_id, boolean enabled) {
try {
return N_SetEnabled(getNativeRef(null), command_id, enabled);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean setEnabledAt(int index, boolean enabled) {
try {
return N_SetEnabledAt(getNativeRef(null), index, enabled);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean isChecked(int command_id) {
try {
return N_IsChecked(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean isCheckedAt(int index) {
try {
return N_IsCheckedAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean setChecked(int command_id, boolean checked) {
try {
return N_SetChecked(getNativeRef(null), command_id, checked);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean setCheckedAt(int index, boolean checked) {
try {
return N_SetCheckedAt(getNativeRef(null), index, checked);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean hasAccelerator(int command_id) {
try {
return N_HasAccelerator(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean hasAcceleratorAt(int index) {
try {
return N_HasAcceleratorAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean setAccelerator(int command_id, int key_code, boolean shift_pressed,
boolean ctrl_pressed, boolean alt_pressed) {
try {
return N_SetAccelerator(getNativeRef(null), command_id, key_code, shift_pressed,
ctrl_pressed, alt_pressed);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean setAcceleratorAt(int index, int key_code, boolean shift_pressed,
boolean ctrl_pressed, boolean alt_pressed) {
try {
return N_SetAcceleratorAt(
getNativeRef(null), index, key_code, shift_pressed, ctrl_pressed, alt_pressed);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean removeAccelerator(int command_id) {
try {
return N_RemoveAccelerator(getNativeRef(null), command_id);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean removeAcceleratorAt(int index) {
try {
return N_RemoveAcceleratorAt(getNativeRef(null), index);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean getAccelerator(int command_id, IntRef key_code, BoolRef shift_pressed,
BoolRef ctrl_pressed, BoolRef alt_pressed) {
try {
return N_GetAccelerator(getNativeRef(null), command_id, key_code, shift_pressed,
ctrl_pressed, alt_pressed);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
@Override
public boolean getAcceleratorAt(int index, IntRef key_code, BoolRef shift_pressed,
BoolRef ctrl_pressed, BoolRef alt_pressed) {
try {
return N_GetAcceleratorAt(
getNativeRef(null), index, key_code, shift_pressed, ctrl_pressed, alt_pressed);
} catch (UnsatisfiedLinkError ule) {
ule.printStackTrace();
}
return false;
}
private final native boolean N_Clear(long self);
private final native int N_GetCount(long self);
private final native boolean N_AddSeparator(long self);
private final native boolean N_AddItem(long self, int command_id, String label);
private final native boolean N_AddCheckItem(long self, int command_id, String label);
private final native boolean N_AddRadioItem(
long self, int command_id, String label, int group_id);
private final native CefMenuModel N_AddSubMenu(long self, int command_id, String label);
private final native boolean N_InsertSeparatorAt(long self, int index);
private final native boolean N_InsertItemAt(long self, int index, int command_id, String label);
private final native boolean N_InsertCheckItemAt(
long self, int index, int command_id, String label);
private final native boolean N_InsertRadioItemAt(
long self, int index, int command_id, String label, int group_id);
private final native CefMenuModel N_InsertSubMenuAt(
long self, int index, int command_id, String label);
private final native boolean N_Remove(long self, int command_id);
private final native boolean N_RemoveAt(long self, int index);
private final native int N_GetIndexOf(long self, int command_id);
private final native int N_GetCommandIdAt(long self, int index);
private final native boolean N_SetCommandIdAt(long self, int index, int command_id);
private final native String N_GetLabel(long self, int command_id);
private final native String N_GetLabelAt(long self, int index);
private final native boolean N_SetLabel(long self, int command_id, String label);
private final native boolean N_SetLabelAt(long self, int index, String label);
private final native MenuItemType N_GetType(long self, int command_id);
private final native MenuItemType N_GetTypeAt(long self, int index);
private final native int N_GetGroupId(long self, int command_id);
private final native int N_GetGroupIdAt(long self, int index);
private final native boolean N_SetGroupId(long self, int command_id, int group_id);
private final native boolean N_SetGroupIdAt(long self, int index, int group_id);
private final native CefMenuModel N_GetSubMenu(long self, int command_id);
private final native CefMenuModel N_GetSubMenuAt(long self, int index);
private final native boolean N_IsVisible(long self, int command_id);
private final native boolean N_IsVisibleAt(long self, int index);
private final native boolean N_SetVisible(long self, int command_id, boolean visible);
private final native boolean N_SetVisibleAt(long self, int index, boolean visible);
private final native boolean N_IsEnabled(long self, int command_id);
private final native boolean N_IsEnabledAt(long self, int index);
private final native boolean N_SetEnabled(long self, int command_id, boolean enabled);
private final native boolean N_SetEnabledAt(long self, int index, boolean enabled);
private final native boolean N_IsChecked(long self, int command_id);
private final native boolean N_IsCheckedAt(long self, int index);
private final native boolean N_SetChecked(long self, int command_id, boolean checked);
private final native boolean N_SetCheckedAt(long self, int index, boolean checked);
private final native boolean N_HasAccelerator(long self, int command_id);
private final native boolean N_HasAcceleratorAt(long self, int index);
private final native boolean N_SetAccelerator(long self, int command_id, int key_code,
boolean shift_pressed, boolean ctrl_pressed, boolean alt_pressed);
private final native boolean N_SetAcceleratorAt(long self, int index, int key_code,
boolean shift_pressed, boolean ctrl_pressed, boolean alt_pressed);
private final native boolean N_RemoveAccelerator(long self, int command_id);
private final native boolean N_RemoveAcceleratorAt(long self, int index);
private final native boolean N_GetAccelerator(long self, int command_id, IntRef key_code,
BoolRef shift_pressed, BoolRef ctrl_pressed, BoolRef alt_pressed);
private final native boolean N_GetAcceleratorAt(long self, int index, IntRef key_code,
BoolRef shift_pressed, BoolRef ctrl_pressed, BoolRef alt_pressed);
}