mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
18 lines
539 B
C
18 lines
539 B
C
|
/* ******************************** */
|
||
|
/* Warning! Don't modify this file! */
|
||
|
/* ******************************** */
|
||
|
#ifndef __pika_lvgl_checkbox__H
|
||
|
#define __pika_lvgl_checkbox__H
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "PikaObj.h"
|
||
|
|
||
|
PikaObj *New_pika_lvgl_checkbox(Args *args);
|
||
|
|
||
|
void pika_lvgl_checkbox___init__(PikaObj *self, PikaObj* parent);
|
||
|
char* pika_lvgl_checkbox_get_text(PikaObj *self);
|
||
|
void pika_lvgl_checkbox_set_text(PikaObj *self, char* txt);
|
||
|
void pika_lvgl_checkbox_set_text_static(PikaObj *self, char* txt);
|
||
|
|
||
|
#endif
|