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
/// C++ type: <span style='color: green;'>```Qt3DInput::QKeyboardDevice```</span>
///
/// <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html">C++ documentation:</a> <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'><p><a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html">QKeyboardDevice</a> is in charge of dispatching keyboard events to attached QQKeyboardHandler objects.</p></div>
#[repr(C)]
pub struct KeyboardDevice(u8);

impl KeyboardDevice {
  /// C++ method: <span style='color: green;'>```Qt3DInput::QKeyboardHandler* Qt3DInput::QKeyboardDevice::activeInput() const```</span>
  ///
  /// <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html#activeInput-prop">C++ documentation:</a> <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'><p>Holds the active <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboardhandler.html">QKeyboardHandler</a> of the device.</p>
  /// <p><b>Access functions:</b></p>
  /// <div class="table"><table class="alignedsummary">
  /// <tbody><tr><td class="memItemLeft topAlign rightAlign"> QKeyboardHandler *</td><td class="memItemRight bottomAlign"><span class="name"><b>activeInput</b></span>() const</td></tr>
  /// </tbody></table></div>
  /// <p><b>Notifier signal:</b></p>
  /// <div class="table"><table class="alignedsummary">
  /// <tbody><tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><span class="name"><b>activeInputChanged</b></span>(QKeyboardHandler *<i>activeInput</i>)</td></tr>
  /// </tbody></table></div></div>
  pub fn active_input(&self) -> *mut ::keyboard_handler::KeyboardHandler {
    unsafe {
      ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_activeInput(self as *const ::keyboard_device::KeyboardDevice)
    }
  }

  /// C++ method: <span style='color: green;'>```virtual int Qt3DInput::QKeyboardDevice::axisCount() const```</span>
  ///
  /// <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html#axisCount">C++ documentation:</a> <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'><p>Reimplemented from <a href="http://doc.qt.io/qt-5/qt3dinput-qabstractphysicaldevice.html#axisCount">QAbstractPhysicalDevice::axisCount</a>().</p>
  /// <p>Returns the axis count.</p>
  /// <p><b>Note: </b>Currently always returns zero.</p></div>
  pub fn axis_count(&self) -> ::libc::c_int {
    unsafe {
      ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_axisCount(self as *const ::keyboard_device::KeyboardDevice)
    }
  }

  /// C++ method: <span style='color: green;'>```virtual int Qt3DInput::QKeyboardDevice::axisIdentifier(const QString& name) const```</span>
  ///
  /// <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html#axisIdentifier">C++ documentation:</a> <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'><p>Reimplemented from <a href="http://doc.qt.io/qt-5/qt3dinput-qabstractphysicaldevice.html#axisIdentifier">QAbstractPhysicalDevice::axisIdentifier</a>().</p>
  /// <p>Returns the axisIdentifier matching the <i>name</i>.</p></div>
  pub fn axis_identifier(&self, name: &::qt_core::string::String) -> ::libc::c_int {
    unsafe {
      ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_axisIdentifier(self as *const ::keyboard_device::KeyboardDevice,
                                                                    name as *const ::qt_core::string::String)
    }
  }

  /// C++ method: <span style='color: green;'>```virtual QStringList Qt3DInput::QKeyboardDevice::axisNames() const```</span>
  ///
  /// <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html#axisNames">C++ documentation:</a> <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'><p>Reimplemented from <a href="http://doc.qt.io/qt-5/qt3dinput-qabstractphysicaldevice.html#axisNames">QAbstractPhysicalDevice::axisNames</a>().</p>
  /// <p>Returns the axis names.</p>
  /// <p><b>Note: </b>Currently always returns empty <a href="http://doc.qt.io/qt-5/qstringlist.html">QStringList</a>.</p></div>
  pub fn axis_names(&self) -> ::qt_core::string_list::StringList {
    {
      let mut object: ::qt_core::string_list::StringList =
        unsafe { ::cpp_utils::new_uninitialized::NewUninitialized::new_uninitialized() };
      unsafe {
        ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_axisNames_to_output(self as *const ::keyboard_device::KeyboardDevice, &mut object);
      }
      object
    }
  }

