add checkbox and radiobox demo to periodic table
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-04-22 14:28:28 +09:00
commit 2369b96091
6 changed files with 55 additions and 14 deletions

View file

@ -191,7 +191,7 @@ static void MWAPI color_picker_click(MwWidget handle, void* user, void* call) {
MwSetText(picker->color_display_text, MwNtext, hexColor);
}
static void MWAPI color_picker_on_change_value(MwWidget handle, void* user,
void* call) {
void* call) {
color_picker_t* picker = user;
int value = MwGetInteger(handle, MwNvalue);
@ -207,7 +207,7 @@ static void MWAPI color_picker_on_change_value(MwWidget handle, void* user,
}
static void MWAPI color_picker_tick(MwWidget handle, void* user,
void* call) {
void* call) {
color_picker_t* picker = user;
(void)handle;
@ -225,7 +225,7 @@ static void color_picker_destroy(color_picker_t* picker) {
}
static void MWAPI color_picker_close(MwWidget handle, void* user,
void* call) {
void* call) {
color_picker_t* picker = user;
(void)call;
@ -235,7 +235,7 @@ static void MWAPI color_picker_close(MwWidget handle, void* user,
}
static void MWAPI color_display_text_change(MwWidget handle, void* user,
void* call) {
void* call) {
color_picker_t* picker = user;
char hexColor[9];
char fgColor[9];
@ -266,7 +266,7 @@ static void MWAPI color_display_text_change(MwWidget handle, void* user,
}
static void MWAPI color_picker_finish(MwWidget handle, void* user,
void* call) {
void* call) {
color_picker_t* picker = user;
(void)call;