Searched refs:screen_height (Results 1 – 5 of 5) sorted by relevance
/Zephyr-latest/include/zephyr/input/ |
D | input_touch.h | 39 uint32_t screen_height; member 53 .screen_height = DT_PROP(node_id, screen_height), \
|
/Zephyr-latest/drivers/input/ |
D | input_touch.c | 16 const uint32_t reported_y = cfg->inverted_y ? cfg->screen_height - y : y; in input_touchscreen_report_pos()
|
D | input_stmpe811.c | 341 if (common->screen_width > 0 && common->screen_height > 0) { in stmpe811_report_touch() 344 y = (((int)data->touch_y - config->raw_y_min) * common->screen_height) / in stmpe811_report_touch() 348 y = CLAMP(y, 0, common->screen_height); in stmpe811_report_touch()
|
/Zephyr-latest/scripts/kconfig/ |
D | menuconfig.py | 1040 screen_height, screen_width = _stdscr.getmaxyx() 1049 menu_win_height = screen_height - help_win_height - 3 1770 screen_height, screen_width = _stdscr.getmaxyx() 1775 win_height = min(win_height, screen_height) 1783 win.mvwin((screen_height - win_height)//2, 1971 screen_height, screen_width = _stdscr.getmaxyx() 1975 win_height = min(len(lines) + 4, screen_height) 1979 win.mvwin((screen_height - win_height)//2, 2257 screen_height, screen_width = _stdscr.getmaxyx() 2262 matches_win_height = screen_height - help_win_height - 4 [all …]
|
D | guiconfig.py | 1276 screen_height = _root.winfo_screenheight() 1286 if y + dialog_height > screen_height: 1287 y = screen_height - dialog_height
|