  /// C++ method: <span style='color: green;'>```virtual int Qt3DInput::QKeyboardDevice::buttonCount() const```</span>
  ///
  /// <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html#buttonCount">C++ documentation:</a> <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'><p>Reimplemented from <a href="http://doc.qt.io/qt-5/qt3dinput-qabstractphysicaldevice.html#buttonCount">QAbstractPhysicalDevice::buttonCount</a>().</p>
  /// <p>Returns the button count.</p></div>
  pub fn button_count(&self) -> ::libc::c_int {
    unsafe {
      ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_buttonCount(self as *const ::keyboard_device::KeyboardDevice)
    }
  }

  /// C++ method: <span style='color: green;'>```virtual int Qt3DInput::QKeyboardDevice::buttonIdentifier(const QString& name) const```</span>
  ///
  /// <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html#buttonIdentifier">C++ documentation:</a> <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'><p>Reimplemented from <a href="http://doc.qt.io/qt-5/qt3dinput-qabstractphysicaldevice.html#buttonIdentifier">QAbstractPhysicalDevice::buttonIdentifier</a>().</p>
  /// <p>Returns the buttonIdentifier matching the <i>name</i>.</p></div>
  pub fn button_identifier(&self, name: &::qt_core::string::String) -> ::libc::c_int {
    unsafe {
      ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_buttonIdentifier(self as *const ::keyboard_device::KeyboardDevice, name as *const ::qt_core::string::String)
    }
  }

  /// C++ method: <span style='color: green;'>```virtual QStringList Qt3DInput::QKeyboardDevice::buttonNames() const```</span>
  ///
  /// <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html#buttonNames">C++ documentation:</a> <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'><p>Reimplemented from <a href="http://doc.qt.io/qt-5/qt3dinput-qabstractphysicaldevice.html#buttonNames">QAbstractPhysicalDevice::buttonNames</a>().</p>
  /// <p>Returns the button names.</p></div>
  pub fn button_names(&self) -> ::qt_core::string_list::StringList {
    {
      let mut object: ::qt_core::string_list::StringList =
        unsafe { ::cpp_utils::new_uninitialized::NewUninitialized::new_uninitialized() };
      unsafe {
        ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_buttonNames_to_output(self as *const ::keyboard_device::KeyboardDevice, &mut object);
      }
      object
    }
  }

  /// C++ method: <span style='color: green;'>```virtual const QMetaObject* Qt3DInput::QKeyboardDevice::metaObject() const```</span>
  ///
  ///
  pub fn meta_object(&self) -> *const ::qt_core::meta_object::MetaObject {
    unsafe {
      ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_metaObject(self as *const ::keyboard_device::KeyboardDevice)
    }
  }

  /// C++ method: <span style='color: green;'>```[constructor] void Qt3DInput::QKeyboardDevice::QKeyboardDevice()```</span>
  ///
  /// <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html#QKeyboardDevice">C++ documentation:</a> <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'><p>Constructs a new <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html">QKeyboardDevice</a> instance with <i>parent</i>.</p></div>
  pub fn new() -> ::cpp_utils::CppBox<::keyboard_device::KeyboardDevice> {
    let ffi_result = unsafe { ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_new_no_args() };
    unsafe { ::cpp_utils::CppBox::new(ffi_result) }
  }

  /// C++ method: <span style='color: green;'>```[constructor] void Qt3DInput::QKeyboardDevice::QKeyboardDevice(Qt3DCore::QNode* parent = ?)```</span>
  ///
  /// <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html#QKeyboardDevice">C++ documentation:</a> <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'><p>Constructs a new <a href="http://doc.qt.io/qt-5/qt3dinput-qkeyboarddevice.html">QKeyboardDevice</a> instance with <i>parent</i>.</p></div>
  pub unsafe fn new_unsafe(parent: *mut ::qt_3d_core::node::Node)
                           -> ::cpp_utils::CppBox<::keyboard_device::KeyboardDevice> {
    let ffi_result = ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_new_parent(parent);
    ::cpp_utils::CppBox::new(ffi_result)
  }

