Skip to content
This repository was archived by the owner on Sep 2, 2021. It is now read-only.

Commit b99ffa7

Browse files
committedOct 23, 2014
Add two new APIs for currently active keyboard layout
1 parent 7988c34 commit b99ffa7

6 files changed

+85
-5
lines changed
 

‎appshell/appshell_extensions.js

+22
Original file line numberDiff line numberDiff line change
@@ -747,6 +747,28 @@ if (!appshell.app) {
747747
configurable : false
748748
});
749749

750+
/**
751+
* Return the user's keyboard layout language.
752+
*/
753+
native function GetCurrentKeyboardLayout();
754+
Object.defineProperty(appshell.app, "keyboard", {
755+
writeable: false,
756+
get : function() { return GetCurrentKeyboardLayout(); },
757+
enumerable : true,
758+
configurable : false
759+
});
760+
761+
/**
762+
* Return the user's keyboard layout device type.
763+
*/
764+
native function GetKeyboardType();
765+
Object.defineProperty(appshell.app, "keyboardType", {
766+
writeable: false,
767+
get : function() { return GetKeyboardType(); },
768+
enumerable : true,
769+
configurable : false
770+
});
771+
750772
/**
751773
* Returns the full path of the application support directory.
752774
* On the Mac, it's /Users/<user>/Library/Application Support[/GROUP_NAME]/APP_NAME

‎appshell/client_app.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,10 @@ class AppShellExtensionHandler : public CefV8Handler {
153153
retval = CefV8Value::CreateDouble(client_app_->GetElapsedMilliseconds());
154154
} else if (name == "GetCurrentLanguage") {
155155
retval = CefV8Value::CreateString(client_app_->GetCurrentLanguage());
156+
} else if (name == "GetCurrentKeyboardLayout") {
157+
retval = CefV8Value::CreateString(client_app_->GetCurrentKeyboardLayout());
158+
} else if (name == "GetKeyboardType") {
159+
retval = CefV8Value::CreateString(client_app_->GetKeyboardType());
156160
} else if (name == "GetApplicationSupportDirectory") {
157161
retval = CefV8Value::CreateString(ClientApp::AppGetSupportDirectory());
158162
} else if (name == "GetUserDocumentsDirectory") {

‎appshell/client_app.h

+2
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ class ClientApp : public CefApp,
9090
// Platform-specific methods implemented in client_app_mac/client_app_win
9191
double GetElapsedMilliseconds();
9292
CefString GetCurrentLanguage();
93+
CefString GetCurrentKeyboardLayout();
94+
CefString GetKeyboardType();
9395
std::string GetExtensionJSSource();
9496
static CefString AppGetSupportDirectory();
9597
static CefString AppGetDocumentsDirectory();

‎appshell/client_app_gtk.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,19 @@ CefString ClientApp::GetCurrentLanguage()
4949
return CefString(loc);
5050
}
5151

52+
CefString ClientApp::GetCurrentKeyboardLayout()
53+
{
54+
// TODO: Get the user's active keyboard layout language
55+
// Returning the UI language for now
56+
return GetCurrentLanguage();
57+
}
58+
59+
CefString ClientApp::GetKeyboardType()
60+
{
61+
// This API may not be needed for Linux. So just return an empty string for now.
62+
return CefString("");
63+
}
64+
5265
std::string ClientApp::GetExtensionJSSource()
5366
{
5467
//# We objcopy the appshell/appshell_extensions.js file, and link it directly into the binary.

‎appshell/client_app_mac.mm

+13
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,19 @@
5555
return result;
5656
}
5757

58+
CefString ClientApp::GetCurrentKeyboardLayout()
59+
{
60+
// TODO: Get the user's active keyboard layout language
61+
// Returning the UI language for now
62+
return GetCurrentLanguage();
63+
}
64+
65+
CefString ClientApp::GetKeyboardType()
66+
{
67+
// This API is used for Windows only. So just return an empty string on Mac.
68+
return CefString(@"");
69+
}
70+
5871
std::string ClientApp::GetExtensionJSSource()
5972
{
6073
std::string result;

‎appshell/client_app_win.cpp

+31-5
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,12 @@
3030
#include <MMSystem.h>
3131
#include <ShlObj.h>
3232
#include <string>
33+
#include <stdio.h>
3334

3435
extern DWORD g_appStartupTime;
3536

36-
CefString ClientApp::GetCurrentLanguage()
37+
CefString GetLanguageFromId(LANGID langID)
3738
{
38-
// Get the user's selected language
39-
// Defaults to the system installed language if not using MUI.
40-
LANGID langID = GetUserDefaultUILanguage();
41-
4239
// Convert LANGID to a RFC 4646 language tag (per navigator.language)
4340
int langSize = GetLocaleInfo(langID, LOCALE_SISO639LANGNAME, NULL, 0);
4441
int countrySize = GetLocaleInfo(langID, LOCALE_SISO3166CTRYNAME, NULL, 0);
@@ -59,6 +56,35 @@ CefString ClientApp::GetCurrentLanguage()
5956
return CefString(locale);
6057
}
6158

59+
CefString ClientApp::GetCurrentLanguage()
60+
{
61+
// Get the user's selected language
62+
// Defaults to the system installed language if not using MUI.
63+
LANGID langID = GetUserDefaultUILanguage();
64+
return GetLanguageFromId(langID);
65+
}
66+
67+
68+
CefString ClientApp::GetCurrentKeyboardLayout()
69+
{
70+
// Get the user's active keyboard layout language
71+
int kbd = (int)GetKeyboardLayout(0);
72+
LANGID langID = MAKELANGID(kbd & 0xFFFF, kbd & 0xFFFF0000);
73+
return GetLanguageFromId(langID);
74+
}
75+
76+
CefString ClientApp::GetKeyboardType()
77+
{
78+
// Get the user's active keyboard device type
79+
int keyboardLayout = ((int)GetKeyboardLayout(0) & 0xFFFF0000) >> 16;
80+
wchar_t *type = new wchar_t[10];
81+
int len = swprintf_s(type, 10, L"%d", keyboardLayout);
82+
std::wstring keyboardType(type);
83+
84+
delete [] type;
85+
return CefString(keyboardType);
86+
}
87+
6288
std::string ClientApp::GetExtensionJSSource()
6389
{
6490
extern HINSTANCE hInst;

0 commit comments

Comments
 (0)