Skip to content

Commit 31331fd

Browse files
committed
Merge branch 'release/0.8.x'
2 parents 20ef1f2 + cda5ee8 commit 31331fd

File tree

8 files changed

+86
-13
lines changed

8 files changed

+86
-13
lines changed

NEWS

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
What's New in libchewing 0.8.4 (May 27, 2024)
1+
What's New in libchewing 0.8.4 (Jun 1, 2024)
22
---------------------------------------------------------
33

44
* Bug fixed
55
- Config options were incorrectly reset after certain operations. (introduced
6-
in v0.8.0)
6+
in v0.8.0)
7+
- Incorrect mapping for KB_DVORAK and KB_DVORAK_HSU layouts. (introduced in
8+
v0.8.0)
79
- Installation failure if build with testing off. (introduced in v0.8.3)
810

911

capi/src/io.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -567,8 +567,8 @@ pub unsafe extern "C" fn chewing_set_KBType(ctx: *mut ChewingContext, kbtype: c_
567567
KB::GinYieh => (AnyKeyboardLayout::qwerty(), Box::new(GinYieh::new())),
568568
KB::Et => (AnyKeyboardLayout::qwerty(), Box::new(Et::new())),
569569
KB::Et26 => (AnyKeyboardLayout::qwerty(), Box::new(Et26::new())),
570-
KB::Dvorak => (AnyKeyboardLayout::qwerty(), Box::new(Standard::new())),
571-
KB::DvorakHsu => (AnyKeyboardLayout::qwerty(), Box::new(Hsu::new())),
570+
KB::Dvorak => (AnyKeyboardLayout::dvorak(), Box::new(Standard::new())),
571+
KB::DvorakHsu => (AnyKeyboardLayout::dvorak_on_qwerty(), Box::new(Hsu::new())),
572572
KB::DachenCp26 => (AnyKeyboardLayout::qwerty(), Box::new(DaiChien26::new())),
573573
KB::HanyuPinyin => (AnyKeyboardLayout::qwerty(), Box::new(Pinyin::hanyu())),
574574
KB::ThlPinyin => (AnyKeyboardLayout::qwerty(), Box::new(Pinyin::thl())),

src/editor/keyboard/dvorak.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use super::{
99
pub struct Dvorak;
1010

1111
#[rustfmt::skip]
12-
static KEYCODE_INDEX: [KeyCode; MATRIX_SIZE] = [
12+
pub(crate) static KEYCODE_INDEX: [KeyCode; MATRIX_SIZE] = [
1313
Unknown,
1414
N1, N2, N3, N4, N5, N6, N7, N8, N9, N0, LBracket, RBracket, BSlash, Grave,
1515
Quote, Comma, Dot, P, Y, F, G, C, R, L, Slash, Equal,
@@ -20,7 +20,7 @@ static KEYCODE_INDEX: [KeyCode; MATRIX_SIZE] = [
2020
];
2121

2222
#[rustfmt::skip]
23-
static UNICODE_MAP: [char; MATRIX_SIZE] = [
23+
pub(crate) static UNICODE_MAP: [char; MATRIX_SIZE] = [
2424
'�',
2525
'1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '[', ']', '\\', '`',
2626
'\'', ',', '.', 'p', 'y', 'f', 'g', 'c', 'r', 'l', '/', '=',
@@ -31,7 +31,7 @@ static UNICODE_MAP: [char; MATRIX_SIZE] = [
3131
];
3232

3333
#[rustfmt::skip]
34-
static SHIFT_MAP: [char; MATRIX_SIZE] = [
34+
pub(crate) static SHIFT_MAP: [char; MATRIX_SIZE] = [
3535
'�',
3636
'!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '{', '}', '|', '~',
3737
'"', '<', '>', 'P', 'Y', 'F', 'G', 'C', 'R', 'L', '?', '+',
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
use super::{dvorak, qwerty, KeyCode, KeyEvent, KeyboardLayout, Modifiers, INDEX_MAP};
2+
3+
/// A Dvorak keyboard.
4+
#[derive(Debug)]
5+
pub struct DvorakOnQwerty;
6+
7+
impl KeyboardLayout for DvorakOnQwerty {
8+
fn map_with_mod(&self, keycode: KeyCode, modifiers: Modifiers) -> KeyEvent {
9+
let index = qwerty::KEYCODE_INDEX
10+
.iter()
11+
.position(|key| *key == keycode)
12+
.expect("invalid keycode");
13+
let unicode = if modifiers.capslock || modifiers.shift {
14+
dvorak::SHIFT_MAP[index]
15+
} else {
16+
dvorak::UNICODE_MAP[index]
17+
};
18+
KeyEvent {
19+
index: INDEX_MAP[index],
20+
code: dvorak::KEYCODE_INDEX[index],
21+
unicode,
22+
modifiers,
23+
}
24+
}
25+
}

src/editor/keyboard/mod.rs

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
mod colemak_dh_ansi;
99
mod colemak_dh_orth;
1010
mod dvorak;
11+
mod dvorak_on_qwerty;
1112
mod qgmlwy;
1213
mod qwerty;
1314

@@ -16,6 +17,7 @@ use core::fmt;
1617
pub use colemak_dh_ansi::ColemakDhAnsi;
1718
pub use colemak_dh_orth::ColemakDhOrth;
1819
pub use dvorak::Dvorak;
20+
pub use dvorak_on_qwerty::DvorakOnQwerty;
1921
pub use qgmlwy::Qgmlwy;
2022
pub use qwerty::Qwerty;
2123

@@ -129,9 +131,11 @@ pub trait KeyboardLayout {
129131
}
130132

131133
#[derive(Debug)]
134+
#[non_exhaustive]
132135
pub enum AnyKeyboardLayout {
133136
Qwerty(Qwerty),
134137
Dvorak(Dvorak),
138+
DvorakOnQwerty(DvorakOnQwerty),
135139
Qgmlwy(Qgmlwy),
136140
ColemakDhAnsi(ColemakDhAnsi),
137141
ColemakDhOrth(ColemakDhOrth),
@@ -144,6 +148,9 @@ impl AnyKeyboardLayout {
144148
pub fn dvorak() -> AnyKeyboardLayout {
145149
AnyKeyboardLayout::Dvorak(Dvorak)
146150
}
151+
pub fn dvorak_on_qwerty() -> AnyKeyboardLayout {
152+
AnyKeyboardLayout::DvorakOnQwerty(DvorakOnQwerty)
153+
}
147154
pub fn qgmlwy() -> AnyKeyboardLayout {
148155
AnyKeyboardLayout::Qgmlwy(Qgmlwy)
149156
}
@@ -160,6 +167,7 @@ impl KeyboardLayout for AnyKeyboardLayout {
160167
match self {
161168
AnyKeyboardLayout::Qwerty(kb) => kb.map_with_mod(keycode, modifiers),
162169
AnyKeyboardLayout::Dvorak(kb) => kb.map_with_mod(keycode, modifiers),
170+
AnyKeyboardLayout::DvorakOnQwerty(kb) => kb.map_with_mod(keycode, modifiers),
163171
AnyKeyboardLayout::Qgmlwy(kb) => kb.map_with_mod(keycode, modifiers),
164172
AnyKeyboardLayout::ColemakDhAnsi(kb) => kb.map_with_mod(keycode, modifiers),
165173
AnyKeyboardLayout::ColemakDhOrth(kb) => kb.map_with_mod(keycode, modifiers),

src/editor/keyboard/qwerty.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use super::{
99
pub struct Qwerty;
1010

1111
#[rustfmt::skip]
12-
static KEYCODE_INDEX: [KeyCode; MATRIX_SIZE] = [
12+
pub(crate) static KEYCODE_INDEX: [KeyCode; MATRIX_SIZE] = [
1313
Unknown,
1414
N1, N2, N3, N4, N5, N6, N7, N8, N9, N0, Minus, Equal, BSlash, Grave,
1515
Q, W, E, R, T, Y, U, I, O, P, LBracket, RBracket,
@@ -20,7 +20,7 @@ static KEYCODE_INDEX: [KeyCode; MATRIX_SIZE] = [
2020
];
2121

2222
#[rustfmt::skip]
23-
static UNICODE_MAP: [char; MATRIX_SIZE] = [
23+
pub(crate) static UNICODE_MAP: [char; MATRIX_SIZE] = [
2424
'�',
2525
'1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '-', '=', '\\', '`',
2626
'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', '[', ']',
@@ -31,7 +31,7 @@ static UNICODE_MAP: [char; MATRIX_SIZE] = [
3131
];
3232

3333
#[rustfmt::skip]
34-
static SHIFT_MAP: [char; MATRIX_SIZE] = [
34+
pub(crate) static SHIFT_MAP: [char; MATRIX_SIZE] = [
3535
'�',
3636
'!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '_', '+', '|', '~',
3737
'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', '{', '}',

tests/genkeystroke.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ int main(int argc, char *argv[])
317317
ctx = chewing_new2(NULL, NULL, logger, log);
318318

319319
/* Set keyboard type */
320-
chewing_set_KBType(ctx, chewing_KBStr2Num("KB_DEFAULT"));
320+
chewing_set_KBType(ctx, chewing_KBStr2Num("KB_DVORAK_HSU"));
321321

322322
/* Fill configuration values */
323323
chewing_set_candPerPage(ctx, 9);

tests/test-bopomofo.c

+40-2
Original file line numberDiff line numberDiff line change
@@ -2071,6 +2071,42 @@ void test_KB_MPS2()
20712071
chewing_delete(ctx);
20722072
}
20732073

2074+
void test_KB_DVORAK()
2075+
{
2076+
ChewingContext *ctx;
2077+
2078+
ctx = chewing_new();
2079+
start_testcase(ctx, fd);
2080+
2081+
chewing_set_KBType(ctx, KB_DVORAK);
2082+
type_keystroke_by_string(ctx, "kgl eh4gl 5l 2t7jl31s4");
2083+
chewing_set_ChiEngMode(ctx, SYMBOL_MODE);
2084+
type_keystroke_by_string(ctx, "testTEST");
2085+
ok_preedit_buffer(ctx, "\xE6\x96\xB0\xE9\x85\xB7\xE9\x9F\xB3\xE7\x9C\x9F\xE7\x9A\x84\xE5\xBE\x88\xE6\xA3\x92testTEST"
2086+
/* 新酷音真的很棒 */ );
2087+
chewing_clean_preedit_buf(ctx);
2088+
2089+
chewing_delete(ctx);
2090+
}
2091+
2092+
void test_KB_DVORAK_HSU()
2093+
{
2094+
ChewingContext *ctx;
2095+
2096+
ctx = chewing_new();
2097+
start_testcase(ctx, fd);
2098+
2099+
chewing_set_KBType(ctx, KB_DVORAK_HSU);
2100+
type_keystroke_by_string(ctx, "idl vbcdl cl hu;jlynvc");
2101+
chewing_set_ChiEngMode(ctx, SYMBOL_MODE);
2102+
type_keystroke_by_string(ctx, "kd;kKD:K");
2103+
ok_preedit_buffer(ctx, "\xE6\x96\xB0\xE9\x85\xB7\xE9\x9F\xB3\xE7\x9C\x9F\xE7\x9A\x84\xE5\xBE\x88\xE6\xA3\x92testTEST"
2104+
/* 新酷音真的很棒 */ );
2105+
chewing_clean_preedit_buf(ctx);
2106+
2107+
chewing_delete(ctx);
2108+
}
2109+
20742110
void test_KB_COLEMAK_DH_ANSI()
20752111
{
20762112
ChewingContext *ctx;
@@ -2115,8 +2151,10 @@ void test_KB()
21152151
test_KB_ET26();
21162152
test_KB_ET26_choice_append();
21172153
test_KB_DACHEN_CP26();
2118-
test_KB_COLEMAK_DH_ANSI();
2119-
test_KB_COLEMAK_DH_ORTH();
2154+
test_KB_DVORAK();
2155+
test_KB_DVORAK_HSU();
2156+
test_KB_COLEMAK_DH_ANSI();
2157+
test_KB_COLEMAK_DH_ORTH();
21202158

21212159
test_KB_HANYU();
21222160
test_KB_THL();

0 commit comments

Comments
 (0)