  /// C++ method: <span style='color: green;'>```virtual int Qt3DInput::QKeyboardDevice::qt_metacall(QMetaObject::Call arg1, int arg2, void** arg3)```</span>
  ///
  ///
  pub unsafe fn qt_metacall(&mut self,
                            arg1: ::qt_core::meta_object::Call,
                            arg2: ::libc::c_int,
                            arg3: *mut *mut ::libc::c_void)
                            -> ::libc::c_int {
    ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_qt_metacall(self as *mut ::keyboard_device::KeyboardDevice,
                                                               arg1,
                                                               arg2,
                                                               arg3)
  }

  /// C++ method: <span style='color: green;'>```virtual void* Qt3DInput::QKeyboardDevice::qt_metacast(const char* arg1)```</span>
  ///
  ///
  pub unsafe fn qt_metacast(&mut self, arg1: *const ::libc::c_char) -> *mut ::libc::c_void {
    ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_qt_metacast(self as *mut ::keyboard_device::KeyboardDevice, arg1)
  }

  /// C++ method: <span style='color: green;'>```static QString Qt3DInput::QKeyboardDevice::tr(const char* s, const char* c, int n)```</span>
  ///
  ///
  pub unsafe fn tr(s: *const ::libc::c_char, c: *const ::libc::c_char, n: ::libc::c_int) -> ::qt_core::string::String {
    {
      let mut object: ::qt_core::string::String =
        ::cpp_utils::new_uninitialized::NewUninitialized::new_uninitialized();
      ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_tr_to_output(s, c, n, &mut object);
      object
    }
  }

  /// C++ method: <span style='color: green;'>```static QString Qt3DInput::QKeyboardDevice::trUtf8(const char* s, const char* c, int n)```</span>
  ///
  ///
  pub unsafe fn tr_utf8(s: *const ::libc::c_char,
                        c: *const ::libc::c_char,
                        n: ::libc::c_int)
                        -> ::qt_core::string::String {
    {
      let mut object: ::qt_core::string::String =
        ::cpp_utils::new_uninitialized::NewUninitialized::new_uninitialized();
      ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_trUtf8_to_output(s, c, n, &mut object);
      object
    }
  }
}

impl ::cpp_utils::CppDeletable for ::keyboard_device::KeyboardDevice {
  fn deleter() -> ::cpp_utils::Deleter<Self> {
    ::ffi::qt_3d_input_c_Qt3DInput_QKeyboardDevice_delete
  }
}

/// Types for accessing built-in Qt signals and slots present in this module
pub mod connection {
  use ::cpp_utils::StaticCast;
  /// Provides access to built-in Qt signals of `KeyboardDevice`.
  pub struct Signals<'a>(&'a ::keyboard_device::KeyboardDevice);
  /// Represents a built-in Qt signal `Qt3DInput::QKeyboardDevice::activeInputChanged`.
  ///
  /// An object of this type can be created from `KeyboardDevice` with `object.signals().active_input_changed()` and used for creating Qt connections using `qt_core::connection` API. After the connection is made, the object can (should) be dropped. The connection will remain active until sender or receiver are destroyed or until a manual disconnection is made.
  ///
  /// An object of this type contains a reference to the original `KeyboardDevice` object.
  pub struct ActiveInputChanged<'a>(&'a ::keyboard_device::KeyboardDevice);
  impl<'a> ::qt_core::connection::Receiver for ActiveInputChanged<'a> {
    type Arguments = (*mut ::keyboard_handler::KeyboardHandler,);
    fn object(&self) -> &::qt_core::object::Object {
      self.0.static_cast()
    }
    fn receiver_id() -> &'static [u8] {
      b"2activeInputChanged(Qt3DInput::QKeyboardHandler*)\0"
    }
  }
  impl<'a> ::qt_core::connection::Signal for ActiveInputChanged<'a> {}
  impl<'a> Signals<'a> {
    /// Returns an object representing a built-in Qt signal `Qt3DInput::QKeyboardDevice::activeInputChanged`.
    ///
    /// Return value of this function can be used for creating Qt connections using `qt_core::connection` API.
    pub fn active_input_changed(&self) -> ActiveInputChanged {
      ActiveInputChanged(self.0)
    }
  }
  impl ::keyboard_device::KeyboardDevice {
    /// Provides access to built-in Qt signals of this type
    pub fn signals(&self) -> Signals {
      Signals(self)
    }
  }

}

impl ::cpp_utils::DynamicCast<::keyboard_device::KeyboardDevice> for ::abstract_physical_device::AbstractPhysicalDevice {
fn dynamic_cast_mut(&mut self) -> ::std::option::Option<&mut ::keyboard_device::KeyboardDevice> {
let ffi_result = unsafe { ::ffi::qt_3d_input_c_QKeyboardDevice_G_dynamic_cast_Qt3DInput_QKeyboardDevice_ptr(self as *mut ::abstract_physical_device::AbstractPhysicalDevice) };
unsafe { ffi_result.as_mut() }}

fn dynamic_cast(&self) -> ::std::option::Option<&::keyboard_device::KeyboardDevice> {
let ffi_result = unsafe { ::ffi::qt_3d_input_c_QKeyboardDevice_G_dynamic_cast_Qt3DInput_QKeyboardDevice_ptr(self as *const ::abstract_physical_device::AbstractPhysicalDevice as *mut ::abstract_physical_device::AbstractPhysicalDevice) };
unsafe { ffi_result.as_ref() }}

}

impl ::cpp_utils::StaticCast<::qt_3d_core::node::Node> for ::keyboard_device::KeyboardDevice {
  fn static_cast_mut(&mut self) -> &mut ::qt_3d_core::node::Node {
    let ffi_result = unsafe { ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DCore_QNode_ptr(self as *mut ::keyboard_device::KeyboardDevice) };
    unsafe { ffi_result.as_mut() }.expect("Attempted to convert null pointer to reference")
  }

  fn static_cast(&self) -> &::qt_3d_core::node::Node {
    let ffi_result = unsafe { ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DCore_QNode_ptr(self as *const ::keyboard_device::KeyboardDevice as *mut ::keyboard_device::KeyboardDevice) };
    unsafe { ffi_result.as_ref() }.expect("Attempted to convert null pointer to reference")
  }
}

impl ::cpp_utils::StaticCast<::abstract_physical_device::AbstractPhysicalDevice> for ::keyboard_device::KeyboardDevice {
fn static_cast_mut(&mut self) -> &mut ::abstract_physical_device::AbstractPhysicalDevice {
let ffi_result = unsafe { ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DInput_QAbstractPhysicalDevice_ptr(self as *mut ::keyboard_device::KeyboardDevice) };
unsafe { ffi_result.as_mut() }.expect("Attempted to convert null pointer to reference")}

fn static_cast(&self) -> &::abstract_physical_device::AbstractPhysicalDevice {
let ffi_result = unsafe { ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DInput_QAbstractPhysicalDevice_ptr(self as *const ::keyboard_device::KeyboardDevice as *mut ::keyboard_device::KeyboardDevice) };
unsafe { ffi_result.as_ref() }.expect("Attempted to convert null pointer to reference")}

}

impl ::cpp_utils::StaticCast<::qt_core::object::Object> for ::keyboard_device::KeyboardDevice {
  fn static_cast_mut(&mut self) -> &mut ::qt_core::object::Object {
    let ffi_result =
      unsafe {
        ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_QObject_ptr(self as *mut ::keyboard_device::KeyboardDevice)
      };
    unsafe { ffi_result.as_mut() }.expect("Attempted to convert null pointer to reference")
  }

