/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// The language set by the user overrides the default language for that // direction if (*aIsRTL) {
wcsncpy(mRTLKeyboard, mCurrentLocaleName, KL_NAMELENGTH);
mRTLKeyboard[KL_NAMELENGTH - 1] = '\0'; // null terminate
} else {
wcsncpy(mLTRKeyboard, mCurrentLocaleName, KL_NAMELENGTH);
mLTRKeyboard[KL_NAMELENGTH - 1] = '\0'; // null terminate
}
nsresult result = SetupBidiKeyboards(); if (NS_FAILED(result)) return result;
*aResult = mHaveBidiKeyboards; return NS_OK;
}
// Get the list of keyboard layouts available in the system // Set mLTRKeyboard to the first LTR keyboard in the list and mRTLKeyboard to // the first RTL keyboard in the list These defaults will be used unless the // user explicitly sets something else.
nsresult nsBidiKeyboard::SetupBidiKeyboards() { if (mInitialized) return mHaveBidiKeyboards ? NS_OK : NS_ERROR_FAILURE;
// GetKeyboardLayoutList with 0 as first parameter returns the number of // keyboard layouts available
keyboards = ::GetKeyboardLayoutList(0, nullptr); if (!keyboards) return NS_ERROR_FAILURE;
// allocate a buffer to hold the list
buf = (HKL far*)malloc(keyboards * sizeof(HKL)); if (!buf) return NS_ERROR_OUT_OF_MEMORY;
// Call again to fill the buffer if (::GetKeyboardLayoutList(keyboards, buf) != keyboards) {
free(buf); return NS_ERROR_UNEXPECTED;
}
// Go through the list and pick a default LTR and RTL keyboard layout while (keyboards--) {
locale = buf[keyboards]; if (IsRTLLanguage(locale)) {
_snwprintf(mRTLKeyboard, KL_NAMELENGTH, L"%.*x", KL_NAMELENGTH - 1,
LANGIDFROMLCID((DWORD_PTR)locale));
isRTLKeyboardSet = true;
} else {
_snwprintf(mLTRKeyboard, KL_NAMELENGTH, L"%.*x", KL_NAMELENGTH - 1,
LANGIDFROMLCID((DWORD_PTR)locale));
isLTRKeyboardSet = true;
}
}
free(buf);
mInitialized = true;
// If there is not at least one keyboard of each directionality, Bidi // keyboard functionality will be disabled.
mHaveBidiKeyboards = (isRTLKeyboardSet && isLTRKeyboardSet); if (!mHaveBidiKeyboards) return NS_ERROR_FAILURE;
// Get the current keyboard layout and use it for either mRTLKeyboard or // mLTRKeyboard as appropriate. If the user has many keyboard layouts // installed this prevents us from arbitrarily resetting the current // layout (bug 80274)
locale = ::GetKeyboardLayout(0); if (!::GetKeyboardLayoutNameW(localeName)) return NS_ERROR_FAILURE;
NS_ASSERTION(*mRTLKeyboard, "mLTRKeyboard has string length == 0");
NS_ASSERTION(*mLTRKeyboard, "mLTRKeyboard has string length == 0");
return NS_OK;
}
// Test whether the language represented by this locale identifier is a // right-to-left language, using bit 123 of the Unicode subset bitfield in // the LOCALESIGNATURE // See // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/intl/unicode_63ub.asp bool nsBidiKeyboard::IsRTLLanguage(HKL aLocale) {
LOCALESIGNATURE localesig; return (::GetLocaleInfoW(PRIMARYLANGID((DWORD_PTR)aLocale),
LOCALE_FONTSIGNATURE, (LPWSTR)&localesig,
(sizeof(localesig) / sizeof(WCHAR))) &&
(localesig.lsUsb[3] & 0x08000000));
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.