@@ -782,7 +782,7 @@ uint8_t mui_u8g2_u8_opt_line_wa_mse_pi(mui_t *ui, uint8_t msg)
782
782
{
783
783
* value = 0 ;
784
784
mui_fds_get_nth_token (ui , * value );
785
- }
785
+ }
786
786
mui_u8g2_draw_button_utf (ui , mui_u8g2_get_draw_button_pi_flags (ui ), ui -> arg , 1 , MUI_U8G2_V_PADDING , ui -> text );
787
787
//u8g2_DrawButtonUTF8(u8g2, mui_get_x(ui), mui_get_y(ui), mui_u8g2_get_draw_button_pi_flags(ui), ui->arg, 1, MUI_U8G2_V_PADDING, ui->text);
788
788
@@ -1042,13 +1042,14 @@ uint8_t mui_u8g2_u8_opt_child_mse_common(mui_t *ui, uint8_t msg)
1042
1042
break ;
1043
1043
case MUIF_MSG_FORM_START :
1044
1044
/* we can assume that the list starts at the top. It will be adjisted by cursor down events later */
1045
- ui -> form_scroll_top = 0 ;
1045
+ /* ui->form_scroll_top = 0 and all other form_scroll values are set to 0 if a new form is entered in mui_EnterForm() */
1046
1046
if ( ui -> form_scroll_visible <= arg )
1047
1047
ui -> form_scroll_visible = arg + 1 ;
1048
1048
if ( ui -> form_scroll_total == 0 )
1049
1049
ui -> form_scroll_total = mui_GetSelectableFieldOptionCnt (ui , ui -> last_form_id , ui -> last_form_cursor_focus_position );
1050
+ //printf("MUIF_MSG_FORM_START: arg=%d visible=%d top=%d total=%d\n", arg, ui->form_scroll_visible, ui->form_scroll_top, ui->form_scroll_total);
1050
1051
break ;
1051
- case MUIF_MSG_FORM_END :
1052
+ case MUIF_MSG_FORM_END :
1052
1053
break ;
1053
1054
case MUIF_MSG_CURSOR_ENTER :
1054
1055
break ;
@@ -1063,7 +1064,7 @@ uint8_t mui_u8g2_u8_opt_child_mse_common(mui_t *ui, uint8_t msg)
1063
1064
case MUIF_MSG_TOUCH_UP :
1064
1065
break ;
1065
1066
case MUIF_MSG_EVENT_NEXT :
1066
- //printf("MUIF_MSG_EVENT_NEXT: arg=%d form_scroll_visible =%d\n", arg, ui->form_scroll_visible);
1067
+ //printf("MUIF_MSG_EVENT_NEXT: arg=%d visible =%d top=%d total=%d \n", arg, ui->form_scroll_visible, ui->form_scroll_top, ui->form_scroll_total );
1067
1068
if ( arg + 1 == ui -> form_scroll_visible )
1068
1069
{
1069
1070
if ( ui -> form_scroll_visible + ui -> form_scroll_top < ui -> form_scroll_total )
@@ -1096,7 +1097,7 @@ uint8_t mui_u8g2_u8_opt_child_mse_common(mui_t *ui, uint8_t msg)
1096
1097
}
1097
1098
1098
1099
1099
- uint8_t mui_u8g2_u8_opt_child_wm_mse_pi (mui_t * ui , uint8_t msg )
1100
+ uint8_t mui_u8g2_u8_opt_radio_child_wm_mse_pi (mui_t * ui , uint8_t msg )
1100
1101
{
1101
1102
u8g2_t * u8g2 = mui_get_U8g2 (ui );
1102
1103
uint8_t * value = (uint8_t * )muif_get_data (ui -> uif );
@@ -1141,7 +1142,7 @@ uint8_t mui_u8g2_u8_opt_child_wm_mse_pi(mui_t *ui, uint8_t msg)
1141
1142
}
1142
1143
1143
1144
1144
- uint8_t mui_u8g2_u8_opt_child_w1_mse_pi (mui_t * ui , uint8_t msg )
1145
+ uint8_t mui_u8g2_u8_opt_radio_child_w1_mse_pi (mui_t * ui , uint8_t msg )
1145
1146
{
1146
1147
u8g2_t * u8g2 = mui_get_U8g2 (ui );
1147
1148
uint8_t * value = (uint8_t * )muif_get_data (ui -> uif );
@@ -1186,6 +1187,45 @@ uint8_t mui_u8g2_u8_opt_child_w1_mse_pi(mui_t *ui, uint8_t msg)
1186
1187
return 0 ;
1187
1188
}
1188
1189
1190
+
1191
+ uint8_t mui_u8g2_u8_opt_child_wm_mse_pi (mui_t * ui , uint8_t msg )
1192
+ {
1193
+ u8g2_t * u8g2 = mui_get_U8g2 (ui );
1194
+ //uint8_t *value = (uint8_t *)muif_get_data(ui->uif);
1195
+ uint8_t arg = ui -> arg ; // remember the arg value, because it might be overwritten
1196
+
1197
+ switch (msg )
1198
+ {
1199
+ case MUIF_MSG_DRAW :
1200
+ {
1201
+ //u8g2_uint_t w = 0;
1202
+ u8g2_uint_t x = mui_get_x (ui ); // if mui_GetSelectableFieldTextOption is called, then field vars are overwritten, so get the value
1203
+ u8g2_uint_t y = mui_get_y (ui ); // if mui_GetSelectableFieldTextOption is called, then field vars are overwritten, so get the value
1204
+ uint8_t flags = mui_u8g2_get_draw_button_pi_flags (ui );
1205
+ //if ( mui_IsCursorFocus(ui) )
1206
+ //{
1207
+ // flags = U8G2_BTN_INV;
1208
+ //}
1209
+
1210
+ if ( ui -> text [0 ] == '\0' )
1211
+ {
1212
+ /* if the text is not provided, then try to get the text from the previous (saved) element, assuming that this contains the selection */
1213
+ /* this will overwrite all ui member functions, so we must not access any ui members (except ui->text) any more */
1214
+ mui_GetSelectableFieldTextOption (ui , ui -> last_form_id , ui -> last_form_cursor_focus_position , arg + ui -> form_scroll_top );
1215
+ }
1216
+ if ( ui -> text [0 ] != '\0' )
1217
+ {
1218
+ u8g2_DrawButtonUTF8 (u8g2 , x , y , flags , 0 , 1 , MUI_U8G2_V_PADDING , ui -> text );
1219
+ }
1220
+ }
1221
+ break ;
1222
+ default :
1223
+ return mui_u8g2_u8_opt_child_mse_common (ui , msg );
1224
+ }
1225
+ return 0 ;
1226
+ }
1227
+
1228
+
1189
1229
/*
1190
1230
data: mui_u8g2_list_t *
1191
1231
*/
@@ -1424,3 +1464,31 @@ uint8_t mui_u8g2_u16_list_child_w1_mse_pi(mui_t *ui, uint8_t msg)
1424
1464
}
1425
1465
return 0 ;
1426
1466
}
1467
+
1468
+ uint8_t mui_u8g2_u16_list_goto_w1_mse_pi (mui_t * ui , uint8_t msg )
1469
+ {
1470
+ u8g2_t * u8g2 = mui_get_U8g2 (ui );
1471
+ mui_u8g2_list_t * list = (mui_u8g2_list_t * )muif_get_data (ui -> uif );
1472
+ uint16_t * selection = mui_u8g2_list_get_selection_ptr (list );
1473
+ void * data = mui_u8g2_list_get_data_ptr (list );
1474
+ mui_u8g2_get_list_element_cb element_cb = mui_u8g2_list_get_element_cb (list );
1475
+ //mui_u8g2_get_list_count_cb count_cb = mui_u8g2_list_get_count_cb(list);
1476
+
1477
+ uint16_t pos = ui -> arg ; // remember the arg value, because it might be overwritten
1478
+ pos += ui -> form_scroll_top ;
1479
+
1480
+ switch (msg )
1481
+ {
1482
+ case MUIF_MSG_DRAW :
1483
+ mui_u8g2_draw_button_utf (ui , mui_u8g2_get_draw_button_pi_flags (ui ), u8g2_GetDisplayWidth (u8g2 ), 1 , MUI_U8G2_V_PADDING , element_cb (data , pos )+ 1 );
1484
+ break ;
1485
+ case MUIF_MSG_CURSOR_SELECT :
1486
+ if ( selection != NULL )
1487
+ * selection = pos ;
1488
+ mui_GotoForm (ui , (uint8_t )element_cb (data , pos )[0 ], 0 );
1489
+ break ;
1490
+ default :
1491
+ return mui_u8g2_u16_list_child_mse_common (ui , msg );
1492
+ }
1493
+ return 0 ;
1494
+ }
0 commit comments