arkui-sys 0.3.4

Bindings to the native ArkUI API of OpenHarmony
Documentation
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
// automatically generated by rust-bindgen 0.71.1

#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
use crate::native_type::*;
pub use ohos_sys_opaque_types::OH_PixelmapNative;

/// Defines the drawable descriptor.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[repr(C)]
pub struct ArkUI_DrawableDescriptor {
    _unused: [u8; 0],
}
/// Defines the pointer to OH_PixelmapNative.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub type OH_PixelmapNativeHandle = *mut OH_PixelmapNative;
/// Defines the animation controller of arkui drawable descriptor.
///
///
/// Available since API-level: 22
#[cfg(feature = "api-22")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
#[repr(C)]
pub struct ArkUI_DrawableDescriptor_AnimationController {
    _unused: [u8; 0],
}
#[cfg(feature = "api-22")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
impl DrawableDescriptor_AnimationStatus {
    /// animation is initial.
    pub const DRAWABLE_DESCRIPTOR_ANIMATION_STATUS_INITIAL: DrawableDescriptor_AnimationStatus =
        DrawableDescriptor_AnimationStatus(0);
    /// animation is playing.
    pub const DRAWABLE_DESCRIPTOR_ANIMATION_STATUS_RUNNING: DrawableDescriptor_AnimationStatus =
        DrawableDescriptor_AnimationStatus(1);
    /// animation is paused.
    pub const DRAWABLE_DESCRIPTOR_ANIMATION_STATUS_PAUSED: DrawableDescriptor_AnimationStatus =
        DrawableDescriptor_AnimationStatus(2);
    /// animation is stopped.
    pub const DRAWABLE_DESCRIPTOR_ANIMATION_STATUS_STOPPED: DrawableDescriptor_AnimationStatus =
        DrawableDescriptor_AnimationStatus(3);
}
#[repr(transparent)]
/// Defines the animation status of the drawable descriptor.
///
///
/// Available since API-level: 22
#[cfg(feature = "api-22")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
pub struct DrawableDescriptor_AnimationStatus(pub ::core::ffi::c_uint);
extern "C" {
    /// Creates a DrawableDescriptor from a Pixelmap.
    ///
    /// # Arguments
    ///
    /// * `pixelMap` - Indicates the pointer to a Pixelmap
    ///
    /// # Returns
    ///
    /// * Returns the pointer to the drawableDescriptor.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_DrawableDescriptor_CreateFromPixelMap(
        pixelMap: OH_PixelmapNativeHandle,
    ) -> *mut ArkUI_DrawableDescriptor;
    /// Creates a DrawableDescriptor from a Pixelmap array.
    ///
    /// # Arguments
    ///
    /// * `array` - Indicates the pointer to a Pixelmap array.
    ///
    /// * `size` - Indicates the size of the Pixelmap array.
    ///
    /// # Returns
    ///
    /// * Returns the pointer to the drawableDescriptor.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_DrawableDescriptor_CreateFromAnimatedPixelMap(
        array: *mut OH_PixelmapNativeHandle,
        size: i32,
    ) -> *mut ArkUI_DrawableDescriptor;
    /// Destroys the pointer to the drawableDescriptor.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_DrawableDescriptor_Dispose(drawableDescriptor: *mut ArkUI_DrawableDescriptor);
    /// Obtains the Pixelmap object.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// # Returns
    ///
    /// * Returns the pointer to the PixelMap.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_DrawableDescriptor_GetStaticPixelMap(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
    ) -> OH_PixelmapNativeHandle;
    /// Obtains the Pixelmap array used to play the animation.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// # Returns
    ///
    /// * Returns the pointer to the PixelMap array.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_DrawableDescriptor_GetAnimatedPixelMapArray(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
    ) -> *mut OH_PixelmapNativeHandle;
    /// Obtains the size of the Pixelmap array used to play the animation.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// # Returns
    ///
    /// * Returns the size of the Pixelmap array.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_DrawableDescriptor_GetAnimatedPixelMapArraySize(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
    ) -> i32;
    /// Sets the total playback duration.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// * `duration` - Indicates the total playback duration. The unit is millisecond.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_DrawableDescriptor_SetAnimationDuration(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
        duration: i32,
    );
    /// Obtains the total playback duration.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// # Returns
    ///
    /// * Return the total playback duration. The unit is millisecond.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_DrawableDescriptor_GetAnimationDuration(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
    ) -> i32;
    /// Sets the number of playback times.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// * `iteration` - Indicates the number of playback times.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_DrawableDescriptor_SetAnimationIteration(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
        iteration: i32,
    );
    /// Obtains the number of playback times.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// # Returns
    ///
    /// * Returns the number of playback times.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_DrawableDescriptor_GetAnimationIteration(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
    ) -> i32;
    /// Sets the frame duration array.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// * `durations` - Indicates the pointer to the frame duration array.
    ///
    /// * `size` - Indicates the size of the frame duration array.
    ///
    /// # Returns
    ///
    /// * Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if the operation is successful;
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter error occurs.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_SetAnimationFrameDurations(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
        durations: *mut u32,
        size: usize,
    ) -> i32;
    /// Obtains the frame duration array.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// * `durations` - Indicates the pointer to the frame duration array.
    ///
    /// * `size` - Indicates the size of the frame duration array.
    ///
    /// # Returns
    ///
    /// * Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if the operation is successful;
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter error occurs.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_GetAnimationFrameDurations(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
        durations: *mut u32,
        size: *mut usize,
    ) -> i32;
    /// Sets whether to play the animation automatically.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// * `autoPlay` - Indicates whether to play the animation automatically.
    /// default value is 1, which means to play the animation automatically.
    /// value 0 means not to play the animation automatically.
    ///
    /// # Returns
    ///
    /// * Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if the operation is successful;
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter error occurs.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_SetAnimationAutoPlay(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
        autoPlay: u32,
    ) -> i32;
    /// Obtains whether to play the animation automatically.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// * `autoPlay` - Indicates whether to play the animation automatically.
    ///
    /// # Returns
    ///
    /// * Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if the operation is successful;
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter error occurs.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_GetAnimationAutoPlay(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
        autoPlay: *mut u32,
    ) -> i32;
    /// Obtains the animation controller.
    ///
    /// # Arguments
    ///
    /// * `drawableDescriptor` - Indicates the pointer to the drawableDescriptor.
    ///
    /// * `node` - Indicates the node handle.
    ///
    /// * `controller` - Indicates the pointer to the animation controller.
    ///
    /// # Returns
    ///
    /// * Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if the operation is successful;
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter error occurs.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_CreateAnimationController(
        drawableDescriptor: *mut ArkUI_DrawableDescriptor,
        node: ArkUI_NodeHandle,
        controller: *mut *mut ArkUI_DrawableDescriptor_AnimationController,
    ) -> i32;
    /// Releases the animation controller.
    ///
    /// # Arguments
    ///
    /// * `controller` - Indicates the pointer to the animation controller.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_DisposeAnimationController(
        controller: *mut ArkUI_DrawableDescriptor_AnimationController,
    );
    /// Starts the animation from first frame.
    ///
    /// # Arguments
    ///
    /// * `controller` - Indicates the pointer to the animation controller.
    ///
    /// # Returns
    ///
    /// * Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if the operation is successful;
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter error occurs.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_StartAnimation(
        controller: *mut ArkUI_DrawableDescriptor_AnimationController,
    ) -> i32;
    /// Stops the animation and back to first frame.
    ///
    /// # Arguments
    ///
    /// * `controller` - Indicates the pointer to the animation controller.
    ///
    /// # Returns
    ///
    /// * Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if the operation is successful;
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter error occurs.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_StopAnimation(
        controller: *mut ArkUI_DrawableDescriptor_AnimationController,
    ) -> i32;
    /// Resumes the animation at the current frame.
    ///
    /// # Arguments
    ///
    /// * `controller` - Indicates the pointer to the animation controller.
    ///
    /// # Returns
    ///
    /// * Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if the operation is successful;
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter error occurs.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_ResumeAnimation(
        controller: *mut ArkUI_DrawableDescriptor_AnimationController,
    ) -> i32;
    /// Pauses the animation at the current frame.
    ///
    /// # Arguments
    ///
    /// * `controller` - Indicates the pointer to the animation controller.
    ///
    /// # Returns
    ///
    /// * Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if the operation is successful;
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter error occurs.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_PauseAnimation(
        controller: *mut ArkUI_DrawableDescriptor_AnimationController,
    ) -> i32;
    /// Obtains the animation playback status.
    ///
    /// # Arguments
    ///
    /// * `controller` - Indicates the pointer to the animation controller.
    ///
    /// * `status` - Indicates the pointer to the animation playback status.
    ///
    /// # Returns
    ///
    /// * Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if the operation is successful;
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter error occurs.
    ///
    /// Available since API-level: 22
    #[cfg(feature = "api-22")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-22")))]
    pub fn OH_ArkUI_DrawableDescriptor_GetAnimationStatus(
        controller: *mut ArkUI_DrawableDescriptor_AnimationController,
        status: *mut DrawableDescriptor_AnimationStatus,
    ) -> i32;
}