2002-04-27 16:26:10 +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/. */
|
2001-12-07 05:23:56 +00:00
|
|
|
|
|
|
|
#ifndef __nsBidiKeyboard
|
|
|
|
#define __nsBidiKeyboard
|
|
|
|
#include "nsIBidiKeyboard.h"
|
|
|
|
|
|
|
|
class nsBidiKeyboard : public nsIBidiKeyboard
|
|
|
|
{
|
|
|
|
public:
|
2002-04-27 16:26:10 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIBIDIKEYBOARD
|
2001-12-07 05:23:56 +00:00
|
|
|
|
2002-04-27 16:26:10 +00:00
|
|
|
nsBidiKeyboard();
|
2008-04-16 20:03:19 +00:00
|
|
|
|
|
|
|
protected:
|
2002-04-27 16:26:10 +00:00
|
|
|
virtual ~nsBidiKeyboard();
|
2001-12-07 05:23:56 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mHaveBidiKeyboards;
|
2008-04-16 20:03:19 +00:00
|
|
|
};
|
2001-12-07 05:23:56 +00:00
|
|
|
|
|
|
|
#endif // __nsBidiKeyboard
|