Skip to content

Commit 716d7ad

Browse files
committed
2.31.2
1 parent c232065 commit 716d7ad

File tree

6 files changed

+89
-10
lines changed

6 files changed

+89
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ Description: https://github.com/olikraus/u8g2/wiki
88

99
Issue Tracker: https://github.com/olikraus/u8g2/issues
1010

11-
Download (2.31.1): https://github.com/olikraus/U8g2_Arduino/archive/master.zip
11+
Download (2.31.2): https://github.com/olikraus/U8g2_Arduino/archive/master.zip
1212

extras/ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -271,3 +271,6 @@ https://github.com/olikraus/u8g2 ChangeLog
271271
* Bugfix drawButtonUTF8 (added C++ code, issue 1577)
272272
2021-09-19 v2.31.1 [email protected]
273273
* Added icons from https://app.streamlinehq.com/icons/pixel (issue 1589)
274+
2021-09-20 v2.31.2 [email protected]
275+
* Bugfix release for include error (issues 1592 and 1594)
276+

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=U8g2
2-
version=2.31.1
2+
version=2.31.2
33
author=oliver <[email protected]>
44
maintainer=oliver <[email protected]>
55
sentence=Monochrome LCD, OLED and eInk Library. Display controller: SSD1305, SSD1306, SSD1309, SSD1316, SSD1320, SSD1322, SSD1325, SSD1327, SSD1329, SSD1606, SSD1607, SH1106, SH1107, SH1108, SH1122, T6963, RA8835, LC7981, PCD8544, PCF8812, HX1230, UC1601, UC1604, UC1608, UC1610, UC1611, UC1617, UC1638, UC1701, ST7511, ST7528, ST7565, ST7567, ST7571, ST7586, ST7588, ST75256, ST75320, NT7534, ST7920, IST3020, IST7920, LD7032, KS0108, KS0713, HD44102, T7932, SED1520, SBN1661, IL3820, MAX7219. Interfaces: I2C, SPI, Parallel.

src/clib/mui.c

+5
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,11 @@ void mui_EnterForm(mui_t *ui, fds_t *fds, uint8_t initial_cursor_position)
717717
ui->touch_focus_fds = NULL;
718718
ui->cursor_focus_fds = NULL;
719719

720+
/* reset all the scoll values */
721+
ui->form_scroll_top = 0;
722+
ui->form_scroll_visible = 0;
723+
ui->form_scroll_total = 0;
724+
720725
/* assign the form, which should be entered */
721726
ui->current_form_fds = fds;
722727

src/clib/mui_u8g2.c

+74-6
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ uint8_t mui_u8g2_u8_opt_line_wa_mse_pi(mui_t *ui, uint8_t msg)
782782
{
783783
*value = 0;
784784
mui_fds_get_nth_token(ui, *value);
785-
}
785+
}
786786
mui_u8g2_draw_button_utf(ui, mui_u8g2_get_draw_button_pi_flags(ui), ui->arg, 1, MUI_U8G2_V_PADDING, ui->text);
787787
//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);
788788

@@ -1042,13 +1042,14 @@ uint8_t mui_u8g2_u8_opt_child_mse_common(mui_t *ui, uint8_t msg)
10421042
break;
10431043
case MUIF_MSG_FORM_START:
10441044
/* 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() */
10461046
if ( ui->form_scroll_visible <= arg )
10471047
ui->form_scroll_visible = arg+1;
10481048
if ( ui->form_scroll_total == 0 )
10491049
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);
10501051
break;
1051-
case MUIF_MSG_FORM_END:
1052+
case MUIF_MSG_FORM_END:
10521053
break;
10531054
case MUIF_MSG_CURSOR_ENTER:
10541055
break;
@@ -1063,7 +1064,7 @@ uint8_t mui_u8g2_u8_opt_child_mse_common(mui_t *ui, uint8_t msg)
10631064
case MUIF_MSG_TOUCH_UP:
10641065
break;
10651066
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);
10671068
if ( arg+1 == ui->form_scroll_visible )
10681069
{
10691070
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)
10961097
}
10971098

10981099

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)
11001101
{
11011102
u8g2_t *u8g2 = mui_get_U8g2(ui);
11021103
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)
11411142
}
11421143

11431144

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)
11451146
{
11461147
u8g2_t *u8g2 = mui_get_U8g2(ui);
11471148
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)
11861187
return 0;
11871188
}
11881189

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+
11891229
/*
11901230
data: mui_u8g2_list_t *
11911231
*/
@@ -1424,3 +1464,31 @@ uint8_t mui_u8g2_u16_list_child_w1_mse_pi(mui_t *ui, uint8_t msg)
14241464
}
14251465
return 0;
14261466
}
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+
}

src/clib/mui_u8g2.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#ifndef MUI_U8G2_H
3939
#define MUI_U8G2_H
4040

41-
#include <mui.h>
41+
#include "mui.h"
4242

4343
/*==========================================*/
4444
/* C++ compatible */
@@ -130,8 +130,9 @@ uint8_t mui_u8g2_u8_opt_line_wa_mse_pi(mui_t *ui, uint8_t msg);
130130
uint8_t mui_u8g2_u8_opt_line_wa_mud_pi(mui_t *ui, uint8_t msg);
131131

132132
uint8_t mui_u8g2_u8_opt_parent_wm_mse_pi(mui_t *ui, uint8_t msg);
133+
uint8_t mui_u8g2_u8_opt_radio_child_wm_mse_pi(mui_t *ui, uint8_t msg);
134+
uint8_t mui_u8g2_u8_opt_radio_child_w1_mse_pi(mui_t *ui, uint8_t msg);
133135
uint8_t mui_u8g2_u8_opt_child_wm_mse_pi(mui_t *ui, uint8_t msg);
134-
uint8_t mui_u8g2_u8_opt_child_w1_mse_pi(mui_t *ui, uint8_t msg);
135136

136137
uint8_t mui_u8g2_u8_chkbox_wm_pi(mui_t *ui, uint8_t msg);
137138
uint8_t mui_u8g2_u8_radio_wm_pi(mui_t *ui, uint8_t msg);
@@ -165,6 +166,8 @@ uint8_t mui_u8g2_u16_list_line_wa_mud_pi(mui_t *ui, uint8_t msg);
165166
uint8_t mui_u8g2_u16_list_parent_wm_mse_pi(mui_t *ui, uint8_t msg);
166167
uint8_t mui_u8g2_u16_list_child_w1_mse_pi(mui_t *ui, uint8_t msg);
167168

169+
uint8_t mui_u8g2_u16_list_goto_w1_mse_pi(mui_t *ui, uint8_t msg); /* first char of the string denotes the target form */
170+
168171

169172
#ifdef __cplusplus
170173
}

0 commit comments

Comments
 (0)