2010-06-25 21:51:17 +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/. */
|
2010-06-25 21:51:17 +00:00
|
|
|
|
|
|
|
#ifndef __mozilla_widget_WidgetUtils_h__
|
|
|
|
#define __mozilla_widget_WidgetUtils_h__
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
#include "nsIDOMWindow.h"
|
2013-09-24 10:04:14 +00:00
|
|
|
#include "mozilla/EventForwards.h"
|
2010-06-25 21:51:17 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
|
|
|
|
|
|
class WidgetUtils
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starting at the docshell item for the passed in DOM window this looks up
|
|
|
|
* the docshell tree until it finds a docshell item that has a widget.
|
|
|
|
*/
|
|
|
|
static already_AddRefed<nsIWidget> DOMWindowToWidget(nsIDOMWindow *aDOMWindow);
|
2012-05-17 07:04:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Compute our keyCode value (NS_VK_*) from an ASCII character.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
static uint32_t ComputeKeyCodeFromChar(uint32_t aCharCode);
|
2012-05-17 07:04:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get unshifted charCode and shifted charCode for aKeyCode if the keyboad
|
|
|
|
* layout is a Latin keyboard layout.
|
|
|
|
*
|
|
|
|
* @param aKeyCode Our keyCode (NS_VK_*).
|
|
|
|
* @param aIsCapsLock TRUE if CapsLock is Locked. Otherwise, FALSE.
|
|
|
|
* This is used only when aKeyCode is NS_VK_[0-9].
|
|
|
|
* @param aUnshiftedCharCode CharCode for aKeyCode without Shift key.
|
|
|
|
* This may be zero if aKeyCode key doesn't input
|
|
|
|
* a Latin character.
|
2013-10-28 14:05:51 +00:00
|
|
|
* Note that must not be nullptr.
|
2012-05-17 07:04:16 +00:00
|
|
|
* @param aShiftedCharCode CharCode for aKeyCOde with Shift key.
|
|
|
|
* This is always 0 when aKeyCode isn't
|
|
|
|
* NS_VK_[A-Z].
|
2013-10-28 14:05:51 +00:00
|
|
|
* Note that must not be nullptr.
|
2012-05-17 07:04:16 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
static void GetLatinCharCodeForKeyCode(uint32_t aKeyCode,
|
2012-05-17 07:04:16 +00:00
|
|
|
bool aIsCapsLock,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t* aUnshiftedCharCode,
|
|
|
|
uint32_t* aShiftedCharCode);
|
2013-04-24 03:49:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GetDeadKeyNameIndex() returns a key name index for dead key or
|
|
|
|
* "Unidentified". This method can return the index from non-combining
|
|
|
|
* unicode character, e.g., '`' returns KEY_NAME_INDEX_DeadGrave.
|
|
|
|
* So, you cannot use this method for checking if the char is a dead char.
|
|
|
|
*/
|
2014-01-04 15:02:17 +00:00
|
|
|
static KeyNameIndex GetDeadKeyNameIndex(char16_t aChar);
|
2010-06-25 21:51:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|