/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is the Mozilla browser. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1999 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Stuart Parmenter * Mike Pinkerton * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "WidgetUtils.h" #include "nsGUIEvent.h" #include "nsIBaseWindow.h" #include "nsIDocShellTreeItem.h" #include "nsIDocShell.h" #include "nsIInterfaceRequestorUtils.h" namespace mozilla { namespace widget { //static already_AddRefed WidgetUtils::DOMWindowToWidget(nsIDOMWindow *aDOMWindow) { nsCOMPtr widget; nsCOMPtr window = do_QueryInterface(aDOMWindow); if (window) { nsCOMPtr baseWin(do_QueryInterface(window->GetDocShell())); while (!widget && baseWin) { baseWin->GetParentWidget(getter_AddRefs(widget)); if (!widget) { nsCOMPtr docShellAsItem(do_QueryInterface(baseWin)); if (!docShellAsItem) return nsnull; nsCOMPtr parent; docShellAsItem->GetParent(getter_AddRefs(parent)); window = do_GetInterface(parent); if (!window) return nsnull; baseWin = do_QueryInterface(window->GetDocShell()); } } } return widget.forget(); } // static PRUint32 WidgetUtils::ComputeKeyCodeFromChar(PRUint32 aCharCode) { if (aCharCode >= 'A' && aCharCode <= 'Z') { return aCharCode - 'A' + NS_VK_A; } if (aCharCode >= 'a' && aCharCode <= 'z') { return aCharCode - 'a' + NS_VK_A; } if (aCharCode >= '0' && aCharCode <= '9') { return aCharCode - '0' + NS_VK_0; } switch (aCharCode) { case ' ': return NS_VK_SPACE; case '\t': return NS_VK_TAB; case ':': return NS_VK_COLON; case ';': return NS_VK_SEMICOLON; case '<': return NS_VK_LESS_THAN; case '=': return NS_VK_EQUALS; case '>': return NS_VK_GREATER_THAN; case '?': return NS_VK_QUESTION_MARK; case '@': return NS_VK_AT; case '^': return NS_VK_CIRCUMFLEX; case '!': return NS_VK_EXCLAMATION; case '"': return NS_VK_DOUBLE_QUOTE; case '#': return NS_VK_HASH; case '$': return NS_VK_DOLLAR; case '%': return NS_VK_PERCENT; case '&': return NS_VK_AMPERSAND; case '_': return NS_VK_UNDERSCORE; case '(': return NS_VK_OPEN_PAREN; case ')': return NS_VK_CLOSE_PAREN; case '*': return NS_VK_ASTERISK; case '+': return NS_VK_PLUS; case '|': return NS_VK_PIPE; case '-': return NS_VK_HYPHEN_MINUS; case '{': return NS_VK_OPEN_CURLY_BRACKET; case '}': return NS_VK_CLOSE_CURLY_BRACKET; case '~': return NS_VK_TILDE; case ',': return NS_VK_COMMA; case '.': return NS_VK_PERIOD; case '/': return NS_VK_SLASH; case '`': return NS_VK_BACK_QUOTE; case '[': return NS_VK_OPEN_BRACKET; case '\\': return NS_VK_BACK_SLASH; case ']': return NS_VK_CLOSE_BRACKET; case '\'': return NS_VK_QUOTE; } return 0; } // static void WidgetUtils::GetLatinCharCodeForKeyCode(PRUint32 aKeyCode, bool aIsCapsLock, PRUint32* aUnshiftedCharCode, PRUint32* aShiftedCharCode) { MOZ_ASSERT(aUnshiftedCharCode && aShiftedCharCode, "aUnshiftedCharCode and aShiftedCharCode must not be NULL"); if (aKeyCode >= NS_VK_A && aKeyCode <= NS_VK_Z) { *aUnshiftedCharCode = *aShiftedCharCode = aKeyCode; if (aIsCapsLock) { *aShiftedCharCode += 0x20; } else { *aUnshiftedCharCode += 0x20; } return; } // aShiftedCharCode must be zero for non-alphabet keys. *aShiftedCharCode = 0; if (aKeyCode >= NS_VK_0 && aKeyCode <= NS_VK_9) { *aUnshiftedCharCode = aKeyCode; return; } switch (aKeyCode) { case NS_VK_SPACE: *aUnshiftedCharCode = ' '; break; case NS_VK_COLON: *aUnshiftedCharCode = ':'; break; case NS_VK_SEMICOLON: *aUnshiftedCharCode = ';'; break; case NS_VK_LESS_THAN: *aUnshiftedCharCode = '<'; break; case NS_VK_EQUALS: *aUnshiftedCharCode = '='; break; case NS_VK_GREATER_THAN: *aUnshiftedCharCode = '>'; break; case NS_VK_QUESTION_MARK: *aUnshiftedCharCode = '?'; break; case NS_VK_AT: *aUnshiftedCharCode = '@'; break; case NS_VK_CIRCUMFLEX: *aUnshiftedCharCode = '^'; break; case NS_VK_EXCLAMATION: *aUnshiftedCharCode = '!'; break; case NS_VK_DOUBLE_QUOTE: *aUnshiftedCharCode = '"'; break; case NS_VK_HASH: *aUnshiftedCharCode = '#'; break; case NS_VK_DOLLAR: *aUnshiftedCharCode = '$'; break; case NS_VK_PERCENT: *aUnshiftedCharCode = '%'; break; case NS_VK_AMPERSAND: *aUnshiftedCharCode = '&'; break; case NS_VK_UNDERSCORE: *aUnshiftedCharCode = '_'; break; case NS_VK_OPEN_PAREN: *aUnshiftedCharCode = '('; break; case NS_VK_CLOSE_PAREN: *aUnshiftedCharCode = ')'; break; case NS_VK_ASTERISK: *aUnshiftedCharCode = '*'; break; case NS_VK_PLUS: *aUnshiftedCharCode = '+'; break; case NS_VK_PIPE: *aUnshiftedCharCode = '|'; break; case NS_VK_HYPHEN_MINUS: *aUnshiftedCharCode = '-'; break; case NS_VK_OPEN_CURLY_BRACKET: *aUnshiftedCharCode = '{'; break; case NS_VK_CLOSE_CURLY_BRACKET: *aUnshiftedCharCode = '}'; break; case NS_VK_TILDE: *aUnshiftedCharCode = '~'; break; case NS_VK_COMMA: *aUnshiftedCharCode = ','; break; case NS_VK_PERIOD: *aUnshiftedCharCode = '.'; break; case NS_VK_SLASH: *aUnshiftedCharCode = '/'; break; case NS_VK_BACK_QUOTE: *aUnshiftedCharCode = '`'; break; case NS_VK_OPEN_BRACKET: *aUnshiftedCharCode = '['; break; case NS_VK_BACK_SLASH: *aUnshiftedCharCode = '\\'; break; case NS_VK_CLOSE_BRACKET: *aUnshiftedCharCode = ']'; break; case NS_VK_QUOTE: *aUnshiftedCharCode = '\''; break; default: *aUnshiftedCharCode = 0; break; } } } // namespace widget } // namespace mozilla