2015-11-17 18:18:09 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-12-08 18:52:54 -08:00
|
|
|
#include "mozilla/ArrayUtils.h"
|
2015-01-27 22:27:30 -08:00
|
|
|
#include "mozilla/TextEventDispatcher.h"
|
2011-10-10 22:50:08 -07:00
|
|
|
|
2012-01-19 06:45:37 -08:00
|
|
|
#include "mozilla/layers/CompositorChild.h"
|
|
|
|
#include "mozilla/layers/CompositorParent.h"
|
2013-06-23 22:28:22 -07:00
|
|
|
#include "mozilla/layers/ImageBridgeChild.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsBaseWidget.h"
|
2011-04-16 18:22:44 -07:00
|
|
|
#include "nsDeviceContext.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsGfxCIID.h"
|
|
|
|
#include "nsWidgetsCID.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsIScreenManager.h"
|
|
|
|
#include "nsAppDirectoryServiceDefs.h"
|
|
|
|
#include "nsISimpleEnumerator.h"
|
2007-12-03 08:33:42 -08:00
|
|
|
#include "nsIContent.h"
|
2013-10-24 00:18:07 -07:00
|
|
|
#include "nsIDocument.h"
|
2014-04-01 17:21:23 -07:00
|
|
|
#include "nsIPresShell.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIServiceManager.h"
|
2011-05-23 07:54:03 -07:00
|
|
|
#include "mozilla/Preferences.h"
|
2010-03-01 00:03:49 -08:00
|
|
|
#include "BasicLayers.h"
|
2013-04-30 22:03:25 -07:00
|
|
|
#include "ClientLayerManager.h"
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
#include "mozilla/layers/Compositor.h"
|
2010-08-27 19:44:37 -07:00
|
|
|
#include "nsIXULRuntime.h"
|
2012-08-15 11:52:37 -07:00
|
|
|
#include "nsIXULWindow.h"
|
2012-08-15 11:52:41 -07:00
|
|
|
#include "nsIBaseWindow.h"
|
2012-10-26 06:15:22 -07:00
|
|
|
#include "nsXULPopupManager.h"
|
2012-08-15 11:52:42 -07:00
|
|
|
#include "nsIWidgetListener.h"
|
2011-01-18 12:11:19 -08:00
|
|
|
#include "nsIGfxInfo.h"
|
2011-01-20 20:01:25 -08:00
|
|
|
#include "npapi.h"
|
2012-01-19 06:45:37 -08:00
|
|
|
#include "base/thread.h"
|
2013-02-26 01:01:10 -08:00
|
|
|
#include "prdtoa.h"
|
2012-05-22 08:34:34 -07:00
|
|
|
#include "prenv.h"
|
2012-06-18 18:28:00 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2014-03-15 12:00:16 -07:00
|
|
|
#include "mozilla/unused.h"
|
2013-01-31 15:11:49 -08:00
|
|
|
#include "nsContentUtils.h"
|
2014-02-26 18:53:27 -08:00
|
|
|
#include "gfxPrefs.h"
|
2013-07-08 21:21:05 -07:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2013-09-25 04:21:18 -07:00
|
|
|
#include "mozilla/MouseEvents.h"
|
2013-11-26 14:15:17 -08:00
|
|
|
#include "GLConsts.h"
|
2014-03-15 12:00:16 -07:00
|
|
|
#include "mozilla/unused.h"
|
2015-11-12 20:05:54 -08:00
|
|
|
#include "mozilla/IMEStateManager.h"
|
2014-12-18 08:30:05 -08:00
|
|
|
#include "mozilla/VsyncDispatcher.h"
|
2014-12-15 01:47:15 -08:00
|
|
|
#include "mozilla/layers/APZCTreeManager.h"
|
2015-02-06 16:45:23 -08:00
|
|
|
#include "mozilla/layers/APZEventState.h"
|
2015-02-10 05:24:23 -08:00
|
|
|
#include "mozilla/layers/APZThreadUtils.h"
|
2014-12-15 01:49:48 -08:00
|
|
|
#include "mozilla/layers/ChromeProcessController.h"
|
2014-12-18 15:25:03 -08:00
|
|
|
#include "mozilla/layers/InputAPZContext.h"
|
2015-02-04 09:52:18 -08:00
|
|
|
#include "mozilla/layers/APZCCallbackHelper.h"
|
2015-12-10 22:15:57 -08:00
|
|
|
#include "mozilla/dom/ContentChild.h"
|
2014-12-18 15:25:03 -08:00
|
|
|
#include "mozilla/dom/TabParent.h"
|
2015-09-11 09:52:43 -07:00
|
|
|
#include "mozilla/Move.h"
|
2015-07-08 13:51:09 -07:00
|
|
|
#include "mozilla/Services.h"
|
2015-05-26 11:33:55 -07:00
|
|
|
#include "mozilla/Snprintf.h"
|
2015-01-29 11:41:53 -08:00
|
|
|
#include "nsRefPtrHashtable.h"
|
2015-02-06 15:11:30 -08:00
|
|
|
#include "TouchEvents.h"
|
2015-05-14 18:18:08 -07:00
|
|
|
#include "WritingModes.h"
|
2015-11-18 16:33:00 -08:00
|
|
|
#include "InputData.h"
|
2012-08-15 11:52:37 -07:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
#include "nsAccessibilityService.h"
|
|
|
|
#endif
|
|
|
|
|
2009-09-24 03:58:04 -07:00
|
|
|
#ifdef DEBUG
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIObserver.h"
|
|
|
|
|
|
|
|
static void debug_RegisterPrefCallbacks();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef NOISY_WIDGET_LEAKS
|
2012-08-22 08:56:38 -07:00
|
|
|
static int32_t gNumWidgets;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
2013-12-19 08:42:19 -08:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
#include "nsCocoaFeatures.h"
|
|
|
|
#endif
|
|
|
|
|
2015-01-29 11:41:53 -08:00
|
|
|
#if defined(XP_WIN) || defined(MOZ_WIDGET_GTK)
|
|
|
|
static nsRefPtrHashtable<nsVoidPtrHashKey, nsIWidget>* sPluginWidgetList;
|
|
|
|
#endif
|
2015-05-26 11:33:55 -07:00
|
|
|
|
2012-10-26 06:15:22 -07:00
|
|
|
nsIRollupListener* nsBaseWidget::gRollupListener = nullptr;
|
|
|
|
|
2015-12-10 22:15:57 -08:00
|
|
|
using namespace mozilla::dom;
|
2010-03-01 00:03:49 -08:00
|
|
|
using namespace mozilla::layers;
|
2013-09-27 18:42:08 -07:00
|
|
|
using namespace mozilla::ipc;
|
2015-01-27 22:27:31 -08:00
|
|
|
using namespace mozilla::widget;
|
2011-05-23 07:54:03 -07:00
|
|
|
using namespace mozilla;
|
2012-01-19 06:45:37 -08:00
|
|
|
using base::Thread;
|
2010-03-01 00:03:49 -08:00
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
nsIContent* nsBaseWidget::mLastRollup = nullptr;
|
2012-05-15 06:01:48 -07:00
|
|
|
// Global user preference for disabling native theme. Used
|
|
|
|
// in NativeWindowTheme.
|
|
|
|
bool gDisableNativeTheme = false;
|
2007-12-03 08:33:42 -08:00
|
|
|
|
2013-12-14 12:40:56 -08:00
|
|
|
// Async pump timer during injected long touch taps
|
|
|
|
#define TOUCH_INJECT_PUMP_TIMER_MSEC 50
|
|
|
|
#define TOUCH_INJECT_LONG_TAP_DEFAULT_MSEC 1500
|
|
|
|
int32_t nsIWidget::sPointerIdCounter = 0;
|
|
|
|
|
2015-04-14 08:36:36 -07:00
|
|
|
// Some statics from nsIWidget.h
|
|
|
|
/*static*/ uint64_t AutoObserverNotifier::sObserverId = 0;
|
|
|
|
/*static*/ nsDataHashtable<nsUint64HashKey, nsCOMPtr<nsIObserver>> AutoObserverNotifier::sSavedObservers;
|
|
|
|
|
2015-05-14 18:18:08 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
|
|
|
|
|
|
void
|
2015-08-21 09:43:41 -07:00
|
|
|
IMENotification::SelectionChangeDataBase::SetWritingMode(
|
2015-05-14 18:18:08 -07:00
|
|
|
const WritingMode& aWritingMode)
|
|
|
|
{
|
|
|
|
mWritingMode = aWritingMode.mWritingMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
WritingMode
|
2015-08-21 09:43:41 -07:00
|
|
|
IMENotification::SelectionChangeDataBase::GetWritingMode() const
|
2015-05-14 18:18:08 -07:00
|
|
|
{
|
|
|
|
return WritingMode(mWritingMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2007-12-03 08:33:42 -08:00
|
|
|
nsAutoRollup::nsAutoRollup()
|
|
|
|
{
|
|
|
|
// remember if mLastRollup was null, and only clear it upon destruction
|
|
|
|
// if so. This prevents recursive usage of nsAutoRollup from clearing
|
|
|
|
// mLastRollup when it shouldn't.
|
|
|
|
wasClear = !nsBaseWidget::mLastRollup;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoRollup::~nsAutoRollup()
|
|
|
|
{
|
|
|
|
if (nsBaseWidget::mLastRollup && wasClear) {
|
|
|
|
NS_RELEASE(nsBaseWidget::mLastRollup);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-17 22:27:53 -08:00
|
|
|
NS_IMPL_ISUPPORTS(nsBaseWidget, nsIWidget, nsISupportsWeakReference)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// nsBaseWidget constructor
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
nsBaseWidget::nsBaseWidget()
|
2012-08-15 11:52:42 -07:00
|
|
|
: mWidgetListener(nullptr)
|
2012-08-15 11:53:14 -07:00
|
|
|
, mAttachedWidgetListener(nullptr)
|
2015-07-21 18:09:02 -07:00
|
|
|
, mPreviouslyAttachedWidgetListener(nullptr)
|
2015-05-21 01:10:37 -07:00
|
|
|
, mLayerManager(nullptr)
|
2014-12-19 12:52:42 -08:00
|
|
|
, mCompositorVsyncDispatcher(nullptr)
|
2007-03-22 10:30:00 -07:00
|
|
|
, mCursor(eCursor_standard)
|
|
|
|
, mBorderStyle(eBorderStyle_none)
|
|
|
|
, mBounds(0,0,0,0)
|
2012-07-30 07:20:58 -07:00
|
|
|
, mOriginalBounds(nullptr)
|
2009-07-21 17:44:55 -07:00
|
|
|
, mClipRectCount(0)
|
2007-03-22 10:30:00 -07:00
|
|
|
, mSizeMode(nsSizeMode_Normal)
|
2010-07-27 06:38:03 -07:00
|
|
|
, mPopupLevel(ePopupLevelTop)
|
2012-05-31 10:52:09 -07:00
|
|
|
, mPopupType(ePopupTypeAny)
|
2015-08-05 23:57:58 -07:00
|
|
|
, mUpdateCursor(true)
|
|
|
|
, mUseAttachedEvents(false)
|
|
|
|
, mIMEHasFocus(false)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
#ifdef NOISY_WIDGET_LEAKS
|
|
|
|
gNumWidgets++;
|
|
|
|
printf("WIDGETS+ = %d\n", gNumWidgets);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2012-05-22 08:34:34 -07:00
|
|
|
debug_RegisterPrefCallbacks();
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2013-06-16 19:50:32 -07:00
|
|
|
|
2015-01-29 11:41:53 -08:00
|
|
|
#if defined(XP_WIN) || defined(MOZ_WIDGET_GTK)
|
|
|
|
if (!sPluginWidgetList) {
|
|
|
|
sPluginWidgetList = new nsRefPtrHashtable<nsVoidPtrHashKey, nsIWidget>();
|
|
|
|
}
|
|
|
|
#endif
|
2013-06-16 19:50:32 -07:00
|
|
|
mShutdownObserver = new WidgetShutdownObserver(this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2014-04-27 00:06:00 -07:00
|
|
|
NS_IMPL_ISUPPORTS(WidgetShutdownObserver, nsIObserver)
|
2013-06-16 19:50:32 -07:00
|
|
|
|
2015-04-16 08:16:04 -07:00
|
|
|
WidgetShutdownObserver::WidgetShutdownObserver(nsBaseWidget* aWidget) :
|
|
|
|
mWidget(aWidget),
|
|
|
|
mRegistered(false)
|
|
|
|
{
|
|
|
|
Register();
|
|
|
|
}
|
|
|
|
|
|
|
|
WidgetShutdownObserver::~WidgetShutdownObserver()
|
|
|
|
{
|
|
|
|
// No need to call Unregister(), we can't be destroyed until nsBaseWidget
|
|
|
|
// gets torn down. The observer service and nsBaseWidget have a ref on us
|
|
|
|
// so nsBaseWidget has to call Unregister and then clear its ref.
|
|
|
|
}
|
|
|
|
|
2013-06-16 19:50:32 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WidgetShutdownObserver::Observe(nsISupports *aSubject,
|
|
|
|
const char *aTopic,
|
2014-01-04 07:02:17 -08:00
|
|
|
const char16_t *aData)
|
2013-06-16 19:50:32 -07:00
|
|
|
{
|
2015-04-16 08:16:04 -07:00
|
|
|
if (mWidget && !strcmp(aTopic, NS_XPCOM_SHUTDOWN_OBSERVER_ID)) {
|
|
|
|
nsCOMPtr<nsIWidget> kungFuDeathGrip(mWidget);
|
2013-06-16 19:50:32 -07:00
|
|
|
mWidget->Shutdown();
|
2015-04-16 08:16:04 -07:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WidgetShutdownObserver::Register()
|
|
|
|
{
|
|
|
|
if (!mRegistered) {
|
|
|
|
mRegistered = true;
|
|
|
|
nsContentUtils::RegisterShutdownObserver(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WidgetShutdownObserver::Unregister()
|
|
|
|
{
|
|
|
|
if (mRegistered) {
|
2015-04-21 03:24:21 -07:00
|
|
|
mWidget = nullptr;
|
2013-06-16 19:50:32 -07:00
|
|
|
nsContentUtils::UnregisterShutdownObserver(this);
|
2015-04-16 08:16:04 -07:00
|
|
|
mRegistered = false;
|
2013-06-16 19:50:32 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsBaseWidget::Shutdown()
|
|
|
|
{
|
|
|
|
DestroyCompositor();
|
2015-04-16 08:16:04 -07:00
|
|
|
FreeShutdownObserver();
|
|
|
|
#if defined(XP_WIN) || defined(MOZ_WIDGET_GTK)
|
|
|
|
if (sPluginWidgetList) {
|
|
|
|
delete sPluginWidgetList;
|
|
|
|
sPluginWidgetList = nullptr;
|
|
|
|
}
|
|
|
|
#endif
|
2013-06-16 19:50:32 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-03-09 10:43:39 -07:00
|
|
|
void nsBaseWidget::DestroyCompositor()
|
2012-03-30 12:43:11 -07:00
|
|
|
{
|
2015-03-09 10:43:39 -07:00
|
|
|
if (mCompositorChild) {
|
|
|
|
// XXX CompositorChild and CompositorParent might be re-created in
|
|
|
|
// ClientLayerManager destructor. See bug 1133426.
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<CompositorChild> compositorChild = mCompositorChild;
|
|
|
|
RefPtr<CompositorParent> compositorParent = mCompositorParent;
|
2015-03-09 10:43:39 -07:00
|
|
|
mCompositorChild->Destroy();
|
|
|
|
}
|
2015-04-29 08:48:31 -07:00
|
|
|
|
|
|
|
// Can have base widgets that are things like tooltips
|
|
|
|
// which don't have CompositorVsyncDispatchers
|
|
|
|
if (mCompositorVsyncDispatcher) {
|
|
|
|
mCompositorVsyncDispatcher->Shutdown();
|
|
|
|
}
|
2012-03-30 12:43:11 -07:00
|
|
|
}
|
|
|
|
|
2015-03-09 10:43:39 -07:00
|
|
|
void nsBaseWidget::DestroyLayerManager()
|
2012-05-23 07:17:44 -07:00
|
|
|
{
|
2015-03-09 10:43:39 -07:00
|
|
|
if (mLayerManager) {
|
|
|
|
mLayerManager->Destroy();
|
|
|
|
mLayerManager = nullptr;
|
2012-05-23 07:17:44 -07:00
|
|
|
}
|
2015-03-09 10:43:39 -07:00
|
|
|
DestroyCompositor();
|
2012-05-23 07:17:44 -07:00
|
|
|
}
|
2012-03-30 12:43:11 -07:00
|
|
|
|
2015-04-16 08:16:04 -07:00
|
|
|
void
|
|
|
|
nsBaseWidget::FreeShutdownObserver()
|
|
|
|
{
|
|
|
|
if (mShutdownObserver) {
|
|
|
|
mShutdownObserver->Unregister();
|
|
|
|
}
|
|
|
|
mShutdownObserver = nullptr;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// nsBaseWidget destructor
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
nsBaseWidget::~nsBaseWidget()
|
|
|
|
{
|
2015-11-12 20:05:54 -08:00
|
|
|
IMEStateManager::WidgetDestroyed(this);
|
|
|
|
|
2010-07-15 14:08:10 -07:00
|
|
|
if (mLayerManager &&
|
2014-01-23 10:26:41 -08:00
|
|
|
mLayerManager->GetBackendType() == LayersBackend::LAYERS_BASIC) {
|
2010-07-15 14:08:10 -07:00
|
|
|
static_cast<BasicLayerManager*>(mLayerManager.get())->ClearRetainerWidget();
|
|
|
|
}
|
|
|
|
|
2015-04-16 08:16:04 -07:00
|
|
|
FreeShutdownObserver();
|
2015-03-09 10:43:39 -07:00
|
|
|
DestroyLayerManager();
|
2010-12-06 18:05:25 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifdef NOISY_WIDGET_LEAKS
|
|
|
|
gNumWidgets--;
|
|
|
|
printf("WIDGETS- = %d\n", gNumWidgets);
|
|
|
|
#endif
|
|
|
|
|
2011-05-17 07:01:36 -07:00
|
|
|
delete mOriginalBounds;
|
2014-12-18 08:30:05 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Basic create.
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
2015-11-16 00:35:18 -08:00
|
|
|
void nsBaseWidget::BaseCreate(nsIWidget* aParent,
|
|
|
|
const LayoutDeviceIntRect& aRect,
|
|
|
|
nsWidgetInitData* aInitData)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-05-15 06:01:48 -07:00
|
|
|
static bool gDisableNativeThemeCached = false;
|
|
|
|
if (!gDisableNativeThemeCached) {
|
2012-07-17 16:59:45 -07:00
|
|
|
Preferences::AddBoolVarCache(&gDisableNativeTheme,
|
|
|
|
"mozilla.widget.disable-native-theme",
|
|
|
|
gDisableNativeTheme);
|
2012-05-15 06:01:48 -07:00
|
|
|
gDisableNativeThemeCached = true;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// keep a reference to the device context
|
2012-07-30 07:20:58 -07:00
|
|
|
if (nullptr != aInitData) {
|
2009-09-24 02:32:20 -07:00
|
|
|
mWindowType = aInitData->mWindowType;
|
|
|
|
mBorderStyle = aInitData->mBorderStyle;
|
2010-07-27 06:38:03 -07:00
|
|
|
mPopupLevel = aInitData->mPopupLevel;
|
2012-05-31 10:52:09 -07:00
|
|
|
mPopupType = aInitData->mPopupHint;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (aParent) {
|
|
|
|
aParent->AddChild(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHODIMP nsBaseWidget::CaptureMouse(bool aCapture)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Accessor functions to get/set the client data
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2012-08-15 11:52:42 -07:00
|
|
|
nsIWidgetListener* nsBaseWidget::GetWidgetListener()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-08-15 11:52:42 -07:00
|
|
|
return mWidgetListener;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-08-15 11:52:42 -07:00
|
|
|
void nsBaseWidget::SetWidgetListener(nsIWidgetListener* aWidgetListener)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-08-15 11:52:42 -07:00
|
|
|
mWidgetListener = aWidgetListener;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-08-20 12:29:02 -07:00
|
|
|
already_AddRefed<nsIWidget>
|
2015-11-16 00:35:18 -08:00
|
|
|
nsBaseWidget::CreateChild(const LayoutDeviceIntRect& aRect,
|
|
|
|
nsWidgetInitData* aInitData,
|
|
|
|
bool aForceUseIWidgetParent)
|
2010-08-20 12:29:02 -07:00
|
|
|
{
|
|
|
|
nsIWidget* parent = this;
|
2012-07-30 07:20:58 -07:00
|
|
|
nsNativeWidget nativeParent = nullptr;
|
2010-08-20 12:29:02 -07:00
|
|
|
|
|
|
|
if (!aForceUseIWidgetParent) {
|
|
|
|
// Use only either parent or nativeParent, not both, to match
|
|
|
|
// existing code. Eventually Create() should be divested of its
|
|
|
|
// nativeWidget parameter.
|
2012-07-30 07:20:58 -07:00
|
|
|
nativeParent = parent ? parent->GetNativeData(NS_NATIVE_WIDGET) : nullptr;
|
|
|
|
parent = nativeParent ? nullptr : parent;
|
2015-02-09 14:34:50 -08:00
|
|
|
MOZ_ASSERT(!parent || !nativeParent, "messed up logic");
|
2010-08-20 12:29:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
if (aInitData && aInitData->mWindowType == eWindowType_popup) {
|
|
|
|
widget = AllocateChildPopupWidget();
|
|
|
|
} else {
|
|
|
|
static NS_DEFINE_IID(kCChildCID, NS_CHILD_CID);
|
|
|
|
widget = do_CreateInstance(kCChildCID);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (widget &&
|
2015-02-04 23:35:25 -08:00
|
|
|
NS_SUCCEEDED(widget->Create(parent, nativeParent, aRect, aInitData))) {
|
2010-08-20 12:29:02 -07:00
|
|
|
return widget.forget();
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2010-08-20 12:29:02 -07:00
|
|
|
}
|
|
|
|
|
2013-01-01 14:38:48 -08:00
|
|
|
// Attach a view to our widget which we'll send events to.
|
2010-06-24 19:01:06 -07:00
|
|
|
NS_IMETHODIMP
|
2015-02-04 21:33:49 -08:00
|
|
|
nsBaseWidget::AttachViewToTopLevel(bool aUseAttachedEvents)
|
2010-06-24 19:01:06 -07:00
|
|
|
{
|
2010-09-08 08:52:58 -07:00
|
|
|
NS_ASSERTION((mWindowType == eWindowType_toplevel ||
|
|
|
|
mWindowType == eWindowType_dialog ||
|
2011-02-09 12:13:18 -08:00
|
|
|
mWindowType == eWindowType_invisible ||
|
|
|
|
mWindowType == eWindowType_child),
|
|
|
|
"Can't attach to window of that type");
|
2010-06-24 19:01:06 -07:00
|
|
|
|
2012-08-15 11:53:09 -07:00
|
|
|
mUseAttachedEvents = aUseAttachedEvents;
|
2010-06-24 19:01:06 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-08-15 11:53:14 -07:00
|
|
|
nsIWidgetListener* nsBaseWidget::GetAttachedWidgetListener()
|
2010-06-24 19:01:06 -07:00
|
|
|
{
|
2012-08-15 11:53:14 -07:00
|
|
|
return mAttachedWidgetListener;
|
2010-06-24 19:01:06 -07:00
|
|
|
}
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2015-07-21 18:09:02 -07:00
|
|
|
nsIWidgetListener* nsBaseWidget::GetPreviouslyAttachedWidgetListener()
|
|
|
|
{
|
|
|
|
return mPreviouslyAttachedWidgetListener;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsBaseWidget::SetPreviouslyAttachedWidgetListener(nsIWidgetListener* aListener)
|
|
|
|
{
|
|
|
|
mPreviouslyAttachedWidgetListener = aListener;
|
|
|
|
}
|
|
|
|
|
2012-08-15 11:53:14 -07:00
|
|
|
void nsBaseWidget::SetAttachedWidgetListener(nsIWidgetListener* aListener)
|
2010-06-24 19:01:06 -07:00
|
|
|
{
|
2012-08-15 11:53:14 -07:00
|
|
|
mAttachedWidgetListener = aListener;
|
2010-06-24 19:01:06 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Close this nsBaseWidget
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
NS_METHOD nsBaseWidget::Destroy()
|
|
|
|
{
|
|
|
|
// Just in case our parent is the only ref to us
|
|
|
|
nsCOMPtr<nsIWidget> kungFuDeathGrip(this);
|
|
|
|
// disconnect from the parent
|
|
|
|
nsIWidget *parent = GetParent();
|
|
|
|
if (parent) {
|
|
|
|
parent->RemoveChild(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Set this nsBaseWidget's parent
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
NS_IMETHODIMP nsBaseWidget::SetParent(nsIWidget* aNewParent)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Get this nsBaseWidget parent
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
nsIWidget* nsBaseWidget::GetParent(void)
|
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-09-16 01:21:06 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Get this nsBaseWidget top level widget
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
2009-08-03 15:25:20 -07:00
|
|
|
nsIWidget* nsBaseWidget::GetTopLevelWidget()
|
2008-09-16 01:21:06 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
nsIWidget *topLevelWidget = nullptr, *widget = this;
|
2008-09-16 01:21:06 -07:00
|
|
|
while (widget) {
|
|
|
|
topLevelWidget = widget;
|
|
|
|
widget = widget->GetParent();
|
|
|
|
}
|
|
|
|
return topLevelWidget;
|
|
|
|
}
|
|
|
|
|
2008-05-02 04:32:50 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Get this nsBaseWidget's top (non-sheet) parent (if it's a sheet)
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
nsIWidget* nsBaseWidget::GetSheetWindowParent(void)
|
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2008-05-02 04:32:50 -07:00
|
|
|
}
|
|
|
|
|
2010-08-13 02:57:48 -07:00
|
|
|
float nsBaseWidget::GetDPI()
|
|
|
|
{
|
|
|
|
return 96.0f;
|
|
|
|
}
|
|
|
|
|
2013-09-17 17:45:19 -07:00
|
|
|
CSSToLayoutDeviceScale nsIWidget::GetDefaultScale()
|
2013-04-09 01:39:47 -07:00
|
|
|
{
|
|
|
|
double devPixelsPerCSSPixel = DefaultScaleOverride();
|
|
|
|
|
|
|
|
if (devPixelsPerCSSPixel <= 0.0) {
|
|
|
|
devPixelsPerCSSPixel = GetDefaultScaleInternal();
|
|
|
|
}
|
|
|
|
|
2013-09-17 17:45:19 -07:00
|
|
|
return CSSToLayoutDeviceScale(devPixelsPerCSSPixel);
|
2013-04-09 01:39:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
double nsIWidget::DefaultScaleOverride()
|
2010-08-13 02:57:48 -07:00
|
|
|
{
|
2012-10-30 17:31:35 -07:00
|
|
|
// The number of device pixels per CSS pixel. A value <= 0 means choose
|
|
|
|
// automatically based on the DPI. A positive value is used as-is. This effectively
|
|
|
|
// controls the size of a CSS "px".
|
2013-02-26 01:01:10 -08:00
|
|
|
double devPixelsPerCSSPixel = -1.0;
|
2012-10-30 17:31:35 -07:00
|
|
|
|
|
|
|
nsAdoptingCString prefString = Preferences::GetCString("layout.css.devPixelsPerPx");
|
|
|
|
if (!prefString.IsEmpty()) {
|
2013-02-26 01:01:10 -08:00
|
|
|
devPixelsPerCSSPixel = PR_strtod(prefString, nullptr);
|
2012-10-30 17:31:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return devPixelsPerCSSPixel;
|
2010-08-13 02:57:48 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Add a child to the list of children
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
void nsBaseWidget::AddChild(nsIWidget* aChild)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(!aChild->GetNextSibling() && !aChild->GetPrevSibling(),
|
|
|
|
"aChild not properly removed from its old child list");
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!mFirstChild) {
|
|
|
|
mFirstChild = mLastChild = aChild;
|
|
|
|
} else {
|
|
|
|
// append to the list
|
|
|
|
NS_ASSERTION(mLastChild, "Bogus state");
|
|
|
|
NS_ASSERTION(!mLastChild->GetNextSibling(), "Bogus state");
|
|
|
|
mLastChild->SetNextSibling(aChild);
|
|
|
|
aChild->SetPrevSibling(mLastChild);
|
|
|
|
mLastChild = aChild;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Remove a child from the list of children
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
void nsBaseWidget::RemoveChild(nsIWidget* aChild)
|
|
|
|
{
|
2013-07-09 20:52:19 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
// nsCocoaWindow doesn't implement GetParent, so in that case parent will be
|
|
|
|
// null and we'll just have to do without this assertion.
|
|
|
|
nsIWidget* parent = aChild->GetParent();
|
|
|
|
NS_ASSERTION(!parent || parent == this, "Not one of our kids!");
|
|
|
|
#else
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(aChild->GetParent() == this, "Not one of our kids!");
|
2013-07-09 20:52:19 -07:00
|
|
|
#endif
|
|
|
|
#endif
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (mLastChild == aChild) {
|
|
|
|
mLastChild = mLastChild->GetPrevSibling();
|
|
|
|
}
|
|
|
|
if (mFirstChild == aChild) {
|
|
|
|
mFirstChild = mFirstChild->GetNextSibling();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now remove from the list. Make sure that we pass ownership of the tail
|
|
|
|
// of the list correctly before we have aChild let go of it.
|
|
|
|
nsIWidget* prev = aChild->GetPrevSibling();
|
|
|
|
nsIWidget* next = aChild->GetNextSibling();
|
|
|
|
if (prev) {
|
|
|
|
prev->SetNextSibling(next);
|
|
|
|
}
|
|
|
|
if (next) {
|
|
|
|
next->SetPrevSibling(prev);
|
|
|
|
}
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
aChild->SetNextSibling(nullptr);
|
|
|
|
aChild->SetPrevSibling(nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Sets widget's position within its parent's child list.
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
2014-03-19 09:48:08 -07:00
|
|
|
void nsBaseWidget::SetZIndex(int32_t aZIndex)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Hold a ref to ourselves just in case, since we're going to remove
|
|
|
|
// from our parent.
|
|
|
|
nsCOMPtr<nsIWidget> kungFuDeathGrip(this);
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
mZIndex = aZIndex;
|
|
|
|
|
|
|
|
// reorder this child in its parent's list.
|
2007-07-08 00:08:04 -07:00
|
|
|
nsBaseWidget* parent = static_cast<nsBaseWidget*>(GetParent());
|
2007-03-22 10:30:00 -07:00
|
|
|
if (parent) {
|
|
|
|
parent->RemoveChild(this);
|
|
|
|
// Scope sib outside the for loop so we can check it afterward
|
|
|
|
nsIWidget* sib = parent->GetFirstChild();
|
|
|
|
for ( ; sib; sib = sib->GetNextSibling()) {
|
2014-03-19 09:48:08 -07:00
|
|
|
int32_t childZIndex = GetZIndex();
|
|
|
|
if (aZIndex < childZIndex) {
|
|
|
|
// Insert ourselves before sib
|
|
|
|
nsIWidget* prev = sib->GetPrevSibling();
|
|
|
|
mNextSibling = sib;
|
|
|
|
mPrevSibling = prev;
|
|
|
|
sib->SetPrevSibling(this);
|
|
|
|
if (prev) {
|
|
|
|
prev->SetNextSibling(this);
|
|
|
|
} else {
|
|
|
|
NS_ASSERTION(sib == parent->mFirstChild, "Broken child list");
|
|
|
|
// We've taken ownership of sib, so it's safe to have parent let
|
|
|
|
// go of it
|
|
|
|
parent->mFirstChild = this;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2014-03-19 09:48:08 -07:00
|
|
|
PlaceBehind(eZPlacementBelow, sib, false);
|
|
|
|
break;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// were we added to the list?
|
|
|
|
if (!sib) {
|
|
|
|
parent->AddChild(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Places widget behind the given widget (platforms must override)
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
NS_IMETHODIMP nsBaseWidget::PlaceBehind(nsTopLevelWidgetZPlacement aPlacement,
|
2011-09-28 23:19:26 -07:00
|
|
|
nsIWidget *aWidget, bool aActivate)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Maximize, minimize or restore the window. The BaseWidget implementation
|
|
|
|
// merely stores the state.
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
2015-08-28 18:12:41 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsBaseWidget::SetSizeMode(nsSizeMode aMode)
|
2010-08-26 21:44:01 -07:00
|
|
|
{
|
2015-08-28 18:12:41 -07:00
|
|
|
MOZ_ASSERT(aMode == nsSizeMode_Normal ||
|
|
|
|
aMode == nsSizeMode_Minimized ||
|
|
|
|
aMode == nsSizeMode_Maximized ||
|
|
|
|
aMode == nsSizeMode_Fullscreen);
|
|
|
|
mSizeMode = aMode;
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Get this component cursor
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
nsCursor nsBaseWidget::GetCursor()
|
|
|
|
{
|
|
|
|
return mCursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_METHOD nsBaseWidget::SetCursor(nsCursor aCursor)
|
|
|
|
{
|
2013-01-01 14:38:48 -08:00
|
|
|
mCursor = aCursor;
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsBaseWidget::SetCursor(imgIContainer* aCursor,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aHotspotX, uint32_t aHotspotY)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Window transparency methods
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2008-08-12 17:44:14 -07:00
|
|
|
void nsBaseWidget::SetTransparencyMode(nsTransparencyMode aMode) {
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-08-12 17:44:14 -07:00
|
|
|
nsTransparencyMode nsBaseWidget::GetTransparencyMode() {
|
|
|
|
return eTransparencyOpaque;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2015-12-02 14:32:55 -08:00
|
|
|
nsBaseWidget::IsWindowClipRegionEqual(const nsTArray<LayoutDeviceIntRect>& aRects)
|
2009-07-21 17:44:55 -07:00
|
|
|
{
|
2015-01-28 07:15:54 -08:00
|
|
|
return mClipRects &&
|
|
|
|
mClipRectCount == aRects.Length() &&
|
2015-12-02 14:32:55 -08:00
|
|
|
memcmp(mClipRects.get(), aRects.Elements(), sizeof(LayoutDeviceIntRect)*mClipRectCount) == 0;
|
2015-01-28 07:15:54 -08:00
|
|
|
}
|
2009-07-26 14:19:15 -07:00
|
|
|
|
2015-01-28 07:15:54 -08:00
|
|
|
void
|
2015-12-02 14:32:55 -08:00
|
|
|
nsBaseWidget::StoreWindowClipRegion(const nsTArray<LayoutDeviceIntRect>& aRects)
|
2015-01-28 07:15:54 -08:00
|
|
|
{
|
2009-07-21 17:44:55 -07:00
|
|
|
mClipRectCount = aRects.Length();
|
2015-12-02 14:32:55 -08:00
|
|
|
mClipRects = MakeUnique<LayoutDeviceIntRect[]>(mClipRectCount);
|
2009-07-21 17:44:55 -07:00
|
|
|
if (mClipRects) {
|
2015-12-02 14:32:55 -08:00
|
|
|
memcpy(mClipRects.get(), aRects.Elements(), sizeof(LayoutDeviceIntRect)*mClipRectCount);
|
2009-07-21 17:44:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-12-02 14:32:55 -08:00
|
|
|
nsBaseWidget::GetWindowClipRegion(nsTArray<LayoutDeviceIntRect>* aRects)
|
2009-07-21 17:44:55 -07:00
|
|
|
{
|
|
|
|
if (mClipRects) {
|
|
|
|
aRects->AppendElements(mClipRects.get(), mClipRectCount);
|
|
|
|
} else {
|
2015-12-02 14:32:55 -08:00
|
|
|
aRects->AppendElement(LayoutDeviceIntRect(0, 0, mBounds.width, mBounds.height));
|
2009-07-21 17:44:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-02 14:32:55 -08:00
|
|
|
const LayoutDeviceIntRegion
|
|
|
|
nsBaseWidget::RegionFromArray(const nsTArray<LayoutDeviceIntRect>& aRects)
|
2014-11-12 12:59:19 -08:00
|
|
|
{
|
2015-12-02 14:32:55 -08:00
|
|
|
LayoutDeviceIntRegion region;
|
2014-11-12 12:59:19 -08:00
|
|
|
for (uint32_t i = 0; i < aRects.Length(); ++i) {
|
|
|
|
region.Or(region, aRects[i]);
|
|
|
|
}
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-12-02 14:32:55 -08:00
|
|
|
nsBaseWidget::ArrayFromRegion(const LayoutDeviceIntRegion& aRegion,
|
|
|
|
nsTArray<LayoutDeviceIntRect>& aRects)
|
2014-11-12 12:59:19 -08:00
|
|
|
{
|
2015-12-02 14:32:55 -08:00
|
|
|
const LayoutDeviceIntRect* r;
|
|
|
|
for (LayoutDeviceIntRegion::RectIterator iter(aRegion); (r = iter.Next()); ) {
|
2014-11-12 12:59:19 -08:00
|
|
|
aRects.AppendElement(*r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2015-12-02 14:32:55 -08:00
|
|
|
nsBaseWidget::SetWindowClipRegion(const nsTArray<LayoutDeviceIntRect>& aRects,
|
2014-11-12 12:59:19 -08:00
|
|
|
bool aIntersectWithExisting)
|
|
|
|
{
|
|
|
|
if (!aIntersectWithExisting) {
|
2015-01-28 07:15:54 -08:00
|
|
|
StoreWindowClipRegion(aRects);
|
2014-11-12 12:59:19 -08:00
|
|
|
} else {
|
|
|
|
// get current rects
|
2015-12-02 14:32:55 -08:00
|
|
|
nsTArray<LayoutDeviceIntRect> currentRects;
|
2014-11-12 12:59:19 -08:00
|
|
|
GetWindowClipRegion(¤tRects);
|
|
|
|
// create region from them
|
2015-12-02 14:32:55 -08:00
|
|
|
LayoutDeviceIntRegion currentRegion = RegionFromArray(currentRects);
|
2014-11-12 12:59:19 -08:00
|
|
|
// create region from new rects
|
2015-12-02 14:32:55 -08:00
|
|
|
LayoutDeviceIntRegion newRegion = RegionFromArray(aRects);
|
2014-11-12 12:59:19 -08:00
|
|
|
// intersect regions
|
2015-12-02 14:32:55 -08:00
|
|
|
LayoutDeviceIntRegion intersection;
|
2014-11-12 12:59:19 -08:00
|
|
|
intersection.And(currentRegion, newRegion);
|
|
|
|
// create int rect array from intersection
|
2015-12-02 14:32:55 -08:00
|
|
|
nsTArray<LayoutDeviceIntRect> rects;
|
2014-11-12 12:59:19 -08:00
|
|
|
ArrayFromRegion(intersection, rects);
|
|
|
|
// store
|
2015-01-28 07:15:54 -08:00
|
|
|
StoreWindowClipRegion(rects);
|
2014-11-12 12:59:19 -08:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-10-14 08:33:40 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Set window shadow style
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHODIMP nsBaseWidget::SetWindowShadowStyle(int32_t aMode)
|
2008-10-14 08:33:40 -07:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Hide window borders/decorations for this widget
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHODIMP nsBaseWidget::HideWindowChrome(bool aShouldHide)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2015-07-13 03:44:36 -07:00
|
|
|
/* virtual */ void
|
|
|
|
nsBaseWidget::PerformFullscreenTransition(FullscreenTransitionStage aStage,
|
|
|
|
uint16_t aDuration,
|
|
|
|
nsISupports* aData,
|
|
|
|
nsIRunnable* aCallback)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT_UNREACHABLE(
|
|
|
|
"Should never call PerformFullscreenTransition on nsBaseWidget");
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Put the window into full-screen mode
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
2014-07-09 12:29:28 -07:00
|
|
|
NS_IMETHODIMP nsBaseWidget::MakeFullScreen(bool aFullScreen, nsIScreen* aScreen)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-07-01 12:01:11 -07:00
|
|
|
HideWindowChrome(aFullScreen);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (aFullScreen) {
|
2015-11-13 01:37:02 -08:00
|
|
|
if (!mOriginalBounds) {
|
|
|
|
mOriginalBounds = new CSSIntRect();
|
|
|
|
}
|
2015-07-13 03:44:36 -07:00
|
|
|
*mOriginalBounds = GetScaledScreenBounds();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Move to top-left corner of screen and size to the screen dimensions
|
2015-07-13 03:44:36 -07:00
|
|
|
nsCOMPtr<nsIScreen> screen = aScreen;
|
|
|
|
if (!screen) {
|
|
|
|
screen = GetWidgetScreen();
|
|
|
|
}
|
|
|
|
if (screen) {
|
|
|
|
int32_t left, top, width, height;
|
|
|
|
if (NS_SUCCEEDED(screen->GetRectDisplayPix(&left, &top, &width, &height))) {
|
|
|
|
Resize(left, top, width, height, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (mOriginalBounds) {
|
|
|
|
Resize(mOriginalBounds->x, mOriginalBounds->y, mOriginalBounds->width,
|
2011-10-17 07:59:28 -07:00
|
|
|
mOriginalBounds->height, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-03-01 00:03:49 -08:00
|
|
|
nsBaseWidget::AutoLayerManagerSetup::AutoLayerManagerSetup(
|
2010-07-15 14:08:04 -07:00
|
|
|
nsBaseWidget* aWidget, gfxContext* aTarget,
|
2012-07-30 17:42:26 -07:00
|
|
|
BufferMode aDoubleBuffering, ScreenRotation aRotation)
|
2010-03-01 00:03:49 -08:00
|
|
|
: mWidget(aWidget)
|
|
|
|
{
|
2012-12-26 21:55:41 -08:00
|
|
|
mLayerManager = static_cast<BasicLayerManager*>(mWidget->GetLayerManager());
|
|
|
|
if (mLayerManager) {
|
2014-01-23 10:26:41 -08:00
|
|
|
NS_ASSERTION(mLayerManager->GetBackendType() == LayersBackend::LAYERS_BASIC,
|
2010-03-30 20:02:58 -07:00
|
|
|
"AutoLayerManagerSetup instantiated for non-basic layer backend!");
|
2012-12-26 21:55:41 -08:00
|
|
|
mLayerManager->SetDefaultTarget(aTarget);
|
|
|
|
mLayerManager->SetDefaultTargetConfiguration(aDoubleBuffering, aRotation);
|
2010-03-01 00:03:49 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsBaseWidget::AutoLayerManagerSetup::~AutoLayerManagerSetup()
|
|
|
|
{
|
2012-12-26 21:55:41 -08:00
|
|
|
if (mLayerManager) {
|
2014-01-23 10:26:41 -08:00
|
|
|
NS_ASSERTION(mLayerManager->GetBackendType() == LayersBackend::LAYERS_BASIC,
|
2010-03-30 20:02:58 -07:00
|
|
|
"AutoLayerManagerSetup instantiated for non-basic layer backend!");
|
2012-12-26 21:55:41 -08:00
|
|
|
mLayerManager->SetDefaultTarget(nullptr);
|
2014-01-23 10:26:41 -08:00
|
|
|
mLayerManager->SetDefaultTargetConfiguration(mozilla::layers::BufferMode::BUFFER_NONE, ROTATION_0);
|
2010-03-01 00:03:49 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2015-07-16 15:18:05 -07:00
|
|
|
nsBaseWidget::ComputeShouldAccelerate()
|
2010-03-01 00:03:49 -08:00
|
|
|
{
|
2015-07-16 15:18:05 -07:00
|
|
|
return gfxPlatform::GetPlatform()->ShouldUseLayersAcceleration();
|
2010-09-08 15:19:11 -07:00
|
|
|
}
|
2010-09-03 11:08:23 -07:00
|
|
|
|
2013-04-17 14:39:13 -07:00
|
|
|
CompositorParent* nsBaseWidget::NewCompositorParent(int aSurfaceWidth,
|
|
|
|
int aSurfaceHeight)
|
|
|
|
{
|
2013-04-29 20:16:04 -07:00
|
|
|
return new CompositorParent(this, false, aSurfaceWidth, aSurfaceHeight);
|
2013-04-17 14:39:13 -07:00
|
|
|
}
|
|
|
|
|
2012-01-19 06:45:37 -08:00
|
|
|
void nsBaseWidget::CreateCompositor()
|
2013-03-20 15:45:07 -07:00
|
|
|
{
|
2015-11-09 21:37:32 -08:00
|
|
|
LayoutDeviceIntRect rect;
|
2013-03-20 15:45:07 -07:00
|
|
|
GetBounds(rect);
|
|
|
|
CreateCompositor(rect.width, rect.height);
|
|
|
|
}
|
|
|
|
|
2014-12-15 01:47:15 -08:00
|
|
|
already_AddRefed<GeckoContentController>
|
|
|
|
nsBaseWidget::CreateRootContentController()
|
|
|
|
{
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<GeckoContentController> controller = new ChromeProcessController(this, mAPZEventState, mAPZC);
|
2014-12-15 01:49:48 -08:00
|
|
|
return controller.forget();
|
2014-12-15 01:47:15 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void nsBaseWidget::ConfigureAPZCTreeManager()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mAPZC);
|
|
|
|
|
2015-03-26 14:23:02 -07:00
|
|
|
ConfigureAPZControllerThread();
|
|
|
|
|
2014-12-15 01:47:15 -08:00
|
|
|
mAPZC->SetDPI(GetDPI());
|
2015-09-11 09:27:49 -07:00
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<APZCTreeManager> treeManager = mAPZC; // for capture by the lambdas
|
2015-09-11 09:52:43 -07:00
|
|
|
|
|
|
|
ContentReceivedInputBlockCallback callback(
|
|
|
|
[treeManager](const ScrollableLayerGuid& aGuid,
|
|
|
|
uint64_t aInputBlockId,
|
|
|
|
bool aPreventDefault)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
APZThreadUtils::RunOnControllerThread(NewRunnableMethod(
|
|
|
|
treeManager.get(), &APZCTreeManager::ContentReceivedInputBlock,
|
|
|
|
aInputBlockId, aPreventDefault));
|
|
|
|
});
|
|
|
|
mAPZEventState = new APZEventState(this, mozilla::Move(callback));
|
|
|
|
|
2015-09-11 09:27:49 -07:00
|
|
|
mSetAllowedTouchBehaviorCallback = [treeManager](uint64_t aInputBlockId,
|
|
|
|
const nsTArray<TouchBehaviorFlags>& aFlags)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
APZThreadUtils::RunOnControllerThread(NewRunnableMethod(
|
|
|
|
treeManager.get(), &APZCTreeManager::SetAllowedTouchBehavior,
|
2015-11-18 10:48:12 -08:00
|
|
|
aInputBlockId, aFlags));
|
2015-09-11 09:27:49 -07:00
|
|
|
};
|
2014-12-15 01:47:15 -08:00
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<GeckoContentController> controller = CreateRootContentController();
|
2014-12-15 01:47:15 -08:00
|
|
|
if (controller) {
|
2015-05-06 16:15:10 -07:00
|
|
|
uint64_t rootLayerTreeId = mCompositorParent->RootLayerTreeId();
|
2014-12-15 01:47:15 -08:00
|
|
|
CompositorParent::SetControllerForLayerTree(rootLayerTreeId, controller);
|
|
|
|
}
|
2015-04-29 13:29:34 -07:00
|
|
|
|
|
|
|
// When APZ is enabled, we can actually enable raw touch events because we
|
|
|
|
// have code that can deal with them properly. If APZ is not enabled, this
|
|
|
|
// function doesn't get called.
|
|
|
|
if (Preferences::GetInt("dom.w3c_touch_events.enabled", 0) ||
|
|
|
|
Preferences::GetBool("dom.w3c_pointer_events.enabled", false)) {
|
|
|
|
RegisterTouchWindow();
|
|
|
|
}
|
2014-12-15 01:47:15 -08:00
|
|
|
}
|
|
|
|
|
2015-03-26 14:23:02 -07:00
|
|
|
void nsBaseWidget::ConfigureAPZControllerThread()
|
|
|
|
{
|
|
|
|
// By default the controller thread is the main thread.
|
|
|
|
APZThreadUtils::SetControllerThread(MessageLoop::current());
|
|
|
|
}
|
|
|
|
|
2015-04-14 09:24:32 -07:00
|
|
|
void
|
|
|
|
nsBaseWidget::SetConfirmedTargetAPZC(uint64_t aInputBlockId,
|
|
|
|
const nsTArray<ScrollableLayerGuid>& aTargets) const
|
|
|
|
{
|
|
|
|
// Need to specifically bind this since it's overloaded.
|
|
|
|
void (APZCTreeManager::*setTargetApzcFunc)(uint64_t, const nsTArray<ScrollableLayerGuid>&)
|
|
|
|
= &APZCTreeManager::SetTargetAPZC;
|
|
|
|
APZThreadUtils::RunOnControllerThread(NewRunnableMethod(
|
2015-11-18 10:48:12 -08:00
|
|
|
mAPZC.get(), setTargetApzcFunc, aInputBlockId, aTargets));
|
2015-04-14 09:24:32 -07:00
|
|
|
}
|
|
|
|
|
2015-06-17 09:32:42 -07:00
|
|
|
void
|
|
|
|
nsBaseWidget::UpdateZoomConstraints(const uint32_t& aPresShellId,
|
|
|
|
const FrameMetrics::ViewID& aViewId,
|
|
|
|
const Maybe<ZoomConstraints>& aConstraints)
|
|
|
|
{
|
|
|
|
if (!mCompositorParent || !mAPZC) {
|
2015-10-27 14:03:49 -07:00
|
|
|
if (mInitialZoomConstraints) {
|
|
|
|
MOZ_ASSERT(mInitialZoomConstraints->mPresShellID == aPresShellId);
|
|
|
|
MOZ_ASSERT(mInitialZoomConstraints->mViewID == aViewId);
|
|
|
|
if (!aConstraints) {
|
|
|
|
mInitialZoomConstraints.reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aConstraints) {
|
|
|
|
// We have some constraints, but the compositor and APZC aren't created yet.
|
|
|
|
// Save these so we can use them later.
|
|
|
|
mInitialZoomConstraints = Some(InitialZoomConstraints(aPresShellId, aViewId, aConstraints.ref()));
|
|
|
|
}
|
2015-06-17 09:32:42 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
uint64_t layersId = mCompositorParent->RootLayerTreeId();
|
|
|
|
mAPZC->UpdateZoomConstraints(ScrollableLayerGuid(layersId, aPresShellId, aViewId),
|
|
|
|
aConstraints);
|
|
|
|
}
|
|
|
|
|
2015-06-04 13:51:10 -07:00
|
|
|
bool
|
|
|
|
nsBaseWidget::AsyncPanZoomEnabled() const
|
|
|
|
{
|
|
|
|
return !!mAPZC;
|
|
|
|
}
|
|
|
|
|
2014-12-18 15:25:03 -08:00
|
|
|
nsEventStatus
|
2015-03-06 14:26:59 -08:00
|
|
|
nsBaseWidget::ProcessUntransformedAPZEvent(WidgetInputEvent* aEvent,
|
|
|
|
const ScrollableLayerGuid& aGuid,
|
2015-03-25 09:20:20 -07:00
|
|
|
uint64_t aInputBlockId,
|
|
|
|
nsEventStatus aApzResponse)
|
2014-12-18 15:25:03 -08:00
|
|
|
{
|
2015-02-10 05:24:23 -08:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-05-14 05:16:00 -07:00
|
|
|
InputAPZContext context(aGuid, aInputBlockId, aApzResponse);
|
2014-12-18 15:25:03 -08:00
|
|
|
|
2015-02-04 09:52:18 -08:00
|
|
|
// If this is a touch event and APZ has targeted it to an APZC in the root
|
|
|
|
// process, apply that APZC's callback-transform before dispatching the
|
|
|
|
// event. If the event is instead targeted to an APZC in the child process,
|
|
|
|
// the transform will be applied in the child process before dispatching
|
|
|
|
// the event there (see e.g. TabChild::RecvRealTouchEvent()).
|
|
|
|
// TODO: Do other types of events (than touch) need this?
|
|
|
|
if (aEvent->AsTouchEvent() && aGuid.mLayersId == mCompositorParent->RootLayerTreeId()) {
|
|
|
|
APZCCallbackHelper::ApplyCallbackTransform(*aEvent->AsTouchEvent(), aGuid,
|
2015-06-17 09:34:42 -07:00
|
|
|
GetDefaultScale());
|
2015-02-04 09:52:18 -08:00
|
|
|
}
|
|
|
|
|
2015-12-01 12:54:17 -08:00
|
|
|
// Make a copy of the original event for the APZCCallbackHelper helpers that
|
|
|
|
// we call later, because the event passed to DispatchEvent can get mutated in
|
|
|
|
// ways that we don't want (i.e. touch points can get stripped out).
|
2014-12-18 15:25:03 -08:00
|
|
|
nsEventStatus status;
|
2015-12-01 12:54:17 -08:00
|
|
|
UniquePtr<WidgetEvent> original(aEvent->Duplicate());
|
2014-12-18 15:25:03 -08:00
|
|
|
DispatchEvent(aEvent, status);
|
|
|
|
|
|
|
|
if (mAPZC && !context.WasRoutedToChildProcess()) {
|
2015-02-06 15:11:30 -08:00
|
|
|
// EventStateManager did not route the event into the child process.
|
2014-12-18 15:25:03 -08:00
|
|
|
// It's safe to communicate to APZ that the event has been processed.
|
2015-02-06 16:45:23 -08:00
|
|
|
// TODO: Eventually we'll be able to move the SendSetTargetAPZCNotification
|
|
|
|
// call into APZEventState::Process*Event() as well.
|
|
|
|
if (WidgetTouchEvent* touchEvent = aEvent->AsTouchEvent()) {
|
2015-09-14 08:14:34 -07:00
|
|
|
if (touchEvent->mMessage == eTouchStart) {
|
2015-03-19 03:33:33 -07:00
|
|
|
if (gfxPrefs::TouchActionEnabled()) {
|
2015-12-01 12:54:17 -08:00
|
|
|
APZCCallbackHelper::SendSetAllowedTouchBehaviorNotification(this,
|
|
|
|
*(original->AsTouchEvent()), aInputBlockId,
|
|
|
|
mSetAllowedTouchBehaviorCallback);
|
2015-03-19 03:33:33 -07:00
|
|
|
}
|
2015-12-01 12:54:17 -08:00
|
|
|
APZCCallbackHelper::SendSetTargetAPZCNotification(this, GetDocument(),
|
|
|
|
*(original->AsTouchEvent()), aGuid, aInputBlockId);
|
2015-02-06 16:45:23 -08:00
|
|
|
}
|
2015-10-30 19:22:28 -07:00
|
|
|
mAPZEventState->ProcessTouchEvent(*touchEvent, aGuid, aInputBlockId,
|
|
|
|
aApzResponse, status);
|
2015-02-06 16:45:23 -08:00
|
|
|
} else if (WidgetWheelEvent* wheelEvent = aEvent->AsWheelEvent()) {
|
2015-08-12 12:15:49 -07:00
|
|
|
if (wheelEvent->mFlags.mHandledByAPZ) {
|
2015-12-01 12:54:17 -08:00
|
|
|
APZCCallbackHelper::SendSetTargetAPZCNotification(this, GetDocument(),
|
|
|
|
*(original->AsWheelEvent()), aGuid, aInputBlockId);
|
2015-08-27 22:10:48 -07:00
|
|
|
if (wheelEvent->mCanTriggerSwipe) {
|
|
|
|
ReportSwipeStarted(aInputBlockId, wheelEvent->TriggersSwipe());
|
|
|
|
}
|
2015-08-12 12:15:49 -07:00
|
|
|
mAPZEventState->ProcessWheelEvent(*wheelEvent, aGuid, aInputBlockId);
|
|
|
|
}
|
2015-10-26 13:06:49 -07:00
|
|
|
} else if (WidgetMouseEvent* mouseEvent = aEvent->AsMouseEvent()) {
|
|
|
|
mAPZEventState->ProcessMouseEvent(*mouseEvent, aGuid, aInputBlockId);
|
2015-02-06 15:11:30 -08:00
|
|
|
}
|
2014-12-18 15:25:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2015-03-16 16:29:53 -07:00
|
|
|
nsEventStatus
|
|
|
|
nsBaseWidget::DispatchInputEvent(WidgetInputEvent* aEvent)
|
|
|
|
{
|
|
|
|
if (mAPZC) {
|
|
|
|
nsEventStatus result = mAPZC->ReceiveInputEvent(*aEvent, nullptr, nullptr);
|
|
|
|
if (result == nsEventStatus_eConsumeNoDefault) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsEventStatus status;
|
|
|
|
DispatchEvent(aEvent, status);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2015-11-18 16:33:00 -08:00
|
|
|
class DispatchWheelEventOnMainThread : public Task
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DispatchWheelEventOnMainThread(const ScrollWheelInput& aWheelInput,
|
|
|
|
nsBaseWidget* aWidget,
|
|
|
|
nsEventStatus aAPZResult,
|
|
|
|
uint64_t aInputBlockId,
|
|
|
|
ScrollableLayerGuid aGuid)
|
|
|
|
: mWheelInput(aWheelInput)
|
|
|
|
, mWidget(aWidget)
|
|
|
|
, mAPZResult(aAPZResult)
|
|
|
|
, mInputBlockId(aInputBlockId)
|
|
|
|
, mGuid(aGuid)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void Run()
|
|
|
|
{
|
|
|
|
WidgetWheelEvent wheelEvent = mWheelInput.ToWidgetWheelEvent(mWidget);
|
|
|
|
mWidget->ProcessUntransformedAPZEvent(&wheelEvent, mGuid, mInputBlockId, mAPZResult);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ScrollWheelInput mWheelInput;
|
|
|
|
nsBaseWidget* mWidget;
|
|
|
|
nsEventStatus mAPZResult;
|
|
|
|
uint64_t mInputBlockId;
|
|
|
|
ScrollableLayerGuid mGuid;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DispatchWheelInputOnControllerThread : public Task
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DispatchWheelInputOnControllerThread(const WidgetWheelEvent& aWheelEvent,
|
|
|
|
APZCTreeManager* aAPZC,
|
|
|
|
nsBaseWidget* aWidget)
|
|
|
|
: mMainMessageLoop(MessageLoop::current())
|
|
|
|
, mWheelInput(aWheelEvent)
|
|
|
|
, mAPZC(aAPZC)
|
|
|
|
, mWidget(aWidget)
|
|
|
|
, mInputBlockId(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void Run()
|
|
|
|
{
|
|
|
|
mAPZResult = mAPZC->ReceiveInputEvent(mWheelInput, &mGuid, &mInputBlockId);
|
|
|
|
if (mAPZResult == nsEventStatus_eConsumeNoDefault) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mMainMessageLoop->PostTask(FROM_HERE,
|
|
|
|
new DispatchWheelEventOnMainThread(mWheelInput, mWidget, mAPZResult, mInputBlockId, mGuid));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
MessageLoop* mMainMessageLoop;
|
|
|
|
ScrollWheelInput mWheelInput;
|
|
|
|
RefPtr<APZCTreeManager> mAPZC;
|
|
|
|
nsBaseWidget* mWidget;
|
|
|
|
nsEventStatus mAPZResult;
|
|
|
|
uint64_t mInputBlockId;
|
|
|
|
ScrollableLayerGuid mGuid;
|
|
|
|
};
|
|
|
|
|
2015-03-06 14:26:59 -08:00
|
|
|
nsEventStatus
|
|
|
|
nsBaseWidget::DispatchAPZAwareEvent(WidgetInputEvent* aEvent)
|
|
|
|
{
|
2015-11-18 16:33:00 -08:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-03-06 14:26:59 -08:00
|
|
|
if (mAPZC) {
|
2015-11-18 16:33:00 -08:00
|
|
|
if (APZThreadUtils::IsControllerThread()) {
|
|
|
|
uint64_t inputBlockId = 0;
|
|
|
|
ScrollableLayerGuid guid;
|
2015-03-06 14:26:59 -08:00
|
|
|
|
2015-11-18 16:33:00 -08:00
|
|
|
nsEventStatus result = mAPZC->ReceiveInputEvent(*aEvent, &guid, &inputBlockId);
|
|
|
|
if (result == nsEventStatus_eConsumeNoDefault) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return ProcessUntransformedAPZEvent(aEvent, guid, inputBlockId, result);
|
|
|
|
} else {
|
|
|
|
WidgetWheelEvent* wheelEvent = aEvent->AsWheelEvent();
|
|
|
|
if (wheelEvent) {
|
|
|
|
APZThreadUtils::RunOnControllerThread(new DispatchWheelInputOnControllerThread(*wheelEvent, mAPZC, this));
|
|
|
|
return nsEventStatus_eConsumeDoDefault;
|
|
|
|
}
|
|
|
|
MOZ_CRASH();
|
2015-03-06 14:26:59 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsEventStatus status;
|
|
|
|
DispatchEvent(aEvent, status);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2015-02-06 15:11:30 -08:00
|
|
|
nsIDocument*
|
|
|
|
nsBaseWidget::GetDocument() const
|
|
|
|
{
|
|
|
|
if (mWidgetListener) {
|
|
|
|
if (nsIPresShell* presShell = mWidgetListener->GetPresShell()) {
|
|
|
|
return presShell->GetDocument();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-12-19 12:52:42 -08:00
|
|
|
void nsBaseWidget::CreateCompositorVsyncDispatcher()
|
2014-12-18 08:30:05 -08:00
|
|
|
{
|
2015-08-24 08:27:23 -07:00
|
|
|
// Parent directly listens to the vsync source whereas
|
|
|
|
// child process communicate via IPC
|
|
|
|
// Should be called AFTER gfxPlatform is initialized
|
|
|
|
if (XRE_IsParentProcess()) {
|
|
|
|
mCompositorVsyncDispatcher = new CompositorVsyncDispatcher();
|
2014-12-18 08:30:05 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-19 12:52:42 -08:00
|
|
|
CompositorVsyncDispatcher*
|
|
|
|
nsBaseWidget::GetCompositorVsyncDispatcher()
|
2014-12-18 08:30:05 -08:00
|
|
|
{
|
2014-12-19 12:52:42 -08:00
|
|
|
return mCompositorVsyncDispatcher;
|
2014-12-18 08:30:05 -08:00
|
|
|
}
|
|
|
|
|
2013-03-20 15:45:07 -07:00
|
|
|
void nsBaseWidget::CreateCompositor(int aWidth, int aHeight)
|
2012-01-19 06:45:37 -08:00
|
|
|
{
|
2014-10-10 01:53:30 -07:00
|
|
|
// This makes sure that gfxPlatforms gets initialized if it hasn't by now.
|
|
|
|
gfxPlatform::GetPlatform();
|
|
|
|
|
2014-06-06 06:51:24 -07:00
|
|
|
MOZ_ASSERT(gfxPlatform::UsesOffMainThreadCompositing(),
|
|
|
|
"This function assumes OMTC");
|
|
|
|
|
2015-03-09 10:43:39 -07:00
|
|
|
MOZ_ASSERT(!mCompositorParent && !mCompositorChild,
|
|
|
|
"Should have properly cleaned up the previous PCompositor pair beforehand");
|
|
|
|
|
|
|
|
if (mCompositorChild) {
|
|
|
|
mCompositorChild->Destroy();
|
|
|
|
}
|
2015-03-09 02:46:56 -07:00
|
|
|
|
2013-05-03 10:34:33 -07:00
|
|
|
// Recreating this is tricky, as we may still have an old and we need
|
|
|
|
// to make sure it's properly destroyed by calling DestroyCompositor!
|
|
|
|
|
2013-06-16 19:50:32 -07:00
|
|
|
// If we've already received a shutdown notification, don't try
|
|
|
|
// create a new compositor.
|
|
|
|
if (!mShutdownObserver) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-12-19 12:52:42 -08:00
|
|
|
CreateCompositorVsyncDispatcher();
|
2013-04-17 14:39:13 -07:00
|
|
|
mCompositorParent = NewCompositorParent(aWidth, aHeight);
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<ClientLayerManager> lm = new ClientLayerManager(this);
|
2012-07-13 08:25:29 -07:00
|
|
|
mCompositorChild = new CompositorChild(lm);
|
2015-03-09 10:43:39 -07:00
|
|
|
mCompositorChild->OpenSameProcess(mCompositorParent);
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
|
2015-04-01 01:40:35 -07:00
|
|
|
// Make sure the parent knows it is same process.
|
2015-04-01 05:59:20 -07:00
|
|
|
mCompositorParent->SetOtherProcessId(base::GetCurrentProcId());
|
2015-04-01 01:40:35 -07:00
|
|
|
|
2015-05-06 16:15:10 -07:00
|
|
|
uint64_t rootLayerTreeId = mCompositorParent->RootLayerTreeId();
|
|
|
|
mAPZC = CompositorParent::GetAPZCTreeManager(rootLayerTreeId);
|
|
|
|
if (mAPZC) {
|
2014-12-15 01:47:15 -08:00
|
|
|
ConfigureAPZCTreeManager();
|
|
|
|
}
|
|
|
|
|
2015-10-27 14:03:49 -07:00
|
|
|
if (mInitialZoomConstraints) {
|
|
|
|
UpdateZoomConstraints(mInitialZoomConstraints->mPresShellID,
|
|
|
|
mInitialZoomConstraints->mViewID,
|
|
|
|
Some(mInitialZoomConstraints->mConstraints));
|
|
|
|
mInitialZoomConstraints.reset();
|
|
|
|
}
|
|
|
|
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
TextureFactoryIdentifier textureFactoryIdentifier;
|
2014-03-04 00:45:51 -08:00
|
|
|
PLayerTransactionChild* shadowManager = nullptr;
|
2015-07-16 15:18:05 -07:00
|
|
|
|
2015-07-13 07:46:44 -07:00
|
|
|
nsTArray<LayersBackend> backendHints;
|
2015-07-16 15:18:05 -07:00
|
|
|
gfxPlatform::GetPlatform()->GetCompositorBackends(ComputeShouldAccelerate(), backendHints);
|
2013-05-03 10:34:33 -07:00
|
|
|
|
2013-08-08 16:32:26 -07:00
|
|
|
bool success = false;
|
2015-07-13 07:46:44 -07:00
|
|
|
if (!backendHints.IsEmpty()) {
|
|
|
|
shadowManager = mCompositorChild->SendPLayerTransactionConstructor(
|
|
|
|
backendHints, 0, &textureFactoryIdentifier, &success);
|
|
|
|
}
|
2012-01-19 06:45:37 -08:00
|
|
|
|
2015-03-09 10:43:39 -07:00
|
|
|
ShadowLayerForwarder* lf = lm->AsShadowForwarder();
|
2012-07-13 08:25:29 -07:00
|
|
|
|
2015-03-09 10:43:39 -07:00
|
|
|
if (!success || !lf) {
|
|
|
|
NS_WARNING("Failed to create an OMT compositor.");
|
|
|
|
DestroyCompositor();
|
2015-07-19 12:50:17 -07:00
|
|
|
mLayerManager = nullptr;
|
|
|
|
mCompositorChild = nullptr;
|
|
|
|
mCompositorParent = nullptr;
|
|
|
|
mCompositorVsyncDispatcher = nullptr;
|
2013-05-03 10:34:33 -07:00
|
|
|
return;
|
2012-01-19 06:45:37 -08:00
|
|
|
}
|
2013-05-03 10:34:33 -07:00
|
|
|
|
2015-03-09 10:43:39 -07:00
|
|
|
lf->SetShadowManager(shadowManager);
|
|
|
|
lf->IdentifyTextureHost(textureFactoryIdentifier);
|
|
|
|
ImageBridgeChild::IdentifyCompositorTextureHost(textureFactoryIdentifier);
|
|
|
|
WindowUsesOMTC();
|
|
|
|
|
|
|
|
mLayerManager = lm.forget();
|
2015-07-19 14:50:35 -07:00
|
|
|
|
2015-10-05 23:39:28 -07:00
|
|
|
if (mWindowType == eWindowType_toplevel) {
|
|
|
|
// Only track compositors for top-level windows, since other window types
|
|
|
|
// may use the basic compositor.
|
|
|
|
gfxPlatform::GetPlatform()->NotifyCompositorCreated(mLayerManager->GetCompositorBackendType());
|
|
|
|
}
|
2012-01-19 06:45:37 -08:00
|
|
|
}
|
|
|
|
|
2013-03-04 10:32:20 -08:00
|
|
|
bool nsBaseWidget::ShouldUseOffMainThreadCompositing()
|
2012-05-22 08:34:34 -07:00
|
|
|
{
|
2014-06-06 06:51:24 -07:00
|
|
|
return gfxPlatform::UsesOffMainThreadCompositing();
|
2012-05-22 08:34:34 -07:00
|
|
|
}
|
|
|
|
|
2013-04-24 11:42:40 -07:00
|
|
|
LayerManager* nsBaseWidget::GetLayerManager(PLayerTransactionChild* aShadowManager,
|
2011-08-09 12:38:26 -07:00
|
|
|
LayersBackend aBackendHint,
|
|
|
|
LayerManagerPersistence aPersistence,
|
2010-12-06 18:05:52 -08:00
|
|
|
bool* aAllowRetaining)
|
2010-09-08 15:19:11 -07:00
|
|
|
{
|
|
|
|
if (!mLayerManager) {
|
2015-09-15 08:58:06 -07:00
|
|
|
if (!mShutdownObserver) {
|
|
|
|
// We are shutting down, do not try to re-create a LayerManager
|
|
|
|
return nullptr;
|
|
|
|
}
|
2012-05-15 12:56:56 -07:00
|
|
|
// Try to use an async compositor first, if possible
|
2013-03-04 10:32:20 -08:00
|
|
|
if (ShouldUseOffMainThreadCompositing()) {
|
2012-05-15 12:56:56 -07:00
|
|
|
// e10s uses the parameter to pass in the shadow manager from the TabChild
|
|
|
|
// so we don't expect to see it there since this doesn't support e10s.
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ASSERTION(aShadowManager == nullptr, "Async Compositor not supported with e10s");
|
2012-05-15 12:56:56 -07:00
|
|
|
CreateCompositor();
|
|
|
|
}
|
2012-05-15 20:19:37 -07:00
|
|
|
|
2010-03-30 20:02:58 -07:00
|
|
|
if (!mLayerManager) {
|
2013-01-18 17:07:32 -08:00
|
|
|
mLayerManager = CreateBasicLayerManager();
|
2010-03-30 20:02:58 -07:00
|
|
|
}
|
2010-03-01 00:03:49 -08:00
|
|
|
}
|
2010-10-15 03:34:29 -07:00
|
|
|
if (aAllowRetaining) {
|
2015-04-16 18:13:14 -07:00
|
|
|
*aAllowRetaining = true;
|
2010-10-15 03:34:29 -07:00
|
|
|
}
|
2015-04-16 18:13:14 -07:00
|
|
|
return mLayerManager;
|
2010-03-01 00:03:49 -08:00
|
|
|
}
|
|
|
|
|
2013-09-01 15:20:45 -07:00
|
|
|
LayerManager* nsBaseWidget::CreateBasicLayerManager()
|
2010-09-14 16:40:23 -07:00
|
|
|
{
|
2013-04-30 22:03:25 -07:00
|
|
|
return new BasicLayerManager(this);
|
2010-09-14 16:40:23 -07:00
|
|
|
}
|
|
|
|
|
2012-10-04 00:05:24 -07:00
|
|
|
CompositorChild* nsBaseWidget::GetRemoteRenderer()
|
|
|
|
{
|
|
|
|
return mCompositorChild;
|
|
|
|
}
|
|
|
|
|
2015-06-17 07:00:52 -07:00
|
|
|
already_AddRefed<mozilla::gfx::DrawTarget> nsBaseWidget::StartRemoteDrawing()
|
2013-07-08 21:21:05 -07:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Destroy the window
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
void nsBaseWidget::OnDestroy()
|
|
|
|
{
|
2015-01-27 22:27:30 -08:00
|
|
|
if (mTextEventDispatcher) {
|
|
|
|
mTextEventDispatcher->OnDestroyWidget();
|
|
|
|
// Don't release it until this widget actually released because after this
|
|
|
|
// is called, TextEventDispatcher() may create it again.
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_METHOD nsBaseWidget::SetWindowClass(const nsAString& xulWinType)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2012-12-12 01:57:38 -08:00
|
|
|
NS_METHOD nsBaseWidget::MoveClient(double aX, double aY)
|
2011-12-01 13:35:42 -08:00
|
|
|
{
|
2015-11-11 19:56:06 -08:00
|
|
|
LayoutDeviceIntPoint clientOffset(GetClientOffset());
|
2013-04-15 05:17:22 -07:00
|
|
|
|
|
|
|
// GetClientOffset returns device pixels; scale back to display pixels
|
|
|
|
// if that's what this widget uses for the Move/Resize APIs
|
2013-09-17 17:45:19 -07:00
|
|
|
CSSToLayoutDeviceScale scale = BoundsUseDisplayPixels()
|
|
|
|
? GetDefaultScale()
|
|
|
|
: CSSToLayoutDeviceScale(1.0);
|
|
|
|
aX -= clientOffset.x * 1.0 / scale.scale;
|
|
|
|
aY -= clientOffset.y * 1.0 / scale.scale;
|
2013-04-15 05:17:22 -07:00
|
|
|
|
2011-12-01 13:35:42 -08:00
|
|
|
return Move(aX, aY);
|
|
|
|
}
|
|
|
|
|
2012-12-12 01:57:38 -08:00
|
|
|
NS_METHOD nsBaseWidget::ResizeClient(double aWidth,
|
|
|
|
double aHeight,
|
2011-12-01 13:35:42 -08:00
|
|
|
bool aRepaint)
|
|
|
|
{
|
|
|
|
NS_ASSERTION((aWidth >=0) , "Negative width passed to ResizeClient");
|
|
|
|
NS_ASSERTION((aHeight >=0), "Negative height passed to ResizeClient");
|
|
|
|
|
2015-11-09 21:37:32 -08:00
|
|
|
LayoutDeviceIntRect clientBounds;
|
2011-12-01 13:35:42 -08:00
|
|
|
GetClientBounds(clientBounds);
|
2013-04-15 05:17:22 -07:00
|
|
|
|
|
|
|
// GetClientBounds and mBounds are device pixels; scale back to display pixels
|
|
|
|
// if that's what this widget uses for the Move/Resize APIs
|
2013-09-17 17:45:19 -07:00
|
|
|
CSSToLayoutDeviceScale scale = BoundsUseDisplayPixels()
|
|
|
|
? GetDefaultScale()
|
|
|
|
: CSSToLayoutDeviceScale(1.0);
|
|
|
|
double invScale = 1.0 / scale.scale;
|
|
|
|
aWidth = mBounds.width * invScale + (aWidth - clientBounds.width * invScale);
|
|
|
|
aHeight = mBounds.height * invScale + (aHeight - clientBounds.height * invScale);
|
2011-12-01 13:35:42 -08:00
|
|
|
|
|
|
|
return Resize(aWidth, aHeight, aRepaint);
|
|
|
|
}
|
|
|
|
|
2012-12-12 01:57:38 -08:00
|
|
|
NS_METHOD nsBaseWidget::ResizeClient(double aX,
|
|
|
|
double aY,
|
|
|
|
double aWidth,
|
|
|
|
double aHeight,
|
2011-12-01 13:35:42 -08:00
|
|
|
bool aRepaint)
|
|
|
|
{
|
|
|
|
NS_ASSERTION((aWidth >=0) , "Negative width passed to ResizeClient");
|
|
|
|
NS_ASSERTION((aHeight >=0), "Negative height passed to ResizeClient");
|
|
|
|
|
2015-11-09 21:37:32 -08:00
|
|
|
LayoutDeviceIntRect clientBounds;
|
2011-12-01 13:35:42 -08:00
|
|
|
GetClientBounds(clientBounds);
|
2013-04-15 05:17:22 -07:00
|
|
|
|
2013-09-17 17:45:19 -07:00
|
|
|
double scale = BoundsUseDisplayPixels() ? 1.0 / GetDefaultScale().scale : 1.0;
|
2013-04-15 05:17:22 -07:00
|
|
|
aWidth = mBounds.width * scale + (aWidth - clientBounds.width * scale);
|
|
|
|
aHeight = mBounds.height * scale + (aHeight - clientBounds.height * scale);
|
2011-12-01 13:35:42 -08:00
|
|
|
|
2015-11-11 19:56:06 -08:00
|
|
|
LayoutDeviceIntPoint clientOffset(GetClientOffset());
|
2013-04-15 05:17:22 -07:00
|
|
|
aX -= clientOffset.x * scale;
|
|
|
|
aY -= clientOffset.y * scale;
|
2011-12-01 13:35:42 -08:00
|
|
|
|
|
|
|
return Resize(aX, aY, aWidth, aHeight, aRepaint);
|
|
|
|
}
|
|
|
|
|
2010-06-24 19:01:07 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Bounds
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* If the implementation of nsWindow supports borders this method MUST be overridden
|
|
|
|
*
|
|
|
|
**/
|
2015-11-12 16:04:52 -08:00
|
|
|
NS_METHOD nsBaseWidget::GetClientBounds(LayoutDeviceIntRect &aRect)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2015-11-12 16:04:52 -08:00
|
|
|
return GetBounds(aRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the implementation of nsWindow supports borders this method MUST be overridden
|
|
|
|
*
|
|
|
|
**/
|
2015-11-12 16:04:52 -08:00
|
|
|
NS_METHOD nsBaseWidget::GetBounds(LayoutDeviceIntRect &aRect)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2015-11-12 16:04:52 -08:00
|
|
|
aRect = LayoutDeviceIntRect::FromUnknownRect(mBounds);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the implementation of nsWindow uses a local coordinate system within the window,
|
|
|
|
* this method must be overridden
|
|
|
|
*
|
|
|
|
**/
|
2015-11-12 16:04:52 -08:00
|
|
|
NS_METHOD nsBaseWidget::GetScreenBounds(LayoutDeviceIntRect& aRect)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2015-11-12 16:04:52 -08:00
|
|
|
return GetBounds(aRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2015-11-12 16:04:52 -08:00
|
|
|
NS_METHOD nsBaseWidget::GetRestoredBounds(LayoutDeviceIntRect& aRect)
|
2014-05-20 00:32:17 -07:00
|
|
|
{
|
|
|
|
if (SizeMode() != nsSizeMode_Normal) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2015-11-12 05:43:01 -08:00
|
|
|
return GetScreenBounds(aRect);
|
2014-05-20 00:32:17 -07:00
|
|
|
}
|
|
|
|
|
2015-11-13 01:37:02 -08:00
|
|
|
LayoutDeviceIntPoint
|
|
|
|
nsBaseWidget::GetClientOffset()
|
2010-06-24 19:01:06 -07:00
|
|
|
{
|
2015-11-13 01:37:02 -08:00
|
|
|
return LayoutDeviceIntPoint(0, 0);
|
2010-06-24 19:01:06 -07:00
|
|
|
}
|
|
|
|
|
2010-06-24 19:01:07 -07:00
|
|
|
NS_IMETHODIMP
|
2015-11-11 23:05:04 -08:00
|
|
|
nsBaseWidget::GetNonClientMargins(LayoutDeviceIntMargin &margins)
|
2010-06-24 19:01:07 -07:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2010-06-24 19:01:07 -07:00
|
|
|
NS_IMETHODIMP
|
2015-11-11 23:05:04 -08:00
|
|
|
nsBaseWidget::SetNonClientMargins(LayoutDeviceIntMargin &margins)
|
2010-06-24 19:01:07 -07:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_METHOD nsBaseWidget::EnableDragDrop(bool aEnable)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-01-28 08:09:34 -08:00
|
|
|
uint32_t nsBaseWidget::GetMaxTouchPoints() const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_METHOD nsBaseWidget::SetModal(bool aModal)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 08:56:38 -07:00
|
|
|
nsBaseWidget::GetAttention(int32_t aCycleCount) {
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2009-04-21 16:53:52 -07:00
|
|
|
nsBaseWidget::HasPendingInputEvent()
|
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2009-04-21 16:53:52 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsBaseWidget::SetIcon(const nsAString&)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-10-29 21:03:42 -07:00
|
|
|
NS_IMETHODIMP
|
2011-09-28 23:19:26 -07:00
|
|
|
nsBaseWidget::SetWindowTitlebarColor(nscolor aColor, bool aActive)
|
2007-10-29 21:03:42 -07:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2015-11-18 19:10:38 -08:00
|
|
|
nsBaseWidget::ShowsResizeIndicator(LayoutDeviceIntRect* aResizerRect)
|
2008-08-08 09:11:54 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2008-08-08 09:11:54 -07:00
|
|
|
}
|
|
|
|
|
2009-09-24 03:58:04 -07:00
|
|
|
NS_IMETHODIMP
|
2013-03-15 02:03:16 -07:00
|
|
|
nsBaseWidget::OverrideSystemMouseScrollSpeed(double aOriginalDeltaX,
|
|
|
|
double aOriginalDeltaY,
|
|
|
|
double& aOverriddenDeltaX,
|
|
|
|
double& aOverriddenDeltaY)
|
|
|
|
{
|
|
|
|
aOverriddenDeltaX = aOriginalDeltaX;
|
|
|
|
aOverriddenDeltaY = aOriginalDeltaY;
|
|
|
|
|
|
|
|
static bool sInitialized = false;
|
|
|
|
static bool sIsOverrideEnabled = false;
|
|
|
|
static int32_t sIntFactorX = 0;
|
|
|
|
static int32_t sIntFactorY = 0;
|
|
|
|
|
|
|
|
if (!sInitialized) {
|
|
|
|
Preferences::AddBoolVarCache(&sIsOverrideEnabled,
|
|
|
|
"mousewheel.system_scroll_override_on_root_content.enabled", false);
|
|
|
|
Preferences::AddIntVarCache(&sIntFactorX,
|
|
|
|
"mousewheel.system_scroll_override_on_root_content.horizontal.factor", 0);
|
|
|
|
Preferences::AddIntVarCache(&sIntFactorY,
|
|
|
|
"mousewheel.system_scroll_override_on_root_content.vertical.factor", 0);
|
|
|
|
sIntFactorX = std::max(sIntFactorX, 0);
|
|
|
|
sIntFactorY = std::max(sIntFactorY, 0);
|
|
|
|
sInitialized = true;
|
|
|
|
}
|
2009-09-24 03:58:04 -07:00
|
|
|
|
2013-03-15 02:03:16 -07:00
|
|
|
if (!sIsOverrideEnabled) {
|
2009-09-24 03:58:04 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The pref value must be larger than 100, otherwise, we don't override the
|
|
|
|
// delta value.
|
2013-03-15 02:03:16 -07:00
|
|
|
if (sIntFactorX > 100) {
|
|
|
|
double factor = static_cast<double>(sIntFactorX) / 100;
|
|
|
|
aOverriddenDeltaX *= factor;
|
|
|
|
}
|
|
|
|
if (sIntFactorY > 100) {
|
|
|
|
double factor = static_cast<double>(sIntFactorY) / 100;
|
|
|
|
aOverriddenDeltaY *= factor;
|
2009-09-24 03:58:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-10-29 21:03:42 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Modifies aFile to point at an icon file with the given name and suffix. The
|
|
|
|
* suffix may correspond to a file extension with leading '.' if appropriate.
|
|
|
|
* Returns true if the icon file exists and can be read.
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2012-06-05 19:08:30 -07:00
|
|
|
ResolveIconNameHelper(nsIFile *aFile,
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsAString &aIconName,
|
|
|
|
const nsAString &aIconSuffix)
|
|
|
|
{
|
|
|
|
aFile->Append(NS_LITERAL_STRING("icons"));
|
|
|
|
aFile->Append(NS_LITERAL_STRING("default"));
|
|
|
|
aFile->Append(aIconName + aIconSuffix);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool readable;
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_SUCCEEDED(aFile->IsReadable(&readable)) && readable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resolve the given icon name into a local file object. This method is
|
|
|
|
* intended to be called by subclasses of nsBaseWidget. aIconSuffix is a
|
|
|
|
* platform specific icon file suffix (e.g., ".ico" under Win32).
|
|
|
|
*
|
|
|
|
* If no file is found matching the given parameters, then null is returned.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
nsBaseWidget::ResolveIconName(const nsAString &aIconName,
|
|
|
|
const nsAString &aIconSuffix,
|
2012-06-05 19:08:30 -07:00
|
|
|
nsIFile **aResult)
|
2013-01-01 14:38:48 -08:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
*aResult = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIProperties> dirSvc = do_GetService(NS_DIRECTORY_SERVICE_CONTRACTID);
|
|
|
|
if (!dirSvc)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// first check auxilary chrome directories
|
|
|
|
|
|
|
|
nsCOMPtr<nsISimpleEnumerator> dirs;
|
|
|
|
dirSvc->Get(NS_APP_CHROME_DIR_LIST, NS_GET_IID(nsISimpleEnumerator),
|
|
|
|
getter_AddRefs(dirs));
|
|
|
|
if (dirs) {
|
2011-09-28 23:19:26 -07:00
|
|
|
bool hasMore;
|
2007-03-22 10:30:00 -07:00
|
|
|
while (NS_SUCCEEDED(dirs->HasMoreElements(&hasMore)) && hasMore) {
|
|
|
|
nsCOMPtr<nsISupports> element;
|
|
|
|
dirs->GetNext(getter_AddRefs(element));
|
|
|
|
if (!element)
|
|
|
|
continue;
|
2012-06-05 19:08:30 -07:00
|
|
|
nsCOMPtr<nsIFile> file = do_QueryInterface(element);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!file)
|
|
|
|
continue;
|
|
|
|
if (ResolveIconNameHelper(file, aIconName, aIconSuffix)) {
|
|
|
|
NS_ADDREF(*aResult = file);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// then check the main app chrome directory
|
|
|
|
|
2012-06-05 19:08:30 -07:00
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
dirSvc->Get(NS_APP_CHROME_DIR, NS_GET_IID(nsIFile),
|
2007-03-22 10:30:00 -07:00
|
|
|
getter_AddRefs(file));
|
|
|
|
if (file && ResolveIconNameHelper(file, aIconName, aIconSuffix))
|
|
|
|
NS_ADDREF(*aResult = file);
|
|
|
|
}
|
|
|
|
|
2013-01-01 14:38:48 -08:00
|
|
|
NS_IMETHODIMP
|
2013-10-01 20:46:03 -07:00
|
|
|
nsBaseWidget::BeginResizeDrag(WidgetGUIEvent* aEvent,
|
|
|
|
int32_t aHorizontal,
|
|
|
|
int32_t aVertical)
|
2007-12-11 02:08:35 -08:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2010-07-17 01:11:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-10-01 23:38:27 -07:00
|
|
|
nsBaseWidget::BeginMoveDrag(WidgetMouseEvent* aEvent)
|
2010-07-17 01:11:54 -07:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2007-12-11 02:08:35 -08:00
|
|
|
}
|
2010-11-22 22:48:03 -08:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t
|
2012-01-25 18:05:34 -08:00
|
|
|
nsBaseWidget::GetGLFrameBufferFormat()
|
|
|
|
{
|
2013-11-26 14:15:17 -08:00
|
|
|
return LOCAL_GL_RGBA;
|
2012-01-25 18:05:34 -08:00
|
|
|
}
|
|
|
|
|
2012-07-30 17:43:29 -07:00
|
|
|
void nsBaseWidget::SetSizeConstraints(const SizeConstraints& aConstraints)
|
|
|
|
{
|
|
|
|
mSizeConstraints = aConstraints;
|
|
|
|
// We can't ensure that the size is honored at this point because we're
|
|
|
|
// probably in the middle of a reflow.
|
|
|
|
}
|
|
|
|
|
|
|
|
const widget::SizeConstraints& nsBaseWidget::GetSizeConstraints() const
|
|
|
|
{
|
|
|
|
return mSizeConstraints;
|
|
|
|
}
|
|
|
|
|
2012-10-26 06:15:22 -07:00
|
|
|
// static
|
|
|
|
nsIRollupListener*
|
|
|
|
nsBaseWidget::GetActiveRollupListener()
|
|
|
|
{
|
|
|
|
// If set, then this is likely an <html:select> dropdown.
|
|
|
|
if (gRollupListener)
|
|
|
|
return gRollupListener;
|
|
|
|
|
|
|
|
return nsXULPopupManager::GetInstance();
|
|
|
|
}
|
|
|
|
|
2012-08-15 11:52:41 -07:00
|
|
|
void
|
|
|
|
nsBaseWidget::NotifyWindowDestroyed()
|
|
|
|
{
|
2012-08-15 11:52:42 -07:00
|
|
|
if (!mWidgetListener)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXULWindow> window = mWidgetListener->GetXULWindow();
|
|
|
|
nsCOMPtr<nsIBaseWindow> xulWindow(do_QueryInterface(window));
|
|
|
|
if (xulWindow) {
|
|
|
|
xulWindow->Destroy();
|
2012-08-15 11:52:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-15 11:52:35 -07:00
|
|
|
void
|
|
|
|
nsBaseWidget::NotifySizeMoveDone()
|
|
|
|
{
|
2012-08-15 11:52:42 -07:00
|
|
|
if (!mWidgetListener || mWidgetListener->GetXULWindow())
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsIPresShell* presShell = mWidgetListener->GetPresShell();
|
2012-08-15 11:52:35 -07:00
|
|
|
if (presShell) {
|
|
|
|
presShell->WindowSizeMoveDone();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-27 23:45:08 -08:00
|
|
|
void
|
|
|
|
nsBaseWidget::NotifyWindowMoved(int32_t aX, int32_t aY)
|
|
|
|
{
|
|
|
|
if (mWidgetListener) {
|
|
|
|
mWidgetListener->WindowMoved(this, aX, aY);
|
|
|
|
}
|
|
|
|
|
2015-08-05 23:57:58 -07:00
|
|
|
if (mIMEHasFocus && GetIMEUpdatePreference().WantPositionChanged()) {
|
2014-02-27 23:45:08 -08:00
|
|
|
NotifyIME(IMENotification(IMEMessage::NOTIFY_IME_OF_POSITION_CHANGE));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-15 11:52:35 -07:00
|
|
|
void
|
|
|
|
nsBaseWidget::NotifySysColorChanged()
|
|
|
|
{
|
2012-08-15 11:52:42 -07:00
|
|
|
if (!mWidgetListener || mWidgetListener->GetXULWindow())
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsIPresShell* presShell = mWidgetListener->GetPresShell();
|
2012-08-15 11:52:35 -07:00
|
|
|
if (presShell) {
|
|
|
|
presShell->SysColorChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsBaseWidget::NotifyThemeChanged()
|
|
|
|
{
|
2012-08-15 11:52:42 -07:00
|
|
|
if (!mWidgetListener || mWidgetListener->GetXULWindow())
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsIPresShell* presShell = mWidgetListener->GetPresShell();
|
2012-08-15 11:52:35 -07:00
|
|
|
if (presShell) {
|
|
|
|
presShell->ThemeChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-15 11:52:40 -07:00
|
|
|
void
|
|
|
|
nsBaseWidget::NotifyUIStateChanged(UIStateChangeType aShowAccelerators,
|
|
|
|
UIStateChangeType aShowFocusRings)
|
|
|
|
{
|
2015-02-06 15:11:30 -08:00
|
|
|
if (nsIDocument* doc = GetDocument()) {
|
2012-08-15 11:52:40 -07:00
|
|
|
nsPIDOMWindow* win = doc->GetWindow();
|
|
|
|
if (win) {
|
|
|
|
win->SetKeyboardIndicators(aShowAccelerators, aShowFocusRings);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-27 22:27:31 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsBaseWidget::NotifyIME(const IMENotification& aIMENotification)
|
|
|
|
{
|
|
|
|
switch (aIMENotification.mMessage) {
|
|
|
|
case REQUEST_TO_COMMIT_COMPOSITION:
|
|
|
|
case REQUEST_TO_CANCEL_COMPOSITION:
|
|
|
|
// Currently, if native IME handler doesn't use TextEventDispatcher,
|
|
|
|
// the request may be notified to mTextEventDispatcher or native IME
|
|
|
|
// directly. Therefore, if mTextEventDispatcher has a composition,
|
|
|
|
// the request should be handled by the mTextEventDispatcher.
|
|
|
|
if (mTextEventDispatcher && mTextEventDispatcher->IsComposing()) {
|
|
|
|
return mTextEventDispatcher->NotifyIME(aIMENotification);
|
|
|
|
}
|
2015-01-27 22:27:33 -08:00
|
|
|
// Otherwise, it should be handled by native IME.
|
|
|
|
return NotifyIMEInternal(aIMENotification);
|
|
|
|
case NOTIFY_IME_OF_FOCUS:
|
2015-08-05 23:57:58 -07:00
|
|
|
mIMEHasFocus = true;
|
|
|
|
// We should notify TextEventDispatcher of focus notification, first.
|
|
|
|
// After that, notify native IME too.
|
2015-01-27 22:27:33 -08:00
|
|
|
if (mTextEventDispatcher) {
|
|
|
|
mTextEventDispatcher->NotifyIME(aIMENotification);
|
|
|
|
}
|
|
|
|
return NotifyIMEInternal(aIMENotification);
|
2015-08-05 23:57:58 -07:00
|
|
|
case NOTIFY_IME_OF_BLUR: {
|
|
|
|
// We should notify TextEventDispatcher of blur notification, first.
|
|
|
|
// After that, notify native IME too.
|
|
|
|
if (mTextEventDispatcher) {
|
|
|
|
mTextEventDispatcher->NotifyIME(aIMENotification);
|
|
|
|
}
|
|
|
|
nsresult rv = NotifyIMEInternal(aIMENotification);
|
|
|
|
mIMEHasFocus = false;
|
|
|
|
return rv;
|
|
|
|
}
|
2015-01-27 22:27:31 -08:00
|
|
|
default:
|
2015-01-27 22:27:33 -08:00
|
|
|
// Otherwise, notify only native IME for now.
|
2015-01-27 22:27:31 -08:00
|
|
|
return NotifyIMEInternal(aIMENotification);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-27 22:27:30 -08:00
|
|
|
NS_IMETHODIMP_(nsIWidget::TextEventDispatcher*)
|
|
|
|
nsBaseWidget::GetTextEventDispatcher()
|
|
|
|
{
|
|
|
|
if (!mTextEventDispatcher) {
|
|
|
|
mTextEventDispatcher = new TextEventDispatcher(this);
|
|
|
|
}
|
|
|
|
return mTextEventDispatcher;
|
|
|
|
}
|
|
|
|
|
2012-08-15 11:52:37 -07:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
|
2015-12-10 14:11:03 -08:00
|
|
|
#ifdef XP_WIN
|
2015-12-10 11:28:33 -08:00
|
|
|
// defined in nsAppRunner.cpp
|
|
|
|
extern const char* kAccessibilityLastRunDatePref;
|
|
|
|
|
|
|
|
static inline uint32_t
|
|
|
|
PRTimeToSeconds(PRTime t_usec)
|
|
|
|
{
|
|
|
|
PRTime usec_per_sec = PR_USEC_PER_SEC;
|
|
|
|
return uint32_t(t_usec /= usec_per_sec);
|
|
|
|
}
|
2015-12-10 14:11:03 -08:00
|
|
|
#endif
|
2015-12-10 11:28:33 -08:00
|
|
|
|
2012-11-17 18:01:44 -08:00
|
|
|
a11y::Accessible*
|
2013-06-27 08:03:58 -07:00
|
|
|
nsBaseWidget::GetRootAccessible()
|
2012-08-15 11:52:37 -07:00
|
|
|
{
|
2012-08-17 08:36:34 -07:00
|
|
|
NS_ENSURE_TRUE(mWidgetListener, nullptr);
|
|
|
|
|
2012-08-15 11:52:42 -07:00
|
|
|
nsIPresShell* presShell = mWidgetListener->GetPresShell();
|
2012-08-15 11:52:37 -07:00
|
|
|
NS_ENSURE_TRUE(presShell, nullptr);
|
|
|
|
|
|
|
|
// If container is null then the presshell is not active. This often happens
|
|
|
|
// when a preshell is being held onto for fastback.
|
|
|
|
nsPresContext* presContext = presShell->GetPresContext();
|
2013-11-20 11:18:25 -08:00
|
|
|
NS_ENSURE_TRUE(presContext->GetContainerWeak(), nullptr);
|
2012-08-15 11:52:37 -07:00
|
|
|
|
|
|
|
// Accessible creation might be not safe so use IsSafeToRunScript to
|
|
|
|
// make sure it's not created at unsafe times.
|
2013-06-27 08:03:58 -07:00
|
|
|
nsCOMPtr<nsIAccessibilityService> accService =
|
|
|
|
services::GetAccessibilityService();
|
2012-08-15 11:52:37 -07:00
|
|
|
if (accService) {
|
2015-12-10 14:11:03 -08:00
|
|
|
#ifdef XP_WIN
|
2015-12-10 11:28:33 -08:00
|
|
|
uint32_t now = PRTimeToSeconds(PR_Now());
|
|
|
|
Preferences::SetInt(kAccessibilityLastRunDatePref, now);
|
2015-12-10 14:11:03 -08:00
|
|
|
#endif
|
2012-08-15 11:52:37 -07:00
|
|
|
return accService->GetRootDocumentAccessible(presShell, nsContentUtils::IsSafeToRunScript());
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2013-12-14 12:40:56 -08:00
|
|
|
#endif // ACCESSIBILITY
|
|
|
|
|
2015-09-28 14:00:25 -07:00
|
|
|
void
|
|
|
|
nsBaseWidget::StartAsyncScrollbarDrag(const AsyncDragMetrics& aDragMetrics)
|
|
|
|
{
|
|
|
|
if (!AsyncPanZoomEnabled()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(XRE_IsParentProcess() && mCompositorParent);
|
|
|
|
|
|
|
|
int layersId = mCompositorParent->RootLayerTreeId();;
|
|
|
|
ScrollableLayerGuid guid(layersId, aDragMetrics.mPresShellId, aDragMetrics.mViewId);
|
|
|
|
|
|
|
|
APZThreadUtils::RunOnControllerThread(
|
|
|
|
NewRunnableMethod(mAPZC.get(), &APZCTreeManager::StartScrollbarDrag, guid, aDragMetrics));
|
|
|
|
}
|
|
|
|
|
2015-11-13 01:37:02 -08:00
|
|
|
CSSIntRect
|
2015-07-13 03:44:36 -07:00
|
|
|
nsBaseWidget::GetScaledScreenBounds()
|
|
|
|
{
|
2015-11-13 01:37:02 -08:00
|
|
|
LayoutDeviceIntRect bounds;
|
|
|
|
GetScreenBounds(bounds);
|
|
|
|
|
|
|
|
// *Dividing* a LayoutDeviceIntRect by a CSSToLayoutDeviceScale gives a
|
|
|
|
// CSSIntRect.
|
2015-07-13 03:44:36 -07:00
|
|
|
CSSToLayoutDeviceScale scale = GetDefaultScale();
|
2015-11-13 01:37:02 -08:00
|
|
|
return RoundedToInt(bounds / scale);
|
2015-07-13 03:44:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsIScreen>
|
|
|
|
nsBaseWidget::GetWidgetScreen()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIScreenManager> screenManager;
|
|
|
|
screenManager = do_GetService("@mozilla.org/gfx/screenmanager;1");
|
|
|
|
if (!screenManager) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-11-13 01:37:02 -08:00
|
|
|
CSSIntRect bounds = GetScaledScreenBounds();
|
2015-07-13 03:44:36 -07:00
|
|
|
nsCOMPtr<nsIScreen> screen;
|
|
|
|
screenManager->ScreenForRect(bounds.x, bounds.y,
|
|
|
|
bounds.width, bounds.height,
|
|
|
|
getter_AddRefs(screen));
|
|
|
|
return screen.forget();
|
|
|
|
}
|
|
|
|
|
2013-12-14 12:40:56 -08:00
|
|
|
nsresult
|
2015-12-02 21:45:38 -08:00
|
|
|
nsIWidget::SynthesizeNativeTouchTap(ScreenIntPoint aPointerScreenPoint, bool aLongTap,
|
2015-04-14 08:36:36 -07:00
|
|
|
nsIObserver* aObserver)
|
2013-12-14 12:40:56 -08:00
|
|
|
{
|
2015-04-14 08:36:36 -07:00
|
|
|
AutoObserverNotifier notifier(aObserver, "touchtap");
|
|
|
|
|
2013-12-14 12:40:56 -08:00
|
|
|
if (sPointerIdCounter > TOUCH_INJECT_MAX_POINTS) {
|
|
|
|
sPointerIdCounter = 0;
|
|
|
|
}
|
|
|
|
int pointerId = sPointerIdCounter;
|
|
|
|
sPointerIdCounter++;
|
|
|
|
nsresult rv = SynthesizeNativeTouchPoint(pointerId, TOUCH_CONTACT,
|
2015-04-14 08:36:36 -07:00
|
|
|
aPointerScreenPoint, 1.0, 90, nullptr);
|
2013-12-14 12:40:56 -08:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!aLongTap) {
|
|
|
|
nsresult rv = SynthesizeNativeTouchPoint(pointerId, TOUCH_REMOVE,
|
2015-04-14 08:36:36 -07:00
|
|
|
aPointerScreenPoint, 0, 0, nullptr);
|
2013-12-14 12:40:56 -08:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// initiate a long tap
|
|
|
|
int elapse = Preferences::GetInt("ui.click_hold_context_menus.delay",
|
|
|
|
TOUCH_INJECT_LONG_TAP_DEFAULT_MSEC);
|
|
|
|
if (!mLongTapTimer) {
|
|
|
|
mLongTapTimer = do_CreateInstance(NS_TIMER_CONTRACTID, &rv);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
SynthesizeNativeTouchPoint(pointerId, TOUCH_CANCEL,
|
2015-04-14 08:36:36 -07:00
|
|
|
aPointerScreenPoint, 0, 0, nullptr);
|
2013-12-14 12:40:56 -08:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
// Windows requires recuring events, so we set this to a smaller window
|
|
|
|
// than the pref value.
|
|
|
|
int timeout = elapse;
|
|
|
|
if (timeout > TOUCH_INJECT_PUMP_TIMER_MSEC) {
|
|
|
|
timeout = TOUCH_INJECT_PUMP_TIMER_MSEC;
|
|
|
|
}
|
|
|
|
mLongTapTimer->InitWithFuncCallback(OnLongTapTimerCallback, this,
|
|
|
|
timeout,
|
|
|
|
nsITimer::TYPE_REPEATING_SLACK);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we already have a long tap pending, cancel it. We only allow one long
|
|
|
|
// tap to be active at a time.
|
|
|
|
if (mLongTapTouchPoint) {
|
|
|
|
SynthesizeNativeTouchPoint(mLongTapTouchPoint->mPointerId, TOUCH_CANCEL,
|
2015-04-14 08:36:36 -07:00
|
|
|
mLongTapTouchPoint->mPosition, 0, 0, nullptr);
|
2013-12-14 12:40:56 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
mLongTapTouchPoint = new LongTapInfo(pointerId, aPointerScreenPoint,
|
2015-04-14 08:36:36 -07:00
|
|
|
TimeDuration::FromMilliseconds(elapse),
|
|
|
|
aObserver);
|
|
|
|
notifier.SkipNotification(); // we'll do it in the long-tap callback
|
2013-12-14 12:40:56 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void
|
|
|
|
nsIWidget::OnLongTapTimerCallback(nsITimer* aTimer, void* aClosure)
|
|
|
|
{
|
2014-03-15 12:00:15 -07:00
|
|
|
nsIWidget *self = static_cast<nsIWidget *>(aClosure);
|
2013-12-14 12:40:56 -08:00
|
|
|
|
|
|
|
if ((self->mLongTapTouchPoint->mStamp + self->mLongTapTouchPoint->mDuration) >
|
|
|
|
TimeStamp::Now()) {
|
|
|
|
#ifdef XP_WIN
|
|
|
|
// Windows needs us to keep pumping feedback to the digitizer, so update
|
|
|
|
// the pointer id with the same position.
|
|
|
|
self->SynthesizeNativeTouchPoint(self->mLongTapTouchPoint->mPointerId,
|
|
|
|
TOUCH_CONTACT,
|
|
|
|
self->mLongTapTouchPoint->mPosition,
|
2015-04-14 08:36:36 -07:00
|
|
|
1.0, 90, nullptr);
|
2012-08-15 11:52:37 -07:00
|
|
|
#endif
|
2013-12-14 12:40:56 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-12-02 21:45:38 -08:00
|
|
|
AutoObserverNotifier notifier(self->mLongTapTouchPoint->mObserver, "touchtap");
|
2015-04-14 08:36:36 -07:00
|
|
|
|
2013-12-14 12:40:56 -08:00
|
|
|
// finished, remove the touch point
|
|
|
|
self->mLongTapTimer->Cancel();
|
|
|
|
self->mLongTapTimer = nullptr;
|
|
|
|
self->SynthesizeNativeTouchPoint(self->mLongTapTouchPoint->mPointerId,
|
|
|
|
TOUCH_REMOVE,
|
|
|
|
self->mLongTapTouchPoint->mPosition,
|
2015-04-14 08:36:36 -07:00
|
|
|
0, 0, nullptr);
|
2013-12-14 12:40:56 -08:00
|
|
|
self->mLongTapTouchPoint = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2015-04-14 08:36:36 -07:00
|
|
|
nsIWidget::ClearNativeTouchSequence(nsIObserver* aObserver)
|
2013-12-14 12:40:56 -08:00
|
|
|
{
|
2015-04-14 08:36:36 -07:00
|
|
|
AutoObserverNotifier notifier(aObserver, "cleartouch");
|
|
|
|
|
2013-12-14 12:40:56 -08:00
|
|
|
if (!mLongTapTimer) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
mLongTapTimer->Cancel();
|
|
|
|
mLongTapTimer = nullptr;
|
|
|
|
SynthesizeNativeTouchPoint(mLongTapTouchPoint->mPointerId, TOUCH_CANCEL,
|
2015-04-14 08:36:36 -07:00
|
|
|
mLongTapTouchPoint->mPosition, 0, 0, nullptr);
|
2013-12-14 12:40:56 -08:00
|
|
|
mLongTapTouchPoint = nullptr;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-08-15 11:52:37 -07:00
|
|
|
|
2015-01-29 11:41:53 -08:00
|
|
|
void
|
|
|
|
nsBaseWidget::RegisterPluginWindowForRemoteUpdates()
|
|
|
|
{
|
|
|
|
#if !defined(XP_WIN) && !defined(MOZ_WIDGET_GTK)
|
|
|
|
NS_NOTREACHED("nsBaseWidget::RegisterPluginWindowForRemoteUpdates not implemented!");
|
|
|
|
return;
|
|
|
|
#else
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-01-29 11:41:57 -08:00
|
|
|
void* id = GetNativeData(NS_NATIVE_PLUGIN_ID);
|
2015-01-29 11:41:53 -08:00
|
|
|
if (!id) {
|
|
|
|
NS_WARNING("This is not a valid native widget!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
MOZ_ASSERT(sPluginWidgetList);
|
|
|
|
sPluginWidgetList->Put(id, this);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsBaseWidget::UnregisterPluginWindowForRemoteUpdates()
|
|
|
|
{
|
|
|
|
#if !defined(XP_WIN) && !defined(MOZ_WIDGET_GTK)
|
|
|
|
NS_NOTREACHED("nsBaseWidget::UnregisterPluginWindowForRemoteUpdates not implemented!");
|
|
|
|
return;
|
|
|
|
#else
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-01-29 11:41:57 -08:00
|
|
|
void* id = GetNativeData(NS_NATIVE_PLUGIN_ID);
|
2015-01-29 11:41:53 -08:00
|
|
|
if (!id) {
|
|
|
|
NS_WARNING("This is not a valid native widget!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
MOZ_ASSERT(sPluginWidgetList);
|
|
|
|
sPluginWidgetList->Remove(id);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
nsIWidget*
|
|
|
|
nsIWidget::LookupRegisteredPluginWindow(uintptr_t aWindowID)
|
|
|
|
{
|
|
|
|
#if !defined(XP_WIN) && !defined(MOZ_WIDGET_GTK)
|
|
|
|
NS_NOTREACHED("nsBaseWidget::LookupRegisteredPluginWindow not implemented!");
|
|
|
|
return nullptr;
|
|
|
|
#else
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(sPluginWidgetList);
|
Bug 1210912 - fix widget leak in LookupRegisteredPluginWindow; r=roc
nsRefPtrHashtable::Get follows XPCOM outparam rules, so it addrefs its
argument prior to returning it. LookupRegisteredPluginWindow, however,
doesn't know anything about the additional reference, and neither does
anything else that calls it (which is, fortunately, not that much code).
So every widget returned by this function will leak.
To fix this, we use nsRefPtrHashtable::GetWeak, which doesn't addref its
argument, but merely returns the raw pointer, leaving the hashtable
responsible for the owning reference.
2015-10-02 19:00:56 -07:00
|
|
|
return sPluginWidgetList->GetWeak((void*)aWindowID);
|
2015-01-29 11:41:53 -08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void
|
2015-06-17 13:39:09 -07:00
|
|
|
nsIWidget::UpdateRegisteredPluginWindowVisibility(uintptr_t aOwnerWidget,
|
2015-09-03 08:01:33 -07:00
|
|
|
nsTArray<uintptr_t>& aPluginIds)
|
2015-01-29 11:41:53 -08:00
|
|
|
{
|
|
|
|
#if !defined(XP_WIN) && !defined(MOZ_WIDGET_GTK)
|
|
|
|
NS_NOTREACHED("nsBaseWidget::UpdateRegisteredPluginWindowVisibility not implemented!");
|
|
|
|
return;
|
|
|
|
#else
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(sPluginWidgetList);
|
2015-11-17 18:18:09 -08:00
|
|
|
|
2015-06-17 13:39:09 -07:00
|
|
|
// Our visible list is associated with a compositor which is associated with
|
2015-11-17 18:18:09 -08:00
|
|
|
// a specific top level window. We use the parent widget during iteration
|
|
|
|
// to skip the plugin widgets owned by other top level windows.
|
|
|
|
for (auto iter = sPluginWidgetList->Iter(); !iter.Done(); iter.Next()) {
|
|
|
|
const void* windowId = iter.Key();
|
|
|
|
nsIWidget* widget = iter.UserData();
|
|
|
|
|
|
|
|
MOZ_ASSERT(windowId);
|
|
|
|
MOZ_ASSERT(widget);
|
|
|
|
|
|
|
|
if (!widget->Destroyed()) {
|
|
|
|
if ((uintptr_t)widget->GetParent() == aOwnerWidget) {
|
|
|
|
widget->Show(aPluginIds.Contains((uintptr_t)windowId));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-29 11:41:53 -08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-06-17 07:00:52 -07:00
|
|
|
already_AddRefed<mozilla::gfx::SourceSurface>
|
2015-06-04 14:19:06 -07:00
|
|
|
nsIWidget::SnapshotWidgetOnScreen()
|
|
|
|
{
|
|
|
|
// This is only supported on a widget with a compositor.
|
|
|
|
LayerManager* layerManager = GetLayerManager();
|
|
|
|
if (!layerManager) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ClientLayerManager* lm = layerManager->AsClientLayerManager();
|
|
|
|
if (!lm) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CompositorChild* cc = lm->GetRemoteRenderer();
|
|
|
|
if (!cc) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-11-09 21:37:32 -08:00
|
|
|
LayoutDeviceIntRect bounds;
|
2015-06-04 14:19:06 -07:00
|
|
|
GetBounds(bounds);
|
|
|
|
if (bounds.IsEmpty()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx::IntSize size(bounds.width, bounds.height);
|
|
|
|
|
|
|
|
ShadowLayerForwarder* forwarder = lm->AsShadowForwarder();
|
|
|
|
SurfaceDescriptor surface;
|
|
|
|
if (!forwarder->AllocSurfaceDescriptor(size, gfxContentType::COLOR_ALPHA, &surface)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!cc->SendMakeWidgetSnapshot(surface)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<gfx::DataSourceSurface> snapshot = GetSurfaceForDescriptor(surface);
|
|
|
|
RefPtr<gfx::DrawTarget> dt =
|
2015-06-04 14:19:06 -07:00
|
|
|
gfxPlatform::GetPlatform()->CreateOffscreenContentDrawTarget(size, gfx::SurfaceFormat::B8G8R8A8);
|
|
|
|
if (!snapshot || !dt) {
|
|
|
|
forwarder->DestroySharedSurface(&surface);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt->DrawSurface(snapshot,
|
|
|
|
gfx::Rect(gfx::Point(), gfx::Size(size)),
|
|
|
|
gfx::Rect(gfx::Point(), gfx::Size(size)),
|
|
|
|
gfx::DrawSurfaceOptions(gfx::Filter::POINT));
|
|
|
|
|
|
|
|
forwarder->DestroySharedSurface(&surface);
|
|
|
|
return dt->Snapshot();
|
|
|
|
}
|
|
|
|
|
2015-12-10 22:15:57 -08:00
|
|
|
NS_IMETHODIMP_(nsIWidget::NativeIMEContext)
|
|
|
|
nsIWidget::GetNativeIMEContext()
|
|
|
|
{
|
|
|
|
return NativeIMEContext(this);
|
|
|
|
}
|
|
|
|
|
2015-07-10 18:53:56 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
|
|
|
2015-12-10 22:15:57 -08:00
|
|
|
void
|
|
|
|
NativeIMEContext::Init(nsIWidget* aWidget)
|
|
|
|
{
|
|
|
|
if (!aWidget) {
|
|
|
|
mRawNativeIMEContext = reinterpret_cast<uintptr_t>(nullptr);
|
|
|
|
mOriginProcessID = static_cast<uint64_t>(-1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!XRE_IsContentProcess()) {
|
|
|
|
mRawNativeIMEContext = reinterpret_cast<uintptr_t>(
|
|
|
|
aWidget->GetNativeData(NS_RAW_NATIVE_IME_CONTEXT));
|
|
|
|
mOriginProcessID = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// If this is created in a child process, aWidget is an instance of
|
|
|
|
// PuppetWidget which doesn't support NS_RAW_NATIVE_IME_CONTEXT.
|
|
|
|
// Instead of that PuppetWidget::GetNativeIMEContext() returns cached
|
|
|
|
// native IME context of the parent process.
|
|
|
|
*this = aWidget->GetNativeIMEContext();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
NativeIMEContext::InitWithRawNativeIMEContext(void* aRawNativeIMEContext)
|
|
|
|
{
|
|
|
|
if (NS_WARN_IF(!aRawNativeIMEContext)) {
|
|
|
|
mRawNativeIMEContext = reinterpret_cast<uintptr_t>(nullptr);
|
|
|
|
mOriginProcessID = static_cast<uint64_t>(-1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mRawNativeIMEContext = reinterpret_cast<uintptr_t>(aRawNativeIMEContext);
|
|
|
|
mOriginProcessID =
|
|
|
|
XRE_IsContentProcess() ? ContentChild::GetSingleton()->GetID() : 0;
|
|
|
|
}
|
|
|
|
|
2015-07-10 18:53:56 -07:00
|
|
|
void
|
|
|
|
IMENotification::TextChangeDataBase::MergeWith(
|
|
|
|
const IMENotification::TextChangeDataBase& aOther)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aOther.IsValid(),
|
|
|
|
"Merging data must store valid data");
|
|
|
|
MOZ_ASSERT(aOther.mStartOffset <= aOther.mRemovedEndOffset,
|
|
|
|
"end of removed text must be same or larger than start");
|
|
|
|
MOZ_ASSERT(aOther.mStartOffset <= aOther.mAddedEndOffset,
|
|
|
|
"end of added text must be same or larger than start");
|
|
|
|
|
|
|
|
if (!IsValid()) {
|
|
|
|
*this = aOther;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// |mStartOffset| and |mRemovedEndOffset| represent all replaced or removed
|
|
|
|
// text ranges. I.e., mStartOffset should be the smallest offset of all
|
|
|
|
// modified text ranges in old text. |mRemovedEndOffset| should be the
|
|
|
|
// largest end offset in old text of all modified text ranges.
|
|
|
|
// |mAddedEndOffset| represents the end offset of all inserted text ranges.
|
|
|
|
// I.e., only this is an offset in new text.
|
|
|
|
// In other words, between mStartOffset and |mRemovedEndOffset| of the
|
|
|
|
// premodified text was already removed. And some text whose length is
|
|
|
|
// |mAddedEndOffset - mStartOffset| is inserted to |mStartOffset|. I.e.,
|
|
|
|
// this allows IME to mark dirty the modified text range with |mStartOffset|
|
|
|
|
// and |mRemovedEndOffset| if IME stores all text of the focused editor and
|
|
|
|
// to compute new text length with |mAddedEndOffset| and |mRemovedEndOffset|.
|
|
|
|
// Additionally, IME can retrieve only the text between |mStartOffset| and
|
|
|
|
// |mAddedEndOffset| for updating stored text.
|
|
|
|
|
|
|
|
// For comparing new and old |mStartOffset|/|mRemovedEndOffset| values, they
|
|
|
|
// should be adjusted to be in same text. The |newData.mStartOffset| and
|
|
|
|
// |newData.mRemovedEndOffset| should be computed as in old text because
|
|
|
|
// |mStartOffset| and |mRemovedEndOffset| represent the modified text range
|
|
|
|
// in the old text but even if some text before the values of the newData
|
|
|
|
// has already been modified, the values don't include the changes.
|
|
|
|
|
|
|
|
// For comparing new and old |mAddedEndOffset| values, they should be
|
|
|
|
// adjusted to be in same text. The |oldData.mAddedEndOffset| should be
|
|
|
|
// computed as in the new text because |mAddedEndOffset| indicates the end
|
|
|
|
// offset of inserted text in the new text but |oldData.mAddedEndOffset|
|
|
|
|
// doesn't include any changes of the text before |newData.mAddedEndOffset|.
|
|
|
|
|
|
|
|
const TextChangeDataBase& newData = aOther;
|
|
|
|
const TextChangeDataBase oldData = *this;
|
|
|
|
|
2015-10-26 15:21:37 -07:00
|
|
|
// mCausedByComposition should be true only when all changes are caused by
|
|
|
|
// composition.
|
2015-07-10 18:53:56 -07:00
|
|
|
mCausedByComposition =
|
|
|
|
newData.mCausedByComposition && oldData.mCausedByComposition;
|
2015-10-26 15:21:37 -07:00
|
|
|
// mOccurredDuringComposition should be true only when all changes occurred
|
|
|
|
// during composition.
|
|
|
|
mOccurredDuringComposition =
|
|
|
|
newData.mOccurredDuringComposition && oldData.mOccurredDuringComposition;
|
2015-07-10 18:53:56 -07:00
|
|
|
|
|
|
|
if (newData.mStartOffset >= oldData.mAddedEndOffset) {
|
|
|
|
// Case 1:
|
|
|
|
// If new start is after old end offset of added text, it means that text
|
|
|
|
// after the modified range is modified. Like:
|
|
|
|
// added range of old change: +----------+
|
|
|
|
// removed range of new change: +----------+
|
|
|
|
// So, the old start offset is always the smaller offset.
|
|
|
|
mStartOffset = oldData.mStartOffset;
|
|
|
|
// The new end offset of removed text is moved by the old change and we
|
|
|
|
// need to cancel the move of the old change for comparing the offsets in
|
|
|
|
// same text because it doesn't make sensce to compare offsets in different
|
|
|
|
// text.
|
|
|
|
uint32_t newRemovedEndOffsetInOldText =
|
|
|
|
newData.mRemovedEndOffset - oldData.Difference();
|
|
|
|
mRemovedEndOffset =
|
|
|
|
std::max(newRemovedEndOffsetInOldText, oldData.mRemovedEndOffset);
|
|
|
|
// The new end offset of added text is always the larger offset.
|
|
|
|
mAddedEndOffset = newData.mAddedEndOffset;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newData.mStartOffset >= oldData.mStartOffset) {
|
|
|
|
// If new start is in the modified range, it means that new data changes
|
|
|
|
// a part or all of the range.
|
|
|
|
mStartOffset = oldData.mStartOffset;
|
|
|
|
if (newData.mRemovedEndOffset >= oldData.mAddedEndOffset) {
|
|
|
|
// Case 2:
|
|
|
|
// If new end of removed text is greater than old end of added text, it
|
|
|
|
// means that all or a part of modified range modified again and text
|
|
|
|
// after the modified range is also modified. Like:
|
|
|
|
// added range of old change: +----------+
|
|
|
|
// removed range of new change: +----------+
|
|
|
|
// So, the new removed end offset is moved by the old change and we need
|
|
|
|
// to cancel the move of the old change for comparing the offsets in the
|
|
|
|
// same text because it doesn't make sense to compare the offsets in
|
|
|
|
// different text.
|
|
|
|
uint32_t newRemovedEndOffsetInOldText =
|
|
|
|
newData.mRemovedEndOffset - oldData.Difference();
|
|
|
|
mRemovedEndOffset =
|
|
|
|
std::max(newRemovedEndOffsetInOldText, oldData.mRemovedEndOffset);
|
|
|
|
// The old end of added text is replaced by new change. So, it should be
|
|
|
|
// same as the new start. On the other hand, the new added end offset is
|
|
|
|
// always same or larger. Therefore, the merged end offset of added
|
|
|
|
// text should be the new end offset of added text.
|
|
|
|
mAddedEndOffset = newData.mAddedEndOffset;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Case 3:
|
|
|
|
// If new end of removed text is less than old end of added text, it means
|
|
|
|
// that only a part of the modified range is modified again. Like:
|
|
|
|
// added range of old change: +------------+
|
|
|
|
// removed range of new change: +-----+
|
|
|
|
// So, the new end offset of removed text should be same as the old end
|
|
|
|
// offset of removed text. Therefore, the merged end offset of removed
|
|
|
|
// text should be the old text change's |mRemovedEndOffset|.
|
|
|
|
mRemovedEndOffset = oldData.mRemovedEndOffset;
|
|
|
|
// The old end of added text is moved by new change. So, we need to cancel
|
|
|
|
// the move of the new change for comparing the offsets in same text.
|
|
|
|
uint32_t oldAddedEndOffsetInNewText =
|
|
|
|
oldData.mAddedEndOffset + newData.Difference();
|
|
|
|
mAddedEndOffset =
|
|
|
|
std::max(newData.mAddedEndOffset, oldAddedEndOffsetInNewText);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newData.mRemovedEndOffset >= oldData.mStartOffset) {
|
|
|
|
// If new end of removed text is greater than old start (and new start is
|
|
|
|
// less than old start), it means that a part of modified range is modified
|
|
|
|
// again and some new text before the modified range is also modified.
|
|
|
|
MOZ_ASSERT(newData.mStartOffset < oldData.mStartOffset,
|
|
|
|
"new start offset should be less than old one here");
|
|
|
|
mStartOffset = newData.mStartOffset;
|
|
|
|
if (newData.mRemovedEndOffset >= oldData.mAddedEndOffset) {
|
|
|
|
// Case 4:
|
|
|
|
// If new end of removed text is greater than old end of added text, it
|
|
|
|
// means that all modified text and text after the modified range is
|
|
|
|
// modified. Like:
|
|
|
|
// added range of old change: +----------+
|
|
|
|
// removed range of new change: +------------------+
|
|
|
|
// So, the new end of removed text is moved by the old change. Therefore,
|
|
|
|
// we need to cancel the move of the old change for comparing the offsets
|
|
|
|
// in same text because it doesn't make sense to compare the offsets in
|
|
|
|
// different text.
|
|
|
|
uint32_t newRemovedEndOffsetInOldText =
|
|
|
|
newData.mRemovedEndOffset - oldData.Difference();
|
|
|
|
mRemovedEndOffset =
|
|
|
|
std::max(newRemovedEndOffsetInOldText, oldData.mRemovedEndOffset);
|
|
|
|
// The old end of added text is replaced by new change. So, the old end
|
|
|
|
// offset of added text is same as new text change's start offset. Then,
|
|
|
|
// new change's end offset of added text is always same or larger than
|
|
|
|
// it. Therefore, merged end offset of added text is always the new end
|
|
|
|
// offset of added text.
|
|
|
|
mAddedEndOffset = newData.mAddedEndOffset;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Case 5:
|
|
|
|
// If new end of removed text is less than old end of added text, it
|
|
|
|
// means that only a part of the modified range is modified again. Like:
|
|
|
|
// added range of old change: +----------+
|
|
|
|
// removed range of new change: +----------+
|
|
|
|
// So, the new end of removed text should be same as old end of removed
|
|
|
|
// text for preventing end of removed text to be modified. Therefore,
|
|
|
|
// merged end offset of removed text is always the old end offset of removed
|
|
|
|
// text.
|
|
|
|
mRemovedEndOffset = oldData.mRemovedEndOffset;
|
|
|
|
// The old end of added text is moved by this change. So, we need to
|
|
|
|
// cancel the move of the new change for comparing the offsets in same text
|
|
|
|
// because it doesn't make sense to compare the offsets in different text.
|
|
|
|
uint32_t oldAddedEndOffsetInNewText =
|
|
|
|
oldData.mAddedEndOffset + newData.Difference();
|
|
|
|
mAddedEndOffset =
|
|
|
|
std::max(newData.mAddedEndOffset, oldAddedEndOffsetInNewText);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Case 6:
|
|
|
|
// Otherwise, i.e., both new end of added text and new start are less than
|
|
|
|
// old start, text before the modified range is modified. Like:
|
|
|
|
// added range of old change: +----------+
|
|
|
|
// removed range of new change: +----------+
|
|
|
|
MOZ_ASSERT(newData.mStartOffset < oldData.mStartOffset,
|
|
|
|
"new start offset should be less than old one here");
|
|
|
|
mStartOffset = newData.mStartOffset;
|
|
|
|
MOZ_ASSERT(newData.mRemovedEndOffset < oldData.mRemovedEndOffset,
|
|
|
|
"new removed end offset should be less than old one here");
|
|
|
|
mRemovedEndOffset = oldData.mRemovedEndOffset;
|
|
|
|
// The end of added text should be adjusted with the new difference.
|
|
|
|
uint32_t oldAddedEndOffsetInNewText =
|
|
|
|
oldData.mAddedEndOffset + newData.Difference();
|
|
|
|
mAddedEndOffset =
|
|
|
|
std::max(newData.mAddedEndOffset, oldAddedEndOffsetInNewText);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
|
|
|
|
// Let's test the code of merging multiple text change data in debug build
|
|
|
|
// and crash if one of them fails because this feature is very complex but
|
|
|
|
// cannot be tested with mochitest.
|
|
|
|
void
|
|
|
|
IMENotification::TextChangeDataBase::Test()
|
|
|
|
{
|
|
|
|
static bool gTestTextChangeEvent = true;
|
|
|
|
if (!gTestTextChangeEvent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
gTestTextChangeEvent = false;
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Case 1
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
// Appending text
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(10, 10, 20, false, false));
|
|
|
|
MergeWith(TextChangeData(20, 20, 35, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 10,
|
|
|
|
"Test 1-1-1: mStartOffset should be the first offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 10, // 20 - (20 - 10)
|
|
|
|
"Test 1-1-2: mRemovedEndOffset should be the first end of removed text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 35,
|
|
|
|
"Test 1-1-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Removing text (longer line -> shorter line)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(10, 20, 10, false, false));
|
|
|
|
MergeWith(TextChangeData(10, 30, 10, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 10,
|
|
|
|
"Test 1-2-1: mStartOffset should be the first offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 40, // 30 + (10 - 20)
|
|
|
|
"Test 1-2-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"with already removed length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 10,
|
|
|
|
"Test 1-2-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Removing text (shorter line -> longer line)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(10, 20, 10, false, false));
|
|
|
|
MergeWith(TextChangeData(10, 15, 10, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 10,
|
|
|
|
"Test 1-3-1: mStartOffset should be the first offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 25, // 15 + (10 - 20)
|
|
|
|
"Test 1-3-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"with already removed length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 10,
|
|
|
|
"Test 1-3-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Appending text at different point (not sure if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(10, 10, 20, false, false));
|
|
|
|
MergeWith(TextChangeData(55, 55, 60, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 10,
|
|
|
|
"Test 1-4-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 45, // 55 - (10 - 20)
|
|
|
|
"Test 1-4-2: mRemovedEndOffset should be the the largest end of removed "
|
|
|
|
"text without already added length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 60,
|
|
|
|
"Test 1-4-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Removing text at different point (not sure if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(10, 20, 10, false, false));
|
|
|
|
MergeWith(TextChangeData(55, 68, 55, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 10,
|
|
|
|
"Test 1-5-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 78, // 68 - (10 - 20)
|
|
|
|
"Test 1-5-2: mRemovedEndOffset should be the the largest end of removed "
|
|
|
|
"text with already removed length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 55,
|
|
|
|
"Test 1-5-3: mAddedEndOffset should be the largest end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text and append text (becomes longer)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(30, 35, 32, false, false));
|
|
|
|
MergeWith(TextChangeData(32, 32, 40, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 30,
|
|
|
|
"Test 1-6-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 35, // 32 - (32 - 35)
|
|
|
|
"Test 1-6-2: mRemovedEndOffset should be the the first end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 40,
|
|
|
|
"Test 1-6-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text and append text (becomes shorter)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(30, 35, 32, false, false));
|
|
|
|
MergeWith(TextChangeData(32, 32, 33, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 30,
|
|
|
|
"Test 1-7-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 35, // 32 - (32 - 35)
|
|
|
|
"Test 1-7-2: mRemovedEndOffset should be the the first end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 33,
|
|
|
|
"Test 1-7-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Removing text and replacing text after first range (not sure if actually
|
|
|
|
// occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(30, 35, 30, false, false));
|
|
|
|
MergeWith(TextChangeData(32, 34, 48, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 30,
|
|
|
|
"Test 1-8-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 39, // 34 - (30 - 35)
|
|
|
|
"Test 1-8-2: mRemovedEndOffset should be the the first end of removed text "
|
|
|
|
"without already removed text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 48,
|
|
|
|
"Test 1-8-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Removing text and replacing text after first range (not sure if actually
|
|
|
|
// occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(30, 35, 30, false, false));
|
|
|
|
MergeWith(TextChangeData(32, 38, 36, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 30,
|
|
|
|
"Test 1-9-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 43, // 38 - (30 - 35)
|
|
|
|
"Test 1-9-2: mRemovedEndOffset should be the the first end of removed text "
|
|
|
|
"without already removed text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 36,
|
|
|
|
"Test 1-9-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Case 2
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
// Replacing text in around end of added text (becomes shorter) (not sure
|
|
|
|
// if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 50, 55, false, false));
|
|
|
|
MergeWith(TextChangeData(53, 60, 54, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 50,
|
|
|
|
"Test 2-1-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 55, // 60 - (55 - 50)
|
|
|
|
"Test 2-1-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"without already added text length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 54,
|
|
|
|
"Test 2-1-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text around end of added text (becomes longer) (not sure
|
|
|
|
// if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 50, 55, false, false));
|
|
|
|
MergeWith(TextChangeData(54, 62, 68, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 50,
|
|
|
|
"Test 2-2-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 57, // 62 - (55 - 50)
|
|
|
|
"Test 2-2-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"without already added text length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 68,
|
|
|
|
"Test 2-2-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text around end of replaced text (became shorter) (not sure if
|
|
|
|
// actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(36, 48, 45, false, false));
|
|
|
|
MergeWith(TextChangeData(43, 50, 49, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 36,
|
|
|
|
"Test 2-3-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 53, // 50 - (45 - 48)
|
|
|
|
"Test 2-3-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"without already removed text length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 49,
|
|
|
|
"Test 2-3-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text around end of replaced text (became longer) (not sure if
|
|
|
|
// actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(36, 52, 53, false, false));
|
|
|
|
MergeWith(TextChangeData(43, 68, 61, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 36,
|
|
|
|
"Test 2-4-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 67, // 68 - (53 - 52)
|
|
|
|
"Test 2-4-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"without already added text length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 61,
|
|
|
|
"Test 2-4-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Case 3
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
// Appending text in already added text (not sure if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(10, 10, 20, false, false));
|
|
|
|
MergeWith(TextChangeData(15, 15, 30, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 10,
|
|
|
|
"Test 3-1-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 10,
|
|
|
|
"Test 3-1-2: mRemovedEndOffset should be the the first end of removed text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 35, // 20 + (30 - 15)
|
|
|
|
"Test 3-1-3: mAddedEndOffset should be the first end of added text with "
|
|
|
|
"added text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text in added text (not sure if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 50, 55, false, false));
|
|
|
|
MergeWith(TextChangeData(52, 53, 56, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 50,
|
|
|
|
"Test 3-2-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 50,
|
|
|
|
"Test 3-2-2: mRemovedEndOffset should be the the first end of removed text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 58, // 55 + (56 - 53)
|
|
|
|
"Test 3-2-3: mAddedEndOffset should be the first end of added text with "
|
|
|
|
"added text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text in replaced text (became shorter) (not sure if actually
|
|
|
|
// occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(36, 48, 45, false, false));
|
|
|
|
MergeWith(TextChangeData(37, 38, 50, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 36,
|
|
|
|
"Test 3-3-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 48,
|
|
|
|
"Test 3-3-2: mRemovedEndOffset should be the the first end of removed text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 57, // 45 + (50 - 38)
|
|
|
|
"Test 3-3-3: mAddedEndOffset should be the first end of added text with "
|
|
|
|
"added text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text in replaced text (became longer) (not sure if actually
|
|
|
|
// occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(32, 48, 53, false, false));
|
|
|
|
MergeWith(TextChangeData(43, 50, 52, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 32,
|
|
|
|
"Test 3-4-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 48,
|
|
|
|
"Test 3-4-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"without already added text length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 55, // 53 + (52 - 50)
|
|
|
|
"Test 3-4-3: mAddedEndOffset should be the first end of added text with "
|
|
|
|
"added text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text in replaced text (became shorter) (not sure if actually
|
|
|
|
// occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(36, 48, 50, false, false));
|
|
|
|
MergeWith(TextChangeData(37, 49, 47, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 36,
|
|
|
|
"Test 3-5-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 48,
|
|
|
|
"Test 3-5-2: mRemovedEndOffset should be the the first end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 48, // 50 + (47 - 49)
|
|
|
|
"Test 3-5-3: mAddedEndOffset should be the first end of added text without "
|
|
|
|
"removed text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text in replaced text (became longer) (not sure if actually
|
|
|
|
// occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(32, 48, 53, false, false));
|
|
|
|
MergeWith(TextChangeData(43, 50, 47, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 32,
|
|
|
|
"Test 3-6-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 48,
|
|
|
|
"Test 3-6-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"without already added text length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 50, // 53 + (47 - 50)
|
|
|
|
"Test 3-6-3: mAddedEndOffset should be the first end of added text without "
|
|
|
|
"removed text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Case 4
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
// Replacing text all of already append text (not sure if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 50, 55, false, false));
|
|
|
|
MergeWith(TextChangeData(44, 66, 68, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 44,
|
|
|
|
"Test 4-1-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 61, // 66 - (55 - 50)
|
|
|
|
"Test 4-1-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"without already added text length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 68,
|
|
|
|
"Test 4-1-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text around a point in which text was removed (not sure if
|
|
|
|
// actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 62, 50, false, false));
|
|
|
|
MergeWith(TextChangeData(44, 66, 68, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 44,
|
|
|
|
"Test 4-2-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 78, // 66 - (50 - 62)
|
|
|
|
"Test 4-2-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"without already removed text length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 68,
|
|
|
|
"Test 4-2-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text all replaced text (became shorter) (not sure if actually
|
|
|
|
// occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 62, 60, false, false));
|
|
|
|
MergeWith(TextChangeData(49, 128, 130, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 49,
|
|
|
|
"Test 4-3-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 130, // 128 - (60 - 62)
|
|
|
|
"Test 4-3-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"without already removed text length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 130,
|
|
|
|
"Test 4-3-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text all replaced text (became longer) (not sure if actually
|
|
|
|
// occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 61, 73, false, false));
|
|
|
|
MergeWith(TextChangeData(44, 100, 50, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 44,
|
|
|
|
"Test 4-4-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 88, // 100 - (73 - 61)
|
|
|
|
"Test 4-4-2: mRemovedEndOffset should be the the last end of removed text "
|
|
|
|
"with already added text length");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 50,
|
|
|
|
"Test 4-4-3: mAddedEndOffset should be the last end of added text");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Case 5
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
// Replacing text around start of added text (not sure if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 50, 55, false, false));
|
|
|
|
MergeWith(TextChangeData(48, 52, 49, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 48,
|
|
|
|
"Test 5-1-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 50,
|
|
|
|
"Test 5-1-2: mRemovedEndOffset should be the the first end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 52, // 55 + (52 - 49)
|
|
|
|
"Test 5-1-3: mAddedEndOffset should be the first end of added text with "
|
|
|
|
"added text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text around start of replaced text (became shorter) (not sure if
|
|
|
|
// actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 60, 58, false, false));
|
|
|
|
MergeWith(TextChangeData(43, 50, 48, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 43,
|
|
|
|
"Test 5-2-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 60,
|
|
|
|
"Test 5-2-2: mRemovedEndOffset should be the the first end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 56, // 58 + (48 - 50)
|
|
|
|
"Test 5-2-3: mAddedEndOffset should be the first end of added text without "
|
|
|
|
"removed text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text around start of replaced text (became longer) (not sure if
|
|
|
|
// actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 60, 68, false, false));
|
|
|
|
MergeWith(TextChangeData(43, 55, 53, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 43,
|
|
|
|
"Test 5-3-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 60,
|
|
|
|
"Test 5-3-2: mRemovedEndOffset should be the the first end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 66, // 68 + (53 - 55)
|
|
|
|
"Test 5-3-3: mAddedEndOffset should be the first end of added text without "
|
|
|
|
"removed text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text around start of replaced text (became shorter) (not sure if
|
|
|
|
// actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 60, 58, false, false));
|
|
|
|
MergeWith(TextChangeData(43, 50, 128, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 43,
|
|
|
|
"Test 5-4-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 60,
|
|
|
|
"Test 5-4-2: mRemovedEndOffset should be the the first end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 136, // 58 + (128 - 50)
|
|
|
|
"Test 5-4-3: mAddedEndOffset should be the first end of added text with "
|
|
|
|
"added text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text around start of replaced text (became longer) (not sure if
|
|
|
|
// actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 60, 68, false, false));
|
|
|
|
MergeWith(TextChangeData(43, 55, 65, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 43,
|
|
|
|
"Test 5-5-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 60,
|
|
|
|
"Test 5-5-2: mRemovedEndOffset should be the the first end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 78, // 68 + (65 - 55)
|
|
|
|
"Test 5-5-3: mAddedEndOffset should be the first end of added text with "
|
|
|
|
"added text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Case 6
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
// Appending text before already added text (not sure if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(30, 30, 45, false, false));
|
|
|
|
MergeWith(TextChangeData(10, 10, 20, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 10,
|
|
|
|
"Test 6-1-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 30,
|
|
|
|
"Test 6-1-2: mRemovedEndOffset should be the the largest end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 55, // 45 + (20 - 10)
|
|
|
|
"Test 6-1-3: mAddedEndOffset should be the first end of added text with "
|
|
|
|
"added text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Removing text before already removed text (not sure if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(30, 35, 30, false, false));
|
|
|
|
MergeWith(TextChangeData(10, 25, 10, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 10,
|
|
|
|
"Test 6-2-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 35,
|
|
|
|
"Test 6-2-2: mRemovedEndOffset should be the the largest end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 15, // 30 - (25 - 10)
|
|
|
|
"Test 6-2-3: mAddedEndOffset should be the first end of added text with "
|
|
|
|
"removed text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text before already replaced text (not sure if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 65, 70, false, false));
|
|
|
|
MergeWith(TextChangeData(13, 24, 15, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 13,
|
|
|
|
"Test 6-3-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 65,
|
|
|
|
"Test 6-3-2: mRemovedEndOffset should be the the largest end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 61, // 70 + (15 - 24)
|
|
|
|
"Test 6-3-3: mAddedEndOffset should be the first end of added text without "
|
|
|
|
"removed text length by the new change");
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
// Replacing text before already replaced text (not sure if actually occurs)
|
2015-10-26 15:21:37 -07:00
|
|
|
MergeWith(TextChangeData(50, 65, 70, false, false));
|
|
|
|
MergeWith(TextChangeData(13, 24, 36, false, false));
|
2015-07-10 18:53:56 -07:00
|
|
|
MOZ_ASSERT(mStartOffset == 13,
|
|
|
|
"Test 6-4-1: mStartOffset should be the smallest offset");
|
|
|
|
MOZ_ASSERT(mRemovedEndOffset == 65,
|
|
|
|
"Test 6-4-2: mRemovedEndOffset should be the the largest end of removed "
|
|
|
|
"text");
|
|
|
|
MOZ_ASSERT(mAddedEndOffset == 82, // 70 + (36 - 24)
|
|
|
|
"Test 6-4-3: mAddedEndOffset should be the first end of added text without "
|
|
|
|
"removed text length by the new change");
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // #ifdef DEBUG
|
|
|
|
|
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Convert a GUI event message code to a string.
|
|
|
|
// Makes it a lot easier to debug events.
|
|
|
|
//
|
|
|
|
// See gtk/nsWidget.cpp and windows/nsWindow.cpp
|
|
|
|
// for a DebugPrintEvent() function that uses
|
|
|
|
// this.
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
/* static */ nsAutoString
|
2013-10-01 20:46:03 -07:00
|
|
|
nsBaseWidget::debug_GuiEventToString(WidgetGUIEvent* aGuiEvent)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ASSERTION(nullptr != aGuiEvent,"cmon, null gui event.");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsAutoString eventName(NS_LITERAL_STRING("UNKNOWN"));
|
|
|
|
|
|
|
|
#define _ASSIGN_eventName(_value,_name)\
|
2011-12-05 01:10:27 -08:00
|
|
|
case _value: eventName.AssignLiteral(_name) ; break
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-08-21 18:34:51 -07:00
|
|
|
switch(aGuiEvent->mMessage)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2015-09-01 23:08:00 -07:00
|
|
|
_ASSIGN_eventName(eBlur,"eBlur");
|
2015-09-01 23:08:03 -07:00
|
|
|
_ASSIGN_eventName(eLegacyDragGesture,"eLegacyDragGesture");
|
2015-09-01 23:08:01 -07:00
|
|
|
_ASSIGN_eventName(eDrop,"eDrop");
|
2015-09-01 23:08:02 -07:00
|
|
|
_ASSIGN_eventName(eDragEnter,"eDragEnter");
|
2015-09-01 23:08:02 -07:00
|
|
|
_ASSIGN_eventName(eDragExit,"eDragExit");
|
2015-09-01 23:08:02 -07:00
|
|
|
_ASSIGN_eventName(eDragOver,"eDragOver");
|
2015-09-14 08:14:33 -07:00
|
|
|
_ASSIGN_eventName(eEditorInput,"eEditorInput");
|
2015-09-01 23:08:00 -07:00
|
|
|
_ASSIGN_eventName(eFocus,"eFocus");
|
2015-09-01 23:08:00 -07:00
|
|
|
_ASSIGN_eventName(eFormSelect,"eFormSelect");
|
2015-09-01 23:08:00 -07:00
|
|
|
_ASSIGN_eventName(eFormChange,"eFormChange");
|
2015-09-01 23:08:00 -07:00
|
|
|
_ASSIGN_eventName(eFormReset,"eFormReset");
|
2015-09-01 23:08:00 -07:00
|
|
|
_ASSIGN_eventName(eFormSubmit,"eFormSubmit");
|
2015-09-01 23:07:59 -07:00
|
|
|
_ASSIGN_eventName(eImageAbort,"eImageAbort");
|
2015-09-01 23:07:59 -07:00
|
|
|
_ASSIGN_eventName(eLoadError,"eLoadError");
|
2015-08-28 16:58:27 -07:00
|
|
|
_ASSIGN_eventName(eKeyDown,"eKeyDown");
|
2015-08-28 16:58:27 -07:00
|
|
|
_ASSIGN_eventName(eKeyPress,"eKeyPress");
|
2015-08-28 16:58:27 -07:00
|
|
|
_ASSIGN_eventName(eKeyUp,"eKeyUp");
|
2015-08-28 16:58:31 -07:00
|
|
|
_ASSIGN_eventName(eMouseEnterIntoWidget,"eMouseEnterIntoWidget");
|
2015-08-28 16:58:31 -07:00
|
|
|
_ASSIGN_eventName(eMouseExitFromWidget,"eMouseExitFromWidget");
|
2015-08-28 16:58:30 -07:00
|
|
|
_ASSIGN_eventName(eMouseDown,"eMouseDown");
|
2015-08-28 16:58:30 -07:00
|
|
|
_ASSIGN_eventName(eMouseUp,"eMouseUp");
|
2015-08-28 16:58:32 -07:00
|
|
|
_ASSIGN_eventName(eMouseClick,"eMouseClick");
|
2015-08-28 16:58:31 -07:00
|
|
|
_ASSIGN_eventName(eMouseDoubleClick,"eMouseDoubleClick");
|
2015-08-28 16:58:29 -07:00
|
|
|
_ASSIGN_eventName(eMouseMove,"eMouseMove");
|
2015-09-01 23:07:59 -07:00
|
|
|
_ASSIGN_eventName(eLoad,"eLoad");
|
2015-09-01 23:07:59 -07:00
|
|
|
_ASSIGN_eventName(ePopState,"ePopState");
|
2015-09-10 09:59:53 -07:00
|
|
|
_ASSIGN_eventName(eBeforeScriptExecute,"eBeforeScriptExecute");
|
2015-09-10 09:59:54 -07:00
|
|
|
_ASSIGN_eventName(eAfterScriptExecute,"eAfterScriptExecute");
|
2015-09-01 23:07:59 -07:00
|
|
|
_ASSIGN_eventName(eUnload,"eUnload");
|
2015-09-01 23:07:59 -07:00
|
|
|
_ASSIGN_eventName(eHashChange,"eHashChange");
|
2015-09-01 23:07:58 -07:00
|
|
|
_ASSIGN_eventName(eReadyStateChange,"eReadyStateChange");
|
2015-09-04 03:54:12 -07:00
|
|
|
_ASSIGN_eventName(eXULBroadcast, "eXULBroadcast");
|
2015-09-04 03:54:12 -07:00
|
|
|
_ASSIGN_eventName(eXULCommandUpdate, "eXULCommandUpdate");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#undef _ASSIGN_eventName
|
|
|
|
|
2013-01-01 14:38:48 -08:00
|
|
|
default:
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
char buf[32];
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2015-08-21 18:34:51 -07:00
|
|
|
snprintf_literal(buf,"UNKNOWN: %d",aGuiEvent->mMessage);
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2011-12-05 01:10:27 -08:00
|
|
|
CopyASCIItoUTF16(buf, eventName);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return nsAutoString(eventName);
|
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Code to deal with paint and event debug prefs.
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
struct PrefPair
|
|
|
|
{
|
|
|
|
const char * name;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool value;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
static PrefPair debug_PrefValues[] =
|
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
{ "nglayout.debug.crossing_event_dumping", false },
|
|
|
|
{ "nglayout.debug.event_dumping", false },
|
|
|
|
{ "nglayout.debug.invalidate_dumping", false },
|
|
|
|
{ "nglayout.debug.motion_event_dumping", false },
|
|
|
|
{ "nglayout.debug.paint_dumping", false },
|
|
|
|
{ "nglayout.debug.paint_flashing", false }
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2007-03-22 10:30:00 -07:00
|
|
|
nsBaseWidget::debug_GetCachedBoolPref(const char * aPrefName)
|
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ASSERTION(nullptr != aPrefName,"cmon, pref name is null.");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
for (uint32_t i = 0; i < ArrayLength(debug_PrefValues); i++)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (strcmp(debug_PrefValues[i].name, aPrefName) == 0)
|
|
|
|
{
|
|
|
|
return debug_PrefValues[i].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////
|
2011-09-28 23:19:26 -07:00
|
|
|
static void debug_SetCachedBoolPref(const char * aPrefName,bool aValue)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ASSERTION(nullptr != aPrefName,"cmon, pref name is null.");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
for (uint32_t i = 0; i < ArrayLength(debug_PrefValues); i++)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (strcmp(debug_PrefValues[i].name, aPrefName) == 0)
|
|
|
|
{
|
|
|
|
debug_PrefValues[i].value = aValue;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
NS_ASSERTION(false, "cmon, this code is not reached dude.");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////
|
2015-03-21 09:28:04 -07:00
|
|
|
class Debug_PrefObserver final : public nsIObserver {
|
2014-06-24 09:36:44 -07:00
|
|
|
~Debug_PrefObserver() {}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
};
|
|
|
|
|
2014-04-27 00:06:00 -07:00
|
|
|
NS_IMPL_ISUPPORTS(Debug_PrefObserver, nsIObserver)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
Debug_PrefObserver::Observe(nsISupports* subject, const char* topic,
|
2014-01-04 07:02:17 -08:00
|
|
|
const char16_t* data)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ConvertUTF16toUTF8 prefName(data);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool value = Preferences::GetBool(prefName.get(), false);
|
2007-03-22 10:30:00 -07:00
|
|
|
debug_SetCachedBoolPref(prefName.get(), value);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
/* static */ void
|
|
|
|
debug_RegisterPrefCallbacks()
|
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool once = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-05-23 07:54:03 -07:00
|
|
|
if (!once) {
|
|
|
|
return;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
once = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-05-23 07:54:03 -07:00
|
|
|
nsCOMPtr<nsIObserver> obs(new Debug_PrefObserver());
|
2012-08-22 08:56:38 -07:00
|
|
|
for (uint32_t i = 0; i < ArrayLength(debug_PrefValues); i++) {
|
2011-05-23 07:54:03 -07:00
|
|
|
// Initialize the pref values
|
|
|
|
debug_PrefValues[i].value =
|
2011-09-28 23:19:26 -07:00
|
|
|
Preferences::GetBool(debug_PrefValues[i].name, false);
|
2011-05-23 07:54:03 -07:00
|
|
|
|
|
|
|
if (obs) {
|
|
|
|
// Register callbacks for when these change
|
|
|
|
Preferences::AddStrongObserver(obs, debug_PrefValues[i].name);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////
|
2012-08-22 08:56:38 -07:00
|
|
|
static int32_t
|
2007-03-22 10:30:00 -07:00
|
|
|
_GetPrintCount()
|
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
static int32_t sCount = 0;
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return ++sCount;
|
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////
|
2011-09-28 23:19:26 -07:00
|
|
|
/* static */ bool
|
2007-03-22 10:30:00 -07:00
|
|
|
nsBaseWidget::debug_WantPaintFlashing()
|
|
|
|
{
|
|
|
|
return debug_GetCachedBoolPref("nglayout.debug.paint_flashing");
|
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
/* static */ void
|
|
|
|
nsBaseWidget::debug_DumpEvent(FILE * aFileOut,
|
|
|
|
nsIWidget * aWidget,
|
2013-10-01 20:46:03 -07:00
|
|
|
WidgetGUIEvent* aGuiEvent,
|
2012-09-01 19:35:17 -07:00
|
|
|
const nsAutoCString & aWidgetName,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aWindowID)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2015-08-28 16:58:29 -07:00
|
|
|
if (aGuiEvent->mMessage == eMouseMove) {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!debug_GetCachedBoolPref("nglayout.debug.motion_event_dumping"))
|
|
|
|
return;
|
|
|
|
}
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2015-08-28 16:58:31 -07:00
|
|
|
if (aGuiEvent->mMessage == eMouseEnterIntoWidget ||
|
2015-08-28 16:58:31 -07:00
|
|
|
aGuiEvent->mMessage == eMouseExitFromWidget) {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!debug_GetCachedBoolPref("nglayout.debug.crossing_event_dumping"))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!debug_GetCachedBoolPref("nglayout.debug.event_dumping"))
|
|
|
|
return;
|
|
|
|
|
2011-12-05 01:10:27 -08:00
|
|
|
NS_LossyConvertUTF16toASCII tempString(debug_GuiEventToString(aGuiEvent).get());
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
fprintf(aFileOut,
|
2013-01-01 14:38:48 -08:00
|
|
|
"%4d %-26s widget=%-8p name=%-12s id=0x%-6x refpt=%d,%d\n",
|
2007-03-22 10:30:00 -07:00
|
|
|
_GetPrintCount(),
|
|
|
|
tempString.get(),
|
|
|
|
(void *) aWidget,
|
|
|
|
aWidgetName.get(),
|
2013-01-01 14:38:48 -08:00
|
|
|
aWindowID,
|
2014-08-28 09:45:48 -07:00
|
|
|
aGuiEvent->refPoint.x,
|
|
|
|
aGuiEvent->refPoint.y);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
/* static */ void
|
|
|
|
nsBaseWidget::debug_DumpPaintEvent(FILE * aFileOut,
|
|
|
|
nsIWidget * aWidget,
|
2012-08-15 11:52:42 -07:00
|
|
|
const nsIntRegion & aRegion,
|
2012-09-01 19:35:17 -07:00
|
|
|
const nsAutoCString & aWidgetName,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aWindowID)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ASSERTION(nullptr != aFileOut,"cmon, null output FILE");
|
|
|
|
NS_ASSERTION(nullptr != aWidget,"cmon, the widget is null");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (!debug_GetCachedBoolPref("nglayout.debug.paint_dumping"))
|
|
|
|
return;
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2012-08-15 11:52:42 -07:00
|
|
|
nsIntRect rect = aRegion.GetBounds();
|
2007-03-22 10:30:00 -07:00
|
|
|
fprintf(aFileOut,
|
2013-01-01 14:38:48 -08:00
|
|
|
"%4d PAINT widget=%p name=%-12s id=0x%-6x bounds-rect=%3d,%-3d %3d,%-3d",
|
2007-03-22 10:30:00 -07:00
|
|
|
_GetPrintCount(),
|
|
|
|
(void *) aWidget,
|
|
|
|
aWidgetName.get(),
|
2013-01-01 14:38:48 -08:00
|
|
|
aWindowID,
|
2010-08-20 12:29:01 -07:00
|
|
|
rect.x, rect.y, rect.width, rect.height
|
|
|
|
);
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
fprintf(aFileOut,"\n");
|
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
/* static */ void
|
2015-11-16 21:18:31 -08:00
|
|
|
nsBaseWidget::debug_DumpInvalidate(FILE* aFileOut,
|
|
|
|
nsIWidget* aWidget,
|
|
|
|
const LayoutDeviceIntRect* aRect,
|
|
|
|
const nsAutoCString& aWidgetName,
|
|
|
|
int32_t aWindowID)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!debug_GetCachedBoolPref("nglayout.debug.invalidate_dumping"))
|
|
|
|
return;
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ASSERTION(nullptr != aFileOut,"cmon, null output FILE");
|
|
|
|
NS_ASSERTION(nullptr != aWidget,"cmon, the widget is null");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
fprintf(aFileOut,
|
2013-01-01 14:38:48 -08:00
|
|
|
"%4d Invalidate widget=%p name=%-12s id=0x%-6x",
|
2007-03-22 10:30:00 -07:00
|
|
|
_GetPrintCount(),
|
|
|
|
(void *) aWidget,
|
|
|
|
aWidgetName.get(),
|
2013-01-01 14:38:48 -08:00
|
|
|
aWindowID);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-11-16 21:18:31 -08:00
|
|
|
if (aRect) {
|
2007-03-22 10:30:00 -07:00
|
|
|
fprintf(aFileOut,
|
|
|
|
" rect=%3d,%-3d %3d,%-3d",
|
2015-11-16 21:18:31 -08:00
|
|
|
aRect->x, aRect->y, aRect->width, aRect->height);
|
|
|
|
} else {
|
2007-03-22 10:30:00 -07:00
|
|
|
fprintf(aFileOut,
|
|
|
|
" rect=%-15s",
|
|
|
|
"none");
|
|
|
|
}
|
2013-01-01 14:38:48 -08:00
|
|
|
|
2015-11-16 21:18:31 -08:00
|
|
|
fprintf(aFileOut, "\n");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#endif // DEBUG
|