  fn static_cast(&self) -> &::qt_core::object::Object {
    let ffi_result = unsafe { ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_QObject_ptr(self as *const ::keyboard_device::KeyboardDevice as *mut ::keyboard_device::KeyboardDevice) };
    unsafe { ffi_result.as_ref() }.expect("Attempted to convert null pointer to reference")
  }
}

impl ::cpp_utils::UnsafeStaticCast<::keyboard_device::KeyboardDevice> for ::qt_core::object::Object {
  unsafe fn static_cast_mut(&mut self) -> &mut ::keyboard_device::KeyboardDevice {
    let ffi_result = ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DInput_QKeyboardDevice_ptr_QObject(self as *mut ::qt_core::object::Object);
    ffi_result.as_mut().expect("Attempted to convert null pointer to reference")
  }

  unsafe fn static_cast(&self) -> &::keyboard_device::KeyboardDevice {
    let ffi_result = ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DInput_QKeyboardDevice_ptr_QObject(self as *const ::qt_core::object::Object as *mut ::qt_core::object::Object);
    ffi_result.as_ref().expect("Attempted to convert null pointer to reference")
  }
}

impl ::cpp_utils::UnsafeStaticCast<::keyboard_device::KeyboardDevice> for ::qt_3d_core::node::Node {
  unsafe fn static_cast_mut(&mut self) -> &mut ::keyboard_device::KeyboardDevice {
    let ffi_result = ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DInput_QKeyboardDevice_ptr_Qt3DCore_QNode(self as *mut ::qt_3d_core::node::Node);
    ffi_result.as_mut().expect("Attempted to convert null pointer to reference")
  }

  unsafe fn static_cast(&self) -> &::keyboard_device::KeyboardDevice {
    let ffi_result = ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DInput_QKeyboardDevice_ptr_Qt3DCore_QNode(self as *const ::qt_3d_core::node::Node as *mut ::qt_3d_core::node::Node);
    ffi_result.as_ref().expect("Attempted to convert null pointer to reference")
  }
}

impl ::cpp_utils::UnsafeStaticCast<::keyboard_device::KeyboardDevice> for ::abstract_physical_device::AbstractPhysicalDevice {
unsafe fn static_cast_mut(&mut self) -> &mut ::keyboard_device::KeyboardDevice {
let ffi_result = ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DInput_QKeyboardDevice_ptr_Qt3DInput_QAbstractPhysicalDevice(self as *mut ::abstract_physical_device::AbstractPhysicalDevice);
ffi_result.as_mut().expect("Attempted to convert null pointer to reference")}

unsafe fn static_cast(&self) -> &::keyboard_device::KeyboardDevice {
let ffi_result = ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DInput_QKeyboardDevice_ptr_Qt3DInput_QAbstractPhysicalDevice(self as *const ::abstract_physical_device::AbstractPhysicalDevice as *mut ::abstract_physical_device::AbstractPhysicalDevice);
ffi_result.as_ref().expect("Attempted to convert null pointer to reference")}

}

impl ::std::ops::Deref for ::keyboard_device::KeyboardDevice {
  type Target = ::abstract_physical_device::AbstractPhysicalDevice;
  fn deref(&self) -> &::abstract_physical_device::AbstractPhysicalDevice {
    let ffi_result = unsafe { ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DInput_QAbstractPhysicalDevice_ptr(self as *const ::keyboard_device::KeyboardDevice as *mut ::keyboard_device::KeyboardDevice) };
    unsafe { ffi_result.as_ref() }.expect("Attempted to convert null pointer to reference")
  }
}

impl ::std::ops::DerefMut for ::keyboard_device::KeyboardDevice {
  fn deref_mut(&mut self) -> &mut ::abstract_physical_device::AbstractPhysicalDevice {
    let ffi_result = unsafe { ::ffi::qt_3d_input_c_QKeyboardDevice_G_static_cast_Qt3DInput_QAbstractPhysicalDevice_ptr(self as *mut ::keyboard_device::KeyboardDevice) };
    unsafe { ffi_result.as_mut() }.expect("Attempted to convert null pointer to reference")
  }
}