Bug 773192: Only proxy drawing to a non-default target in BasicShadowableLayerManager...
[gecko.git] / widget / nsIBidiKeyboard.idl
blob7c263124887f81ac14b08ee3f0600c654d877191
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "nsISupports.idl"
9 [scriptable, uuid(99957506-f21b-4a61-ad64-5b641cf508e2)]
10 interface nsIBidiKeyboard : nsISupports
12 /**
13 * Determines if the current keyboard language is right-to-left
14 * @throws NS_ERROR_FAILURE if no right-to-left keyboards are installed
16 boolean isLangRTL();
18 /**
19 * Sets the keyboard language to left-to-right or right-to-left
20 * @param aLevel - if odd set the keyboard to RTL, if even set LTR
21 * @throws NS_ERROR_FAILURE if no right-to-left keyboards are installed
23 void setLangFromBidiLevel(in PRUint8 aLevel);
25 /**
26 * Determines whether the system has at least one keyboard of each direction
27 * installed.
29 * @throws NS_ERROR_NOT_IMPLEMENTED if the widget layer does not provide this
30 * information.
32 readonly attribute boolean haveBidiKeyboards;