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
ff6332a6
Commit
ff6332a6
authored
Sep 05, 2012
by
Anatoly Mihalchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Virtual Keyboard under Mac OS 10.7: switching locales
parent
34c6aa28
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
18 deletions
+31
-18
UBPlatformUtils.h
src/frameworks/UBPlatformUtils.h
+5
-0
UBPlatformUtils_mac.mm
src/frameworks/UBPlatformUtils_mac.mm
+25
-0
UBKeyboardPalette_mac.cpp
src/gui/UBKeyboardPalette_mac.cpp
+1
-18
No files found.
src/frameworks/UBPlatformUtils.h
View file @
ff6332a6
...
...
@@ -171,6 +171,7 @@ class UBPlatformUtils
static
int
nKeyboardLayouts
;
static
UBKeyboardLocale
**
keyboardLayouts
;
public
:
static
void
init
();
static
void
destroy
();
...
...
@@ -192,6 +193,10 @@ public:
static
UBKeyboardLocale
**
getKeyboardLayouts
(
int
&
nCount
);
static
QString
urlFromClipboard
();
static
QStringList
availableTranslations
();
#ifdef Q_WS_MAC
static
void
SetMacLocaleByIdentifier
(
const
QString
&
id
);
#endif
};
...
...
src/frameworks/UBPlatformUtils_mac.mm
View file @
ff6332a6
...
...
@@ -570,3 +570,28 @@ QString UBPlatformUtils::urlFromClipboard()
*/
return qsRet;
}
void UBPlatformUtils::SetMacLocaleByIdentifier(const QString& id)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
const char * strName = id.toAscii().data();
CFStringRef iName = CFStringCreateWithCString(NULL, strName, kCFStringEncodingMacRoman );
CFStringRef keys[] = { kTISPropertyInputSourceCategory, kTISPropertyInputSourceID };
CFStringRef values[] = { kTISCategoryKeyboardInputSource, iName };
CFDictionaryRef dict = CFDictionaryCreate(NULL, (const void **)keys, (const void **)values, 2, NULL, NULL);
CFArrayRef kbds = TISCreateInputSourceList(dict, true);
if (kbds!=NULL)
{
if (CFArrayGetCount(kbds)!=0)
{
TISInputSourceRef klRef = (TISInputSourceRef)CFArrayGetValueAtIndex(kbds, 0);
if (klRef!=NULL)
TISSelectInputSource(klRef);
}
}
[pool drain];
}
src/gui/UBKeyboardPalette_mac.cpp
View file @
ff6332a6
...
...
@@ -57,23 +57,6 @@ void UBKeyboardPalette::createCtrlButtons()
ctrlButtons
[
8
]
=
new
UBLocaleButton
(
this
);
}
void
SetMacLocaleByIdentifier
(
const
QString
&
id
)
{
const
char
*
strName
=
id
.
toAscii
().
data
();
CFStringRef
iName
=
CFStringCreateWithCString
(
NULL
,
strName
,
kCFStringEncodingMacRoman
);
CFStringRef
keys
[]
=
{
kTISPropertyInputSourceCategory
,
kTISPropertyInputSourceID
};
CFStringRef
values
[]
=
{
kTISCategoryKeyboardInputSource
,
iName
};
CFDictionaryRef
dict
=
CFDictionaryCreate
(
NULL
,
(
const
void
**
)
keys
,
(
const
void
**
)
values
,
2
,
NULL
,
NULL
);
CFArrayRef
kbds
=
TISCreateInputSourceList
(
dict
,
true
);
if
(
CFArrayGetCount
(
kbds
)
!=
0
)
{
TISInputSourceRef
klRef
=
(
TISInputSourceRef
)
CFArrayGetValueAtIndex
(
kbds
,
0
);
if
(
klRef
!=
NULL
)
TISSelectInputSource
(
klRef
);
}
}
void
UBKeyboardPalette
::
checkLayout
()
...
...
@@ -108,6 +91,6 @@ void UBKeyboardPalette::onActivated(bool)
void
UBKeyboardPalette
::
onLocaleChanged
(
UBKeyboardLocale
*
locale
)
{
SetMacLocaleByIdentifier
(
locale
->
id
);
UBPlatformUtils
::
SetMacLocaleByIdentifier
(
locale
->
id
);
}
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