// WARNING: This file was autogenerated by jni-bindgen. Any changes to this file may be lost!!!
#[cfg(any(feature = "all", feature = "android-inputmethodservice-Keyboard"))]
__jni_bindgen! {
/// public class [Keyboard](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html)
///
/// Required feature: "android-inputmethodservice-Keyboard"
public class Keyboard ("android/inputmethodservice/Keyboard") extends crate::java::lang::Object {
/// [Keyboard](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#Keyboard(android.content.Context,%20int))
///
/// Required features: "android-content-Context"
#[cfg(any(feature = "all", all(feature = "android-content-Context")))]
pub fn new_Context_int<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>, arg1: i32) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::inputmethodservice::Keyboard>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "<init>", .descriptor == "(Landroid/content/Context;I)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1)];
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "<init>\0", "(Landroid/content/Context;I)V\0");
__jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
}
}
/// [Keyboard](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#Keyboard(android.content.Context,%20int,%20int))
///
/// Required features: "android-content-Context"
#[cfg(any(feature = "all", all(feature = "android-content-Context")))]
pub fn new_Context_int_int<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>, arg1: i32, arg2: i32) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::inputmethodservice::Keyboard>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "<init>", .descriptor == "(Landroid/content/Context;II)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1), __jni_bindgen::AsJValue::as_jvalue(&arg2)];
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "<init>\0", "(Landroid/content/Context;II)V\0");
__jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
}
}
/// [Keyboard](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#Keyboard(android.content.Context,%20int,%20java.lang.CharSequence,%20int,%20int))
///
/// Required features: "android-content-Context", "java-lang-CharSequence"
#[cfg(any(feature = "all", all(feature = "android-content-Context", feature = "java-lang-CharSequence")))]
pub fn new_Context_int_CharSequence_int_int<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::content::Context>>, arg1: i32, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::CharSequence>>, arg3: i32, arg4: i32) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::inputmethodservice::Keyboard>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "<init>", .descriptor == "(Landroid/content/Context;ILjava/lang/CharSequence;II)V"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3), __jni_bindgen::AsJValue::as_jvalue(&arg4)];
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "<init>\0", "(Landroid/content/Context;ILjava/lang/CharSequence;II)V\0");
__jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
}
}
/// [getKeys](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#getKeys())
///
/// Required features: "java-util-List"
#[cfg(any(feature = "all", all(feature = "java-util-List")))]
pub fn getKeys<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::util::List>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "getKeys", .descriptor == "()Ljava/util/List;"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "getKeys\0", "()Ljava/util/List;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getModifierKeys](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#getModifierKeys())
///
/// Required features: "java-util-List"
#[cfg(any(feature = "all", all(feature = "java-util-List")))]
pub fn getModifierKeys<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::util::List>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "getModifierKeys", .descriptor == "()Ljava/util/List;"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "getModifierKeys\0", "()Ljava/util/List;\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getHeight](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#getHeight())
pub fn getHeight<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "getHeight", .descriptor == "()I"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "getHeight\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getMinWidth](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#getMinWidth())
pub fn getMinWidth<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "getMinWidth", .descriptor == "()I"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "getMinWidth\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [setShifted](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#setShifted(boolean))
pub fn setShifted<'env>(&'env self, arg0: bool) -> __jni_bindgen::std::result::Result<bool, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "setShifted", .descriptor == "(Z)Z"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "setShifted\0", "(Z)Z\0");
__jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [isShifted](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#isShifted())
pub fn isShifted<'env>(&'env self) -> __jni_bindgen::std::result::Result<bool, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "isShifted", .descriptor == "()Z"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "isShifted\0", "()Z\0");
__jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getShiftKeyIndex](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#getShiftKeyIndex())
pub fn getShiftKeyIndex<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "getShiftKeyIndex", .descriptor == "()I"
unsafe {
let __jni_args = [];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "getShiftKeyIndex\0", "()I\0");
__jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// [getNearestKeys](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#getNearestKeys(int,%20int))
pub fn getNearestKeys<'env>(&'env self, arg0: i32, arg1: i32) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, __jni_bindgen::IntArray>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
// class.path == "android/inputmethodservice/Keyboard", java.flags == PUBLIC, .name == "getNearestKeys", .descriptor == "(II)[I"
unsafe {
let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0), __jni_bindgen::AsJValue::as_jvalue(&arg1)];
let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
let (__jni_class, __jni_method) = __jni_env.require_class_method("android/inputmethodservice/Keyboard\0", "getNearestKeys\0", "(II)[I\0");
__jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
}
}
/// public static final [EDGE_LEFT](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#EDGE_LEFT)
pub const EDGE_LEFT : i32 = 1;
/// public static final [EDGE_RIGHT](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#EDGE_RIGHT)
pub const EDGE_RIGHT : i32 = 2;
/// public static final [EDGE_TOP](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#EDGE_TOP)
pub const EDGE_TOP : i32 = 4;
/// public static final [EDGE_BOTTOM](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#EDGE_BOTTOM)
pub const EDGE_BOTTOM : i32 = 8;
/// public static final [KEYCODE_SHIFT](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#KEYCODE_SHIFT)
pub const KEYCODE_SHIFT : i32 = -1;
/// public static final [KEYCODE_MODE_CHANGE](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#KEYCODE_MODE_CHANGE)
pub const KEYCODE_MODE_CHANGE : i32 = -2;
/// public static final [KEYCODE_CANCEL](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#KEYCODE_CANCEL)
pub const KEYCODE_CANCEL : i32 = -3;
/// public static final [KEYCODE_DONE](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#KEYCODE_DONE)
pub const KEYCODE_DONE : i32 = -4;
/// public static final [KEYCODE_DELETE](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#KEYCODE_DELETE)
pub const KEYCODE_DELETE : i32 = -5;
/// public static final [KEYCODE_ALT](https://developer.android.com/reference/android/inputmethodservice/Keyboard.html#KEYCODE_ALT)
pub const KEYCODE_ALT : i32 = -6;
}
}