Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
49cea393
Commit
49cea393
authored
Jun 04, 2012
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'Sankore-1.40' of github.com:Sankore/Sankore-3.1 into Sankore-1.40
parents
2bd9c6f0
ed04c8f1
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
861 additions
and
3 deletions
+861
-3
ChangeLog.html
ChangeLog.html
+804
-0
Sankore_3.1.pro
Sankore_3.1.pro
+2
-2
UBPlatformUtils_linux.cpp
src/frameworks/UBPlatformUtils_linux.cpp
+55
-1
No files found.
ChangeLog.html
0 → 100644
View file @
49cea393
This diff is collapsed.
Click to expand it.
Sankore_3.1.pro
View file @
49cea393
...
...
@@ -12,8 +12,8 @@ linux-g++-64 {
VERSION_MAJ
=
1
VERSION_MIN
=
40
VERSION_TYPE
=
b
#
a
=
alpha
,
b
=
beta
,
r
=
release
,
other
=>
error
VERSION_PATCH
=
0
7
VERSION_TYPE
=
r
#
a
=
alpha
,
b
=
beta
,
r
=
release
,
other
=>
error
VERSION_PATCH
=
0
0
VERSION
=
"$${VERSION_MAJ}.$${VERSION_MIN}.$${VERSION_TYPE}.$${VERSION_PATCH}"
VERSION
=
$$
replace
(
VERSION
,
"\\.r"
,
""
)
...
...
src/frameworks/UBPlatformUtils_linux.cpp
View file @
49cea393
...
...
@@ -261,6 +261,59 @@ const KEYBT FRENCH_LOCALE[] = {
/* : / */
KEYBT
(
0x3a
,
0x2f
),
/* ! ? */
KEYBT
(
0x21
,
0xa7
)};
const
KEYBT
SWISS_FRENCH_LOCALE
[]
=
{
/* § °*/
KEYBT
(
0xa7
,
0xb0
),
/* 1 +*/
KEYBT
(
0x31
,
0x2b
),
/* 2 "*/
KEYBT
(
0x32
,
0x22
),
/* 3 **/
KEYBT
(
0x33
,
0x2a
),
/* 4 ç*/
KEYBT
(
0x34
,
0xe7
),
/* 5 %*/
KEYBT
(
0x35
,
0x25
),
/* 6 &*/
KEYBT
(
0x36
,
0x26
),
/* 7 /*/
KEYBT
(
0x37
,
0x2f
),
/* 8 (*/
KEYBT
(
0x38
,
0x28
),
/* 9 )*/
KEYBT
(
0x39
,
0x29
),
/* 0 =*/
KEYBT
(
0x30
,
0x3d
),
/* ' ?*/
KEYBT
(
0x27
,
0x5f
),
/* ^ `*/
KEYBT
(
0x5e
,
0x60
),
/* q Q*/
KEYBT
(
0x71
,
0x51
),
/* w W*/
KEYBT
(
0x77
,
0x57
),
/* e E*/
KEYBT
(
0x65
,
0x45
),
/* r R*/
KEYBT
(
0x72
,
0x52
),
/* t T*/
KEYBT
(
0x74
,
0x54
),
/* z Z*/
KEYBT
(
0x7a
,
0x5a
),
/* u U*/
KEYBT
(
0x75
,
0x55
),
/* i I*/
KEYBT
(
0x69
,
0x49
),
/* o O*/
KEYBT
(
0x6f
,
0x4f
),
/* p P*/
KEYBT
(
0x70
,
0x50
),
/* è ü*/
KEYBT
(
0xe8
,
0xfa
),
/* ¨ !*/
KEYBT
(
0xa8
,
0x21
),
/* a A*/
KEYBT
(
0x61
,
0x41
),
/* s S*/
KEYBT
(
0x73
,
0x53
),
/* d D*/
KEYBT
(
0x64
,
0x44
),
/* f F*/
KEYBT
(
0x66
,
0x46
),
/* g G*/
KEYBT
(
0x67
,
0x47
),
/* h H*/
KEYBT
(
0x68
,
0x48
),
/* j J*/
KEYBT
(
0x6a
,
0x4a
),
/* k K*/
KEYBT
(
0x6b
,
0x4b
),
/* l L*/
KEYBT
(
0x6c
,
0x4c
),
/* é ö*/
KEYBT
(
0xe9
,
0xf6
),
/* à ä*/
KEYBT
(
0xe0
,
0xe4
),
/* $ £*/
KEYBT
(
0x24
,
0xa3
),
/* < >*/
KEYBT
(
0x3c
,
0x3e
),
/* y Y*/
KEYBT
(
0x79
,
0x59
),
/* x X*/
KEYBT
(
0x78
,
0x58
),
/* c C*/
KEYBT
(
0x63
,
0x43
),
/* v V*/
KEYBT
(
0x76
,
0x56
),
/* b B*/
KEYBT
(
0x62
,
0x42
),
/* n N*/
KEYBT
(
0x6e
,
0x4e
),
/* m M*/
KEYBT
(
0x6d
,
0x4d
),
/* , ;*/
KEYBT
(
0x2c
,
0x3b
),
/* . :*/
KEYBT
(
0x2e
,
0x3a
),
/* - _*/
KEYBT
(
0x2d
,
0x5f
)};
const
KEYBT
GERMAN_LOCALE
[]
=
{
/* ^ ? */
KEYBT
(
0x5f
,
0xb0
),
/* 1 ! */
KEYBT
(
0x31
,
0x21
),
...
...
@@ -321,7 +374,8 @@ void UBPlatformUtils::initializeKeyboardLayouts()
keyboardLayouts
[
0
]
=
new
UBKeyboardLocale
(
"English"
,
"en"
,
""
,
new
QIcon
(
":/images/flags/en.png"
),
ENGLISH_LOCALE
);
keyboardLayouts
[
1
]
=
new
UBKeyboardLocale
(
"Russian"
,
"ru"
,
""
,
new
QIcon
(
":/images/flags/ru.png"
),
RUSSIAN_LOCALE
);
keyboardLayouts
[
2
]
=
new
UBKeyboardLocale
(
"French"
,
"fr"
,
""
,
new
QIcon
(
":/images/flags/fr.png"
),
FRENCH_LOCALE
);
keyboardLayouts
[
3
]
=
new
UBKeyboardLocale
(
"German"
,
"de"
,
""
,
new
QIcon
(
":/images/flags/de.png"
),
GERMAN_LOCALE
);
keyboardLayouts
[
3
]
=
new
UBKeyboardLocale
(
"Swiss French"
,
"fr"
,
""
,
new
QIcon
(
":/images/flags/fr.png"
),
SWISS_FRENCH_LOCALE
);
keyboardLayouts
[
4
]
=
new
UBKeyboardLocale
(
"German"
,
"de"
,
""
,
new
QIcon
(
":/images/flags/de.png"
),
GERMAN_LOCALE
);
}
void
UBPlatformUtils
::
destroyKeyboardLayouts
()
...
...
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