Welcome to mirror list, hosted at ThFree Co, Russian Federation.

icon.h « gui « applications - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ebe40266b4bb9607d533660db555d5593eadbae4 (plain)
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
/**
 * @file icon.h
 * GUI: Icon API
 */

#pragma once

#include <stdint.h>

#ifdef __cplusplus
extern "C" {
#endif

typedef struct Icon Icon;

/** Get icon width 
 *
 * @param[in]  instance  pointer to Icon data
 *
 * @return     width in pixels
 */
uint8_t icon_get_width(const Icon* instance);

/** Get icon height
 *
 * @param[in]  instance  pointer to Icon data
 *
 * @return     height in pixels
 */
uint8_t icon_get_height(const Icon* instance);

/** Get Icon XBM bitmap data
 *
 * @param[in]  instance  pointer to Icon data
 *
 * @return     pointer to XBM bitmap data
 */
const uint8_t* icon_get_data(const Icon* instance);

#ifdef __cplusplus
}
#endif