summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2009-11-08 14:24:47 +0000
committerTeruaki Kawashima <teru@rockbox.org>2009-11-08 14:24:47 +0000
commit40638bf2c73623bd00a4d669d3d0cd2eb01ff587 (patch)
treebdc98fcc12a584abc65974e4967c03f922e375d2 /apps/recorder
parent3e489c14c143bb2f193e97fa66385e8a285d43ff (diff)
Merge duplicating code to remove char in keyboard.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23569 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/keyboard.c50
1 files changed, 11 insertions, 39 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index 1e9e8f32ab..2c40ae7ede 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -788,6 +788,11 @@ int kbd_input(char* text, int buflen)
button = ACTION_KBD_CURSOR_LEFT;
if (button == ACTION_KBD_RIGHT)
button = ACTION_KBD_CURSOR_RIGHT;
+#ifdef KBD_MODES
+ /* select doubles as backspace in line_edit */
+ if (pm->line_edit && button == ACTION_KBD_SELECT)
+ button = ACTION_KBD_BACKSPACE;
+#endif
}
#endif /* defined(KBD_MODES) || defined(HAVE_MORSE_INPUT) */
@@ -971,11 +976,7 @@ int kbd_input(char* text, int buflen)
case ACTION_KBD_SELECT:
#ifdef HAVE_MORSE_INPUT
-#ifdef KBD_MODES
- if (morse_mode && !pm->line_edit)
-#else
if (morse_mode)
-#endif
{
morse_tick = current_tick;
@@ -984,38 +985,11 @@ int kbd_input(char* text, int buflen)
morse_reading = true;
morse_code = 1;
}
- break;
- }
-#endif /* HAVE_MORSE_INPUT */
-
- /* inserts the selected char */
-#ifdef KBD_MODES
- if (pm->line_edit)
- { /* select doubles as backspace in line_edit */
- if (pm->hangul)
- {
- if (pm->htail)
- pm->htail = 0;
- else if (pm->hvowel)
- pm->hvowel = 0;
- else
- pm->hangul = false;
- }
-
- kbd_delchar(text, &editpos);
-
- if (pm->hangul)
- {
- if (pm->hvowel)
- ch = hangul_join(pm->hlead, pm->hvowel, pm->htail);
- else
- ch = pm->hlead;
- kbd_inschar(text, buflen, &editpos, ch);
- }
}
else
-#endif /* KBD_MODES */
+#endif /* HAVE_MORSE_INPUT */
{
+ /* inserts the selected char */
/* find input char */
ch = get_kbd_ch(pm);
@@ -1082,15 +1056,14 @@ int kbd_input(char* text, int buflen)
/* insert char */
kbd_inschar(text, buflen, &editpos, ch);
- }
- if (global_settings.talk_menu) /* voice UI? */
- talk_spell(text, false);
+ if (global_settings.talk_menu) /* voice UI? */
+ talk_spell(text, false);
- /* speak revised text */
+ /* speak revised text */
+ }
break;
-#ifdef KBD_CURSOR_KEYS
case ACTION_KBD_BACKSPACE:
if (pm->hangul)
{
@@ -1116,7 +1089,6 @@ int kbd_input(char* text, int buflen)
if (global_settings.talk_menu) /* voice UI? */
talk_spell(text, false); /* speak revised text */
break;
-#endif /* KBD_CURSOR_KEYS */
case ACTION_KBD_CURSOR_RIGHT:
pm->hangul = false;