2008-04-19 15:40:58 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim:expandtab:shiftwidth=4:tabstop=4:
|
|
|
|
*/
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2008-04-19 15:40:58 +00:00
|
|
|
|
|
|
|
#include <Qt>
|
2014-02-21 02:09:02 +00:00
|
|
|
#include <QGuiApplication>
|
2008-04-19 15:40:58 +00:00
|
|
|
|
2010-03-04 21:51:42 +00:00
|
|
|
#include "nsBidiKeyboard.h"
|
|
|
|
|
2008-04-19 15:40:58 +00:00
|
|
|
NS_IMPL_ISUPPORTS1(nsBidiKeyboard, nsIBidiKeyboard)
|
|
|
|
|
|
|
|
nsBidiKeyboard::nsBidiKeyboard() : nsIBidiKeyboard()
|
|
|
|
{
|
2013-07-10 07:57:33 +00:00
|
|
|
Reset();
|
2008-04-19 15:40:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsBidiKeyboard::~nsBidiKeyboard()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-10 07:57:33 +00:00
|
|
|
NS_IMETHODIMP nsBidiKeyboard::Reset()
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHODIMP nsBidiKeyboard::IsLangRTL(bool *aIsRTL)
|
2008-04-19 15:40:58 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
*aIsRTL = false;
|
2008-04-19 15:40:58 +00:00
|
|
|
|
2013-02-25 20:25:16 +00:00
|
|
|
QInputMethod* input = qApp->inputMethod();
|
|
|
|
Qt::LayoutDirection layoutDir = input ? input->inputDirection() : Qt::LeftToRight;
|
2008-04-19 15:40:58 +00:00
|
|
|
|
|
|
|
if (layoutDir == Qt::RightToLeft) {
|
2011-10-17 14:59:28 +00:00
|
|
|
*aIsRTL = true;
|
2008-04-19 15:40:58 +00:00
|
|
|
}
|
2014-02-21 02:09:02 +00:00
|
|
|
|
2008-04-19 15:40:58 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHODIMP nsBidiKeyboard::GetHaveBidiKeyboards(bool* aResult)
|
2011-09-15 14:54:50 +00:00
|
|
|
{
|
|
|
|
// not implemented yet
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|