Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9ed48c6a
Commit
9ed48c6a
authored
Jul 16, 2000
by
Raul Fernandes
Committed by
Alexandre Julliard
Jul 16, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Brazilian keyboard.
parent
9788ba6e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
keyboard.c
windows/x11drv/keyboard.c
+10
-1
No files found.
windows/x11drv/keyboard.c
View file @
9ed48c6a
...
@@ -322,10 +322,18 @@ static const char main_key_JA_pc98x1[MAIN_LEN][4] =
...
@@ -322,10 +322,18 @@ static const char main_key_JA_pc98x1[MAIN_LEN][4] =
"
\\
_"
,
"
\\
_"
,
};
};
/*** Brazilian ABNT-2 keyboard layout (contributed by Raul Gomes Fernandes) */
static
const
char
main_key_PT_br
[
MAIN_LEN
][
4
]
=
{
"'
\"
"
,
"1!"
,
"2@"
,
"3#"
,
"4$"
,
"5%"
,
"6
\"
"
,
"7&"
,
"8*"
,
"9("
,
"0)"
,
"-_"
,
"=+"
,
"qQ"
,
"wW"
,
"eE"
,
"rR"
,
"tT"
,
"yY"
,
"uU"
,
"iI"
,
"oO"
,
"pP"
,
"'`"
,
"[{"
,
"aA"
,
"sS"
,
"dD"
,
"fF"
,
"gG"
,
"hH"
,
"jJ"
,
"kK"
,
"lL"
,
""
,
"~^"
,
"]}"
,
"zZ"
,
"xX"
,
"cC"
,
"vV"
,
"bB"
,
"nN"
,
"mM"
,
",<"
,
".>"
,
"/?"
};
/*** Layout table. Add your keyboard mappings to this list */
/*** Layout table. Add your keyboard mappings to this list */
static
struct
{
static
const
struct
{
WORD
lang
,
ansi_codepage
,
oem_codepage
;
WORD
lang
,
ansi_codepage
,
oem_codepage
;
const
char
(
*
key
)[
MAIN_LEN
][
4
];
const
char
(
*
key
)[
MAIN_LEN
][
4
];
}
main_key_tab
[]
=
{
}
main_key_tab
[]
=
{
...
@@ -356,6 +364,7 @@ static struct {
...
@@ -356,6 +364,7 @@ static struct {
{
MAKELANGID
(
LANG_CROATIAN
,
SUBLANG_CROATIAN
),
1250
,
852
,
&
main_key_HR_jelly
},
{
MAKELANGID
(
LANG_CROATIAN
,
SUBLANG_CROATIAN
),
1250
,
852
,
&
main_key_HR_jelly
},
{
MAKELANGID
(
LANG_JAPANESE
,
SUBLANG_DEFAULT
),
932
,
932
,
&
main_key_JA_jp106
},
{
MAKELANGID
(
LANG_JAPANESE
,
SUBLANG_DEFAULT
),
932
,
932
,
&
main_key_JA_jp106
},
{
MAKELANGID
(
LANG_JAPANESE
,
SUBLANG_DEFAULT
),
932
,
932
,
&
main_key_JA_pc98x1
},
{
MAKELANGID
(
LANG_JAPANESE
,
SUBLANG_DEFAULT
),
932
,
932
,
&
main_key_JA_pc98x1
},
{
MAKELANGID
(
LANG_PORTUGUESE
,
SUBLANG_PORTUGUESE_BRAZILIAN
),
1252
,
860
,
&
main_key_PT_br
},
{
0
}
/* sentinel */
{
0
}
/* sentinel */
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment