/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Dean Tessman * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "nsBaseWidget.h" #include "nsIDeviceContext.h" #include "nsCOMPtr.h" #include "nsGfxCIID.h" #include "nsWidgetsCID.h" #include "nsServiceManagerUtils.h" #include "nsIScreenManager.h" #include "nsAppDirectoryServiceDefs.h" #include "nsISimpleEnumerator.h" #include "nsIContent.h" #include "nsIServiceManager.h" #include "nsIPrefService.h" #include "nsIPrefBranch2.h" #ifdef DEBUG #include "nsIObserver.h" static void debug_RegisterPrefCallbacks(); static PRBool debug_InSecureKeyboardInputMode = PR_FALSE; #endif #ifdef NOISY_WIDGET_LEAKS static PRInt32 gNumWidgets; #endif nsIContent* nsBaseWidget::mLastRollup = nsnull; // nsBaseWidget NS_IMPL_ISUPPORTS1(nsBaseWidget, nsIWidget) 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); } } //------------------------------------------------------------------------- // // nsBaseWidget constructor // //------------------------------------------------------------------------- nsBaseWidget::nsBaseWidget() : mClientData(nsnull) , mEventCallback(nsnull) , mContext(nsnull) , mToolkit(nsnull) , mCursor(eCursor_standard) , mWindowType(eWindowType_child) , mBorderStyle(eBorderStyle_none) , mOnDestroyCalled(PR_FALSE) , mBounds(0,0,0,0) , mOriginalBounds(nsnull) , mClipRectCount(0) , mZIndex(0) , mSizeMode(nsSizeMode_Normal) { #ifdef NOISY_WIDGET_LEAKS gNumWidgets++; printf("WIDGETS+ = %d\n", gNumWidgets); #endif #ifdef DEBUG debug_RegisterPrefCallbacks(); #endif } //------------------------------------------------------------------------- // // nsBaseWidget destructor // //------------------------------------------------------------------------- nsBaseWidget::~nsBaseWidget() { #ifdef NOISY_WIDGET_LEAKS gNumWidgets--; printf("WIDGETS- = %d\n", gNumWidgets); #endif NS_IF_RELEASE(mToolkit); NS_IF_RELEASE(mContext); if (mOriginalBounds) delete mOriginalBounds; } //------------------------------------------------------------------------- // // Basic create. // //------------------------------------------------------------------------- void nsBaseWidget::BaseCreate(nsIWidget *aParent, const nsIntRect &aRect, EVENT_CALLBACK aHandleEventFunction, nsIDeviceContext *aContext, nsIAppShell *aAppShell, nsIToolkit *aToolkit, nsWidgetInitData *aInitData) { if (nsnull == mToolkit) { if (nsnull != aToolkit) { mToolkit = (nsIToolkit*)aToolkit; NS_ADDREF(mToolkit); } else { if (nsnull != aParent) { mToolkit = aParent->GetToolkit(); NS_IF_ADDREF(mToolkit); } // it's some top level window with no toolkit passed in. // Create a default toolkit with the current thread #if !defined(USE_TLS_FOR_TOOLKIT) else { static NS_DEFINE_CID(kToolkitCID, NS_TOOLKIT_CID); nsresult res; res = CallCreateInstance(kToolkitCID, &mToolkit); NS_ASSERTION(NS_SUCCEEDED(res), "Can not create a toolkit in nsBaseWidget::Create"); if (mToolkit) mToolkit->Init(PR_GetCurrentThread()); } #else /* USE_TLS_FOR_TOOLKIT */ else { nsresult rv; rv = NS_GetCurrentToolkit(&mToolkit); } #endif /* USE_TLS_FOR_TOOLKIT */ } } // save the event callback function mEventCallback = aHandleEventFunction; // keep a reference to the device context if (aContext) { mContext = aContext; NS_ADDREF(mContext); } else { nsresult res; static NS_DEFINE_CID(kDeviceContextCID, NS_DEVICE_CONTEXT_CID); res = CallCreateInstance(kDeviceContextCID, &mContext); if (NS_SUCCEEDED(res)) mContext->Init(nsnull); } if (nsnull != aInitData) { mWindowType = aInitData->mWindowType; mBorderStyle = aInitData->mBorderStyle; } if (aParent) { aParent->AddChild(this); } } NS_IMETHODIMP nsBaseWidget::CaptureMouse(PRBool aCapture) { return NS_OK; } //------------------------------------------------------------------------- // // Accessor functions to get/set the client data // //------------------------------------------------------------------------- NS_IMETHODIMP nsBaseWidget::GetClientData(void*& aClientData) { aClientData = mClientData; return NS_OK; } NS_IMETHODIMP nsBaseWidget::SetClientData(void* aClientData) { mClientData = aClientData; return NS_OK; } //------------------------------------------------------------------------- // // Close this nsBaseWidget // //------------------------------------------------------------------------- NS_METHOD nsBaseWidget::Destroy() { // Just in case our parent is the only ref to us nsCOMPtr 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) { return nsnull; } //------------------------------------------------------------------------- // // Get this nsBaseWidget top level widget // //------------------------------------------------------------------------- nsIWidget* nsBaseWidget::GetTopLevelWidget() { nsIWidget *topLevelWidget = nsnull, *widget = this; while (widget) { topLevelWidget = widget; widget = widget->GetParent(); } return topLevelWidget; } //------------------------------------------------------------------------- // // Get this nsBaseWidget's top (non-sheet) parent (if it's a sheet) // //------------------------------------------------------------------------- nsIWidget* nsBaseWidget::GetSheetWindowParent(void) { return nsnull; } //------------------------------------------------------------------------- // // 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"); 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) { NS_ASSERTION(aChild->GetParent() == this, "Not one of our kids!"); 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); } aChild->SetNextSibling(nsnull); aChild->SetPrevSibling(nsnull); } //------------------------------------------------------------------------- // // Sets widget's position within its parent's child list. // //------------------------------------------------------------------------- NS_IMETHODIMP nsBaseWidget::SetZIndex(PRInt32 aZIndex) { // Hold a ref to ourselves just in case, since we're going to remove // from our parent. nsCOMPtr kungFuDeathGrip(this); mZIndex = aZIndex; // reorder this child in its parent's list. nsBaseWidget* parent = static_cast(GetParent()); 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()) { PRInt32 childZIndex; if (NS_SUCCEEDED(sib->GetZIndex(&childZIndex))) { 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; } PlaceBehind(eZPlacementBelow, sib, PR_FALSE); break; } } } // were we added to the list? if (!sib) { parent->AddChild(this); } } return NS_OK; } //------------------------------------------------------------------------- // // Gets widget's position within its parent's child list. // //------------------------------------------------------------------------- NS_IMETHODIMP nsBaseWidget::GetZIndex(PRInt32* aZIndex) { *aZIndex = mZIndex; return NS_OK; } //------------------------------------------------------------------------- // // Places widget behind the given widget (platforms must override) // //------------------------------------------------------------------------- NS_IMETHODIMP nsBaseWidget::PlaceBehind(nsTopLevelWidgetZPlacement aPlacement, nsIWidget *aWidget, PRBool aActivate) { return NS_OK; } //------------------------------------------------------------------------- // // Maximize, minimize or restore the window. The BaseWidget implementation // merely stores the state. // //------------------------------------------------------------------------- NS_IMETHODIMP nsBaseWidget::SetSizeMode(PRInt32 aMode) { if (aMode == nsSizeMode_Normal || aMode == nsSizeMode_Minimized || aMode == nsSizeMode_Maximized || aMode == nsSizeMode_Fullscreen) { mSizeMode = (nsSizeMode) aMode; return NS_OK; } return NS_ERROR_ILLEGAL_VALUE; } //------------------------------------------------------------------------- // // Get the size mode (minimized, maximized, that sort of thing...) // //------------------------------------------------------------------------- NS_IMETHODIMP nsBaseWidget::GetSizeMode(PRInt32* aMode) { *aMode = mSizeMode; return NS_OK; } //------------------------------------------------------------------------- // // Get the foreground color // //------------------------------------------------------------------------- nscolor nsBaseWidget::GetForegroundColor(void) { return mForeground; } //------------------------------------------------------------------------- // // Set the foreground color // //------------------------------------------------------------------------- NS_METHOD nsBaseWidget::SetForegroundColor(const nscolor &aColor) { mForeground = aColor; return NS_OK; } //------------------------------------------------------------------------- // // Get the background color // //------------------------------------------------------------------------- nscolor nsBaseWidget::GetBackgroundColor(void) { return mBackground; } //------------------------------------------------------------------------- // // Set the background color // //------------------------------------------------------------------------- NS_METHOD nsBaseWidget::SetBackgroundColor(const nscolor &aColor) { mBackground = aColor; return NS_OK; } //------------------------------------------------------------------------- // // Get this component cursor // //------------------------------------------------------------------------- nsCursor nsBaseWidget::GetCursor() { return mCursor; } NS_METHOD nsBaseWidget::SetCursor(nsCursor aCursor) { mCursor = aCursor; return NS_OK; } NS_IMETHODIMP nsBaseWidget::SetCursor(imgIContainer* aCursor, PRUint32 aHotspotX, PRUint32 aHotspotY) { return NS_ERROR_NOT_IMPLEMENTED; } //------------------------------------------------------------------------- // // Get the window type for this widget // //------------------------------------------------------------------------- NS_IMETHODIMP nsBaseWidget::GetWindowType(nsWindowType& aWindowType) { aWindowType = mWindowType; return NS_OK; } //------------------------------------------------------------------------- // // Window transparency methods // //------------------------------------------------------------------------- void nsBaseWidget::SetTransparencyMode(nsTransparencyMode aMode) { } nsTransparencyMode nsBaseWidget::GetTransparencyMode() { return eTransparencyOpaque; } PRBool nsBaseWidget::StoreWindowClipRegion(const nsTArray& aRects) { if (mClipRects && mClipRectCount == aRects.Length() && memcmp(mClipRects, aRects.Elements(), sizeof(nsIntRect)*mClipRectCount) == 0) return PR_FALSE; mClipRectCount = aRects.Length(); mClipRects = new nsIntRect[mClipRectCount]; if (mClipRects) { memcpy(mClipRects, aRects.Elements(), sizeof(nsIntRect)*mClipRectCount); } return PR_TRUE; } void nsBaseWidget::GetWindowClipRegion(nsTArray* aRects) { if (mClipRects) { aRects->AppendElements(mClipRects.get(), mClipRectCount); } else { aRects->AppendElement(nsIntRect(0, 0, mBounds.width, mBounds.height)); } } //------------------------------------------------------------------------- // // Set window shadow style // //------------------------------------------------------------------------- NS_IMETHODIMP nsBaseWidget::SetWindowShadowStyle(PRInt32 aMode) { return NS_ERROR_NOT_IMPLEMENTED; } //------------------------------------------------------------------------- // // Hide window borders/decorations for this widget // //------------------------------------------------------------------------- NS_IMETHODIMP nsBaseWidget::HideWindowChrome(PRBool aShouldHide) { return NS_ERROR_NOT_IMPLEMENTED; } //------------------------------------------------------------------------- // // Put the window into full-screen mode // //------------------------------------------------------------------------- NS_IMETHODIMP nsBaseWidget::MakeFullScreen(PRBool aFullScreen) { HideWindowChrome(aFullScreen); if (aFullScreen) { if (!mOriginalBounds) mOriginalBounds = new nsIntRect(); GetScreenBounds(*mOriginalBounds); // Move to top-left corner of screen and size to the screen dimensions nsCOMPtr screenManager; screenManager = do_GetService("@mozilla.org/gfx/screenmanager;1"); NS_ASSERTION(screenManager, "Unable to grab screenManager."); if (screenManager) { nsCOMPtr screen; screenManager->ScreenForRect(mOriginalBounds->x, mOriginalBounds->y, mOriginalBounds->width, mOriginalBounds->height, getter_AddRefs(screen)); if (screen) { PRInt32 left, top, width, height; if (NS_SUCCEEDED(screen->GetRect(&left, &top, &width, &height))) { Resize(left, top, width, height, PR_TRUE); } } } } else if (mOriginalBounds) { Resize(mOriginalBounds->x, mOriginalBounds->y, mOriginalBounds->width, mOriginalBounds->height, PR_TRUE); } return NS_OK; } //------------------------------------------------------------------------- // // Create a rendering context from this nsBaseWidget // //------------------------------------------------------------------------- nsIRenderingContext* nsBaseWidget::GetRenderingContext() { nsresult rv; nsCOMPtr renderingCtx; if (mOnDestroyCalled) return nsnull; rv = mContext->CreateRenderingContextInstance(*getter_AddRefs(renderingCtx)); if (NS_SUCCEEDED(rv)) { gfxASurface* surface = GetThebesSurface(); NS_ENSURE_TRUE(surface, nsnull); rv = renderingCtx->Init(mContext, surface); if (NS_SUCCEEDED(rv)) { nsIRenderingContext *ret = renderingCtx; /* Increment object refcount that the |ret| object is still a valid one * after we leave this function... */ NS_ADDREF(ret); return ret; } else { NS_WARNING("GetRenderingContext: nsIRenderingContext::Init() failed."); } } else { NS_WARNING("GetRenderingContext: Cannot create RenderingContext."); } return nsnull; } //------------------------------------------------------------------------- // // Return the toolkit this widget was created on // //------------------------------------------------------------------------- nsIToolkit* nsBaseWidget::GetToolkit() { return mToolkit; } //------------------------------------------------------------------------- // // Return the used device context // //------------------------------------------------------------------------- nsIDeviceContext* nsBaseWidget::GetDeviceContext() { return mContext; } //------------------------------------------------------------------------- // // Get the thebes surface // //------------------------------------------------------------------------- gfxASurface *nsBaseWidget::GetThebesSurface() { // in theory we should get our parent's surface, // clone it, and set a device offset before returning return nsnull; } //------------------------------------------------------------------------- // // Destroy the window // //------------------------------------------------------------------------- void nsBaseWidget::OnDestroy() { // release references to device context, toolkit, and app shell NS_IF_RELEASE(mContext); NS_IF_RELEASE(mToolkit); } NS_METHOD nsBaseWidget::SetWindowClass(const nsAString& xulWinType) { return NS_ERROR_NOT_IMPLEMENTED; } /** * If the implementation of nsWindow supports borders this method MUST be overridden * **/ NS_METHOD nsBaseWidget::GetClientBounds(nsIntRect &aRect) { return GetBounds(aRect); } /** * If the implementation of nsWindow supports borders this method MUST be overridden * **/ NS_METHOD nsBaseWidget::GetBounds(nsIntRect &aRect) { aRect = mBounds; return NS_OK; } /** * If the implementation of nsWindow uses a local coordinate system within the window, * this method must be overridden * **/ NS_METHOD nsBaseWidget::GetScreenBounds(nsIntRect &aRect) { return GetBounds(aRect); } /** * * **/ NS_METHOD nsBaseWidget::SetBounds(const nsIntRect &aRect) { mBounds = aRect; return NS_OK; } NS_METHOD nsBaseWidget::EnableDragDrop(PRBool aEnable) { return NS_OK; } NS_METHOD nsBaseWidget::SetModal(PRBool aModal) { return NS_ERROR_FAILURE; } NS_IMETHODIMP nsBaseWidget::GetAttention(PRInt32 aCycleCount) { return NS_OK; } PRBool nsBaseWidget::HasPendingInputEvent() { return PR_FALSE; } NS_IMETHODIMP nsBaseWidget::SetIcon(const nsAString&) { return NS_OK; } NS_IMETHODIMP nsBaseWidget::BeginSecureKeyboardInput() { #ifdef DEBUG NS_ASSERTION(!debug_InSecureKeyboardInputMode, "Attempting to nest call to BeginSecureKeyboardInput!"); debug_InSecureKeyboardInputMode = PR_TRUE; #endif return NS_OK; } NS_IMETHODIMP nsBaseWidget::EndSecureKeyboardInput() { #ifdef DEBUG NS_ASSERTION(debug_InSecureKeyboardInputMode, "Calling EndSecureKeyboardInput when it hasn't been enabled!"); debug_InSecureKeyboardInputMode = PR_FALSE; #endif return NS_OK; } NS_IMETHODIMP nsBaseWidget::SetWindowTitlebarColor(nscolor aColor, PRBool aActive) { return NS_ERROR_NOT_IMPLEMENTED; } PRBool nsBaseWidget::ShowsResizeIndicator(nsIntRect* aResizerRect) { return PR_FALSE; } NS_IMETHODIMP nsBaseWidget::OverrideSystemMouseScrollSpeed(PRInt32 aOriginalDelta, PRBool aIsHorizontal, PRInt32 &aOverriddenDelta) { aOverriddenDelta = aOriginalDelta; nsCOMPtr prefs = do_GetService(NS_PREFSERVICE_CONTRACTID); NS_ENSURE_TRUE(prefs, NS_ERROR_FAILURE); nsCOMPtr prefBranch; nsresult rv = prefs->GetBranch(nsnull, getter_AddRefs(prefBranch)); NS_ENSURE_SUCCESS(rv, rv); NS_ENSURE_TRUE(prefBranch, NS_ERROR_FAILURE); PRBool isOverrideEnabled; const char* kPrefNameOverrideEnabled = "mousewheel.system_scroll_override_on_root_content.enabled"; rv = prefBranch->GetBoolPref(kPrefNameOverrideEnabled, &isOverrideEnabled); if (NS_FAILED(rv) || !isOverrideEnabled) { return NS_OK; } PRInt32 iFactor; nsCAutoString factorPrefName( "mousewheel.system_scroll_override_on_root_content."); if (aIsHorizontal) { factorPrefName.AppendLiteral("horizontal."); } else { factorPrefName.AppendLiteral("vertical."); } factorPrefName.AppendLiteral("factor"); rv = prefBranch->GetIntPref(factorPrefName.get(), &iFactor); // The pref value must be larger than 100, otherwise, we don't override the // delta value. if (NS_FAILED(rv) || iFactor <= 100) { return NS_OK; } double factor = (double)iFactor / 100; aOverriddenDelta = PRInt32(NS_round((double)aOriginalDelta * factor)); return NS_OK; } /** * 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. */ static PRBool ResolveIconNameHelper(nsILocalFile *aFile, const nsAString &aIconName, const nsAString &aIconSuffix) { aFile->Append(NS_LITERAL_STRING("icons")); aFile->Append(NS_LITERAL_STRING("default")); aFile->Append(aIconName + aIconSuffix); PRBool readable; 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, nsILocalFile **aResult) { *aResult = nsnull; nsCOMPtr dirSvc = do_GetService(NS_DIRECTORY_SERVICE_CONTRACTID); if (!dirSvc) return; // first check auxilary chrome directories nsCOMPtr dirs; dirSvc->Get(NS_APP_CHROME_DIR_LIST, NS_GET_IID(nsISimpleEnumerator), getter_AddRefs(dirs)); if (dirs) { PRBool hasMore; while (NS_SUCCEEDED(dirs->HasMoreElements(&hasMore)) && hasMore) { nsCOMPtr element; dirs->GetNext(getter_AddRefs(element)); if (!element) continue; nsCOMPtr file = do_QueryInterface(element); if (!file) continue; if (ResolveIconNameHelper(file, aIconName, aIconSuffix)) { NS_ADDREF(*aResult = file); return; } } } // then check the main app chrome directory nsCOMPtr file; dirSvc->Get(NS_APP_CHROME_DIR, NS_GET_IID(nsILocalFile), getter_AddRefs(file)); if (file && ResolveIconNameHelper(file, aIconName, aIconSuffix)) NS_ADDREF(*aResult = file); } NS_IMETHODIMP nsBaseWidget::BeginResizeDrag(nsGUIEvent* aEvent, PRInt32 aHorizontal, PRInt32 aVertical) { return NS_ERROR_NOT_IMPLEMENTED; } ////////////////////////////////////////////////////////////// // // Code to sort rectangles for scrolling. // // The algorithm used here is similar to that described at // http://weblogs.mozillazine.org/roc/archives/2009/08/homework_answer.html // ////////////////////////////////////////////////////////////// void ScrollRectIterBase::BaseInit(const nsIntPoint& aDelta, ScrollRect* aHead) { mHead = aHead; // Reflect the coordinate system of the rectangles so that we can assume // that rectangles are moving in the direction of decreasing x and y. Flip(aDelta); // Do an initial sort of the rectangles by y and then reverse-x. // nsRegion does not guarantee yx-banded rectangles but still tends to // prefer breaking up rectangles vertically and joining horizontally, so // tends to have fewer rectangles across x than down y, making this // algorithm more efficient for rectangles from nsRegion when y is the // primary sort parameter. ScrollRect* unmovedHead; // chain of unmoved rectangles { nsTArray array; for (ScrollRect* r = mHead; r; r = r->mNext) { array.AppendElement(r); } array.Sort(InitialSortComparator()); ScrollRect *next = nsnull; for (PRUint32 i = array.Length(); i--; ) { array[i]->mNext = next; next = array[i]; } unmovedHead = next; // mHead becomes the start of the moved chain. mHead = nsnull; } // Try to move each rect from an unmoved chain to the moved chain. mTailLink = &mHead; while (unmovedHead) { // Move() will check for other rectangles that might need to be moved first // and move them also. Move(&unmovedHead); } // Reflect back to the original coordinate system. Flip(aDelta); } void ScrollRectIterBase::Move(ScrollRect** aUnmovedLink) { ScrollRect* rect = *aUnmovedLink; // Remove rect from the unmoved chain. *aUnmovedLink = rect->mNext; rect->mNext = nsnull; // Check subsequent rectangles that overlap vertically to see whether they // might need to be moved first. // // The overlapping subsequent rectangles that are not moved this time get // checked for each of their preceding unmoved overlapping rectangles, // which adds an O(n^2) cost to this algorithm (where n is the number of // rectangles across x). The reverse-x ordering from InitialSortComparator // avoids this for the case when rectangles are aligned in y. for (ScrollRect** nextLink = aUnmovedLink; ScrollRect* otherRect = *nextLink; ) { NS_ASSERTION(otherRect->y >= rect->y, "Scroll rectangles out of order"); if (otherRect->y >= rect->YMost()) // doesn't overlap vertically break; // This only moves the other rectangle first if it is entirely to the // left. No promises are made regarding intersecting rectangles. Moving // another intersecting rectangle with merely x < rect->x (but XMost() > // rect->x) can cause more conflicts between rectangles that do not // intersect each other. if (otherRect->XMost() <= rect->x) { Move(nextLink); // *nextLink now points to a subsequent rectangle. } else { // Step over otherRect for now. nextLink = &otherRect->mNext; } } // Add rect to the moved chain. *mTailLink = rect; mTailLink = &rect->mNext; } BlitRectIter::BlitRectIter(const nsIntPoint& aDelta, const nsTArray& aRects) : mRects(aRects.Length()) { for (PRUint32 i = 0; i < aRects.Length(); ++i) { mRects.AppendElement(aRects[i]); } // Link rectangles into a chain. ScrollRect *next = nsnull; for (PRUint32 i = mRects.Length(); i--; ) { mRects[i].mNext = next; next = &mRects[i]; } BaseInit(aDelta, next); } #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 nsBaseWidget::debug_GuiEventToString(nsGUIEvent * aGuiEvent) { NS_ASSERTION(nsnull != aGuiEvent,"cmon, null gui event."); nsAutoString eventName(NS_LITERAL_STRING("UNKNOWN")); #define _ASSIGN_eventName(_value,_name)\ case _value: eventName.AssignWithConversion(_name) ; break switch(aGuiEvent->message) { _ASSIGN_eventName(NS_BLUR_CONTENT,"NS_BLUR_CONTENT"); _ASSIGN_eventName(NS_CONTROL_CHANGE,"NS_CONTROL_CHANGE"); _ASSIGN_eventName(NS_CREATE,"NS_CREATE"); _ASSIGN_eventName(NS_DESTROY,"NS_DESTROY"); _ASSIGN_eventName(NS_DRAGDROP_GESTURE,"NS_DND_GESTURE"); _ASSIGN_eventName(NS_DRAGDROP_DROP,"NS_DND_DROP"); _ASSIGN_eventName(NS_DRAGDROP_ENTER,"NS_DND_ENTER"); _ASSIGN_eventName(NS_DRAGDROP_EXIT,"NS_DND_EXIT"); _ASSIGN_eventName(NS_DRAGDROP_OVER,"NS_DND_OVER"); _ASSIGN_eventName(NS_FOCUS_CONTENT,"NS_FOCUS_CONTENT"); _ASSIGN_eventName(NS_FORM_SELECTED,"NS_FORM_SELECTED"); _ASSIGN_eventName(NS_FORM_CHANGE,"NS_FORM_CHANGE"); _ASSIGN_eventName(NS_FORM_INPUT,"NS_FORM_INPUT"); _ASSIGN_eventName(NS_FORM_RESET,"NS_FORM_RESET"); _ASSIGN_eventName(NS_FORM_SUBMIT,"NS_FORM_SUBMIT"); _ASSIGN_eventName(NS_IMAGE_ABORT,"NS_IMAGE_ABORT"); _ASSIGN_eventName(NS_LOAD_ERROR,"NS_LOAD_ERROR"); _ASSIGN_eventName(NS_KEY_DOWN,"NS_KEY_DOWN"); _ASSIGN_eventName(NS_KEY_PRESS,"NS_KEY_PRESS"); _ASSIGN_eventName(NS_KEY_UP,"NS_KEY_UP"); _ASSIGN_eventName(NS_MENU_SELECTED,"NS_MENU_SELECTED"); _ASSIGN_eventName(NS_MOUSE_ENTER,"NS_MOUSE_ENTER"); _ASSIGN_eventName(NS_MOUSE_EXIT,"NS_MOUSE_EXIT"); _ASSIGN_eventName(NS_MOUSE_BUTTON_DOWN,"NS_MOUSE_BUTTON_DOWN"); _ASSIGN_eventName(NS_MOUSE_BUTTON_UP,"NS_MOUSE_BUTTON_UP"); _ASSIGN_eventName(NS_MOUSE_CLICK,"NS_MOUSE_CLICK"); _ASSIGN_eventName(NS_MOUSE_DOUBLECLICK,"NS_MOUSE_DBLCLICK"); _ASSIGN_eventName(NS_MOUSE_MOVE,"NS_MOUSE_MOVE"); _ASSIGN_eventName(NS_MOVE,"NS_MOVE"); _ASSIGN_eventName(NS_LOAD,"NS_LOAD"); _ASSIGN_eventName(NS_POPSTATE,"NS_POPSTATE"); _ASSIGN_eventName(NS_PAGE_UNLOAD,"NS_PAGE_UNLOAD"); _ASSIGN_eventName(NS_HASHCHANGE,"NS_HASHCHANGE"); _ASSIGN_eventName(NS_PAINT,"NS_PAINT"); _ASSIGN_eventName(NS_XUL_BROADCAST, "NS_XUL_BROADCAST"); _ASSIGN_eventName(NS_XUL_COMMAND_UPDATE, "NS_XUL_COMMAND_UPDATE"); _ASSIGN_eventName(NS_SCROLLBAR_LINE_NEXT,"NS_SB_LINE_NEXT"); _ASSIGN_eventName(NS_SCROLLBAR_LINE_PREV,"NS_SB_LINE_PREV"); _ASSIGN_eventName(NS_SCROLLBAR_PAGE_NEXT,"NS_SB_PAGE_NEXT"); _ASSIGN_eventName(NS_SCROLLBAR_PAGE_PREV,"NS_SB_PAGE_PREV"); _ASSIGN_eventName(NS_SCROLLBAR_POS,"NS_SB_POS"); _ASSIGN_eventName(NS_SIZE,"NS_SIZE"); #undef _ASSIGN_eventName default: { char buf[32]; sprintf(buf,"UNKNOWN: %d",aGuiEvent->message); eventName.AssignWithConversion(buf); } break; } return nsAutoString(eventName); } ////////////////////////////////////////////////////////////// // // Code to deal with paint and event debug prefs. // ////////////////////////////////////////////////////////////// struct PrefPair { const char * name; PRBool value; }; static PrefPair debug_PrefValues[] = { { "nglayout.debug.crossing_event_dumping", PR_FALSE }, { "nglayout.debug.event_dumping", PR_FALSE }, { "nglayout.debug.invalidate_dumping", PR_FALSE }, { "nglayout.debug.motion_event_dumping", PR_FALSE }, { "nglayout.debug.paint_dumping", PR_FALSE }, { "nglayout.debug.paint_flashing", PR_FALSE } }; static PRUint32 debug_NumPrefValues = (sizeof(debug_PrefValues) / sizeof(debug_PrefValues[0])); ////////////////////////////////////////////////////////////// static PRBool debug_GetBoolPref(nsIPrefBranch * aPrefs,const char * aPrefName) { NS_ASSERTION(nsnull != aPrefName,"cmon, pref name is null."); NS_ASSERTION(nsnull != aPrefs,"cmon, prefs are null."); PRBool value = PR_FALSE; if (aPrefs) { aPrefs->GetBoolPref(aPrefName,&value); } return value; } ////////////////////////////////////////////////////////////// PRBool nsBaseWidget::debug_GetCachedBoolPref(const char * aPrefName) { NS_ASSERTION(nsnull != aPrefName,"cmon, pref name is null."); for (PRUint32 i = 0; i < debug_NumPrefValues; i++) { if (strcmp(debug_PrefValues[i].name, aPrefName) == 0) { return debug_PrefValues[i].value; } } return PR_FALSE; } ////////////////////////////////////////////////////////////// static void debug_SetCachedBoolPref(const char * aPrefName,PRBool aValue) { NS_ASSERTION(nsnull != aPrefName,"cmon, pref name is null."); for (PRUint32 i = 0; i < debug_NumPrefValues; i++) { if (strcmp(debug_PrefValues[i].name, aPrefName) == 0) { debug_PrefValues[i].value = aValue; return; } } NS_ASSERTION(PR_FALSE, "cmon, this code is not reached dude."); } ////////////////////////////////////////////////////////////// class Debug_PrefObserver : public nsIObserver { public: NS_DECL_ISUPPORTS NS_DECL_NSIOBSERVER }; NS_IMPL_ISUPPORTS1(Debug_PrefObserver, nsIObserver) NS_IMETHODIMP Debug_PrefObserver::Observe(nsISupports* subject, const char* topic, const PRUnichar* data) { nsCOMPtr branch(do_QueryInterface(subject)); NS_ASSERTION(branch, "must implement nsIPrefBranch"); NS_ConvertUTF16toUTF8 prefName(data); PRBool value = PR_FALSE; branch->GetBoolPref(prefName.get(), &value); debug_SetCachedBoolPref(prefName.get(), value); return NS_OK; } ////////////////////////////////////////////////////////////// /* static */ void debug_RegisterPrefCallbacks() { static PRBool once = PR_TRUE; if (once) { once = PR_FALSE; nsCOMPtr prefs(do_GetService(NS_PREFSERVICE_CONTRACTID)); NS_ASSERTION(prefs, "Prefs services is null."); if (prefs) { nsCOMPtr obs(new Debug_PrefObserver()); for (PRUint32 i = 0; i < debug_NumPrefValues; i++) { // Initialize the pref values debug_PrefValues[i].value = debug_GetBoolPref(prefs,debug_PrefValues[i].name); if (obs) { // Register callbacks for when these change prefs->AddObserver(debug_PrefValues[i].name, obs, PR_FALSE); } } } } } ////////////////////////////////////////////////////////////// static PRInt32 _GetPrintCount() { static PRInt32 sCount = 0; return ++sCount; } ////////////////////////////////////////////////////////////// /* static */ PRBool nsBaseWidget::debug_WantPaintFlashing() { return debug_GetCachedBoolPref("nglayout.debug.paint_flashing"); } ////////////////////////////////////////////////////////////// /* static */ void nsBaseWidget::debug_DumpEvent(FILE * aFileOut, nsIWidget * aWidget, nsGUIEvent * aGuiEvent, const nsCAutoString & aWidgetName, PRInt32 aWindowID) { // NS_PAINT is handled by debug_DumpPaintEvent() if (aGuiEvent->message == NS_PAINT) return; if (aGuiEvent->message == NS_MOUSE_MOVE) { if (!debug_GetCachedBoolPref("nglayout.debug.motion_event_dumping")) return; } if (aGuiEvent->message == NS_MOUSE_ENTER || aGuiEvent->message == NS_MOUSE_EXIT) { if (!debug_GetCachedBoolPref("nglayout.debug.crossing_event_dumping")) return; } if (!debug_GetCachedBoolPref("nglayout.debug.event_dumping")) return; nsCAutoString tempString; tempString.AssignWithConversion(debug_GuiEventToString(aGuiEvent).get()); fprintf(aFileOut, "%4d %-26s widget=%-8p name=%-12s id=%-8p refpt=%d,%d\n", _GetPrintCount(), tempString.get(), (void *) aWidget, aWidgetName.get(), (void *) (aWindowID ? aWindowID : 0x0), aGuiEvent->refPoint.x, aGuiEvent->refPoint.y); } ////////////////////////////////////////////////////////////// /* static */ void nsBaseWidget::debug_DumpPaintEvent(FILE * aFileOut, nsIWidget * aWidget, nsPaintEvent * aPaintEvent, const nsCAutoString & aWidgetName, PRInt32 aWindowID) { NS_ASSERTION(nsnull != aFileOut,"cmon, null output FILE"); NS_ASSERTION(nsnull != aWidget,"cmon, the widget is null"); NS_ASSERTION(nsnull != aPaintEvent,"cmon, the paint event is null"); if (!debug_GetCachedBoolPref("nglayout.debug.paint_dumping")) return; fprintf(aFileOut, "%4d PAINT widget=%p name=%-12s id=%-8p rect=", _GetPrintCount(), (void *) aWidget, aWidgetName.get(), (void *) aWindowID); if (aPaintEvent->rect) { fprintf(aFileOut, "%3d,%-3d %3d,%-3d", aPaintEvent->rect->x, aPaintEvent->rect->y, aPaintEvent->rect->width, aPaintEvent->rect->height); } else { fprintf(aFileOut,"none"); } fprintf(aFileOut,"\n"); } ////////////////////////////////////////////////////////////// /* static */ void nsBaseWidget::debug_DumpInvalidate(FILE * aFileOut, nsIWidget * aWidget, const nsIntRect * aRect, PRBool aIsSynchronous, const nsCAutoString & aWidgetName, PRInt32 aWindowID) { if (!debug_GetCachedBoolPref("nglayout.debug.invalidate_dumping")) return; NS_ASSERTION(nsnull != aFileOut,"cmon, null output FILE"); NS_ASSERTION(nsnull != aWidget,"cmon, the widget is null"); fprintf(aFileOut, "%4d Invalidate widget=%p name=%-12s id=%-8p", _GetPrintCount(), (void *) aWidget, aWidgetName.get(), (void *) aWindowID); if (aRect) { fprintf(aFileOut, " rect=%3d,%-3d %3d,%-3d", aRect->x, aRect->y, aRect->width, aRect->height); } else { fprintf(aFileOut, " rect=%-15s", "none"); } fprintf(aFileOut, " sync=%s", (const char *) (aIsSynchronous ? "yes" : "no ")); fprintf(aFileOut,"\n"); } ////////////////////////////////////////////////////////////// #endif // DEBUG