2001-02-14 22:32:26 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
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/. */
|
2001-02-14 22:32:26 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2014-01-31 23:02:44 +00:00
|
|
|
[scriptable, uuid(0d53579c-8f40-4bcf-9b87-61979c09f924)]
|
2001-02-14 22:32:26 +00:00
|
|
|
interface nsIBidiKeyboard : nsISupports
|
|
|
|
{
|
2013-07-10 07:57:33 +00:00
|
|
|
/**
|
|
|
|
* Inspects the installed keyboards and resets the bidi keyboard state
|
|
|
|
*/
|
|
|
|
void reset();
|
|
|
|
|
2001-02-14 22:32:26 +00:00
|
|
|
/**
|
|
|
|
* Determines if the current keyboard language is right-to-left
|
2006-07-06 08:29:53 +00:00
|
|
|
* @throws NS_ERROR_FAILURE if no right-to-left keyboards are installed
|
2001-02-14 22:32:26 +00:00
|
|
|
*/
|
2006-07-06 08:29:53 +00:00
|
|
|
boolean isLangRTL();
|
2001-02-14 22:32:26 +00:00
|
|
|
|
2011-09-15 14:54:50 +00: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-14 22:32:26 +00:00
|
|
|
};
|
|
|
|
|