2001-02-15 01:32:26 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04: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/. */
|
2001-02-15 01:32:26 +03:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2015-04-16 15:28:47 +03:00
|
|
|
[builtinclass, scriptable, uuid(288dae24-76e2-43a3-befe-9d9fabe8014e)]
|
2001-02-15 01:32:26 +03:00
|
|
|
interface nsIBidiKeyboard : nsISupports
|
|
|
|
{
|
2013-07-10 11:57:33 +04:00
|
|
|
/**
|
|
|
|
* Inspects the installed keyboards and resets the bidi keyboard state
|
|
|
|
*/
|
|
|
|
void reset();
|
|
|
|
|
2001-02-15 01:32:26 +03:00
|
|
|
/**
|
|
|
|
* Determines if the current keyboard language is right-to-left
|
2006-07-06 12:29:53 +04:00
|
|
|
* @throws NS_ERROR_FAILURE if no right-to-left keyboards are installed
|
2001-02-15 01:32:26 +03:00
|
|
|
*/
|
2006-07-06 12:29:53 +04:00
|
|
|
boolean isLangRTL();
|
2001-02-15 01:32:26 +03:00
|
|
|
|
2011-09-15 18:54:50 +04:00
|
|
|
/**
|
|
|
|
* Determines whether the system has at least one keyboard of each direction
|
|
|
|
* installed.
|
|
|
|
*
|
|
|
|
* @throws NS_ERROR_NOT_IMPLEMENTED if the widget layer does not provide this
|
|
|
|
* information.
|
|
|
|
*/
|
|
|
|
readonly attribute boolean haveBidiKeyboards;
|
2001-02-15 01:32:26 +03:00
|
|
|
};
|
|
|
|
|