2010-03-26 21:39:39 +03:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8; -*- */
|
2010-06-25 02:20:42 +04:00
|
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
2009-09-10 02:00:14 +04:00
|
|
|
/* ***** 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 Mozilla Content App.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* The Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
2009-07-01 00:39:22 +04:00
|
|
|
#include "TabParent.h"
|
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
#include "mozilla/dom/ContentParent.h"
|
2009-10-29 20:58:31 +03:00
|
|
|
#include "mozilla/ipc/DocumentRendererParent.h"
|
2010-08-21 03:24:41 +04:00
|
|
|
#include "mozilla/layout/RenderFrameParent.h"
|
2010-10-20 21:12:32 +04:00
|
|
|
#include "mozilla/docshell/OfflineCacheUpdateParent.h"
|
2009-07-01 00:39:22 +04:00
|
|
|
|
|
|
|
#include "nsIURI.h"
|
2009-11-05 21:14:22 +03:00
|
|
|
#include "nsFocusManager.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsIDOMElement.h"
|
2009-11-17 17:22:23 +03:00
|
|
|
#include "nsEventDispatcher.h"
|
|
|
|
#include "nsIDOMEventTarget.h"
|
2010-05-17 15:25:22 +04:00
|
|
|
#include "nsIWindowWatcher.h"
|
|
|
|
#include "nsIDOMWindow.h"
|
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
#include "TabChild.h"
|
2009-11-17 17:22:23 +03:00
|
|
|
#include "nsIDOMEvent.h"
|
|
|
|
#include "nsIPrivateDOMEvent.h"
|
2010-01-01 04:35:55 +03:00
|
|
|
#include "nsFrameLoader.h"
|
2010-03-26 21:39:39 +03:00
|
|
|
#include "nsNetUtil.h"
|
2010-03-30 00:29:45 +04:00
|
|
|
#include "nsContentUtils.h"
|
2010-09-13 23:49:27 +04:00
|
|
|
#include "nsContentPermissionHelper.h"
|
2011-10-15 11:34:31 +04:00
|
|
|
#include "nsIDOMHTMLFrameElement.h"
|
2010-05-17 15:25:22 +04:00
|
|
|
#include "nsIDialogCreator.h"
|
|
|
|
#include "nsThreadUtils.h"
|
2010-08-13 12:06:40 +04:00
|
|
|
#include "nsSerializationHelper.h"
|
2010-06-25 02:20:42 +04:00
|
|
|
#include "nsIPromptFactory.h"
|
|
|
|
#include "nsIContent.h"
|
2011-06-22 04:32:43 +04:00
|
|
|
#include "nsIWidget.h"
|
2011-07-22 04:49:35 +04:00
|
|
|
#include "nsIViewManager.h"
|
2010-07-19 22:33:33 +04:00
|
|
|
#include "mozilla/unused.h"
|
2010-12-03 04:24:04 +03:00
|
|
|
#include "nsDebug.h"
|
2012-04-25 20:35:58 +04:00
|
|
|
#include "nsPrintfCString.h"
|
2010-07-19 22:33:33 +04:00
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
using namespace mozilla::dom;
|
|
|
|
using namespace mozilla::ipc;
|
|
|
|
using namespace mozilla::layout;
|
2011-11-27 15:51:52 +04:00
|
|
|
using namespace mozilla::widget;
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2010-03-26 21:39:39 +03:00
|
|
|
// The flags passed by the webProgress notifications are 16 bits shifted
|
|
|
|
// from the ones registered by webProgressListeners.
|
|
|
|
#define NOTIFY_FLAG_SHIFT 16
|
|
|
|
|
2009-07-01 00:39:22 +04:00
|
|
|
namespace mozilla {
|
2009-08-12 20:18:08 +04:00
|
|
|
namespace dom {
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
TabParent *TabParent::mIMETabParent = nsnull;
|
|
|
|
|
2010-11-21 22:21:56 +03:00
|
|
|
NS_IMPL_ISUPPORTS3(TabParent, nsITabParent, nsIAuthPromptProvider, nsISecureBrowserUI)
|
2010-03-26 21:39:39 +03:00
|
|
|
|
2009-08-12 20:18:08 +04:00
|
|
|
TabParent::TabParent()
|
2011-10-17 18:59:28 +04:00
|
|
|
: mIMEComposing(false)
|
|
|
|
, mIMECompositionEnding(false)
|
2011-01-12 00:34:31 +03:00
|
|
|
, mIMESeqno(0)
|
2010-12-09 21:57:05 +03:00
|
|
|
, mDPI(0)
|
2011-09-30 11:00:48 +04:00
|
|
|
, mActive(false)
|
2012-04-25 20:35:58 +04:00
|
|
|
, mShown(false)
|
2009-07-01 00:39:22 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TabParent::~TabParent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-12-09 21:57:05 +03:00
|
|
|
void
|
|
|
|
TabParent::SetOwnerElement(nsIDOMElement* aElement)
|
|
|
|
{
|
|
|
|
mFrameElement = aElement;
|
2012-04-25 20:35:58 +04:00
|
|
|
TryCacheDPI();
|
2010-12-09 21:57:05 +03:00
|
|
|
}
|
|
|
|
|
2011-01-06 07:54:47 +03:00
|
|
|
void
|
|
|
|
TabParent::Destroy()
|
|
|
|
{
|
|
|
|
// If this fails, it's most likely due to a content-process crash,
|
|
|
|
// and auto-cleanup will kick in. Otherwise, the child side will
|
|
|
|
// destroy itself and send back __delete__().
|
|
|
|
unused << SendDestroy();
|
|
|
|
|
|
|
|
for (size_t i = 0; i < ManagedPRenderFrameParent().Length(); ++i) {
|
|
|
|
RenderFrameParent* rfp =
|
|
|
|
static_cast<RenderFrameParent*>(ManagedPRenderFrameParent()[i]);
|
|
|
|
rfp->Destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-12 04:34:02 +04:00
|
|
|
void
|
|
|
|
TabParent::ActorDestroy(ActorDestroyReason why)
|
|
|
|
{
|
2011-01-21 19:48:56 +03:00
|
|
|
if (mIMETabParent == this)
|
|
|
|
mIMETabParent = nsnull;
|
2010-08-06 02:11:23 +04:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (frameLoader) {
|
|
|
|
frameLoader->DestroyChild();
|
2010-04-12 04:34:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-05 21:14:22 +03:00
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::RecvMoveFocus(const bool& aForward)
|
2009-11-05 21:14:22 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFocusManager> fm = do_GetService(FOCUSMANAGER_CONTRACTID);
|
|
|
|
if (fm) {
|
|
|
|
nsCOMPtr<nsIDOMElement> dummy;
|
2010-07-19 22:33:33 +04:00
|
|
|
PRUint32 type = aForward ? PRUint32(nsIFocusManager::MOVEFOCUS_FORWARD)
|
|
|
|
: PRUint32(nsIFocusManager::MOVEFOCUS_BACKWARD);
|
2009-11-05 21:14:22 +03:00
|
|
|
fm->MoveFocus(nsnull, mFrameElement, type, nsIFocusManager::FLAG_BYKEY,
|
|
|
|
getter_AddRefs(dummy));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-17 17:22:23 +03:00
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::RecvEvent(const RemoteDOMEvent& aEvent)
|
2009-11-17 17:22:23 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMEvent> event = do_QueryInterface(aEvent.mEvent);
|
|
|
|
NS_ENSURE_TRUE(event, true);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMEventTarget> target = do_QueryInterface(mFrameElement);
|
|
|
|
NS_ENSURE_TRUE(target, true);
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool dummy;
|
2009-11-17 17:22:23 +03:00
|
|
|
target->DispatchEvent(event, &dummy);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-01-01 04:35:55 +03:00
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::AnswerCreateWindow(PBrowserParent** retval)
|
2010-01-01 04:35:55 +03:00
|
|
|
{
|
|
|
|
if (!mBrowserDOMWindow) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a new rendering area from the browserDOMWin. We don't want
|
|
|
|
// to be starting any loads here, so get it with a null URI.
|
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> frameLoaderOwner;
|
|
|
|
mBrowserDOMWindow->OpenURIInFrame(nsnull, nsnull,
|
|
|
|
nsIBrowserDOMWindow::OPEN_NEWTAB,
|
|
|
|
nsIBrowserDOMWindow::OPEN_NEW,
|
|
|
|
getter_AddRefs(frameLoaderOwner));
|
|
|
|
if (!frameLoaderOwner) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = frameLoaderOwner->GetFrameLoader();
|
|
|
|
if (!frameLoader) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
*retval = frameLoader->GetRemoteBrowser();
|
2010-01-01 04:35:55 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-01 00:39:22 +04:00
|
|
|
void
|
|
|
|
TabParent::LoadURL(nsIURI* aURI)
|
|
|
|
{
|
2012-04-25 20:35:58 +04:00
|
|
|
if (!mShown) {
|
|
|
|
nsCAutoString spec;
|
|
|
|
if (aURI) {
|
|
|
|
aURI->GetSpec(spec);
|
|
|
|
}
|
|
|
|
NS_WARNING(nsPrintfCString("TabParent::LoadURL(%s) called before "
|
|
|
|
"Show(). Ignoring LoadURL.\n", spec.get()).get());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-01 00:39:22 +04:00
|
|
|
nsCString spec;
|
|
|
|
aURI->GetSpec(spec);
|
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
unused << SendLoadURL(spec);
|
2009-07-01 00:39:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-08-21 03:24:40 +04:00
|
|
|
TabParent::Show(const nsIntSize& size)
|
2009-07-01 00:39:22 +04:00
|
|
|
{
|
2010-08-21 03:24:40 +04:00
|
|
|
// sigh
|
2012-04-25 20:35:58 +04:00
|
|
|
mShown = true;
|
2010-08-21 03:24:40 +04:00
|
|
|
unused << SendShow(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-07-16 01:46:56 +04:00
|
|
|
TabParent::UpdateDimensions(const nsRect& rect, const nsIntSize& size)
|
2010-08-21 03:24:40 +04:00
|
|
|
{
|
2011-07-16 01:46:56 +04:00
|
|
|
unused << SendUpdateDimensions(rect, size);
|
2009-07-01 00:39:22 +04:00
|
|
|
}
|
|
|
|
|
2009-11-05 21:14:22 +03:00
|
|
|
void
|
|
|
|
TabParent::Activate()
|
|
|
|
{
|
2011-09-30 11:00:48 +04:00
|
|
|
mActive = true;
|
2010-07-19 22:33:33 +04:00
|
|
|
unused << SendActivate();
|
2009-11-05 21:14:22 +03:00
|
|
|
}
|
|
|
|
|
2011-06-18 04:08:32 +04:00
|
|
|
void
|
|
|
|
TabParent::Deactivate()
|
|
|
|
{
|
2011-09-30 11:00:48 +04:00
|
|
|
mActive = false;
|
2011-06-18 04:08:32 +04:00
|
|
|
unused << SendDeactivate();
|
|
|
|
}
|
|
|
|
|
2011-09-30 11:00:48 +04:00
|
|
|
bool
|
|
|
|
TabParent::Active()
|
|
|
|
{
|
|
|
|
return mActive;
|
|
|
|
}
|
|
|
|
|
2010-08-13 12:06:40 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::Init(nsIDOMWindow *window)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::GetState(PRUint32 *aState)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aState);
|
2010-09-18 06:11:05 +04:00
|
|
|
NS_WARNING("SecurityState not valid here");
|
2010-11-21 22:21:56 +03:00
|
|
|
*aState = 0;
|
2010-08-13 12:06:40 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::GetTooltipText(nsAString & aTooltipText)
|
|
|
|
{
|
2010-11-21 22:21:56 +03:00
|
|
|
aTooltipText.Truncate();
|
2010-08-13 12:06:40 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-10-27 02:20:53 +04:00
|
|
|
PDocumentRendererParent*
|
|
|
|
TabParent::AllocPDocumentRenderer(const nsRect& documentRect,
|
2010-10-27 02:20:53 +04:00
|
|
|
const gfxMatrix& transform,
|
2010-10-27 02:20:53 +04:00
|
|
|
const nsString& bgcolor,
|
|
|
|
const PRUint32& renderFlags,
|
2010-10-27 02:20:53 +04:00
|
|
|
const bool& flushLayout,
|
|
|
|
const nsIntSize& renderSize)
|
2009-10-29 20:58:31 +03:00
|
|
|
{
|
|
|
|
return new DocumentRendererParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-12-03 11:16:14 +03:00
|
|
|
TabParent::DeallocPDocumentRenderer(PDocumentRendererParent* actor)
|
2009-10-29 20:58:31 +03:00
|
|
|
{
|
2009-12-03 11:16:14 +03:00
|
|
|
delete actor;
|
2009-10-29 20:58:31 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-10 09:00:08 +04:00
|
|
|
PContentPermissionRequestParent*
|
|
|
|
TabParent::AllocPContentPermissionRequest(const nsCString& type, const IPC::URI& uri)
|
2010-05-13 21:44:51 +04:00
|
|
|
{
|
2010-09-13 23:49:27 +04:00
|
|
|
return new ContentPermissionRequestParent(type, mFrameElement, uri);
|
2010-05-13 21:44:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-09-10 09:00:08 +04:00
|
|
|
TabParent::DeallocPContentPermissionRequest(PContentPermissionRequestParent* actor)
|
2010-05-13 21:44:51 +04:00
|
|
|
{
|
|
|
|
delete actor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-05 21:21:09 +03:00
|
|
|
void
|
|
|
|
TabParent::SendMouseEvent(const nsAString& aType, float aX, float aY,
|
|
|
|
PRInt32 aButton, PRInt32 aClickCount,
|
2011-09-29 10:19:26 +04:00
|
|
|
PRInt32 aModifiers, bool aIgnoreRootScrollFrame)
|
2009-11-05 21:21:09 +03:00
|
|
|
{
|
2010-07-19 22:33:33 +04:00
|
|
|
unused << PBrowserParent::SendMouseEvent(nsString(aType), aX, aY,
|
|
|
|
aButton, aClickCount,
|
|
|
|
aModifiers, aIgnoreRootScrollFrame);
|
2009-11-05 21:21:09 +03:00
|
|
|
}
|
|
|
|
|
2010-03-19 09:52:18 +03:00
|
|
|
void
|
|
|
|
TabParent::SendKeyEvent(const nsAString& aType,
|
|
|
|
PRInt32 aKeyCode,
|
|
|
|
PRInt32 aCharCode,
|
|
|
|
PRInt32 aModifiers,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aPreventDefault)
|
2010-03-19 09:52:18 +03:00
|
|
|
{
|
2010-07-19 22:33:33 +04:00
|
|
|
unused << PBrowserParent::SendKeyEvent(nsString(aType), aKeyCode, aCharCode,
|
|
|
|
aModifiers, aPreventDefault);
|
2010-03-19 09:52:18 +03:00
|
|
|
}
|
|
|
|
|
2011-06-22 04:32:43 +04:00
|
|
|
bool TabParent::SendRealMouseEvent(nsMouseEvent& event)
|
|
|
|
{
|
|
|
|
return PBrowserParent::SendRealMouseEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TabParent::SendMouseScrollEvent(nsMouseScrollEvent& event)
|
|
|
|
{
|
|
|
|
return PBrowserParent::SendMouseScrollEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TabParent::SendRealKeyEvent(nsKeyEvent& event)
|
|
|
|
{
|
|
|
|
return PBrowserParent::SendRealKeyEvent(event);
|
|
|
|
}
|
|
|
|
|
2010-02-20 20:05:20 +03:00
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::RecvSyncMessage(const nsString& aMessage,
|
|
|
|
const nsString& aJSON,
|
2010-11-09 05:49:00 +03:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal)
|
2010-02-20 20:05:20 +03:00
|
|
|
{
|
2011-10-17 18:59:28 +04:00
|
|
|
return ReceiveMessage(aMessage, true, aJSON, aJSONRetVal);
|
2010-02-20 20:05:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-07-19 22:33:33 +04:00
|
|
|
TabParent::RecvAsyncMessage(const nsString& aMessage,
|
|
|
|
const nsString& aJSON)
|
2010-03-30 00:29:45 +04:00
|
|
|
{
|
2011-10-17 18:59:28 +04:00
|
|
|
return ReceiveMessage(aMessage, false, aJSON, nsnull);
|
2010-03-30 00:29:45 +04:00
|
|
|
}
|
|
|
|
|
2011-06-22 04:32:43 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetCursor(const PRUint32& aCursor)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
widget->SetCursor((nsCursor) aCursor);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-21 02:17:09 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvSetBackgroundColor(const nscolor& aColor)
|
|
|
|
{
|
|
|
|
if (nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader()) {
|
|
|
|
if (RenderFrameParent* frame = frameLoader->GetCurrentRemoteFrame()) {
|
|
|
|
frame->SetBackgroundColor(aColor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
bool
|
2011-09-29 10:19:26 +04:00
|
|
|
TabParent::RecvNotifyIMEFocus(const bool& aFocus,
|
2010-10-01 18:17:37 +04:00
|
|
|
nsIMEUpdatePreference* aPreference,
|
|
|
|
PRUint32* aSeqno)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2010-10-01 18:17:37 +04:00
|
|
|
*aSeqno = mIMESeqno;
|
2010-09-24 07:28:15 +04:00
|
|
|
mIMETabParent = aFocus ? this : nsnull;
|
|
|
|
mIMESelectionAnchor = 0;
|
|
|
|
mIMESelectionFocus = 0;
|
2010-09-24 07:28:15 +04:00
|
|
|
nsresult rv = widget->OnIMEFocusChange(aFocus);
|
|
|
|
|
|
|
|
if (aFocus) {
|
|
|
|
if (NS_SUCCEEDED(rv) && rv != NS_SUCCESS_IME_NO_UPDATES) {
|
|
|
|
*aPreference = widget->GetIMEUpdatePreference();
|
|
|
|
} else {
|
2011-10-17 18:59:28 +04:00
|
|
|
aPreference->mWantUpdates = false;
|
|
|
|
aPreference->mWantHints = false;
|
2010-09-24 07:28:15 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mIMECacheText.Truncate(0);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvNotifyIMETextChange(const PRUint32& aStart,
|
|
|
|
const PRUint32& aEnd,
|
|
|
|
const PRUint32& aNewEnd)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
widget->OnIMETextChange(aStart, aEnd, aNewEnd);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-10-01 18:17:37 +04:00
|
|
|
TabParent::RecvNotifyIMESelection(const PRUint32& aSeqno,
|
|
|
|
const PRUint32& aAnchor,
|
2010-09-24 07:28:15 +04:00
|
|
|
const PRUint32& aFocus)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2010-10-01 18:17:37 +04:00
|
|
|
if (aSeqno == mIMESeqno) {
|
|
|
|
mIMESelectionAnchor = aAnchor;
|
|
|
|
mIMESelectionFocus = aFocus;
|
|
|
|
widget->OnIMESelectionChange();
|
|
|
|
}
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::RecvNotifyIMETextHint(const nsString& aText)
|
|
|
|
{
|
|
|
|
// Replace our cache with new text
|
|
|
|
mIMECacheText = aText;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
/**
|
|
|
|
* Try to answer query event using cached text.
|
|
|
|
*
|
|
|
|
* For NS_QUERY_SELECTED_TEXT, fail if the cache doesn't contain the whole
|
|
|
|
* selected range. (This shouldn't happen because PuppetWidget should have
|
|
|
|
* already sent the whole selection.)
|
|
|
|
*
|
|
|
|
* For NS_QUERY_TEXT_CONTENT, fail only if the cache doesn't overlap with
|
|
|
|
* the queried range. Note the difference from above. We use
|
|
|
|
* this behavior because a normal NS_QUERY_TEXT_CONTENT event is allowed to
|
|
|
|
* have out-of-bounds offsets, so that widget can request content without
|
|
|
|
* knowing the exact length of text. It's up to widget to handle cases when
|
|
|
|
* the returned offset/length are different from the queried offset/length.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
TabParent::HandleQueryContentEvent(nsQueryContentEvent& aEvent)
|
|
|
|
{
|
2011-10-17 18:59:28 +04:00
|
|
|
aEvent.mSucceeded = false;
|
|
|
|
aEvent.mWasAsync = false;
|
2010-09-24 07:28:15 +04:00
|
|
|
aEvent.mReply.mFocusedWidget = nsCOMPtr<nsIWidget>(GetWidget()).get();
|
|
|
|
|
|
|
|
switch (aEvent.message)
|
|
|
|
{
|
|
|
|
case NS_QUERY_SELECTED_TEXT:
|
|
|
|
{
|
2011-06-02 16:56:50 +04:00
|
|
|
aEvent.mReply.mOffset = NS_MIN(mIMESelectionAnchor, mIMESelectionFocus);
|
2010-09-24 07:28:15 +04:00
|
|
|
if (mIMESelectionAnchor == mIMESelectionFocus) {
|
|
|
|
aEvent.mReply.mString.Truncate(0);
|
|
|
|
} else {
|
|
|
|
if (mIMESelectionAnchor > mIMECacheText.Length() ||
|
|
|
|
mIMESelectionFocus > mIMECacheText.Length()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
PRUint32 selLen = mIMESelectionAnchor > mIMESelectionFocus ?
|
|
|
|
mIMESelectionAnchor - mIMESelectionFocus :
|
|
|
|
mIMESelectionFocus - mIMESelectionAnchor;
|
|
|
|
aEvent.mReply.mString = Substring(mIMECacheText,
|
|
|
|
aEvent.mReply.mOffset,
|
|
|
|
selLen);
|
|
|
|
}
|
|
|
|
aEvent.mReply.mReversed = mIMESelectionFocus < mIMESelectionAnchor;
|
2011-10-17 18:59:28 +04:00
|
|
|
aEvent.mReply.mHasSelection = true;
|
|
|
|
aEvent.mSucceeded = true;
|
2010-09-24 07:28:15 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_QUERY_TEXT_CONTENT:
|
|
|
|
{
|
|
|
|
PRUint32 inputOffset = aEvent.mInput.mOffset,
|
|
|
|
inputEnd = inputOffset + aEvent.mInput.mLength;
|
|
|
|
|
|
|
|
if (inputEnd > mIMECacheText.Length()) {
|
|
|
|
inputEnd = mIMECacheText.Length();
|
|
|
|
}
|
|
|
|
if (inputEnd < inputOffset) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
aEvent.mReply.mOffset = inputOffset;
|
|
|
|
aEvent.mReply.mString = Substring(mIMECacheText,
|
|
|
|
inputOffset,
|
|
|
|
inputEnd - inputOffset);
|
2011-10-17 18:59:28 +04:00
|
|
|
aEvent.mSucceeded = true;
|
2010-09-24 07:28:15 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:34:26 +04:00
|
|
|
bool
|
2010-10-01 18:17:37 +04:00
|
|
|
TabParent::SendCompositionEvent(nsCompositionEvent& event)
|
2010-09-24 07:34:26 +04:00
|
|
|
{
|
2011-09-22 13:17:40 +04:00
|
|
|
mIMEComposing = event.message != NS_COMPOSITION_END;
|
2011-06-02 16:56:50 +04:00
|
|
|
mIMECompositionStart = NS_MIN(mIMESelectionAnchor, mIMESelectionFocus);
|
2010-09-24 07:34:26 +04:00
|
|
|
if (mIMECompositionEnding)
|
|
|
|
return true;
|
2010-10-01 18:17:37 +04:00
|
|
|
event.seqno = ++mIMESeqno;
|
2010-09-24 07:34:26 +04:00
|
|
|
return PBrowserParent::SendCompositionEvent(event);
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
/**
|
|
|
|
* During ResetInputState or CancelComposition, widget usually sends a
|
|
|
|
* NS_TEXT_TEXT event to finalize or clear the composition, respectively
|
|
|
|
*
|
|
|
|
* Because the event will not reach content in time, we intercept it
|
|
|
|
* here and pass the text as the EndIMEComposition return value
|
|
|
|
*/
|
|
|
|
bool
|
2010-10-01 18:17:37 +04:00
|
|
|
TabParent::SendTextEvent(nsTextEvent& event)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
|
|
|
if (mIMECompositionEnding) {
|
|
|
|
mIMECompositionText = event.theText;
|
|
|
|
return true;
|
|
|
|
}
|
2010-09-24 07:34:26 +04:00
|
|
|
|
|
|
|
// We must be able to simulate the selection because
|
|
|
|
// we might not receive selection updates in time
|
|
|
|
if (!mIMEComposing) {
|
2011-06-02 16:56:50 +04:00
|
|
|
mIMECompositionStart = NS_MIN(mIMESelectionAnchor, mIMESelectionFocus);
|
2010-09-24 07:34:26 +04:00
|
|
|
}
|
|
|
|
mIMESelectionAnchor = mIMESelectionFocus =
|
|
|
|
mIMECompositionStart + event.theText.Length();
|
|
|
|
|
2010-10-01 18:17:37 +04:00
|
|
|
event.seqno = ++mIMESeqno;
|
2010-09-24 07:28:15 +04:00
|
|
|
return PBrowserParent::SendTextEvent(event);
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:34:26 +04:00
|
|
|
bool
|
2010-10-01 18:17:37 +04:00
|
|
|
TabParent::SendSelectionEvent(nsSelectionEvent& event)
|
2010-09-24 07:34:26 +04:00
|
|
|
{
|
|
|
|
mIMESelectionAnchor = event.mOffset + (event.mReversed ? event.mLength : 0);
|
|
|
|
mIMESelectionFocus = event.mOffset + (!event.mReversed ? event.mLength : 0);
|
2010-10-01 18:17:37 +04:00
|
|
|
event.seqno = ++mIMESeqno;
|
2010-09-24 07:34:26 +04:00
|
|
|
return PBrowserParent::SendSelectionEvent(event);
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
bool
|
2011-09-29 10:19:26 +04:00
|
|
|
TabParent::RecvEndIMEComposition(const bool& aCancel,
|
2010-09-24 07:28:15 +04:00
|
|
|
nsString* aComposition)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return true;
|
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
mIMECompositionEnding = true;
|
2010-09-24 07:28:15 +04:00
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
if (aCancel) {
|
|
|
|
widget->CancelIMEComposition();
|
|
|
|
} else {
|
|
|
|
widget->ResetInputState();
|
|
|
|
}
|
2010-09-24 07:28:15 +04:00
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
mIMECompositionEnding = false;
|
2010-09-24 07:28:15 +04:00
|
|
|
*aComposition = mIMECompositionText;
|
|
|
|
mIMECompositionText.Truncate(0);
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2011-11-27 15:51:53 +04:00
|
|
|
TabParent::RecvGetInputContext(PRInt32* aIMEEnabled,
|
|
|
|
PRInt32* aIMEOpen)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2011-06-30 01:24:47 +04:00
|
|
|
if (!widget) {
|
2011-11-27 15:51:53 +04:00
|
|
|
*aIMEEnabled = IMEState::DISABLED;
|
|
|
|
*aIMEOpen = IMEState::OPEN_STATE_NOT_SUPPORTED;
|
2010-11-23 09:48:45 +03:00
|
|
|
return true;
|
2011-06-30 01:24:47 +04:00
|
|
|
}
|
2010-11-23 09:48:45 +03:00
|
|
|
|
2011-11-27 15:51:52 +04:00
|
|
|
InputContext context = widget->GetInputContext();
|
2011-11-27 15:51:53 +04:00
|
|
|
*aIMEEnabled = static_cast<PRInt32>(context.mIMEState.mEnabled);
|
|
|
|
*aIMEOpen = static_cast<PRInt32>(context.mIMEState.mOpen);
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2011-11-27 15:51:53 +04:00
|
|
|
TabParent::RecvSetInputContext(const PRInt32& aIMEEnabled,
|
|
|
|
const PRInt32& aIMEOpen,
|
2011-11-27 15:51:52 +04:00
|
|
|
const nsString& aType,
|
|
|
|
const nsString& aActionHint,
|
|
|
|
const PRInt32& aCause,
|
|
|
|
const PRInt32& aFocusChange)
|
2010-09-24 07:28:15 +04:00
|
|
|
{
|
2011-05-20 22:44:09 +04:00
|
|
|
// mIMETabParent (which is actually static) tracks which if any TabParent has IMEFocus
|
2011-11-27 15:51:53 +04:00
|
|
|
// When the input mode is set to anything but IMEState::DISABLED,
|
|
|
|
// mIMETabParent should be set to this
|
|
|
|
mIMETabParent =
|
|
|
|
aIMEEnabled != static_cast<PRInt32>(IMEState::DISABLED) ? this : nsnull;
|
2010-09-24 07:28:15 +04:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2010-11-23 09:48:03 +03:00
|
|
|
if (!widget || !AllowContentIME())
|
|
|
|
return true;
|
|
|
|
|
2011-11-27 15:51:52 +04:00
|
|
|
InputContext context;
|
2011-11-27 15:51:53 +04:00
|
|
|
context.mIMEState.mEnabled = static_cast<IMEState::Enabled>(aIMEEnabled);
|
|
|
|
context.mIMEState.mOpen = static_cast<IMEState::Open>(aIMEOpen);
|
2010-11-23 09:48:03 +03:00
|
|
|
context.mHTMLInputType.Assign(aType);
|
2011-11-27 15:51:52 +04:00
|
|
|
context.mActionHint.Assign(aActionHint);
|
|
|
|
InputContextAction action(
|
|
|
|
static_cast<InputContextAction::Cause>(aCause),
|
|
|
|
static_cast<InputContextAction::FocusChange>(aFocusChange));
|
|
|
|
widget->SetInputContext(context, action);
|
2010-11-23 09:48:03 +03:00
|
|
|
|
|
|
|
nsCOMPtr<nsIObserverService> observerService = mozilla::services::GetObserverService();
|
|
|
|
if (!observerService)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
nsAutoString state;
|
2011-11-27 15:51:53 +04:00
|
|
|
state.AppendInt(aIMEEnabled);
|
2010-11-23 09:48:03 +03:00
|
|
|
observerService->NotifyObservers(nsnull, "ime-enabled-state-changed", state.get());
|
2010-10-18 20:37:00 +04:00
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-03 04:24:04 +03:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetDPI(float* aValue)
|
|
|
|
{
|
2012-04-25 20:35:58 +04:00
|
|
|
TryCacheDPI();
|
2012-05-08 20:20:35 +04:00
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(mDPI > 0,
|
2010-12-09 21:57:05 +03:00
|
|
|
"Must not ask for DPI before OwnerElement is received!");
|
|
|
|
*aValue = mDPI;
|
2010-12-03 04:24:04 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-07-22 04:49:35 +04:00
|
|
|
bool
|
|
|
|
TabParent::RecvGetWidgetNativeData(WindowsHandle* aValue)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(mFrameElement);
|
|
|
|
if (content) {
|
2011-10-18 15:19:44 +04:00
|
|
|
nsIPresShell* shell = content->OwnerDoc()->GetShell();
|
|
|
|
if (shell) {
|
|
|
|
nsIViewManager* vm = shell->GetViewManager();
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
vm->GetRootWidget(getter_AddRefs(widget));
|
|
|
|
if (widget) {
|
|
|
|
*aValue = reinterpret_cast<WindowsHandle>(
|
|
|
|
widget->GetNativeData(NS_NATIVE_SHAREABLE_WINDOW));
|
|
|
|
return true;
|
2011-07-22 04:49:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-03-30 00:29:45 +04:00
|
|
|
bool
|
|
|
|
TabParent::ReceiveMessage(const nsString& aMessage,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aSync,
|
2010-03-30 00:29:45 +04:00
|
|
|
const nsString& aJSON,
|
2010-11-09 05:49:00 +03:00
|
|
|
InfallibleTArray<nsString>* aJSONRetVal)
|
2010-02-20 20:05:20 +03:00
|
|
|
{
|
2010-08-06 02:11:23 +04:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
|
|
|
if (frameLoader && frameLoader->GetFrameMessageManager()) {
|
2011-06-16 22:21:08 +04:00
|
|
|
nsRefPtr<nsFrameMessageManager> manager =
|
|
|
|
frameLoader->GetFrameMessageManager();
|
2011-03-24 23:00:45 +03:00
|
|
|
JSContext* ctx = manager->GetJSContext();
|
|
|
|
JSAutoRequest ar(ctx);
|
|
|
|
PRUint32 len = 0; //TODO: obtain a real value in bug 572685
|
|
|
|
// Because we want JS messages to have always the same properties,
|
|
|
|
// create array even if len == 0.
|
|
|
|
JSObject* objectsArray = JS_NewArrayObject(ctx, len, NULL);
|
|
|
|
if (!objectsArray) {
|
|
|
|
return false;
|
2010-02-20 20:05:20 +03:00
|
|
|
}
|
2010-08-06 02:11:23 +04:00
|
|
|
|
|
|
|
manager->ReceiveMessage(mFrameElement,
|
|
|
|
aMessage,
|
|
|
|
aSync,
|
|
|
|
aJSON,
|
|
|
|
objectsArray,
|
|
|
|
aJSONRetVal);
|
2010-02-20 20:05:20 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-06-25 02:20:42 +04:00
|
|
|
// nsIAuthPromptProvider
|
|
|
|
|
|
|
|
// This method is largely copied from nsDocShell::GetAuthPrompt
|
|
|
|
NS_IMETHODIMP
|
|
|
|
TabParent::GetAuthPrompt(PRUint32 aPromptReason, const nsIID& iid,
|
|
|
|
void** aResult)
|
|
|
|
{
|
|
|
|
// we're either allowing auth, or it's a proxy request
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIPromptFactory> wwatch =
|
|
|
|
do_GetService(NS_WINDOWWATCHER_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> window;
|
|
|
|
nsCOMPtr<nsIContent> frame = do_QueryInterface(mFrameElement);
|
|
|
|
if (frame)
|
2011-10-18 14:53:36 +04:00
|
|
|
window = do_QueryInterface(frame->OwnerDoc()->GetWindow());
|
2010-06-25 02:20:42 +04:00
|
|
|
|
|
|
|
// Get an auth prompter for our window so that the parenting
|
|
|
|
// of the dialogs works as it should when using tabs.
|
|
|
|
return wwatch->GetPrompt(window, iid,
|
|
|
|
reinterpret_cast<void**>(aResult));
|
|
|
|
}
|
|
|
|
|
2010-05-17 15:25:22 +04:00
|
|
|
PContentDialogParent*
|
|
|
|
TabParent::AllocPContentDialog(const PRUint32& aType,
|
|
|
|
const nsCString& aName,
|
|
|
|
const nsCString& aFeatures,
|
2010-11-09 05:49:00 +03:00
|
|
|
const InfallibleTArray<int>& aIntParams,
|
|
|
|
const InfallibleTArray<nsString>& aStringParams)
|
2010-05-17 15:25:22 +04:00
|
|
|
{
|
|
|
|
ContentDialogParent* parent = new ContentDialogParent();
|
|
|
|
nsCOMPtr<nsIDialogParamBlock> params =
|
|
|
|
do_CreateInstance(NS_DIALOGPARAMBLOCK_CONTRACTID);
|
|
|
|
TabChild::ArraysToParams(aIntParams, aStringParams, params);
|
|
|
|
mDelayedDialogs.AppendElement(new DelayedDialogData(parent, aType, aName,
|
|
|
|
aFeatures, params));
|
|
|
|
nsRefPtr<nsIRunnable> ev =
|
|
|
|
NS_NewRunnableMethod(this, &TabParent::HandleDelayedDialogs);
|
|
|
|
NS_DispatchToCurrentThread(ev);
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TabParent::HandleDelayedDialogs()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWindowWatcher> ww = do_GetService(NS_WINDOWWATCHER_CONTRACTID);
|
|
|
|
nsCOMPtr<nsIDOMWindow> window;
|
|
|
|
nsCOMPtr<nsIContent> frame = do_QueryInterface(mFrameElement);
|
|
|
|
if (frame) {
|
2011-10-18 14:53:36 +04:00
|
|
|
window = do_QueryInterface(frame->OwnerDoc()->GetWindow());
|
2010-05-17 15:25:22 +04:00
|
|
|
}
|
|
|
|
nsCOMPtr<nsIDialogCreator> dialogCreator = do_QueryInterface(mBrowserDOMWindow);
|
|
|
|
while (!ShouldDelayDialogs() && mDelayedDialogs.Length()) {
|
|
|
|
PRUint32 index = mDelayedDialogs.Length() - 1;
|
|
|
|
DelayedDialogData* data = mDelayedDialogs[index];
|
|
|
|
mDelayedDialogs.RemoveElementAt(index);
|
|
|
|
nsCOMPtr<nsIDialogParamBlock> params;
|
|
|
|
params.swap(data->mParams);
|
|
|
|
PContentDialogParent* dialog = data->mDialog;
|
|
|
|
if (dialogCreator) {
|
|
|
|
dialogCreator->OpenDialog(data->mType,
|
|
|
|
data->mName, data->mFeatures,
|
|
|
|
params, mFrameElement);
|
|
|
|
} else if (ww) {
|
|
|
|
nsCAutoString url;
|
|
|
|
if (data->mType) {
|
|
|
|
if (data->mType == nsIDialogCreator::SELECT_DIALOG) {
|
|
|
|
url.Assign("chrome://global/content/selectDialog.xul");
|
|
|
|
} else if (data->mType == nsIDialogCreator::GENERIC_DIALOG) {
|
|
|
|
url.Assign("chrome://global/content/commonDialog.xul");
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> arguments(do_QueryInterface(params));
|
|
|
|
nsCOMPtr<nsIDOMWindow> dialog;
|
|
|
|
ww->OpenWindow(window, url.get(), data->mName.get(),
|
|
|
|
data->mFeatures.get(), arguments, getter_AddRefs(dialog));
|
|
|
|
} else {
|
|
|
|
NS_WARNING("unknown dialog types aren't automatically supported in E10s yet!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delete data;
|
|
|
|
if (dialog) {
|
2010-11-09 05:49:00 +03:00
|
|
|
InfallibleTArray<PRInt32> intParams;
|
|
|
|
InfallibleTArray<nsString> stringParams;
|
2010-05-17 15:25:22 +04:00
|
|
|
TabChild::ParamsToArrays(params, intParams, stringParams);
|
2010-07-19 22:33:33 +04:00
|
|
|
unused << PContentDialogParent::Send__delete__(dialog,
|
|
|
|
intParams, stringParams);
|
2010-05-17 15:25:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ShouldDelayDialogs() && mDelayedDialogs.Length()) {
|
2011-10-18 14:53:36 +04:00
|
|
|
nsContentUtils::DispatchTrustedEvent(frame->OwnerDoc(), frame,
|
2010-05-17 15:25:22 +04:00
|
|
|
NS_LITERAL_STRING("MozDelayedModalDialog"),
|
2011-10-17 18:59:28 +04:00
|
|
|
true, true);
|
2010-05-17 15:25:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
PRenderFrameParent*
|
|
|
|
TabParent::AllocPRenderFrame()
|
|
|
|
{
|
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
2011-08-09 23:38:26 +04:00
|
|
|
return new RenderFrameParent(frameLoader);
|
2010-08-21 03:24:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::DeallocPRenderFrame(PRenderFrameParent* aFrame)
|
|
|
|
{
|
|
|
|
delete aFrame;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-10-20 21:12:32 +04:00
|
|
|
mozilla::docshell::POfflineCacheUpdateParent*
|
|
|
|
TabParent::AllocPOfflineCacheUpdate(const URI& aManifestURI,
|
|
|
|
const URI& aDocumentURI,
|
|
|
|
const nsCString& aClientID,
|
|
|
|
const bool& stickDocument)
|
|
|
|
{
|
|
|
|
nsRefPtr<mozilla::docshell::OfflineCacheUpdateParent> update =
|
|
|
|
new mozilla::docshell::OfflineCacheUpdateParent();
|
|
|
|
|
|
|
|
nsresult rv = update->Schedule(aManifestURI, aDocumentURI, aClientID,
|
|
|
|
stickDocument);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
POfflineCacheUpdateParent* result = update.get();
|
|
|
|
update.forget();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
TabParent::DeallocPOfflineCacheUpdate(mozilla::docshell::POfflineCacheUpdateParent* actor)
|
|
|
|
{
|
|
|
|
mozilla::docshell::OfflineCacheUpdateParent* update =
|
|
|
|
static_cast<mozilla::docshell::OfflineCacheUpdateParent*>(actor);
|
|
|
|
|
|
|
|
update->Release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2010-05-17 15:25:22 +04:00
|
|
|
TabParent::ShouldDelayDialogs()
|
|
|
|
{
|
2010-08-06 02:11:23 +04:00
|
|
|
nsRefPtr<nsFrameLoader> frameLoader = GetFrameLoader();
|
2011-10-17 18:59:28 +04:00
|
|
|
NS_ENSURE_TRUE(frameLoader, true);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool delay = false;
|
2010-05-17 15:25:22 +04:00
|
|
|
frameLoader->GetDelayRemoteDialogs(&delay);
|
|
|
|
return delay;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2010-10-19 12:21:31 +04:00
|
|
|
TabParent::AllowContentIME()
|
|
|
|
{
|
|
|
|
nsFocusManager* fm = nsFocusManager::GetFocusManager();
|
2011-10-17 18:59:28 +04:00
|
|
|
NS_ENSURE_TRUE(fm, false);
|
2010-10-19 12:21:31 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> focusedContent = fm->GetFocusedContent();
|
|
|
|
if (focusedContent && focusedContent->IsEditable())
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-10-19 12:21:31 +04:00
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2010-10-19 12:21:31 +04:00
|
|
|
}
|
|
|
|
|
2010-08-06 02:11:23 +04:00
|
|
|
already_AddRefed<nsFrameLoader>
|
|
|
|
TabParent::GetFrameLoader() const
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> frameLoaderOwner = do_QueryInterface(mFrameElement);
|
|
|
|
return frameLoaderOwner ? frameLoaderOwner->GetFrameLoader() : nsnull;
|
|
|
|
}
|
|
|
|
|
2012-04-25 20:35:58 +04:00
|
|
|
void
|
|
|
|
TabParent::TryCacheDPI()
|
|
|
|
{
|
|
|
|
if (mDPI > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2012-05-08 20:20:35 +04:00
|
|
|
|
|
|
|
if (!widget && mFrameElement) {
|
|
|
|
// Even if we don't have a widget (e.g. because we're display:none), there's
|
|
|
|
// probably a widget somewhere in the hierarchy our frame element lives in.
|
|
|
|
nsCOMPtr<nsIDOMDocument> ownerDoc;
|
|
|
|
mFrameElement->GetOwnerDocument(getter_AddRefs(ownerDoc));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc = do_QueryInterface(ownerDoc);
|
|
|
|
widget = nsContentUtils::WidgetForDocument(doc);
|
|
|
|
}
|
|
|
|
|
2012-04-25 20:35:58 +04:00
|
|
|
if (widget) {
|
|
|
|
mDPI = widget->GetDPI();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-24 07:28:15 +04:00
|
|
|
already_AddRefed<nsIWidget>
|
|
|
|
TabParent::GetWidget() const
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(mFrameElement);
|
|
|
|
if (!content)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
nsIFrame *frame = content->GetPrimaryFrame();
|
|
|
|
if (!frame)
|
|
|
|
return nsnull;
|
|
|
|
|
2012-04-25 20:35:58 +04:00
|
|
|
nsCOMPtr<nsIWidget> widget = frame->GetNearestWidget();
|
|
|
|
return widget.forget();
|
2010-09-24 07:28:15 +04:00
|
|
|
}
|
|
|
|
|
2009-07-01 00:39:22 +04:00
|
|
|
} // namespace tabs
|
|
|
|
} // namespace mozilla
|