add checkbox and radiobox demo to periodic table
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
This commit is contained in:
parent
65f16f3144
commit
2369b96091
6 changed files with 55 additions and 14 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue