summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/action.c55
-rw-r--r--apps/menus/display_menu.c2
-rw-r--r--apps/settings.c2
3 files changed, 41 insertions, 18 deletions
diff --git a/apps/action.c b/apps/action.c
index cde57441e7..055171174b 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -59,20 +59,6 @@ static int unlock_combo = BUTTON_NONE;
59static bool screen_has_lock = false; 59static bool screen_has_lock = false;
60#endif /* HAVE_SOFTWARE_KEYLOCK */ 60#endif /* HAVE_SOFTWARE_KEYLOCK */
61 61
62#if defined(HAVE_LCD_BITMAP) && !defined(BOOTLOADER)
63/*
64 * checks whether the given language and context combination require that the
65 * button is horizontally inverted to support RTL language
66 *
67 */
68static bool rtl_button_flip_needed(int context)
69{
70 return lang_is_rtl() && ((context == CONTEXT_STD) ||
71 (context & CONTEXT_TREE) || (context & CONTEXT_MAINMENU) ||
72 (context & CONTEXT_TREE));
73}
74#endif
75
76/* 62/*
77 * do_button_check is the worker function for get_default_action. 63 * do_button_check is the worker function for get_default_action.
78 * returns ACTION_UNKNOWN or the requested return value from the list. 64 * returns ACTION_UNKNOWN or the requested return value from the list.
@@ -100,6 +86,44 @@ static inline int do_button_check(const struct button_mapping *items,
100 return ret; 86 return ret;
101} 87}
102 88
89#if defined(HAVE_LCD_BITMAP) && !defined(BOOTLOADER)
90/*
91 * button is horizontally inverted to support RTL language if the given language
92 * and context combination require that
93 */
94static int button_flip_horizontally(int context, int button)
95{
96 int newbutton;
97
98 if (!(lang_is_rtl() && ((context == CONTEXT_STD) ||
99 (context & CONTEXT_TREE) || (context & CONTEXT_MAINMENU) ||
100 (context & CONTEXT_TREE))))
101 {
102 return button;
103 }
104
105 newbutton = button &
106 ~(BUTTON_LEFT | BUTTON_RIGHT
107#if defined(BUTTON_SCROLL_BACK) && defined(BUTTON_SCROLL_FWD)
108 | BUTTON_SCROLL_BACK | BUTTON_SCROLL_FWD
109#endif
110 );
111
112 if (button & BUTTON_LEFT)
113 newbutton |= BUTTON_RIGHT;
114 if (button & BUTTON_RIGHT)
115 newbutton |= BUTTON_LEFT;
116#if defined(BUTTON_SCROLL_BACK) && defined(BUTTON_SCROLL_FWD)
117 if (button & BUTTON_SCROLL_BACK)
118 newbutton |= BUTTON_SCROLL_FWD;
119 if (button & BUTTON_SCROLL_FWD)
120 newbutton |= BUTTON_SCROLL_BACK;
121#endif
122
123 return newbutton;
124}
125#endif
126
103static inline int get_next_context(const struct button_mapping *items, int i) 127static inline int get_next_context(const struct button_mapping *items, int i)
104{ 128{
105 while (items[i].button_code != BUTTON_NONE) 129 while (items[i].button_code != BUTTON_NONE)
@@ -219,8 +243,7 @@ static int get_action_worker(int context, int timeout,
219#endif /* HAS_BUTTON_HOLD */ 243#endif /* HAS_BUTTON_HOLD */
220 244
221#if defined(HAVE_LCD_BITMAP) && !defined(BOOTLOADER) 245#if defined(HAVE_LCD_BITMAP) && !defined(BOOTLOADER)
222 if (rtl_button_flip_needed(context)) 246 button = button_flip_horizontally(context, button);
223 button = button_flip_horizontally(button);
224#endif 247#endif
225 248
226 /* logf("%x,%x",last_button,button); */ 249 /* logf("%x,%x",last_button,button); */
diff --git a/apps/menus/display_menu.c b/apps/menus/display_menu.c
index afbb19c60d..5559ecebe7 100644
--- a/apps/menus/display_menu.c
+++ b/apps/menus/display_menu.c
@@ -67,7 +67,7 @@ static int flipdisplay_callback(int action,const struct menu_item_ex *this_item)
67 switch (action) 67 switch (action)
68 { 68 {
69 case ACTION_EXIT_MENUITEM: 69 case ACTION_EXIT_MENUITEM:
70 button_set_flip_vertically(global_settings.flip_display); 70 button_set_flip(global_settings.flip_display);
71 lcd_set_flip(global_settings.flip_display); 71 lcd_set_flip(global_settings.flip_display);
72 lcd_update(); 72 lcd_update();
73#ifdef HAVE_REMOTE_LCD 73#ifdef HAVE_REMOTE_LCD
diff --git a/apps/settings.c b/apps/settings.c
index ac80d12492..ce1ee07054 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -846,7 +846,7 @@ void settings_apply(bool read_disk)
846#endif 846#endif
847#ifdef HAVE_LCD_FLIP 847#ifdef HAVE_LCD_FLIP
848 lcd_set_flip(global_settings.flip_display); 848 lcd_set_flip(global_settings.flip_display);
849 button_set_flip_vertically(global_settings.flip_display); 849 button_set_flip(global_settings.flip_display);
850#endif 850#endif
851 lcd_update(); /* refresh after flipping the screen */ 851 lcd_update(); /* refresh after flipping the screen */
852 settings_apply_pm_range(); 852 settings_apply_pm_range();