2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 18:30:37 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-08-20 02:16:23 +04:00
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* 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/
|
1999-08-20 02:16:23 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* 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.
|
1999-08-20 02:16:23 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-29 00:14:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:40:37 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
2004-04-18 18:30:37 +04:00
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 18:30:37 +04:00
|
|
|
* either of 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"),
|
2001-09-29 00:14:13 +04:00
|
|
|
* 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
|
2004-04-18 18:30:37 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-29 00:14:13 +04:00
|
|
|
* 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
|
2004-04-18 18:30:37 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-08-20 02:16:23 +04:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsHTMLParts.h"
|
2004-08-01 03:15:21 +04:00
|
|
|
#include "nsPresContext.h"
|
2005-02-08 03:59:52 +03:00
|
|
|
#include "nsReflowType.h"
|
1999-08-20 02:16:23 +04:00
|
|
|
#include "nsIDeviceContext.h"
|
|
|
|
#include "nsPageFrame.h"
|
|
|
|
#include "nsViewsCID.h"
|
2000-01-25 09:35:27 +03:00
|
|
|
#include "nsIServiceManager.h"
|
1999-08-20 02:16:23 +04:00
|
|
|
#include "nsIView.h"
|
2004-05-05 06:32:27 +04:00
|
|
|
#include "nsIScrollableView.h"
|
2004-09-05 03:03:04 +04:00
|
|
|
#include "nsIScrollable.h"
|
1999-08-20 02:16:23 +04:00
|
|
|
#include "nsIViewManager.h"
|
|
|
|
#include "nsHTMLContainerFrame.h"
|
|
|
|
#include "nsWidgetsCID.h"
|
|
|
|
#include "nsGfxScrollFrame.h"
|
|
|
|
#include "nsLayoutAtoms.h"
|
|
|
|
#include "nsXULAtoms.h"
|
|
|
|
#include "nsHTMLAtoms.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsISupportsArray.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIFontMetrics.h"
|
1999-10-12 04:16:06 +04:00
|
|
|
#include "nsIDocumentObserver.h"
|
|
|
|
#include "nsIDocument.h"
|
2000-03-31 11:02:06 +04:00
|
|
|
#include "nsBoxLayoutState.h"
|
2000-05-10 17:13:39 +04:00
|
|
|
#include "nsINodeInfo.h"
|
2000-07-14 03:00:59 +04:00
|
|
|
#include "nsIScrollbarFrame.h"
|
|
|
|
#include "nsIScrollbarMediator.h"
|
2002-07-27 00:57:24 +04:00
|
|
|
#include "nsITextControlFrame.h"
|
2004-09-04 07:17:18 +04:00
|
|
|
#include "nsIDOMHTMLTextAreaElement.h"
|
2004-06-25 16:26:02 +04:00
|
|
|
#include "nsNodeInfoManager.h"
|
2002-01-23 05:53:02 +03:00
|
|
|
#include "nsIURI.h"
|
2002-06-21 01:47:59 +04:00
|
|
|
#include "nsGUIEvent.h"
|
2004-06-25 16:26:02 +04:00
|
|
|
#include "nsContentCreatorFunctions.h"
|
2004-09-13 06:10:29 +04:00
|
|
|
#include "nsISupportsPrimitives.h"
|
2004-09-22 10:33:36 +04:00
|
|
|
#include "nsIPresShell.h"
|
2005-08-22 03:37:13 +04:00
|
|
|
#include "nsIEventQueueService.h"
|
2005-04-29 01:57:22 +04:00
|
|
|
#include "nsReflowPath.h"
|
2005-01-28 01:52:53 +03:00
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsPresState.h"
|
2006-03-03 06:34:48 +03:00
|
|
|
#include "nsIGlobalHistory3.h"
|
2005-08-25 04:10:37 +04:00
|
|
|
#include "nsDocShellCID.h"
|
2006-03-15 19:55:19 +03:00
|
|
|
#include "nsIDOMHTMLDocument.h"
|
2006-03-07 20:08:51 +03:00
|
|
|
#include "nsEventDispatcher.h"
|
2004-09-01 18:58:34 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
#include "nsIAccessibilityService.h"
|
|
|
|
#endif
|
2006-01-26 05:29:17 +03:00
|
|
|
#include "nsDisplayList.h"
|
2005-08-22 03:37:13 +04:00
|
|
|
|
|
|
|
static const char kEventQueueServiceCID[] = NS_EVENTQUEUESERVICE_CONTRACTID;
|
|
|
|
|
1999-08-20 02:16:23 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2004-06-18 06:08:19 +04:00
|
|
|
//----------nsHTMLScrollFrame-------------------------------------------
|
|
|
|
|
2005-11-04 05:38:33 +03:00
|
|
|
nsIFrame*
|
|
|
|
NS_NewHTMLScrollFrame(nsIPresShell* aPresShell, PRBool aIsRoot)
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
2005-11-04 05:38:33 +03:00
|
|
|
return new (aPresShell) nsHTMLScrollFrame(aPresShell, aIsRoot);
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsHTMLScrollFrame::nsHTMLScrollFrame(nsIPresShell* aShell, PRBool aIsRoot)
|
2005-04-29 01:57:22 +04:00
|
|
|
: nsHTMLContainerFrame(),
|
2006-03-15 19:55:19 +03:00
|
|
|
mInner(this, aIsRoot, PR_FALSE)
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the view that we are scrolling within the scrolling view.
|
|
|
|
* @result child view
|
|
|
|
*/
|
2004-09-06 06:44:43 +04:00
|
|
|
nsIFrame* nsHTMLScrollFrame::GetScrolledFrame() const
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
2004-09-06 06:44:43 +04:00
|
|
|
return mInner.GetScrolledFrame();
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
nsIScrollableView* nsHTMLScrollFrame::GetScrollableView()
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
2004-09-06 06:44:43 +04:00
|
|
|
return mInner.GetScrollableView();
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
nsPoint nsHTMLScrollFrame::GetScrollPosition() const
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
|
|
|
nsIScrollableView* s = mInner.GetScrollableView();
|
2004-09-06 06:44:43 +04:00
|
|
|
nsPoint scrollPosition;
|
|
|
|
s->GetScrollPosition(scrollPosition.x, scrollPosition.y);
|
|
|
|
return scrollPosition;
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
void nsHTMLScrollFrame::ScrollTo(nsPoint aScrollPosition, PRUint32 aFlags)
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
|
|
|
nsIScrollableView* s = mInner.GetScrollableView();
|
2004-09-06 06:44:43 +04:00
|
|
|
s->ScrollTo(aScrollPosition.x, aScrollPosition.y, aFlags);
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsGfxScrollFrameInner::ScrollbarStyles
|
|
|
|
nsHTMLScrollFrame::GetScrollbarStyles() const {
|
|
|
|
return mInner.GetScrollbarStylesFromFrame();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMargin nsHTMLScrollFrame::GetDesiredScrollbarSizes(nsBoxLayoutState* aState) {
|
2005-04-29 01:57:22 +04:00
|
|
|
return mInner.GetDesiredScrollbarSizes(aState);
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
void nsHTMLScrollFrame::SetScrollbarVisibility(PRBool aVerticalVisible, PRBool aHorizontalVisible)
|
2004-09-04 07:49:25 +04:00
|
|
|
{
|
|
|
|
mInner.mNeverHasVerticalScrollbar = !aVerticalVisible;
|
|
|
|
mInner.mNeverHasHorizontalScrollbar = !aHorizontalVisible;
|
|
|
|
}
|
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
nsIBox* nsHTMLScrollFrame::GetScrollbarBox(PRBool aVertical)
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
2004-09-06 06:44:43 +04:00
|
|
|
return aVertical ? mInner.mVScrollbarBox : mInner.mHScrollbarBox;
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2004-08-01 03:15:21 +04:00
|
|
|
nsHTMLScrollFrame::CreateAnonymousContent(nsPresContext* aPresContext,
|
2004-06-18 06:08:19 +04:00
|
|
|
nsISupportsArray& aAnonymousChildren)
|
|
|
|
{
|
|
|
|
mInner.CreateAnonymousContent(aAnonymousChildren);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-03-15 09:43:36 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLScrollFrame::Destroy(nsPresContext* aPresContext)
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
|
|
|
nsIScrollableView *view = mInner.GetScrollableView();
|
|
|
|
NS_ASSERTION(view, "unexpected null pointer");
|
|
|
|
if (view)
|
|
|
|
view->RemoveScrollPositionListener(&mInner);
|
2006-03-15 09:43:36 +03:00
|
|
|
return nsHTMLContainerFrame::Destroy(aPresContext);
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-04-04 01:00:41 +04:00
|
|
|
nsHTMLScrollFrame::
|
2006-03-15 09:43:36 +03:00
|
|
|
SetInitialChildList(nsPresContext* aPresContext,
|
|
|
|
nsIAtom* aListName,
|
2005-08-25 04:10:37 +04:00
|
|
|
nsIFrame* aChildList)
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
2006-03-15 09:43:36 +03:00
|
|
|
nsresult rv = nsHTMLContainerFrame::SetInitialChildList(aPresContext, aListName,
|
|
|
|
aChildList);
|
2005-04-04 01:00:41 +04:00
|
|
|
mInner.CreateScrollableView();
|
2004-06-18 06:08:19 +04:00
|
|
|
mInner.ReloadChildFrames();
|
|
|
|
|
|
|
|
// listen for scroll events.
|
|
|
|
mInner.GetScrollableView()->AddScrollPositionListener(&mInner);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-04-29 01:57:22 +04:00
|
|
|
nsHTMLScrollFrame::AppendFrames(nsIAtom* aListName,
|
|
|
|
nsIFrame* aFrameList)
|
2005-02-07 04:58:25 +03:00
|
|
|
{
|
2005-04-29 01:57:22 +04:00
|
|
|
NS_ASSERTION(!aListName, "Only main list supported");
|
|
|
|
mFrames.AppendFrames(nsnull, aFrameList);
|
2004-06-18 06:08:19 +04:00
|
|
|
mInner.ReloadChildFrames();
|
2005-04-29 01:57:22 +04:00
|
|
|
return NS_OK;
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-04-29 01:57:22 +04:00
|
|
|
nsHTMLScrollFrame::InsertFrames(nsIAtom* aListName,
|
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsIFrame* aFrameList)
|
2005-02-07 04:58:25 +03:00
|
|
|
{
|
2005-04-29 01:57:22 +04:00
|
|
|
NS_ASSERTION(!aListName, "Only main list supported");
|
|
|
|
mFrames.InsertFrames(nsnull, aPrevFrame, aFrameList);
|
2004-06-18 06:08:19 +04:00
|
|
|
mInner.ReloadChildFrames();
|
2005-04-29 01:57:22 +04:00
|
|
|
return NS_OK;
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-04-29 01:57:22 +04:00
|
|
|
nsHTMLScrollFrame::RemoveFrame(nsIAtom* aListName,
|
|
|
|
nsIFrame* aOldFrame)
|
2005-02-07 04:58:25 +03:00
|
|
|
{
|
2005-04-29 01:57:22 +04:00
|
|
|
NS_ASSERTION(!aListName, "Only main list supported");
|
|
|
|
mFrames.RemoveFrame(aOldFrame);
|
2004-06-18 06:08:19 +04:00
|
|
|
mInner.ReloadChildFrames();
|
2005-04-29 01:57:22 +04:00
|
|
|
return NS_OK;
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PRIntn
|
|
|
|
nsHTMLScrollFrame::GetSkipSides() const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom*
|
|
|
|
nsHTMLScrollFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsLayoutAtoms::scrollFrame;
|
|
|
|
}
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
/**
|
|
|
|
HTML scrolling implementation
|
2005-04-04 01:00:41 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
We rely on the fact that if height is 'auto', changing the height of
|
|
|
|
the element does not require reflowing the contents.
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
All other things being equal, we prefer layouts with fewer scrollbars showing.
|
|
|
|
*/
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
struct ScrollReflowState {
|
|
|
|
const nsHTMLReflowState& mReflowState;
|
|
|
|
nsBoxLayoutState mBoxState;
|
|
|
|
nsGfxScrollFrameInner::ScrollbarStyles mStyles;
|
|
|
|
nsReflowReason mNewReason;
|
2005-05-03 02:49:44 +04:00
|
|
|
nsMargin mComputedBorder;
|
2005-04-29 01:57:22 +04:00
|
|
|
|
|
|
|
// === Filled in when TryLayout succeeds ===
|
|
|
|
// The area of the scrollport, in coordinates relative to the scrollframe
|
|
|
|
nsRect mScrollPortRect;
|
|
|
|
// The size of the inside-border area
|
|
|
|
nsSize mInsideBorderSize;
|
|
|
|
// Taken from kid metrics; ascent from the inner-border top edge
|
|
|
|
nscoord mAscent;
|
|
|
|
// Taken from kid metrics; does not include our border widths,
|
|
|
|
// does include vertical scrollbar if present
|
|
|
|
nscoord mMaxElementWidth;
|
|
|
|
// Taken from kid metrics; does not include our border widths,
|
|
|
|
// does include vertical scrollbar if present
|
|
|
|
nscoord mMaximumWidth;
|
|
|
|
// Whether we decided to show the horizontal scrollbar
|
|
|
|
PRPackedBool mShowHScrollbar;
|
|
|
|
// Whether we decided to show the vertical scrollbar
|
|
|
|
PRPackedBool mShowVScrollbar;
|
|
|
|
|
|
|
|
ScrollReflowState(nsIScrollableFrame* aFrame,
|
|
|
|
const nsHTMLReflowState& aState, nsHTMLReflowMetrics& aMetrics) :
|
|
|
|
mReflowState(aState),
|
|
|
|
mBoxState(aState.frame->GetPresContext(), aState, aMetrics),
|
|
|
|
mStyles(aFrame->GetScrollbarStyles()) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static nsSize ComputeInsideBorderSize(ScrollReflowState* aState,
|
2005-05-03 02:49:44 +04:00
|
|
|
const nsSize& aDesiredInsideBorderSize)
|
2005-04-29 01:57:22 +04:00
|
|
|
{
|
2005-05-03 02:49:44 +04:00
|
|
|
// aDesiredInsideBorderSize is the frame size; i.e., it includes
|
|
|
|
// borders and padding (but the scrolled child doesn't have
|
|
|
|
// borders). The scrolled child has the same padding as us.
|
|
|
|
nscoord contentWidth = aState->mReflowState.mComputedWidth;
|
|
|
|
if (contentWidth == NS_UNCONSTRAINEDSIZE) {
|
|
|
|
contentWidth = aDesiredInsideBorderSize.width -
|
|
|
|
aState->mReflowState.mComputedPadding.LeftRight();
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
2005-05-03 02:49:44 +04:00
|
|
|
nscoord contentHeight = aState->mReflowState.mComputedHeight;
|
|
|
|
if (contentHeight == NS_UNCONSTRAINEDSIZE) {
|
|
|
|
contentHeight = aDesiredInsideBorderSize.height -
|
|
|
|
aState->mReflowState.mComputedPadding.TopBottom();
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
2005-05-03 02:49:44 +04:00
|
|
|
|
|
|
|
aState->mReflowState.ApplyMinMaxConstraints(&contentWidth, &contentHeight);
|
|
|
|
return nsSize(contentWidth + aState->mReflowState.mComputedPadding.LeftRight(),
|
|
|
|
contentHeight + aState->mReflowState.mComputedPadding.TopBottom());
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-05-09 02:33:40 +04:00
|
|
|
GetScrollbarMetrics(nsBoxLayoutState& aState, nsIBox* aBox, nsSize* aMin,
|
|
|
|
nsSize* aPref, PRBool aVertical)
|
2005-04-29 01:57:22 +04:00
|
|
|
{
|
2005-05-09 02:33:40 +04:00
|
|
|
if (aMin) {
|
|
|
|
aBox->GetMinSize(aState, *aMin);
|
|
|
|
nsBox::AddMargin(aBox, *aMin);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aPref) {
|
|
|
|
aBox->GetPrefSize(aState, *aPref);
|
|
|
|
nsBox::AddMargin(aBox, *aPref);
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
|
|
|
}
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
/**
|
|
|
|
* Assuming that we know the metrics for our wrapped frame and
|
|
|
|
* whether the horizontal and/or vertical scrollbars are present,
|
|
|
|
* compute the resulting layout and return PR_TRUE if the layout is
|
|
|
|
* consistent. If the layout is consistent then we fill in the
|
|
|
|
* computed fields of the ScrollReflowState.
|
|
|
|
*
|
|
|
|
* The layout is consistent when both scrollbars are showing if and only
|
|
|
|
* if they should be showing. A horizontal scrollbar should be showing if all
|
|
|
|
* following conditions are met:
|
|
|
|
* 1) the style is not HIDDEN
|
|
|
|
* 2) our inside-border height is at least the scrollbar height (i.e., the
|
|
|
|
* scrollbar fits vertically)
|
|
|
|
* 3) our scrollport width (the inside-border width minus the width allocated for a
|
|
|
|
* vertical scrollbar, if showing) is at least the scrollbar's min-width
|
|
|
|
* (i.e., the scrollbar fits horizontally)
|
|
|
|
* 4) the style is SCROLL, or the kid's overflow-area XMost is
|
|
|
|
* greater than the scrollport width
|
|
|
|
*
|
|
|
|
* @param aForce if PR_TRUE, then we just assume the layout is consistent.
|
|
|
|
*/
|
|
|
|
PRBool
|
|
|
|
nsHTMLScrollFrame::TryLayout(ScrollReflowState* aState,
|
|
|
|
const nsHTMLReflowMetrics& aKidMetrics,
|
|
|
|
PRBool aAssumeVScroll, PRBool aAssumeHScroll,
|
|
|
|
PRBool aForce)
|
|
|
|
{
|
|
|
|
if ((aState->mStyles.mVertical == NS_STYLE_OVERFLOW_HIDDEN && aAssumeVScroll) ||
|
|
|
|
(aState->mStyles.mHorizontal == NS_STYLE_OVERFLOW_HIDDEN && aAssumeHScroll)) {
|
|
|
|
NS_ASSERTION(!aForce, "Shouldn't be forcing a hidden scrollbar to show!");
|
|
|
|
return PR_FALSE;
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
|
|
|
|
nsSize vScrollbarMinSize(0, 0);
|
2005-05-09 02:33:40 +04:00
|
|
|
nsSize vScrollbarPrefSize(0, 0);
|
2005-04-29 01:57:22 +04:00
|
|
|
if (mInner.mVScrollbarBox) {
|
|
|
|
GetScrollbarMetrics(aState->mBoxState, mInner.mVScrollbarBox,
|
2005-05-09 02:33:40 +04:00
|
|
|
&vScrollbarMinSize,
|
|
|
|
aAssumeVScroll ? &vScrollbarPrefSize : nsnull, PR_TRUE);
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
2005-05-09 02:33:40 +04:00
|
|
|
nscoord vScrollbarDesiredWidth = aAssumeVScroll ? vScrollbarPrefSize.width : 0;
|
|
|
|
nscoord vScrollbarDesiredHeight = aAssumeVScroll ? vScrollbarPrefSize.height : 0;
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
nsSize hScrollbarMinSize(0, 0);
|
2005-05-09 02:33:40 +04:00
|
|
|
nsSize hScrollbarPrefSize(0, 0);
|
2005-04-29 01:57:22 +04:00
|
|
|
if (mInner.mHScrollbarBox) {
|
|
|
|
GetScrollbarMetrics(aState->mBoxState, mInner.mHScrollbarBox,
|
2005-05-09 02:33:40 +04:00
|
|
|
&hScrollbarMinSize,
|
|
|
|
aAssumeHScroll ? &hScrollbarPrefSize : nsnull, PR_FALSE);
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
2005-05-09 02:33:40 +04:00
|
|
|
nscoord hScrollbarDesiredHeight = aAssumeHScroll ? hScrollbarPrefSize.height : 0;
|
|
|
|
nscoord hScrollbarDesiredWidth = aAssumeHScroll ? hScrollbarPrefSize.width : 0;
|
2005-04-29 01:57:22 +04:00
|
|
|
|
|
|
|
// First, compute our inside-border size and scrollport size
|
|
|
|
nsSize desiredInsideBorderSize;
|
2005-05-09 02:33:40 +04:00
|
|
|
desiredInsideBorderSize.width = vScrollbarDesiredWidth +
|
|
|
|
PR_MAX(aKidMetrics.width, hScrollbarDesiredWidth);
|
|
|
|
desiredInsideBorderSize.height = hScrollbarDesiredHeight +
|
|
|
|
PR_MAX(aKidMetrics.height, vScrollbarDesiredHeight);
|
2005-04-29 01:57:22 +04:00
|
|
|
aState->mInsideBorderSize =
|
2005-05-03 02:49:44 +04:00
|
|
|
ComputeInsideBorderSize(aState, desiredInsideBorderSize);
|
2005-05-09 02:33:40 +04:00
|
|
|
nsSize scrollPortSize = nsSize(PR_MAX(0, aState->mInsideBorderSize.width - vScrollbarDesiredWidth),
|
|
|
|
PR_MAX(0, aState->mInsideBorderSize.height - hScrollbarDesiredHeight));
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
if (!aForce) {
|
2006-03-15 19:55:19 +03:00
|
|
|
nsRect scrolledRect = mInner.GetScrolledRect(scrollPortSize);
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
// If the style is HIDDEN then we already know that aAssumeHScroll is PR_FALSE
|
|
|
|
if (aState->mStyles.mHorizontal != NS_STYLE_OVERFLOW_HIDDEN) {
|
2006-03-15 19:55:19 +03:00
|
|
|
PRBool wantHScrollbar =
|
|
|
|
aState->mStyles.mHorizontal == NS_STYLE_OVERFLOW_SCROLL ||
|
|
|
|
scrolledRect.XMost() > scrollPortSize.width ||
|
|
|
|
scrolledRect.x < 0;
|
2005-04-29 01:57:22 +04:00
|
|
|
if (aState->mInsideBorderSize.height < hScrollbarMinSize.height ||
|
|
|
|
scrollPortSize.width < hScrollbarMinSize.width)
|
|
|
|
wantHScrollbar = PR_FALSE;
|
|
|
|
if (wantHScrollbar != aAssumeHScroll)
|
|
|
|
return PR_FALSE;
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
// If the style is HIDDEN then we already know that aAssumeVScroll is PR_FALSE
|
|
|
|
if (aState->mStyles.mVertical != NS_STYLE_OVERFLOW_HIDDEN) {
|
2006-03-15 19:55:19 +03:00
|
|
|
PRBool wantVScrollbar =
|
|
|
|
aState->mStyles.mVertical == NS_STYLE_OVERFLOW_SCROLL ||
|
|
|
|
scrolledRect.YMost() > scrollPortSize.height ||
|
|
|
|
scrolledRect.y < 0;
|
2005-04-29 01:57:22 +04:00
|
|
|
if (aState->mInsideBorderSize.width < vScrollbarMinSize.width ||
|
|
|
|
scrollPortSize.height < vScrollbarMinSize.height)
|
|
|
|
wantVScrollbar = PR_FALSE;
|
|
|
|
if (wantVScrollbar != aAssumeVScroll)
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
2005-05-09 02:33:40 +04:00
|
|
|
nscoord vScrollbarActualWidth = aState->mInsideBorderSize.width - scrollPortSize.width;
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
aState->mShowHScrollbar = aAssumeHScroll;
|
|
|
|
aState->mShowVScrollbar = aAssumeVScroll;
|
2005-05-03 02:49:44 +04:00
|
|
|
nsPoint scrollPortOrigin(aState->mComputedBorder.left,
|
|
|
|
aState->mComputedBorder.top);
|
2005-04-29 01:57:22 +04:00
|
|
|
if (!mInner.IsScrollbarOnRight()) {
|
|
|
|
scrollPortOrigin.x += vScrollbarActualWidth;
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
aState->mScrollPortRect = nsRect(scrollPortOrigin, scrollPortSize);
|
|
|
|
aState->mAscent = aKidMetrics.ascent;
|
|
|
|
if (aKidMetrics.mComputeMEW) {
|
2005-06-03 10:04:23 +04:00
|
|
|
// XXXBernd the following code is controversial see bug 295459 and bug
|
|
|
|
// 234593, however to get the main customer of MEW - tables happy. It
|
|
|
|
// seems to be necessary
|
|
|
|
// It looks at the MEW as the minimum width that the parent has to give its
|
|
|
|
// children so that the childs margin box can layout its content without
|
|
|
|
// overflowing the parents content box. If the child has a fixed width
|
|
|
|
// the MEW will be allways this width regardless whether it makes the grand
|
|
|
|
// children overflow the child. Please notice that fixed widths for table
|
|
|
|
// related frames are not covered by this as they mean more a min-width.
|
|
|
|
//
|
|
|
|
// This means for scrolling boxes that if the width is auto or percent
|
|
|
|
// their content box can be squeezed down to 0, as they will either create
|
|
|
|
// a scrollbar so that content of the scrollframe will not leak out or it
|
|
|
|
// will cut the content at the frame boundaries.
|
2005-06-29 08:17:21 +04:00
|
|
|
|
|
|
|
// The width of the vertical scrollbar comes out of the budget for the
|
|
|
|
// content width (see above where we include the scrollbar width before
|
|
|
|
// we call ComputeInsideBorderSize, which overrides the given
|
|
|
|
// width with the style computed width if there is one). So allow
|
|
|
|
// the vertical scrollbar width to be overridden by style information
|
|
|
|
// here, too.
|
|
|
|
nscoord minContentWidth =
|
|
|
|
aState->mReflowState.AdjustIntrinsicMinContentWidthForStyle(vScrollbarActualWidth);
|
|
|
|
aState->mMaxElementWidth = minContentWidth +
|
|
|
|
aState->mReflowState.mComputedPadding.LeftRight();
|
2005-05-04 01:15:55 +04:00
|
|
|
// borders get added on the way out of Reflow()
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
|
|
|
if (aKidMetrics.mFlags & NS_REFLOW_CALC_MAX_WIDTH) {
|
2005-06-29 08:17:21 +04:00
|
|
|
// We need to do what we did above: include the vertical scrollbar width in the
|
|
|
|
// content width before applying style.
|
2005-05-04 01:15:55 +04:00
|
|
|
nscoord kidMaxWidth = aKidMetrics.mMaximumWidth;
|
|
|
|
if (kidMaxWidth != NS_UNCONSTRAINEDSIZE) {
|
|
|
|
nscoord kidContentMaxWidth = kidMaxWidth -
|
2005-06-29 08:17:21 +04:00
|
|
|
aState->mReflowState.mComputedPadding.LeftRight() + vScrollbarActualWidth;
|
2005-05-04 01:15:55 +04:00
|
|
|
NS_ASSERTION(kidContentMaxWidth >= 0, "max-width didn't include padding?");
|
2005-06-29 08:17:21 +04:00
|
|
|
kidMaxWidth = aState->mReflowState.mComputedPadding.LeftRight() +
|
2005-05-04 01:15:55 +04:00
|
|
|
aState->mReflowState.AdjustIntrinsicContentWidthForStyle(kidContentMaxWidth);
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
2005-05-04 01:15:55 +04:00
|
|
|
aState->mMaximumWidth = kidMaxWidth;
|
|
|
|
// borders get added on the way out of Reflow()
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
nsresult
|
|
|
|
nsHTMLScrollFrame::ReflowScrolledFrame(const ScrollReflowState& aState,
|
2005-10-18 09:00:24 +04:00
|
|
|
PRBool aAssumeHScroll,
|
2005-04-29 01:57:22 +04:00
|
|
|
PRBool aAssumeVScroll,
|
|
|
|
nsHTMLReflowMetrics* aMetrics,
|
|
|
|
PRBool aFirstPass)
|
|
|
|
{
|
|
|
|
// these could be NS_UNCONSTRAINEDSIZE ... PR_MIN arithmetic should
|
|
|
|
// be OK
|
2005-05-03 02:49:44 +04:00
|
|
|
nscoord paddingLR = aState.mReflowState.mComputedPadding.LeftRight();
|
|
|
|
|
|
|
|
nscoord availWidth = aState.mReflowState.availableWidth;
|
|
|
|
if (aState.mReflowState.mComputedWidth != NS_UNCONSTRAINEDSIZE) {
|
|
|
|
availWidth = aState.mReflowState.mComputedWidth + paddingLR;
|
|
|
|
} else {
|
|
|
|
if (aState.mReflowState.mComputedMaxWidth != NS_UNCONSTRAINEDSIZE) {
|
|
|
|
availWidth = PR_MIN(availWidth,
|
|
|
|
aState.mReflowState.mComputedMaxWidth + paddingLR);
|
|
|
|
}
|
|
|
|
if (aState.mReflowState.mComputedWidth != NS_UNCONSTRAINEDSIZE) {
|
|
|
|
availWidth = PR_MIN(availWidth,
|
|
|
|
aState.mReflowState.mComputedWidth + paddingLR);
|
|
|
|
}
|
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
if (availWidth != NS_UNCONSTRAINEDSIZE && aAssumeVScroll) {
|
2005-05-09 02:33:40 +04:00
|
|
|
nsSize vScrollbarPrefSize;
|
|
|
|
mInner.mVScrollbarBox->GetPrefSize(NS_CONST_CAST(nsBoxLayoutState&, aState.mBoxState),
|
|
|
|
vScrollbarPrefSize);
|
|
|
|
availWidth = PR_MAX(0, availWidth - vScrollbarPrefSize.width);
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
2005-08-24 22:11:45 +04:00
|
|
|
if (availWidth != NS_UNCONSTRAINEDSIZE) {
|
|
|
|
// pixel align the content
|
|
|
|
nscoord twp = GetPresContext()->IntScaledPixelsToTwips(1);
|
|
|
|
availWidth -= availWidth % twp;
|
|
|
|
}
|
2005-05-03 02:49:44 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
nsHTMLReflowState kidReflowState(GetPresContext(), aState.mReflowState,
|
|
|
|
mInner.mScrolledFrame,
|
|
|
|
nsSize(availWidth, NS_UNCONSTRAINEDSIZE),
|
|
|
|
aFirstPass ? aState.mNewReason : eReflowReason_Resize);
|
2005-10-18 09:00:24 +04:00
|
|
|
kidReflowState.mFlags.mAssumingHScrollbar = aAssumeHScroll;
|
|
|
|
kidReflowState.mFlags.mAssumingVScrollbar = aAssumeVScroll;
|
2005-05-03 02:49:44 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
nsReflowStatus status;
|
|
|
|
nsresult rv = ReflowChild(mInner.mScrolledFrame, GetPresContext(), *aMetrics,
|
|
|
|
kidReflowState, 0, 0,
|
|
|
|
NS_FRAME_NO_MOVE_FRAME | NS_FRAME_NO_MOVE_VIEW, status);
|
2005-05-09 02:17:03 +04:00
|
|
|
// Don't resize or position the view because we're going to resize
|
|
|
|
// it to the correct size anyway in PlaceScrollArea. Allowing it to
|
|
|
|
// resize here would size it to the natural height of the frame,
|
|
|
|
// which will usually be different from the scrollport height;
|
|
|
|
// invalidating the difference will cause unnecessary repainting.
|
2005-04-29 01:57:22 +04:00
|
|
|
FinishReflowChild(mInner.mScrolledFrame, GetPresContext(),
|
|
|
|
&kidReflowState, *aMetrics, 0, 0,
|
2005-05-09 02:17:03 +04:00
|
|
|
NS_FRAME_NO_MOVE_FRAME | NS_FRAME_NO_MOVE_VIEW | NS_FRAME_NO_SIZE_VIEW);
|
2005-04-29 01:57:22 +04:00
|
|
|
|
|
|
|
// XXX Some frames (e.g., nsObjectFrame, nsFrameFrame, nsTextFrame) don't bother
|
|
|
|
// setting their mOverflowArea. This is wrong because every frame should
|
|
|
|
// always set mOverflowArea. In fact nsObjectFrame and nsFrameFrame don't
|
|
|
|
// support the 'outline' property because of this. Rather than fix the world
|
2005-06-16 06:57:23 +04:00
|
|
|
// right now, just fix up the overflow area if necessary. Note that we don't
|
|
|
|
// check NS_FRAME_OUTSIDE_CHILDREN because it could be set even though the
|
|
|
|
// overflow area doesn't include the frame bounds.
|
|
|
|
aMetrics->mOverflowArea.UnionRect(aMetrics->mOverflowArea,
|
|
|
|
nsRect(0, 0, aMetrics->width, aMetrics->height));
|
2004-06-18 06:08:19 +04:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2005-08-25 04:10:37 +04:00
|
|
|
PRBool
|
|
|
|
nsHTMLScrollFrame::GuessVScrollbarNeeded(const ScrollReflowState& aState)
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
2005-08-25 04:10:37 +04:00
|
|
|
if (aState.mStyles.mVertical != NS_STYLE_OVERFLOW_AUTO)
|
|
|
|
// no guessing required
|
|
|
|
return aState.mStyles.mVertical == NS_STYLE_OVERFLOW_SCROLL;
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2005-08-25 04:10:37 +04:00
|
|
|
// If we've had at least one non-initial reflow, then just assume
|
|
|
|
// the state of the vertical scrollbar will be what we determined
|
|
|
|
// last time.
|
|
|
|
if (mInner.mHadNonInitialReflow) {
|
|
|
|
return mInner.mHasVerticalScrollbar;
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2005-08-25 04:10:37 +04:00
|
|
|
// If this is the initial reflow, guess PR_FALSE because usually
|
|
|
|
// we have very little content by then.
|
|
|
|
if (aState.mReflowState.reason == eReflowReason_Initial)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
if (mInner.mIsRoot) {
|
|
|
|
// For viewports, try getting a hint from global history
|
|
|
|
// as to whether we had a vertical scrollbar last time.
|
|
|
|
PRBool hint;
|
|
|
|
nsresult rv = mInner.GetVScrollbarHintFromGlobalHistory(&hint);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
return hint;
|
|
|
|
// No hint. Assume that there will be a scrollbar; it seems to me
|
|
|
|
// that 'most pages' do have a scrollbar, and anyway, it's cheaper
|
|
|
|
// to do an extra reflow for the pages that *don't* need a
|
|
|
|
// scrollbar (because on average they will have less content).
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
|
2005-08-25 04:10:37 +04:00
|
|
|
// For non-viewports, just guess that we don't need a scrollbar.
|
|
|
|
// XXX I wonder if statistically this is the right idea; I'm
|
|
|
|
// basically guessing that there are a lot of overflow:auto DIVs
|
|
|
|
// that get their intrinsic size and don't overflow
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsHTMLScrollFrame::ReflowContents(ScrollReflowState* aState,
|
|
|
|
const nsHTMLReflowMetrics& aDesiredSize)
|
|
|
|
{
|
|
|
|
PRBool currentlyUsingVScrollbar = GuessVScrollbarNeeded(*aState);
|
2005-04-29 01:57:22 +04:00
|
|
|
nsHTMLReflowMetrics kidDesiredSize(aDesiredSize.mComputeMEW, aDesiredSize.mFlags);
|
2005-10-18 09:00:24 +04:00
|
|
|
nsresult rv = ReflowScrolledFrame(*aState, PR_FALSE, currentlyUsingVScrollbar,
|
2005-05-03 02:49:44 +04:00
|
|
|
&kidDesiredSize, PR_TRUE);
|
2005-04-29 01:57:22 +04:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
PRBool didUseScrollbar = currentlyUsingVScrollbar;
|
|
|
|
|
|
|
|
// There's an important special case ... if the child appears to fit
|
|
|
|
// in the inside-border rect (but overflows the scrollport), we
|
|
|
|
// should try laying it out without a vertical scrollbar. It will
|
|
|
|
// usually fit because making the available-width wider will not
|
|
|
|
// normally make the child taller. (The only situation I can think
|
|
|
|
// of is when you have a line containing %-width inline replaced
|
|
|
|
// elements whose percentages sum to more than 100%, so increasing
|
|
|
|
// the available width makes the line break where it was fitting
|
|
|
|
// before.) If we don't treat this case specially, then we will
|
|
|
|
// decide that showing scrollbars is OK because the content
|
|
|
|
// overflows when we're showing scrollbars and we won't try to
|
|
|
|
// remove the vertical scrollbar.
|
|
|
|
|
|
|
|
// Detecting when we enter this special case is important for when
|
|
|
|
// people design layouts that exactly fit the container "most of the
|
|
|
|
// time".
|
|
|
|
if (currentlyUsingVScrollbar &&
|
|
|
|
aState->mStyles.mVertical != NS_STYLE_OVERFLOW_SCROLL &&
|
|
|
|
aState->mStyles.mHorizontal != NS_STYLE_OVERFLOW_SCROLL) {
|
|
|
|
nsSize insideBorderSize =
|
2005-05-03 02:49:44 +04:00
|
|
|
ComputeInsideBorderSize(aState,
|
|
|
|
nsSize(kidDesiredSize.width, kidDesiredSize.height));
|
2006-03-15 19:55:19 +03:00
|
|
|
nsRect scrolledRect = mInner.GetScrolledRect(insideBorderSize);
|
|
|
|
if (nsRect(nsPoint(0, 0), insideBorderSize).Contains(scrolledRect)) {
|
2005-04-29 01:57:22 +04:00
|
|
|
// Let's pretend we had no vertical scrollbar coming in here
|
|
|
|
currentlyUsingVScrollbar = PR_FALSE;
|
2005-10-18 09:00:24 +04:00
|
|
|
rv = ReflowScrolledFrame(*aState, PR_FALSE, currentlyUsingVScrollbar,
|
2005-05-03 02:49:44 +04:00
|
|
|
&kidDesiredSize, PR_FALSE);
|
2005-04-29 01:57:22 +04:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
didUseScrollbar = PR_FALSE;
|
|
|
|
}
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
|
|
|
|
// First try a layout without a horizontal scrollbar, then with.
|
2005-05-03 02:49:44 +04:00
|
|
|
if (TryLayout(aState, kidDesiredSize, didUseScrollbar, PR_FALSE, PR_FALSE))
|
2005-04-29 01:57:22 +04:00
|
|
|
return NS_OK;
|
2005-10-18 09:00:24 +04:00
|
|
|
// XXX Adding a horizontal scrollbar could cause absolute children positioned
|
|
|
|
// relative to the bottom padding-edge to need to be reflowed. But we don't,
|
|
|
|
// because that would be slow.
|
2005-05-03 02:49:44 +04:00
|
|
|
if (TryLayout(aState, kidDesiredSize, didUseScrollbar, PR_TRUE, PR_FALSE))
|
2005-04-29 01:57:22 +04:00
|
|
|
return NS_OK;
|
|
|
|
|
2005-08-25 04:10:37 +04:00
|
|
|
PRBool canHaveVerticalScrollbar =
|
|
|
|
aState->mStyles.mVertical != NS_STYLE_OVERFLOW_HIDDEN;
|
2005-04-29 01:57:22 +04:00
|
|
|
// That didn't work. Try the other setting for the vertical scrollbar.
|
|
|
|
// But don't try to show a scrollbar if we know there can't be one.
|
|
|
|
if (currentlyUsingVScrollbar || canHaveVerticalScrollbar) {
|
|
|
|
nsHTMLReflowMetrics kidRetrySize(aDesiredSize.mComputeMEW, aDesiredSize.mFlags);
|
2005-10-18 09:00:24 +04:00
|
|
|
rv = ReflowScrolledFrame(*aState, PR_FALSE, !currentlyUsingVScrollbar,
|
2005-05-03 02:49:44 +04:00
|
|
|
&kidRetrySize, PR_FALSE);
|
2005-04-29 01:57:22 +04:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
didUseScrollbar = !currentlyUsingVScrollbar;
|
2005-10-18 09:00:24 +04:00
|
|
|
// XXX Adding a horizontal scrollbar could cause absolute children positioned
|
|
|
|
// relative to the bottom padding-edge to need to be reflowed. But we don't,
|
|
|
|
// because that would be slow.
|
2005-05-03 02:49:44 +04:00
|
|
|
if (TryLayout(aState, kidRetrySize, didUseScrollbar, PR_FALSE, PR_FALSE))
|
2005-04-29 01:57:22 +04:00
|
|
|
return NS_OK;
|
2005-05-03 02:49:44 +04:00
|
|
|
if (TryLayout(aState, kidRetrySize, didUseScrollbar, PR_TRUE, PR_FALSE))
|
2005-04-29 01:57:22 +04:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
NS_WARNING("Strange content ... we can't find logically consistent scrollbar settings");
|
|
|
|
} else {
|
|
|
|
NS_WARNING("Strange content ... we can't find logically consistent scrollbar settings");
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
// Fall back to no scrollbars --- even if NS_STYLE_OVERFLOW_SCROLL is
|
|
|
|
// in effect. They might not fit anyway.
|
|
|
|
if (didUseScrollbar) {
|
2005-10-18 09:00:24 +04:00
|
|
|
rv = ReflowScrolledFrame(*aState, PR_FALSE, PR_FALSE, &kidDesiredSize, PR_FALSE);
|
2005-04-29 01:57:22 +04:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
2005-05-03 02:49:44 +04:00
|
|
|
TryLayout(aState, kidDesiredSize, PR_FALSE, PR_FALSE, PR_TRUE);
|
2005-04-04 01:00:41 +04:00
|
|
|
return NS_OK;
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
void
|
|
|
|
nsHTMLScrollFrame::PlaceScrollArea(const ScrollReflowState& aState)
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
2005-04-29 01:57:22 +04:00
|
|
|
nsIView* scrollView = mInner.mScrollableView->View();
|
|
|
|
nsIViewManager* vm = scrollView->GetViewManager();
|
|
|
|
vm->MoveViewTo(scrollView, aState.mScrollPortRect.x, aState.mScrollPortRect.y);
|
|
|
|
vm->ResizeView(scrollView, nsRect(nsPoint(0, 0), aState.mScrollPortRect.Size()),
|
|
|
|
PR_TRUE);
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
nsIFrame *scrolledFrame = mInner.mScrolledFrame;
|
|
|
|
nsIView *scrolledView = scrolledFrame->GetView();
|
2006-03-09 21:46:14 +03:00
|
|
|
// Set the x,y of the scrolled frame to the correct value: the displacement
|
|
|
|
// from its origin to the origin of this frame
|
2006-03-15 19:55:19 +03:00
|
|
|
scrolledFrame->SetPosition(scrolledView->GetOffsetTo(GetView()));
|
|
|
|
|
|
|
|
nsRect scrolledArea;
|
|
|
|
scrolledArea.UnionRect(mInner.GetScrolledRect(aState.mScrollPortRect.Size()),
|
|
|
|
nsRect(nsPoint(0,0), aState.mScrollPortRect.Size()));
|
|
|
|
|
2006-03-23 03:11:43 +03:00
|
|
|
// Note that making the view *exactly* the size of the scrolled area
|
|
|
|
// is critical, since the view scrolling code uses the size of the
|
|
|
|
// scrolled view to clamp scroll requests.
|
2006-03-15 19:55:19 +03:00
|
|
|
nsContainerFrame::SyncFrameViewAfterReflow(scrolledFrame->GetPresContext(),
|
|
|
|
scrolledFrame,
|
|
|
|
scrolledView,
|
|
|
|
&scrolledArea,
|
2005-04-29 01:57:22 +04:00
|
|
|
NS_FRAME_NO_MOVE_VIEW);
|
2005-12-19 04:07:41 +03:00
|
|
|
|
|
|
|
// Store the new overflow area. Note that this changes where an outline
|
|
|
|
// of the scrolled frame would be painted, but scrolled frames can't have
|
|
|
|
// outlines (the outline would go on this scrollframe instead).
|
2006-03-15 19:55:19 +03:00
|
|
|
nsRect* overflowArea = scrolledFrame->GetOverflowAreaProperty(PR_TRUE);
|
2005-12-19 04:07:41 +03:00
|
|
|
NS_ASSERTION(overflowArea, "should have created rect");
|
2006-03-15 19:55:19 +03:00
|
|
|
*overflowArea = scrolledArea;
|
2005-12-19 04:07:41 +03:00
|
|
|
|
2005-08-31 04:57:27 +04:00
|
|
|
mInner.PostOverflowEvents();
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
|
|
|
|
2004-06-18 06:08:19 +04:00
|
|
|
NS_IMETHODIMP
|
2005-04-29 01:57:22 +04:00
|
|
|
nsHTMLScrollFrame::Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsHTMLScrollFrame", aReflowState.reason);
|
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
ScrollReflowState state(this, aReflowState, aDesiredSize);
|
|
|
|
// sanity check: ensure that if we have no scrollbar, we treat it
|
|
|
|
// as hidden.
|
|
|
|
if (!mInner.mVScrollbarBox || mInner.mNeverHasVerticalScrollbar)
|
|
|
|
state.mStyles.mVertical = NS_STYLE_OVERFLOW_HIDDEN;
|
|
|
|
if (!mInner.mHScrollbarBox || mInner.mNeverHasHorizontalScrollbar)
|
|
|
|
state.mStyles.mHorizontal = NS_STYLE_OVERFLOW_HIDDEN;
|
|
|
|
|
|
|
|
//------------ Handle Incremental Reflow -----------------
|
|
|
|
PRBool reflowContents = PR_TRUE;
|
|
|
|
PRBool reflowHScrollbar = PR_TRUE;
|
|
|
|
PRBool reflowVScrollbar = PR_TRUE;
|
|
|
|
PRBool reflowScrollCorner = PR_TRUE;
|
|
|
|
nsReflowReason reason = aReflowState.reason;
|
|
|
|
|
|
|
|
if (reason == eReflowReason_Incremental) {
|
|
|
|
nsHTMLReflowCommand *command = aReflowState.path->mReflowCommand;
|
|
|
|
// See if it's targeted at us
|
|
|
|
if (command) {
|
|
|
|
nsReflowType reflowType;
|
|
|
|
command->GetType(reflowType);
|
|
|
|
|
|
|
|
switch (reflowType) {
|
|
|
|
case eReflowType_StyleChanged:
|
|
|
|
reason = eReflowReason_StyleChange;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eReflowType_ReflowDirty:
|
|
|
|
reason = eReflowReason_Dirty;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
NS_ERROR("Unexpected Reflow Type");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
reflowContents = PR_FALSE;
|
|
|
|
reflowHScrollbar = PR_FALSE;
|
|
|
|
reflowVScrollbar = PR_FALSE;
|
|
|
|
reflowScrollCorner = PR_FALSE;
|
|
|
|
|
|
|
|
nsReflowPath::iterator iter = aReflowState.path->FirstChild();
|
|
|
|
nsReflowPath::iterator end = aReflowState.path->EndChildren();
|
|
|
|
|
|
|
|
for ( ; iter != end; ++iter) {
|
|
|
|
if (*iter == mInner.mScrolledFrame)
|
|
|
|
reflowContents = PR_TRUE;
|
|
|
|
else if (*iter == mInner.mHScrollbarBox)
|
|
|
|
reflowHScrollbar = PR_TRUE;
|
|
|
|
else if (*iter == mInner.mVScrollbarBox)
|
|
|
|
reflowVScrollbar = PR_TRUE;
|
|
|
|
else if (*iter == mInner.mScrollCornerBox)
|
|
|
|
reflowScrollCorner = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
state.mNewReason = reason;
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
nsRect oldScrollAreaBounds = mInner.mScrollableView->View()->GetBounds();
|
|
|
|
nsRect oldScrolledAreaBounds = mInner.mScrolledFrame->GetView()->GetBounds();
|
2005-05-03 02:49:44 +04:00
|
|
|
state.mComputedBorder = aReflowState.mComputedBorderPadding -
|
|
|
|
aReflowState.mComputedPadding;
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
nsresult rv = ReflowContents(&state, aDesiredSize);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
PlaceScrollArea(state);
|
|
|
|
|
2005-07-26 03:23:53 +04:00
|
|
|
if (!mInner.mSupppressScrollbarUpdate) {
|
|
|
|
PRBool didHaveHScrollbar = mInner.mHasHorizontalScrollbar;
|
|
|
|
PRBool didHaveVScrollbar = mInner.mHasVerticalScrollbar;
|
|
|
|
mInner.mHasHorizontalScrollbar = state.mShowHScrollbar;
|
|
|
|
mInner.mHasVerticalScrollbar = state.mShowVScrollbar;
|
|
|
|
nsRect newScrollAreaBounds = mInner.mScrollableView->View()->GetBounds();
|
|
|
|
nsRect newScrolledAreaBounds = mInner.mScrolledFrame->GetView()->GetBounds();
|
|
|
|
if (reflowHScrollbar || reflowVScrollbar || reflowScrollCorner ||
|
|
|
|
reason != eReflowReason_Incremental ||
|
|
|
|
didHaveHScrollbar != state.mShowHScrollbar ||
|
|
|
|
didHaveVScrollbar != state.mShowVScrollbar ||
|
|
|
|
oldScrollAreaBounds != newScrollAreaBounds ||
|
|
|
|
oldScrolledAreaBounds != newScrolledAreaBounds) {
|
|
|
|
mInner.SetScrollbarVisibility(mInner.mHScrollbarBox, state.mShowHScrollbar);
|
|
|
|
mInner.SetScrollbarVisibility(mInner.mVScrollbarBox, state.mShowVScrollbar);
|
|
|
|
// place and reflow scrollbars
|
|
|
|
nsRect insideBorderArea =
|
|
|
|
nsRect(nsPoint(state.mComputedBorder.left, state.mComputedBorder.top),
|
|
|
|
state.mInsideBorderSize);
|
|
|
|
mInner.LayoutScrollbars(state.mBoxState, insideBorderArea,
|
|
|
|
oldScrollAreaBounds, state.mScrollPortRect);
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ScrollToRestoredPosition();
|
|
|
|
|
|
|
|
aDesiredSize.width = state.mInsideBorderSize.width +
|
2005-05-03 02:49:44 +04:00
|
|
|
state.mComputedBorder.LeftRight();
|
2005-04-29 01:57:22 +04:00
|
|
|
aDesiredSize.height = state.mInsideBorderSize.height +
|
2005-05-03 02:49:44 +04:00
|
|
|
state.mComputedBorder.TopBottom();
|
|
|
|
aDesiredSize.ascent = state.mAscent + state.mComputedBorder.top;
|
2005-04-29 01:57:22 +04:00
|
|
|
if (aDesiredSize.mComputeMEW) {
|
|
|
|
aDesiredSize.mMaxElementWidth = state.mMaxElementWidth +
|
2005-05-03 02:49:44 +04:00
|
|
|
state.mComputedBorder.LeftRight();
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
|
|
|
if (aDesiredSize.mFlags & NS_REFLOW_CALC_MAX_WIDTH) {
|
|
|
|
aDesiredSize.mMaximumWidth = state.mMaximumWidth;
|
|
|
|
if (aDesiredSize.mMaximumWidth != NS_UNCONSTRAINEDSIZE) {
|
2005-05-03 02:49:44 +04:00
|
|
|
aDesiredSize.mMaximumWidth += state.mComputedBorder.LeftRight();
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aDesiredSize.descent = aDesiredSize.height - aDesiredSize.ascent;
|
|
|
|
aDesiredSize.mOverflowArea = nsRect(0, 0, aDesiredSize.width, aDesiredSize.height);
|
|
|
|
FinishAndStoreOverflow(&aDesiredSize);
|
|
|
|
|
2005-08-25 04:10:37 +04:00
|
|
|
if (reason != eReflowReason_Initial && !mInner.mHadNonInitialReflow) {
|
|
|
|
mInner.mHadNonInitialReflow = PR_TRUE;
|
|
|
|
if (mInner.mIsRoot) {
|
|
|
|
// For viewports, record whether we needed a vertical scrollbar
|
|
|
|
// after the first non-initial reflow.
|
|
|
|
mInner.SaveVScrollbarStateToGlobalHistory();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
2004-06-18 06:08:19 +04:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
|
|
nsHTMLScrollFrame::AddRef(void)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
|
|
nsHTMLScrollFrame::Release(void)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLScrollFrame::GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("HTMLScroll"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-09-01 18:58:34 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
NS_IMETHODIMP nsHTMLScrollFrame::GetAccessible(nsIAccessible** aAccessible)
|
|
|
|
{
|
|
|
|
*aAccessible = nsnull;
|
|
|
|
if (!IsFocusable()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
// Focusable via CSS, so needs to be in accessibility hierarchy
|
|
|
|
nsCOMPtr<nsIAccessibilityService> accService = do_GetService("@mozilla.org/accessibilityService;1");
|
|
|
|
|
|
|
|
if (accService) {
|
|
|
|
return accService->CreateHTMLGenericAccessible(NS_STATIC_CAST(nsIFrame*, this), aAccessible);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
void
|
|
|
|
nsHTMLScrollFrame::CurPosAttributeChanged(nsIContent* aChild,
|
2004-06-18 06:08:19 +04:00
|
|
|
PRInt32 aModType)
|
|
|
|
{
|
2006-03-15 19:55:19 +03:00
|
|
|
mInner.CurPosAttributeChanged(aChild);
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsHTMLScrollFrame::GetContentOf(nsIContent** aContent)
|
|
|
|
{
|
|
|
|
*aContent = GetContent();
|
|
|
|
NS_IF_ADDREF(*aContent);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN(nsHTMLScrollFrame)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIAnonymousContentCreator)
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIFrameDebug)
|
|
|
|
#endif
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScrollableFrame)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScrollableViewProvider)
|
2004-09-13 06:10:29 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIStatefulFrame)
|
2005-04-29 01:57:22 +04:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(nsHTMLContainerFrame)
|
2004-06-18 06:08:19 +04:00
|
|
|
|
|
|
|
//----------nsXULScrollFrame-------------------------------------------
|
|
|
|
|
2005-11-04 05:38:33 +03:00
|
|
|
nsIFrame*
|
|
|
|
NS_NewXULScrollFrame(nsIPresShell* aPresShell, PRBool aIsRoot)
|
1999-08-20 02:16:23 +04:00
|
|
|
{
|
2005-11-04 05:38:33 +03:00
|
|
|
return new (aPresShell) nsXULScrollFrame(aPresShell, aIsRoot);
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::nsXULScrollFrame(nsIPresShell* aShell, PRBool aIsRoot)
|
2004-05-05 06:32:27 +04:00
|
|
|
: nsBoxFrame(aShell, aIsRoot),
|
2006-03-15 19:55:19 +03:00
|
|
|
mInner(this, aIsRoot, PR_TRUE),
|
2005-08-31 04:57:27 +04:00
|
|
|
mMaxElementWidth(0)
|
1999-08-20 02:16:23 +04:00
|
|
|
{
|
2000-03-31 11:02:06 +04:00
|
|
|
SetLayoutManager(nsnull);
|
1999-10-12 04:16:06 +04:00
|
|
|
}
|
|
|
|
|
1999-12-07 06:36:05 +03:00
|
|
|
/**
|
|
|
|
* Get the view that we are scrolling within the scrolling view.
|
|
|
|
* @result child view
|
|
|
|
*/
|
2004-09-06 06:44:43 +04:00
|
|
|
nsIFrame* nsXULScrollFrame::GetScrolledFrame() const
|
1999-12-07 06:36:05 +03:00
|
|
|
{
|
2004-09-06 06:44:43 +04:00
|
|
|
return mInner.GetScrolledFrame();
|
1999-12-07 06:36:05 +03:00
|
|
|
}
|
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
nsIScrollableView* nsXULScrollFrame::GetScrollableView()
|
2000-07-27 10:57:32 +04:00
|
|
|
{
|
2004-09-06 06:44:43 +04:00
|
|
|
return mInner.GetScrollableView();
|
2000-07-27 10:57:32 +04:00
|
|
|
}
|
2000-05-14 03:00:53 +04:00
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
nsPoint nsXULScrollFrame::GetScrollPosition() const
|
2000-05-15 08:12:31 +04:00
|
|
|
{
|
2004-09-06 06:44:43 +04:00
|
|
|
nsIScrollableView* s = mInner.GetScrollableView();
|
|
|
|
nsPoint scrollPosition;
|
|
|
|
s->GetScrollPosition(scrollPosition.x, scrollPosition.y);
|
|
|
|
return scrollPosition;
|
2000-05-15 08:12:31 +04:00
|
|
|
}
|
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
void nsXULScrollFrame::ScrollTo(nsPoint aScrollPosition, PRUint32 aFlags)
|
2000-05-15 08:12:31 +04:00
|
|
|
{
|
2004-09-06 06:44:43 +04:00
|
|
|
nsIScrollableView* s = mInner.GetScrollableView();
|
|
|
|
s->ScrollTo(aScrollPosition.x, aScrollPosition.y, aFlags);
|
2000-05-15 08:12:31 +04:00
|
|
|
}
|
|
|
|
|
2004-05-05 06:32:27 +04:00
|
|
|
nsGfxScrollFrameInner::ScrollbarStyles
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::GetScrollbarStyles() const {
|
2004-05-05 06:32:27 +04:00
|
|
|
return mInner.GetScrollbarStylesFromFrame();
|
|
|
|
}
|
|
|
|
|
2004-06-18 06:08:19 +04:00
|
|
|
nsMargin nsXULScrollFrame::GetDesiredScrollbarSizes(nsBoxLayoutState* aState) {
|
2005-04-29 01:57:22 +04:00
|
|
|
return mInner.GetDesiredScrollbarSizes(aState);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMargin nsGfxScrollFrameInner::GetDesiredScrollbarSizes(nsBoxLayoutState* aState) {
|
2004-01-09 22:21:20 +03:00
|
|
|
nsMargin result(0, 0, 0, 0);
|
2003-04-22 05:33:14 +04:00
|
|
|
|
2005-10-18 09:00:24 +04:00
|
|
|
if (mVScrollbarBox) {
|
2004-01-09 22:21:20 +03:00
|
|
|
nsSize size;
|
2005-10-18 09:00:24 +04:00
|
|
|
mVScrollbarBox->GetPrefSize(*aState, size);
|
|
|
|
nsBox::AddMargin(mVScrollbarBox, size);
|
2005-04-29 01:57:22 +04:00
|
|
|
if (IsScrollbarOnRight())
|
2004-01-09 22:21:20 +03:00
|
|
|
result.left = size.width;
|
|
|
|
else
|
|
|
|
result.right = size.width;
|
2001-12-18 01:51:39 +03:00
|
|
|
}
|
2000-05-15 08:12:31 +04:00
|
|
|
|
2005-10-18 09:00:24 +04:00
|
|
|
if (mHScrollbarBox) {
|
2004-01-09 22:21:20 +03:00
|
|
|
nsSize size;
|
2005-10-18 09:00:24 +04:00
|
|
|
mHScrollbarBox->GetPrefSize(*aState, size);
|
|
|
|
nsBox::AddMargin(mHScrollbarBox, size);
|
2004-01-09 22:21:20 +03:00
|
|
|
// We don't currently support any scripts that would require a scrollbar
|
|
|
|
// at the top. (Are there any?)
|
|
|
|
result.bottom = size.height;
|
2001-12-18 01:51:39 +03:00
|
|
|
}
|
2000-05-15 08:12:31 +04:00
|
|
|
|
2004-01-09 22:21:20 +03:00
|
|
|
return result;
|
2000-05-15 08:12:31 +04:00
|
|
|
}
|
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
void nsXULScrollFrame::SetScrollbarVisibility(PRBool aVerticalVisible, PRBool aHorizontalVisible)
|
2004-09-04 07:49:25 +04:00
|
|
|
{
|
|
|
|
mInner.mNeverHasVerticalScrollbar = !aVerticalVisible;
|
|
|
|
mInner.mNeverHasHorizontalScrollbar = !aHorizontalVisible;
|
|
|
|
}
|
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
nsIBox* nsXULScrollFrame::GetScrollbarBox(PRBool aVertical)
|
2000-06-07 03:14:11 +04:00
|
|
|
{
|
2004-09-06 06:44:43 +04:00
|
|
|
return aVertical ? mInner.mVScrollbarBox : mInner.mHScrollbarBox;
|
2000-06-07 03:14:11 +04:00
|
|
|
}
|
2000-05-14 03:00:53 +04:00
|
|
|
|
1999-08-20 02:16:23 +04:00
|
|
|
NS_IMETHODIMP
|
2004-08-01 03:15:21 +04:00
|
|
|
nsXULScrollFrame::CreateAnonymousContent(nsPresContext* aPresContext,
|
2000-01-22 04:16:50 +03:00
|
|
|
nsISupportsArray& aAnonymousChildren)
|
1999-08-20 02:16:23 +04:00
|
|
|
{
|
2004-05-05 06:32:27 +04:00
|
|
|
mInner.CreateAnonymousContent(aAnonymousChildren);
|
1999-08-20 02:16:23 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2006-03-15 09:43:36 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULScrollFrame::Destroy(nsPresContext* aPresContext)
|
1999-08-20 02:16:23 +04:00
|
|
|
{
|
2004-05-05 06:32:27 +04:00
|
|
|
nsIScrollableView *view = mInner.GetScrollableView();
|
2002-07-09 08:30:28 +04:00
|
|
|
NS_ASSERTION(view, "unexpected null pointer");
|
|
|
|
if (view)
|
2004-05-05 06:32:27 +04:00
|
|
|
view->RemoveScrollPositionListener(&mInner);
|
2006-03-15 09:43:36 +03:00
|
|
|
return nsBoxFrame::Destroy(aPresContext);
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2006-03-15 09:43:36 +03:00
|
|
|
nsXULScrollFrame::SetInitialChildList(nsPresContext* aPresContext,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList)
|
1999-08-20 02:16:23 +04:00
|
|
|
{
|
2006-03-15 09:43:36 +03:00
|
|
|
nsresult rv = nsBoxFrame::SetInitialChildList(aPresContext, aListName,
|
|
|
|
aChildList);
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2005-04-04 01:00:41 +04:00
|
|
|
mInner.CreateScrollableView();
|
2004-05-05 06:32:27 +04:00
|
|
|
mInner.ReloadChildFrames();
|
1999-08-20 02:16:23 +04:00
|
|
|
|
1999-10-12 04:16:06 +04:00
|
|
|
// listen for scroll events.
|
2004-05-05 06:32:27 +04:00
|
|
|
mInner.GetScrollableView()->AddScrollPositionListener(&mInner);
|
1999-08-20 02:16:23 +04:00
|
|
|
|
1999-10-12 04:16:06 +04:00
|
|
|
return rv;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
2000-05-15 08:12:31 +04:00
|
|
|
|
1999-08-20 02:16:23 +04:00
|
|
|
NS_IMETHODIMP
|
2005-02-07 04:58:25 +03:00
|
|
|
nsXULScrollFrame::AppendFrames(nsIAtom* aListName,
|
|
|
|
nsIFrame* aFrameList)
|
|
|
|
{
|
|
|
|
nsresult rv = nsBoxFrame::AppendFrames(aListName, aFrameList);
|
2004-05-05 06:32:27 +04:00
|
|
|
mInner.ReloadChildFrames();
|
2003-04-09 00:50:57 +04:00
|
|
|
return rv;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-02-07 04:58:25 +03:00
|
|
|
nsXULScrollFrame::InsertFrames(nsIAtom* aListName,
|
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsIFrame* aFrameList)
|
|
|
|
{
|
|
|
|
nsresult rv = nsBoxFrame::InsertFrames(aListName, aPrevFrame, aFrameList);
|
2004-05-05 06:32:27 +04:00
|
|
|
mInner.ReloadChildFrames();
|
2003-04-09 00:50:57 +04:00
|
|
|
return rv;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-02-07 04:58:25 +03:00
|
|
|
nsXULScrollFrame::RemoveFrame(nsIAtom* aListName,
|
|
|
|
nsIFrame* aOldFrame)
|
|
|
|
{
|
|
|
|
nsresult rv = nsBoxFrame::RemoveFrame(aListName, aOldFrame);
|
2004-05-05 06:32:27 +04:00
|
|
|
mInner.ReloadChildFrames();
|
2003-04-09 00:50:57 +04:00
|
|
|
return rv;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
2000-05-15 08:12:31 +04:00
|
|
|
|
1999-08-20 02:16:23 +04:00
|
|
|
NS_IMETHODIMP
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::GetPadding(nsMargin& aMargin)
|
1999-08-20 02:16:23 +04:00
|
|
|
{
|
2000-03-31 11:02:06 +04:00
|
|
|
aMargin.SizeTo(0,0,0,0);
|
|
|
|
return NS_OK;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
PRIntn
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::GetSkipSides() const
|
2000-03-31 11:02:06 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
1999-10-12 04:16:06 +04:00
|
|
|
|
2003-10-31 23:19:18 +03:00
|
|
|
nsIAtom*
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::GetType() const
|
2000-03-31 11:02:06 +04:00
|
|
|
{
|
2003-10-31 23:19:18 +03:00
|
|
|
return nsLayoutAtoms::scrollFrame;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
2000-05-15 08:12:31 +04:00
|
|
|
NS_IMETHODIMP
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::GetAscent(nsBoxLayoutState& aState, nscoord& aAscent)
|
2000-05-15 08:12:31 +04:00
|
|
|
{
|
|
|
|
aAscent = 0;
|
2005-04-04 01:00:41 +04:00
|
|
|
if (!mInner.mScrolledFrame)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsresult rv = mInner.mScrolledFrame->GetAscent(aState, aAscent);
|
2000-05-15 08:12:31 +04:00
|
|
|
nsMargin m(0,0,0,0);
|
|
|
|
GetBorderAndPadding(m);
|
|
|
|
aAscent += m.top;
|
|
|
|
GetMargin(m);
|
|
|
|
aAscent += m.top;
|
|
|
|
GetInset(m);
|
|
|
|
aAscent += m.top;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1999-10-12 04:16:06 +04:00
|
|
|
NS_IMETHODIMP
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::GetPrefSize(nsBoxLayoutState& aState, nsSize& aSize)
|
1999-10-12 04:16:06 +04:00
|
|
|
{
|
2004-06-19 13:07:47 +04:00
|
|
|
#ifdef DEBUG_LAYOUT
|
2000-03-31 11:02:06 +04:00
|
|
|
PropagateDebug(aState);
|
2004-06-19 13:07:47 +04:00
|
|
|
#endif
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2004-05-05 06:32:27 +04:00
|
|
|
nsGfxScrollFrameInner::ScrollbarStyles styles = GetScrollbarStyles();
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2002-10-01 05:23:47 +04:00
|
|
|
nsSize vSize(0,0);
|
2004-05-05 06:32:27 +04:00
|
|
|
if (mInner.mVScrollbarBox &&
|
2003-05-22 05:46:13 +04:00
|
|
|
styles.mVertical == NS_STYLE_OVERFLOW_SCROLL) {
|
2005-05-09 02:33:40 +04:00
|
|
|
mInner.mVScrollbarBox->GetPrefSize(aState, vSize);
|
2004-05-05 06:32:27 +04:00
|
|
|
nsBox::AddMargin(mInner.mVScrollbarBox, vSize);
|
2000-03-31 11:02:06 +04:00
|
|
|
}
|
|
|
|
|
2002-10-01 05:23:47 +04:00
|
|
|
nsSize hSize(0,0);
|
2004-05-05 06:32:27 +04:00
|
|
|
if (mInner.mHScrollbarBox &&
|
2003-05-22 05:46:13 +04:00
|
|
|
styles.mHorizontal == NS_STYLE_OVERFLOW_SCROLL) {
|
2005-05-09 02:33:40 +04:00
|
|
|
mInner.mHScrollbarBox->GetPrefSize(aState, hSize);
|
2004-05-05 06:32:27 +04:00
|
|
|
nsBox::AddMargin(mInner.mHScrollbarBox, hSize);
|
2002-10-01 05:23:47 +04:00
|
|
|
}
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2005-04-04 01:00:41 +04:00
|
|
|
nsresult rv = mInner.mScrolledFrame->GetPrefSize(aState, aSize);
|
2004-03-13 05:51:16 +03:00
|
|
|
|
2005-04-04 01:00:41 +04:00
|
|
|
// scrolled frames don't have their own margins
|
2002-10-01 05:23:47 +04:00
|
|
|
|
|
|
|
aSize.width += vSize.width;
|
|
|
|
aSize.height += hSize.height;
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
AddBorderAndPadding(aSize);
|
|
|
|
AddInset(aSize);
|
|
|
|
nsIBox::AddCSSPrefSize(aState, this, aSize);
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
return rv;
|
|
|
|
}
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
NS_IMETHODIMP
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::GetMinSize(nsBoxLayoutState& aState, nsSize& aSize)
|
2000-03-31 11:02:06 +04:00
|
|
|
{
|
2004-06-19 13:07:47 +04:00
|
|
|
#ifdef DEBUG_LAYOUT
|
2000-03-31 11:02:06 +04:00
|
|
|
PropagateDebug(aState);
|
2004-06-19 13:07:47 +04:00
|
|
|
#endif
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2005-04-04 01:00:41 +04:00
|
|
|
aSize = mInner.mScrolledFrame->GetMinSizeForScrollArea(aState);
|
2003-05-22 05:46:13 +04:00
|
|
|
|
2004-05-05 06:32:27 +04:00
|
|
|
nsGfxScrollFrameInner::ScrollbarStyles styles = GetScrollbarStyles();
|
2000-03-31 11:02:06 +04:00
|
|
|
|
2004-05-05 06:32:27 +04:00
|
|
|
if (mInner.mVScrollbarBox &&
|
2003-05-22 05:46:13 +04:00
|
|
|
styles.mVertical == NS_STYLE_OVERFLOW_SCROLL) {
|
2000-03-31 11:02:06 +04:00
|
|
|
nsSize vSize(0,0);
|
2004-05-05 06:32:27 +04:00
|
|
|
mInner.mVScrollbarBox->GetMinSize(aState, vSize);
|
|
|
|
AddMargin(mInner.mVScrollbarBox, vSize);
|
2000-03-31 11:02:06 +04:00
|
|
|
aSize.width += vSize.width;
|
|
|
|
if (aSize.height < vSize.height)
|
|
|
|
aSize.height = vSize.height;
|
|
|
|
}
|
|
|
|
|
2004-05-05 06:32:27 +04:00
|
|
|
if (mInner.mHScrollbarBox &&
|
2003-05-22 05:46:13 +04:00
|
|
|
styles.mHorizontal == NS_STYLE_OVERFLOW_SCROLL) {
|
2000-03-31 11:02:06 +04:00
|
|
|
nsSize hSize(0,0);
|
2004-05-05 06:32:27 +04:00
|
|
|
mInner.mHScrollbarBox->GetMinSize(aState, hSize);
|
|
|
|
AddMargin(mInner.mHScrollbarBox, hSize);
|
2000-03-31 11:02:06 +04:00
|
|
|
aSize.height += hSize.height;
|
|
|
|
if (aSize.width < hSize.width)
|
|
|
|
aSize.width = hSize.width;
|
1999-10-12 04:16:06 +04:00
|
|
|
}
|
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
AddBorderAndPadding(aSize);
|
|
|
|
AddInset(aSize);
|
|
|
|
nsIBox::AddCSSMinSize(aState, this, aSize);
|
2005-04-04 01:00:41 +04:00
|
|
|
return NS_OK;
|
1999-10-12 04:16:06 +04:00
|
|
|
}
|
|
|
|
|
1999-11-18 22:40:52 +03:00
|
|
|
NS_IMETHODIMP
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::GetMaxSize(nsBoxLayoutState& aState, nsSize& aSize)
|
1999-11-18 22:40:52 +03:00
|
|
|
{
|
2004-06-19 13:07:47 +04:00
|
|
|
#ifdef DEBUG_LAYOUT
|
2000-03-31 11:02:06 +04:00
|
|
|
PropagateDebug(aState);
|
2004-06-19 13:07:47 +04:00
|
|
|
#endif
|
2000-03-31 11:02:06 +04:00
|
|
|
|
|
|
|
aSize.width = NS_INTRINSICSIZE;
|
|
|
|
aSize.height = NS_INTRINSICSIZE;
|
1999-11-18 22:40:52 +03:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
AddBorderAndPadding(aSize);
|
|
|
|
AddInset(aSize);
|
|
|
|
nsIBox::AddCSSMaxSize(aState, this, aSize);
|
|
|
|
return NS_OK;
|
1999-11-18 22:40:52 +03:00
|
|
|
}
|
1999-10-12 04:16:06 +04:00
|
|
|
|
2000-04-05 04:19:00 +04:00
|
|
|
NS_IMETHODIMP
|
2004-08-01 03:15:21 +04:00
|
|
|
nsXULScrollFrame::Reflow(nsPresContext* aPresContext,
|
2000-04-05 04:19:00 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
|
|
|
{
|
2004-06-18 06:08:19 +04:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsXULScrollFrame", aReflowState.reason);
|
2001-11-14 16:40:03 +03:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
2000-05-02 06:28:41 +04:00
|
|
|
|
|
|
|
// if there is a max element request then set it to -1 so we can see if it gets set
|
2003-01-09 17:26:32 +03:00
|
|
|
if (aDesiredSize.mComputeMEW)
|
2000-05-02 06:28:41 +04:00
|
|
|
{
|
2003-01-09 17:26:32 +03:00
|
|
|
aDesiredSize.mMaxElementWidth = -1;
|
2000-05-02 06:28:41 +04:00
|
|
|
}
|
|
|
|
|
2000-04-05 04:19:00 +04:00
|
|
|
nsresult rv = nsBoxFrame::Reflow(aPresContext, aDesiredSize, aReflowState, aStatus);
|
|
|
|
|
2003-01-09 17:26:32 +03:00
|
|
|
if (aDesiredSize.mComputeMEW)
|
2000-04-05 04:19:00 +04:00
|
|
|
{
|
2004-10-29 21:36:58 +04:00
|
|
|
nsStyleUnit widthUnit = GetStylePosition()->mWidth.GetUnit();
|
|
|
|
if (widthUnit == eStyleUnit_Percent || widthUnit == eStyleUnit_Auto) {
|
|
|
|
nsMargin border = aReflowState.mComputedBorderPadding;
|
|
|
|
aDesiredSize.mMaxElementWidth = border.right + border.left;
|
2005-04-29 01:57:22 +04:00
|
|
|
mMaxElementWidth = aDesiredSize.mMaxElementWidth;
|
2004-10-29 21:36:58 +04:00
|
|
|
} else {
|
|
|
|
// if not set then use the cached size. If set then set it.
|
|
|
|
if (aDesiredSize.mMaxElementWidth == -1)
|
2005-04-29 01:57:22 +04:00
|
|
|
aDesiredSize.mMaxElementWidth = mMaxElementWidth;
|
|
|
|
else
|
|
|
|
mMaxElementWidth = aDesiredSize.mMaxElementWidth;
|
2004-10-29 21:36:58 +04:00
|
|
|
}
|
2000-05-02 06:28:41 +04:00
|
|
|
}
|
|
|
|
|
2002-05-29 02:50:43 +04:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
|
2000-04-05 04:19:00 +04:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::AddRef(void)
|
1999-10-12 04:16:06 +04:00
|
|
|
{
|
2000-03-31 11:02:06 +04:00
|
|
|
return NS_OK;
|
1999-10-12 04:16:06 +04:00
|
|
|
}
|
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::Release(void)
|
1999-10-12 04:16:06 +04:00
|
|
|
{
|
2000-03-31 11:02:06 +04:00
|
|
|
return NS_OK;
|
1999-10-12 04:16:06 +04:00
|
|
|
}
|
|
|
|
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef NS_DEBUG
|
1999-10-12 04:16:06 +04:00
|
|
|
NS_IMETHODIMP
|
2004-06-18 06:08:19 +04:00
|
|
|
nsXULScrollFrame::GetFrameName(nsAString& aResult) const
|
1999-10-12 04:16:06 +04:00
|
|
|
{
|
2004-06-18 06:08:19 +04:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("XULScroll"), aResult);
|
1999-10-12 04:16:06 +04:00
|
|
|
}
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
1999-10-12 04:16:06 +04:00
|
|
|
|
2004-09-06 06:44:43 +04:00
|
|
|
void nsXULScrollFrame::CurPosAttributeChanged(nsIContent* aChild, PRInt32 aModType)
|
2004-06-18 06:08:19 +04:00
|
|
|
{
|
2006-03-15 19:55:19 +03:00
|
|
|
mInner.CurPosAttributeChanged(aChild);
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULScrollFrame::DoLayout(nsBoxLayoutState& aState)
|
|
|
|
{
|
2004-06-22 06:55:04 +04:00
|
|
|
PRUint32 flags = aState.LayoutFlags();
|
2005-04-29 01:57:22 +04:00
|
|
|
nsresult rv = Layout(aState);
|
2004-06-22 06:55:04 +04:00
|
|
|
aState.SetLayoutFlags(flags);
|
2004-06-18 06:08:19 +04:00
|
|
|
|
2004-06-22 06:55:04 +04:00
|
|
|
nsBox::DoLayout(aState);
|
|
|
|
return rv;
|
2004-06-18 06:08:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsXULScrollFrame::GetContentOf(nsIContent** aContent)
|
|
|
|
{
|
|
|
|
*aContent = GetContent();
|
|
|
|
NS_IF_ADDREF(*aContent);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN(nsXULScrollFrame)
|
2000-03-31 11:02:06 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIAnonymousContentCreator)
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIFrameDebug)
|
|
|
|
#endif
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScrollableFrame)
|
2003-04-09 00:50:57 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScrollableViewProvider)
|
2004-09-13 06:10:29 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIStatefulFrame)
|
2000-03-31 11:02:06 +04:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(nsBoxFrame)
|
|
|
|
|
1999-10-12 04:16:06 +04:00
|
|
|
|
|
|
|
|
|
|
|
//-------------------- Inner ----------------------
|
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
nsGfxScrollFrameInner::nsGfxScrollFrameInner(nsContainerFrame* aOuter,
|
|
|
|
PRBool aIsRoot,
|
|
|
|
PRBool aIsXUL)
|
2005-04-04 01:00:41 +04:00
|
|
|
: mScrollableView(nsnull),
|
|
|
|
mHScrollbarBox(nsnull),
|
2003-11-21 13:45:24 +03:00
|
|
|
mVScrollbarBox(nsnull),
|
2005-04-04 01:00:41 +04:00
|
|
|
mScrolledFrame(nsnull),
|
2003-11-21 13:45:24 +03:00
|
|
|
mScrollCornerBox(nsnull),
|
2004-01-06 02:56:00 +03:00
|
|
|
mOuter(aOuter),
|
2005-04-29 01:57:22 +04:00
|
|
|
mOnePixel(20),
|
2004-09-13 06:10:29 +04:00
|
|
|
mRestoreRect(-1, -1, -1, -1),
|
|
|
|
mLastPos(-1, -1),
|
2004-09-04 07:17:18 +04:00
|
|
|
mNeverHasVerticalScrollbar(PR_FALSE),
|
|
|
|
mNeverHasHorizontalScrollbar(PR_FALSE),
|
2003-11-21 13:45:24 +03:00
|
|
|
mHasVerticalScrollbar(PR_FALSE),
|
2004-01-06 02:56:00 +03:00
|
|
|
mHasHorizontalScrollbar(PR_FALSE),
|
2004-05-05 06:32:27 +04:00
|
|
|
mViewInitiatedScroll(PR_FALSE),
|
2004-09-13 06:10:29 +04:00
|
|
|
mFrameInitiatedScroll(PR_FALSE),
|
2005-04-04 01:00:41 +04:00
|
|
|
mDidHistoryRestore(PR_FALSE),
|
2005-07-26 03:23:53 +04:00
|
|
|
mIsRoot(aIsRoot),
|
2006-03-15 19:55:19 +03:00
|
|
|
mIsXUL(aIsXUL),
|
2005-08-25 04:10:37 +04:00
|
|
|
mSupppressScrollbarUpdate(PR_FALSE),
|
|
|
|
mDidLoadHistoryVScrollbarHint(PR_FALSE),
|
|
|
|
mHistoryVScrollbarHint(PR_FALSE),
|
2005-08-31 04:57:27 +04:00
|
|
|
mHadNonInitialReflow(PR_FALSE),
|
|
|
|
mHorizontalOverflow(PR_FALSE),
|
|
|
|
mVerticalOverflow(PR_FALSE)
|
2004-05-05 06:32:27 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-08-22 03:37:13 +04:00
|
|
|
nsGfxScrollFrameInner::~nsGfxScrollFrameInner()
|
|
|
|
{
|
|
|
|
if (mScrollEventQueue) {
|
|
|
|
mScrollEventQueue->RevokeEvents(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-05 06:32:27 +04:00
|
|
|
NS_IMETHODIMP_(nsrefcnt) nsGfxScrollFrameInner::AddRef(void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(nsrefcnt) nsGfxScrollFrameInner::Release(void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-05-05 08:38:12 +04:00
|
|
|
NS_IMPL_QUERY_INTERFACE1(nsGfxScrollFrameInner, nsIScrollPositionListener)
|
2004-05-05 06:32:27 +04:00
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
nsresult
|
|
|
|
nsGfxScrollFrameInner::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
|
|
|
nsresult rv = mOuter->DisplayBorderBackgroundOutline(aBuilder, aLists);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (aBuilder->GetIgnoreScrollFrame() == mOuter) {
|
|
|
|
// Don't clip the scrolled child, and don't paint scrollbars/scrollcorner.
|
|
|
|
// The scrolled frame shouldn't have its own background/border, so we
|
|
|
|
// can just pass aLists directly. We do need to replace aDirtyRect with
|
|
|
|
// the scrolled area though, since callers may have restricted aDirtyRect
|
|
|
|
// to our bounds.
|
2006-03-15 19:55:19 +03:00
|
|
|
nsRect newDirty = GetScrolledRect(GetScrollPortSize()) +
|
2006-01-26 05:29:17 +03:00
|
|
|
aBuilder->ToReferenceFrame(mScrolledFrame);
|
|
|
|
return mOuter->BuildDisplayListForChild(aBuilder, mScrolledFrame, newDirty, aLists);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Overflow clipping can never clip frames outside our subtree, so there
|
|
|
|
// is no need to worry about whether we are a moving frame that might clip
|
|
|
|
// non-moving frames.
|
|
|
|
nsRect frameClip = mScrollableView->View()->GetBounds();
|
|
|
|
nsRect dirtyRect;
|
|
|
|
// Not all our descendants will be clipped by overflow clipping, but all
|
|
|
|
// the ones that aren't clipped will be out of flow frames that have already
|
|
|
|
// had dirty rects saved for them by their parent frames calling
|
|
|
|
// MarkOutOfFlowChildrenForDisplayList, so it's safe to restrict our
|
|
|
|
// dirty rect here.
|
|
|
|
dirtyRect.IntersectRect(aDirtyRect, frameClip);
|
|
|
|
|
|
|
|
nsDisplayListCollection set;
|
|
|
|
rv = mOuter->BuildDisplayListForChild(aBuilder, mScrolledFrame, dirtyRect, set);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsRect clip = frameClip + aBuilder->ToReferenceFrame(mOuter);
|
|
|
|
// mScrolledFrame may have given us a background, e.g., the scrolled canvas
|
2006-02-05 23:52:13 +03:00
|
|
|
// frame below the viewport. If so, we want it to be clipped. We also want
|
|
|
|
// to end up on our BorderBackground list.
|
2006-01-26 05:29:17 +03:00
|
|
|
// If we are the viewport scrollframe, then clip all our descendants (to ensure
|
|
|
|
// that fixed-pos elements get clipped by us).
|
|
|
|
rv = mOuter->OverflowClip(aBuilder, set, aLists, clip, PR_TRUE, mIsRoot);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Now display the scrollbars and scrollcorner
|
|
|
|
nsIFrame* kid = mOuter->GetFirstChild(nsnull);
|
|
|
|
// Put each child's background directly onto the content list
|
|
|
|
nsDisplayListSet scrollbarSet(aLists, aLists.Content());
|
|
|
|
while (kid) {
|
|
|
|
if (kid != mScrolledFrame) {
|
|
|
|
rv = mOuter->BuildDisplayListForChild(aBuilder, kid, aDirtyRect, scrollbarSet,
|
|
|
|
nsIFrame::DISPLAY_CHILD_FORCE_PSEUDO_STACKING_CONTEXT);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
kid = kid->GetNextSibling();
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-04-04 01:00:41 +04:00
|
|
|
PRBool
|
|
|
|
nsGfxScrollFrameInner::NeedsClipWidget() const
|
|
|
|
{
|
|
|
|
// Scrollports contained in form controls (e.g., listboxes) don't get
|
|
|
|
// widgets.
|
2005-04-08 03:54:28 +04:00
|
|
|
for (nsIFrame* parentFrame = mOuter; parentFrame;
|
2005-04-04 01:00:41 +04:00
|
|
|
parentFrame = parentFrame->GetParent()) {
|
|
|
|
nsIFormControlFrame* fcFrame;
|
|
|
|
if ((NS_SUCCEEDED(parentFrame->QueryInterface(NS_GET_IID(nsIFormControlFrame), (void**)&fcFrame)))) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scrollports that don't ever show associated scrollbars don't get
|
|
|
|
// widgets, because they will seldom actually be scrolled.
|
|
|
|
nsIScrollableFrame *scrollableFrame;
|
|
|
|
CallQueryInterface(mOuter, &scrollableFrame);
|
|
|
|
ScrollbarStyles scrollbars = scrollableFrame->GetScrollbarStyles();
|
|
|
|
if ((scrollbars.mHorizontal == NS_STYLE_OVERFLOW_HIDDEN
|
|
|
|
|| scrollbars.mHorizontal == NS_STYLE_OVERFLOW_VISIBLE)
|
|
|
|
&& (scrollbars.mVertical == NS_STYLE_OVERFLOW_HIDDEN
|
|
|
|
|| scrollbars.mVertical == NS_STYLE_OVERFLOW_VISIBLE)) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::CreateScrollableView()
|
|
|
|
{
|
|
|
|
nsIView* outerView = mOuter->GetView();
|
|
|
|
NS_ASSERTION(outerView, "scrollframes must have views");
|
|
|
|
nsIViewManager* viewManager = outerView->GetViewManager();
|
|
|
|
mScrollableView = viewManager->CreateScrollableView(mOuter->GetRect(), outerView);
|
|
|
|
if (!mScrollableView)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsIView* view = mScrollableView->View();
|
|
|
|
|
|
|
|
// Insert the view into the view hierarchy
|
|
|
|
viewManager->InsertChild(outerView, view, nsnull, PR_TRUE);
|
|
|
|
|
|
|
|
// Have the scrolling view create its internal widgets
|
|
|
|
if (NeedsClipWidget()) {
|
|
|
|
mScrollableView->CreateScrollControls();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-05 03:03:04 +04:00
|
|
|
static void HandleScrollPref(nsIScrollable *aScrollable, PRInt32 aOrientation,
|
|
|
|
PRUint8& aValue)
|
|
|
|
{
|
|
|
|
PRInt32 pref;
|
|
|
|
aScrollable->GetDefaultScrollbarPreferences(aOrientation, &pref);
|
|
|
|
switch (pref) {
|
|
|
|
case nsIScrollable::Scrollbar_Auto:
|
|
|
|
// leave |aValue| untouched
|
|
|
|
break;
|
|
|
|
case nsIScrollable::Scrollbar_Never:
|
|
|
|
aValue = NS_STYLE_OVERFLOW_HIDDEN;
|
|
|
|
break;
|
|
|
|
case nsIScrollable::Scrollbar_Always:
|
|
|
|
aValue = NS_STYLE_OVERFLOW_SCROLL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-08 03:54:28 +04:00
|
|
|
nsIView*
|
|
|
|
nsGfxScrollFrameInner::GetParentViewForChildFrame(nsIFrame* aFrame) const
|
|
|
|
{
|
|
|
|
if (aFrame->GetContent() == mOuter->GetContent()) {
|
|
|
|
NS_ASSERTION(mScrollableView, "Scrollable view should have been created by now");
|
|
|
|
// scrolled frame, put it under our anonymous view
|
|
|
|
return mScrollableView->View();
|
|
|
|
}
|
|
|
|
// scrollbars and stuff; put them under our regular view
|
|
|
|
return mOuter->GetView();
|
|
|
|
}
|
|
|
|
|
2004-05-05 06:32:27 +04:00
|
|
|
nsGfxScrollFrameInner::ScrollbarStyles
|
|
|
|
nsGfxScrollFrameInner::GetScrollbarStylesFromFrame() const
|
|
|
|
{
|
2004-09-05 03:03:04 +04:00
|
|
|
ScrollbarStyles result;
|
2005-04-04 02:40:25 +04:00
|
|
|
if (mIsRoot) {
|
2004-09-05 03:03:04 +04:00
|
|
|
nsPresContext *presContext = mOuter->GetPresContext();
|
2004-09-05 04:04:04 +04:00
|
|
|
result = presContext->GetViewportOverflowOverride();
|
2004-09-05 03:03:04 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> container = presContext->GetContainer();
|
2004-09-29 05:46:55 +04:00
|
|
|
if (container) {
|
|
|
|
nsCOMPtr<nsIScrollable> scrollable = do_QueryInterface(container);
|
|
|
|
HandleScrollPref(scrollable, nsIScrollable::ScrollOrientation_X,
|
|
|
|
result.mHorizontal);
|
|
|
|
HandleScrollPref(scrollable, nsIScrollable::ScrollOrientation_Y,
|
|
|
|
result.mVertical);
|
|
|
|
}
|
2004-05-05 06:32:27 +04:00
|
|
|
} else {
|
2004-09-05 04:04:04 +04:00
|
|
|
const nsStyleDisplay *disp = mOuter->GetStyleDisplay();
|
|
|
|
result.mHorizontal = disp->mOverflowX;
|
|
|
|
result.mVertical = disp->mOverflowY;
|
2004-05-05 06:32:27 +04:00
|
|
|
}
|
|
|
|
|
2004-09-05 03:03:04 +04:00
|
|
|
NS_ASSERTION(result.mHorizontal != NS_STYLE_OVERFLOW_VISIBLE &&
|
|
|
|
result.mHorizontal != NS_STYLE_OVERFLOW_CLIP &&
|
|
|
|
result.mVertical != NS_STYLE_OVERFLOW_VISIBLE &&
|
|
|
|
result.mVertical != NS_STYLE_OVERFLOW_CLIP,
|
|
|
|
"scrollbars should not have been created");
|
|
|
|
return result;
|
2004-08-27 05:26:55 +04:00
|
|
|
}
|
|
|
|
|
2004-09-13 06:10:29 +04:00
|
|
|
/**
|
|
|
|
* this code is resposible for restoring the scroll position back to some
|
2005-11-21 01:05:24 +03:00
|
|
|
* saved position. if the user has not moved the scroll position manually
|
|
|
|
* we keep scrolling down until we get to our original position. keep in
|
2004-09-13 06:10:29 +04:00
|
|
|
* mind that content could incrementally be coming in. we only want to stop
|
|
|
|
* when we reach our new position.
|
|
|
|
*/
|
2004-07-24 01:39:47 +04:00
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::ScrollToRestoredPosition()
|
|
|
|
{
|
2004-09-13 06:10:29 +04:00
|
|
|
nsIScrollableView* scrollingView = GetScrollableView();
|
|
|
|
if (!scrollingView) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (mRestoreRect.y == -1 || mLastPos.x == -1 || mLastPos.y == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// make sure our scroll position did not change for where we last put
|
|
|
|
// it. if it does then the user must have moved it, and we no longer
|
|
|
|
// need to restore.
|
|
|
|
nscoord x = 0;
|
|
|
|
nscoord y = 0;
|
|
|
|
scrollingView->GetScrollPosition(x, y);
|
|
|
|
|
|
|
|
// if we didn't move, we still need to restore
|
|
|
|
if (x == mLastPos.x && y == mLastPos.y) {
|
|
|
|
nsRect childRect(0, 0, 0, 0);
|
|
|
|
nsIView* child = nsnull;
|
|
|
|
nsresult rv = scrollingView->GetScrolledView(child);
|
|
|
|
if (NS_SUCCEEDED(rv) && child)
|
|
|
|
childRect = child->GetBounds();
|
|
|
|
|
|
|
|
PRInt32 cx, cy, x, y;
|
|
|
|
scrollingView->GetScrollPosition(cx,cy);
|
|
|
|
|
2005-09-18 18:50:26 +04:00
|
|
|
x = (int)mRestoreRect.x;
|
|
|
|
y = (int)mRestoreRect.y;
|
2004-09-13 06:10:29 +04:00
|
|
|
|
|
|
|
// if our position is greater than the scroll position, scroll.
|
|
|
|
// remember that we could be incrementally loading so we may enter
|
|
|
|
// and scroll many times.
|
|
|
|
if (y > cy || x > cx) {
|
|
|
|
scrollingView->ScrollTo(x, y, 0);
|
|
|
|
// scrollpostion goes from twips to pixels. this fixes any roundoff
|
|
|
|
// problems.
|
|
|
|
scrollingView->GetScrollPosition(mLastPos.x, mLastPos.y);
|
|
|
|
} else {
|
|
|
|
// if we reached the position then stop
|
|
|
|
mRestoreRect.y = -1;
|
|
|
|
mLastPos.x = -1;
|
|
|
|
mLastPos.y = -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// user moved the position, so we won't need to restore
|
|
|
|
mLastPos.x = -1;
|
|
|
|
mLastPos.y = -1;
|
|
|
|
}
|
2004-07-24 01:39:47 +04:00
|
|
|
}
|
|
|
|
|
2005-04-04 01:00:41 +04:00
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::PostScrollPortEvent(PRBool aOverflow, nsScrollPortEvent::orientType aType)
|
|
|
|
{
|
2005-04-29 03:48:28 +04:00
|
|
|
nsScrollPortEvent* event = new nsScrollPortEvent(PR_TRUE, aOverflow ?
|
2005-04-04 01:00:41 +04:00
|
|
|
NS_SCROLLPORT_OVERFLOW :
|
2005-04-29 03:48:28 +04:00
|
|
|
NS_SCROLLPORT_UNDERFLOW,
|
|
|
|
nsnull);
|
2005-04-04 01:00:41 +04:00
|
|
|
event->orient = aType;
|
|
|
|
mOuter->GetPresContext()->PresShell()->PostDOMEvent(mOuter->GetContent(), event);
|
|
|
|
}
|
|
|
|
|
2004-07-24 01:39:47 +04:00
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::ReloadChildFrames()
|
2004-05-05 06:32:27 +04:00
|
|
|
{
|
2005-04-04 01:00:41 +04:00
|
|
|
mScrolledFrame = nsnull;
|
2004-05-05 06:32:27 +04:00
|
|
|
mHScrollbarBox = nsnull;
|
|
|
|
mVScrollbarBox = nsnull;
|
|
|
|
mScrollCornerBox = nsnull;
|
|
|
|
|
|
|
|
nsIFrame* frame = mOuter->GetFirstChild(nsnull);
|
|
|
|
while (frame) {
|
2005-04-04 01:00:41 +04:00
|
|
|
nsIContent* content = frame->GetContent();
|
|
|
|
if (content == mOuter->GetContent()) {
|
|
|
|
NS_ASSERTION(!mScrolledFrame, "Already found the scrolled frame");
|
|
|
|
mScrolledFrame = frame;
|
|
|
|
} else {
|
|
|
|
nsAutoString value;
|
2005-10-28 15:25:24 +04:00
|
|
|
content->GetAttr(kNameSpaceID_None, nsXULAtoms::orient, value);
|
|
|
|
if (!value.IsEmpty()) {
|
2005-04-04 01:00:41 +04:00
|
|
|
// probably a scrollbar then
|
|
|
|
if (value.LowerCaseEqualsLiteral("horizontal")) {
|
|
|
|
NS_ASSERTION(!mHScrollbarBox, "Found multiple horizontal scrollbars?");
|
|
|
|
mHScrollbarBox = frame;
|
|
|
|
} else {
|
|
|
|
NS_ASSERTION(!mVScrollbarBox, "Found multiple vertical scrollbars?");
|
|
|
|
mVScrollbarBox = frame;
|
2005-03-31 22:04:50 +04:00
|
|
|
}
|
2005-04-04 01:00:41 +04:00
|
|
|
} else {
|
|
|
|
// probably a scrollcorner
|
|
|
|
NS_ASSERTION(!mScrollCornerBox, "Found multiple scrollcorners");
|
|
|
|
mScrollCornerBox = frame;
|
2004-05-05 06:32:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
frame = frame->GetNextSibling();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::CreateAnonymousContent(nsISupportsArray& aAnonymousChildren)
|
|
|
|
{
|
2004-08-01 03:15:21 +04:00
|
|
|
nsPresContext* presContext = mOuter->GetPresContext();
|
2004-05-05 06:32:27 +04:00
|
|
|
nsIFrame* parent = mOuter->GetParent();
|
|
|
|
|
|
|
|
// Don't create scrollbars if we're printing/print previewing
|
|
|
|
// Get rid of this code when printing moves to its own presentation
|
|
|
|
if (presContext->IsPaginated()) {
|
|
|
|
// allow scrollbars if this is the child of the viewport, because
|
|
|
|
// we must be the scrollbars for the print preview window
|
2005-06-16 06:57:23 +04:00
|
|
|
if (!mIsRoot) {
|
2004-09-04 07:17:18 +04:00
|
|
|
mNeverHasVerticalScrollbar = mNeverHasHorizontalScrollbar = PR_TRUE;
|
2004-05-05 06:32:27 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-04 03:57:42 +04:00
|
|
|
nsIScrollableFrame *scrollable;
|
|
|
|
CallQueryInterface(mOuter, &scrollable);
|
2004-08-27 05:26:55 +04:00
|
|
|
|
2005-04-04 02:40:25 +04:00
|
|
|
// At this stage in frame construction, the document element and/or
|
|
|
|
// BODY overflow styles have not yet been propagated to the
|
|
|
|
// viewport. So GetScrollbarStylesFromFrame called here will only
|
|
|
|
// take into account the scrollbar preferences set on the docshell.
|
|
|
|
// Thus if no scrollbar preferences are set on the docshell, we will
|
|
|
|
// always create scrollbars, which means later dynamic changes to
|
|
|
|
// propagated overflow styles will show or hide scrollbars on the
|
|
|
|
// viewport without requiring frame reconstruction of the viewport
|
|
|
|
// (good!).
|
|
|
|
|
|
|
|
// XXX On the other hand, if scrolling="no" is set on the container
|
|
|
|
// we won't create scrollbars here so no scrollbars will ever be
|
|
|
|
// created even if the container's scrolling attribute is later
|
|
|
|
// changed. However, this has never been supported.
|
2004-09-04 03:57:42 +04:00
|
|
|
ScrollbarStyles styles = scrollable->GetScrollbarStyles();
|
|
|
|
PRBool canHaveHorizontal = styles.mHorizontal != NS_STYLE_OVERFLOW_HIDDEN;
|
|
|
|
PRBool canHaveVertical = styles.mVertical != NS_STYLE_OVERFLOW_HIDDEN;
|
|
|
|
if (!canHaveHorizontal && !canHaveVertical)
|
|
|
|
// Nothing to do.
|
2004-05-05 06:32:27 +04:00
|
|
|
return;
|
2004-06-25 16:26:02 +04:00
|
|
|
|
2004-09-04 07:17:18 +04:00
|
|
|
// The anonymous <div> used by <inputs> never gets scrollbars.
|
|
|
|
nsCOMPtr<nsITextControlFrame> textFrame(do_QueryInterface(parent));
|
|
|
|
if (textFrame) {
|
|
|
|
// Make sure we are not a text area.
|
|
|
|
nsCOMPtr<nsIDOMHTMLTextAreaElement> textAreaElement(do_QueryInterface(parent->GetContent()));
|
|
|
|
if (!textAreaElement) {
|
|
|
|
mNeverHasVerticalScrollbar = mNeverHasHorizontalScrollbar = PR_TRUE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-04 03:57:42 +04:00
|
|
|
nsNodeInfoManager *nodeInfoManager =
|
|
|
|
presContext->GetDocument()->NodeInfoManager();
|
2004-05-05 06:32:27 +04:00
|
|
|
nsCOMPtr<nsINodeInfo> nodeInfo;
|
|
|
|
nodeInfoManager->GetNodeInfo(nsXULAtoms::scrollbar, nsnull,
|
|
|
|
kNameSpaceID_XUL, getter_AddRefs(nodeInfo));
|
|
|
|
|
2004-06-25 16:26:02 +04:00
|
|
|
nsCOMPtr<nsIContent> content;
|
|
|
|
|
2004-05-05 06:32:27 +04:00
|
|
|
if (canHaveHorizontal) {
|
2004-06-25 20:38:43 +04:00
|
|
|
NS_NewElement(getter_AddRefs(content), kNameSpaceID_XUL, nodeInfo);
|
2004-05-05 06:32:27 +04:00
|
|
|
content->SetAttr(kNameSpaceID_None, nsXULAtoms::orient,
|
|
|
|
NS_LITERAL_STRING("horizontal"), PR_FALSE);
|
|
|
|
aAnonymousChildren.AppendElement(content);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (canHaveVertical) {
|
2004-06-25 20:38:43 +04:00
|
|
|
NS_NewElement(getter_AddRefs(content), kNameSpaceID_XUL, nodeInfo);
|
2004-05-05 06:32:27 +04:00
|
|
|
content->SetAttr(kNameSpaceID_None, nsXULAtoms::orient,
|
|
|
|
NS_LITERAL_STRING("vertical"), PR_FALSE);
|
|
|
|
aAnonymousChildren.AppendElement(content);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (canHaveHorizontal && canHaveVertical) {
|
|
|
|
nodeInfoManager->GetNodeInfo(nsXULAtoms::scrollcorner, nsnull,
|
|
|
|
kNameSpaceID_XUL, getter_AddRefs(nodeInfo));
|
2004-06-25 20:38:43 +04:00
|
|
|
NS_NewElement(getter_AddRefs(content), kNameSpaceID_XUL, nodeInfo);
|
2004-05-05 06:32:27 +04:00
|
|
|
aAnonymousChildren.AppendElement(content);
|
|
|
|
}
|
1999-10-12 04:16:06 +04:00
|
|
|
}
|
|
|
|
|
1999-10-15 08:29:30 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrameInner::ScrollPositionWillChange(nsIScrollableView* aScrollable, nscoord aX, nscoord aY)
|
|
|
|
{
|
|
|
|
// Do nothing.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2003-04-05 15:41:19 +04:00
|
|
|
/**
|
2005-08-22 08:16:38 +04:00
|
|
|
* Called when we want to update the scrollbar position, either because scrolling happened
|
|
|
|
* or the user moved the scrollbar position and we need to undo that (e.g., when the user
|
|
|
|
* clicks to scroll and we're using smooth scrolling, so we need to put the thumb back
|
|
|
|
* to its initial position for the start of the smooth sequence).
|
2003-04-05 15:41:19 +04:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::InternalScrollPositionDidChange(nscoord aX, nscoord aY)
|
|
|
|
{
|
|
|
|
if (mVScrollbarBox)
|
2006-03-15 19:55:19 +03:00
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::curpos,
|
|
|
|
aY - GetScrolledRect(GetScrollPortSize()).y);
|
2003-04-05 15:41:19 +04:00
|
|
|
|
|
|
|
if (mHScrollbarBox)
|
2006-03-15 19:55:19 +03:00
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::curpos,
|
|
|
|
aX - GetScrolledRect(GetScrollPortSize()).x);
|
2003-04-05 15:41:19 +04:00
|
|
|
}
|
|
|
|
|
1999-10-12 04:16:06 +04:00
|
|
|
/**
|
2005-08-22 08:16:38 +04:00
|
|
|
* Called whenever actual scrolling happens for any reason.
|
1999-10-12 04:16:06 +04:00
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
1999-10-15 08:29:30 +04:00
|
|
|
nsGfxScrollFrameInner::ScrollPositionDidChange(nsIScrollableView* aScrollable, nscoord aX, nscoord aY)
|
1999-10-12 04:16:06 +04:00
|
|
|
{
|
2003-04-05 15:41:19 +04:00
|
|
|
NS_ASSERTION(!mViewInitiatedScroll, "Cannot reenter ScrollPositionDidChange");
|
|
|
|
|
2006-03-09 21:46:14 +03:00
|
|
|
// Update frame position to match view offsets
|
|
|
|
nsPoint childOffset = mScrolledFrame->GetView()->GetOffsetTo(mOuter->GetView());
|
|
|
|
mScrolledFrame->SetPosition(childOffset);
|
|
|
|
|
2003-04-05 15:41:19 +04:00
|
|
|
mViewInitiatedScroll = PR_TRUE;
|
|
|
|
InternalScrollPositionDidChange(aX, aY);
|
|
|
|
mViewInitiatedScroll = PR_FALSE;
|
|
|
|
|
2005-08-22 03:37:13 +04:00
|
|
|
PostScrollEvent();
|
|
|
|
|
2003-04-05 15:41:19 +04:00
|
|
|
return NS_OK;
|
1999-10-12 04:16:06 +04:00
|
|
|
}
|
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
void nsGfxScrollFrameInner::CurPosAttributeChanged(nsIContent* aContent)
|
1999-10-12 04:16:06 +04:00
|
|
|
{
|
2003-05-22 05:46:13 +04:00
|
|
|
NS_ASSERTION(aContent, "aContent must not be null");
|
2006-03-15 19:55:19 +03:00
|
|
|
NS_ASSERTION((mHScrollbarBox && mHScrollbarBox->GetContent() == aContent) ||
|
|
|
|
(mVScrollbarBox && mVScrollbarBox->GetContent() == aContent),
|
|
|
|
"unexpected child");
|
2003-05-22 05:46:13 +04:00
|
|
|
|
2003-04-05 15:41:19 +04:00
|
|
|
// Attribute changes on the scrollbars happen in one of three ways:
|
|
|
|
// 1) The scrollbar changed the attribute in response to some user event
|
|
|
|
// 2) We changed the attribute in response to a ScrollPositionDidChange
|
|
|
|
// callback from the scrolling view
|
|
|
|
// 3) We changed the attribute to adjust the scrollbars for the start
|
|
|
|
// of a smooth scroll operation
|
|
|
|
//
|
|
|
|
// In case 2), we don't need to scroll the view because the scrolling
|
|
|
|
// has already happened. In case 3) we don't need to scroll because
|
|
|
|
// we're just adjusting the scrollbars back to the correct setting
|
|
|
|
// for the view.
|
2005-08-22 08:16:38 +04:00
|
|
|
//
|
|
|
|
// Cases 1) and 3) do not indicate that actual scrolling has happened. Only
|
|
|
|
// case 2) indicates actual scrolling. Therefore we do not fire onscroll
|
|
|
|
// here, but in ScrollPositionDidChange.
|
2003-04-05 15:41:19 +04:00
|
|
|
//
|
|
|
|
// We used to detect this case implicitly because we'd compare the
|
|
|
|
// scrollbar attributes with the view's current scroll position and
|
|
|
|
// bail out if they were equal. But that approach is fragile; it can
|
|
|
|
// fail when, for example, the view scrolls horizontally and
|
|
|
|
// vertically simultaneously; we'll get here when only the vertical
|
|
|
|
// attribute has been set, so the attributes and the view scroll
|
|
|
|
// position don't yet agree, and we'd tell the view to scroll to the
|
|
|
|
// new vertical position and the old horizontal position! Even worse
|
|
|
|
// things could happen when smooth scrolling got involved ... crashes
|
|
|
|
// and other terrors.
|
2004-09-06 06:44:43 +04:00
|
|
|
if (mViewInitiatedScroll || mFrameInitiatedScroll) return;
|
2003-04-05 15:41:19 +04:00
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
nsRect scrolledRect = GetScrolledRect(GetScrollPortSize());
|
|
|
|
|
|
|
|
nscoord x = GetIntegerAttribute(mHScrollbarBox, nsXULAtoms::curpos, 0) *
|
|
|
|
mOnePixel +
|
|
|
|
scrolledRect.x;
|
|
|
|
nscoord y = GetIntegerAttribute(mVScrollbarBox, nsXULAtoms::curpos, 0) *
|
|
|
|
mOnePixel +
|
|
|
|
scrolledRect.y;
|
|
|
|
|
|
|
|
// Make sure the scrollbars indeed moved before firing the event.
|
|
|
|
// I think it is OK to prevent the call to ScrollbarChanged()
|
|
|
|
// if we didn't actually move. The following check is the first
|
|
|
|
// thing ScrollbarChanged() does anyway, before deciding to move
|
|
|
|
// the scrollbars.
|
|
|
|
nscoord curPosX=0, curPosY=0;
|
|
|
|
nsIScrollableView* s = GetScrollableView();
|
|
|
|
if (s) {
|
|
|
|
s->GetScrollPosition(curPosX, curPosY);
|
|
|
|
if (x == curPosX && y == curPosY)
|
|
|
|
return;
|
1999-10-12 04:16:06 +04:00
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
PRBool isSmooth = aContent->HasAttr(kNameSpaceID_None, nsXULAtoms::smooth);
|
2002-09-26 01:29:33 +04:00
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
if (isSmooth) {
|
|
|
|
// Make sure an attribute-setting callback occurs even if the view
|
|
|
|
// didn't actually move yet. We need to make sure other listeners
|
|
|
|
// see that the scroll position is not (yet) what they thought it
|
|
|
|
// was.
|
|
|
|
|
|
|
|
NS_ASSERTION(!mFrameInitiatedScroll, "Unexpected reentry");
|
|
|
|
// Make sure we don't do anything in when the view calls us back
|
|
|
|
// for this scroll operation.
|
|
|
|
mFrameInitiatedScroll = PR_TRUE;
|
|
|
|
InternalScrollPositionDidChange(curPosX, curPosY);
|
|
|
|
mFrameInitiatedScroll = PR_FALSE;
|
2004-09-06 06:44:43 +04:00
|
|
|
}
|
2006-03-15 19:55:19 +03:00
|
|
|
ScrollbarChanged(mOuter->GetPresContext(), x, y, isSmooth ? NS_VMREFRESH_SMOOTHSCROLL : 0);
|
2004-09-06 06:44:43 +04:00
|
|
|
}
|
1999-10-12 04:16:06 +04:00
|
|
|
}
|
|
|
|
|
2005-08-22 03:37:13 +04:00
|
|
|
/* ============= Scroll events ========== */
|
2005-08-22 08:16:38 +04:00
|
|
|
PR_STATIC_CALLBACK(void*) HandleScrollEvent(PLEvent* aEvent)
|
2005-08-22 03:37:13 +04:00
|
|
|
{
|
|
|
|
NS_ASSERTION(nsnull != aEvent,"Event is null");
|
2005-08-22 08:16:38 +04:00
|
|
|
nsGfxScrollFrameInner* inner = NS_STATIC_CAST(nsGfxScrollFrameInner*, aEvent->owner);
|
|
|
|
inner->FireScrollEvent();
|
2005-08-22 03:37:13 +04:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2005-08-22 08:16:38 +04:00
|
|
|
PR_STATIC_CALLBACK(void) DestroyScrollEvent(PLEvent* aEvent)
|
2005-08-22 03:37:13 +04:00
|
|
|
{
|
|
|
|
NS_ASSERTION(nsnull != aEvent,"Event is null");
|
2005-08-22 08:16:38 +04:00
|
|
|
delete aEvent;
|
2005-08-22 03:37:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::FireScrollEvent()
|
|
|
|
{
|
|
|
|
mScrollEventQueue = nsnull;
|
2005-10-07 05:28:27 +04:00
|
|
|
|
2005-08-22 03:37:13 +04:00
|
|
|
nsScrollbarEvent event(PR_TRUE, NS_SCROLL_EVENT, nsnull);
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
2005-10-07 05:28:27 +04:00
|
|
|
nsIContent* content = mOuter->GetContent();
|
|
|
|
nsPresContext* prescontext = mOuter->GetPresContext();
|
|
|
|
// Fire viewport scroll events at the document (where they
|
|
|
|
// will bubble to the window)
|
|
|
|
if (mIsRoot) {
|
|
|
|
nsIDocument* doc = content->GetCurrentDoc();
|
|
|
|
if (doc) {
|
2006-03-07 20:08:51 +03:00
|
|
|
nsEventDispatcher::Dispatch(doc, prescontext, &event, nsnull, &status);
|
2005-10-07 05:28:27 +04:00
|
|
|
}
|
|
|
|
} else {
|
2006-03-07 20:08:51 +03:00
|
|
|
// scroll events fired at elements don't bubble (although scroll events
|
|
|
|
// fired at documents do, to the window)
|
|
|
|
event.flags |= NS_EVENT_FLAG_CANT_BUBBLE;
|
|
|
|
nsEventDispatcher::Dispatch(content, prescontext, &event, nsnull, &status);
|
2005-10-07 05:28:27 +04:00
|
|
|
}
|
2005-08-22 03:37:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::PostScrollEvent()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIEventQueueService> service = do_GetService(kEventQueueServiceCID);
|
|
|
|
NS_ASSERTION(service, "No event service");
|
|
|
|
nsCOMPtr<nsIEventQueue> eventQueue;
|
|
|
|
service->GetSpecialEventQueue(
|
|
|
|
nsIEventQueueService::UI_THREAD_EVENT_QUEUE, getter_AddRefs(eventQueue));
|
|
|
|
NS_ASSERTION(eventQueue, "Event queue is null");
|
|
|
|
|
|
|
|
if (eventQueue == mScrollEventQueue)
|
|
|
|
return;
|
|
|
|
|
2005-08-22 08:16:38 +04:00
|
|
|
PLEvent* ev = new PLEvent;
|
2005-08-22 03:37:13 +04:00
|
|
|
if (!ev)
|
|
|
|
return;
|
2005-08-22 08:16:38 +04:00
|
|
|
PL_InitEvent(ev, this, ::HandleScrollEvent, ::DestroyScrollEvent);
|
2005-08-22 03:37:13 +04:00
|
|
|
|
|
|
|
if (mScrollEventQueue) {
|
|
|
|
mScrollEventQueue->RevokeEvents(this);
|
|
|
|
}
|
|
|
|
eventQueue->PostEvent(ev);
|
|
|
|
mScrollEventQueue = eventQueue;
|
|
|
|
}
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
PRBool
|
|
|
|
nsXULScrollFrame::AddHorizontalScrollbar(nsBoxLayoutState& aState,
|
|
|
|
nsRect& aScrollAreaSize, PRBool aOnTop)
|
|
|
|
{
|
|
|
|
if (!mInner.mHScrollbarBox)
|
|
|
|
return PR_TRUE;
|
|
|
|
|
2001-12-18 01:51:39 +03:00
|
|
|
return AddRemoveScrollbar(aState, aScrollAreaSize, aOnTop, PR_TRUE, PR_TRUE);
|
2000-05-15 08:12:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2005-04-29 01:57:22 +04:00
|
|
|
nsXULScrollFrame::AddVerticalScrollbar(nsBoxLayoutState& aState,
|
|
|
|
nsRect& aScrollAreaSize, PRBool aOnRight)
|
2000-05-15 08:12:31 +04:00
|
|
|
{
|
2005-04-29 01:57:22 +04:00
|
|
|
if (!mInner.mVScrollbarBox)
|
2001-12-18 01:51:39 +03:00
|
|
|
return PR_TRUE;
|
|
|
|
|
|
|
|
return AddRemoveScrollbar(aState, aScrollAreaSize, aOnRight, PR_FALSE, PR_TRUE);
|
2000-05-15 08:12:31 +04:00
|
|
|
}
|
|
|
|
|
2004-03-11 02:52:01 +03:00
|
|
|
void
|
2005-04-29 01:57:22 +04:00
|
|
|
nsXULScrollFrame::RemoveHorizontalScrollbar(nsBoxLayoutState& aState,
|
|
|
|
nsRect& aScrollAreaSize, PRBool aOnTop)
|
2000-05-15 08:12:31 +04:00
|
|
|
{
|
2004-03-11 02:52:01 +03:00
|
|
|
// removing a scrollbar should always fit
|
|
|
|
#ifdef DEBUG
|
|
|
|
PRBool result =
|
|
|
|
#endif
|
|
|
|
AddRemoveScrollbar(aState, aScrollAreaSize, aOnTop, PR_TRUE, PR_FALSE);
|
|
|
|
NS_ASSERTION(result, "Removing horizontal scrollbar failed to fit??");
|
2000-05-15 08:12:31 +04:00
|
|
|
}
|
|
|
|
|
2004-03-11 02:52:01 +03:00
|
|
|
void
|
2005-04-29 01:57:22 +04:00
|
|
|
nsXULScrollFrame::RemoveVerticalScrollbar(nsBoxLayoutState& aState,
|
|
|
|
nsRect& aScrollAreaSize, PRBool aOnRight)
|
2000-05-15 08:12:31 +04:00
|
|
|
{
|
2004-03-11 02:52:01 +03:00
|
|
|
// removing a scrollbar should always fit
|
|
|
|
#ifdef DEBUG
|
|
|
|
PRBool result =
|
|
|
|
#endif
|
|
|
|
AddRemoveScrollbar(aState, aScrollAreaSize, aOnRight, PR_FALSE, PR_FALSE);
|
|
|
|
NS_ASSERTION(result, "Removing vertical scrollbar failed to fit??");
|
2000-05-15 08:12:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2005-04-29 01:57:22 +04:00
|
|
|
nsXULScrollFrame::AddRemoveScrollbar(nsBoxLayoutState& aState, nsRect& aScrollAreaSize,
|
|
|
|
PRBool aOnTop, PRBool aHorizontal, PRBool aAdd)
|
2000-05-15 08:12:31 +04:00
|
|
|
{
|
|
|
|
if (aHorizontal) {
|
2005-04-29 01:57:22 +04:00
|
|
|
if (mInner.mNeverHasHorizontalScrollbar || !mInner.mHScrollbarBox)
|
2000-05-15 08:12:31 +04:00
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
nsSize hSize;
|
2005-05-09 02:33:40 +04:00
|
|
|
mInner.mHScrollbarBox->GetPrefSize(aState, hSize);
|
2005-04-29 01:57:22 +04:00
|
|
|
nsBox::AddMargin(mInner.mHScrollbarBox, hSize);
|
2000-05-15 08:12:31 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.SetScrollbarVisibility(mInner.mHScrollbarBox, aAdd);
|
2000-05-15 08:12:31 +04:00
|
|
|
|
2001-12-15 02:13:08 +03:00
|
|
|
PRBool hasHorizontalScrollbar;
|
|
|
|
PRBool fit = AddRemoveScrollbar(hasHorizontalScrollbar, aScrollAreaSize.y, aScrollAreaSize.height, hSize.height, aOnTop, aAdd);
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.mHasHorizontalScrollbar = hasHorizontalScrollbar; // because mHasHorizontalScrollbar is a PRPackedBool
|
2000-05-15 08:12:31 +04:00
|
|
|
if (!fit)
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.SetScrollbarVisibility(mInner.mHScrollbarBox, !aAdd);
|
2000-05-15 08:12:31 +04:00
|
|
|
|
|
|
|
return fit;
|
|
|
|
} else {
|
2005-04-29 01:57:22 +04:00
|
|
|
if (mInner.mNeverHasVerticalScrollbar || !mInner.mVScrollbarBox)
|
2000-05-15 08:12:31 +04:00
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
nsSize vSize;
|
2005-05-09 02:33:40 +04:00
|
|
|
mInner.mVScrollbarBox->GetPrefSize(aState, vSize);
|
2005-04-29 01:57:22 +04:00
|
|
|
nsBox::AddMargin(mInner.mVScrollbarBox, vSize);
|
2000-05-15 08:12:31 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.SetScrollbarVisibility(mInner.mVScrollbarBox, aAdd);
|
2000-05-15 08:12:31 +04:00
|
|
|
|
2001-12-15 02:13:08 +03:00
|
|
|
PRBool hasVerticalScrollbar;
|
|
|
|
PRBool fit = AddRemoveScrollbar(hasVerticalScrollbar, aScrollAreaSize.x, aScrollAreaSize.width, vSize.width, aOnTop, aAdd);
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.mHasVerticalScrollbar = hasVerticalScrollbar; // because mHasVerticalScrollbar is a PRPackedBool
|
2000-05-15 08:12:31 +04:00
|
|
|
if (!fit)
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.SetScrollbarVisibility(mInner.mVScrollbarBox, !aAdd);
|
2000-05-15 08:12:31 +04:00
|
|
|
|
|
|
|
return fit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2005-04-29 01:57:22 +04:00
|
|
|
nsXULScrollFrame::AddRemoveScrollbar(PRBool& aHasScrollbar, nscoord& aXY,
|
|
|
|
nscoord& aSize, nscoord aSbSize,
|
|
|
|
PRBool aRightOrBottom, PRBool aAdd)
|
2000-05-15 08:12:31 +04:00
|
|
|
{
|
1999-10-12 04:16:06 +04:00
|
|
|
nscoord size = aSize;
|
2004-09-27 23:21:41 +04:00
|
|
|
nscoord xy = aXY;
|
1999-10-12 04:16:06 +04:00
|
|
|
|
|
|
|
if (size != NS_INTRINSICSIZE) {
|
2000-04-03 10:26:38 +04:00
|
|
|
if (aAdd) {
|
1999-10-12 04:16:06 +04:00
|
|
|
size -= aSbSize;
|
2000-05-15 08:12:31 +04:00
|
|
|
if (!aRightOrBottom && size >= 0)
|
2004-09-27 23:21:41 +04:00
|
|
|
xy += aSbSize;
|
2000-04-03 10:26:38 +04:00
|
|
|
} else {
|
1999-10-12 04:16:06 +04:00
|
|
|
size += aSbSize;
|
2000-04-03 10:26:38 +04:00
|
|
|
if (!aRightOrBottom)
|
2004-09-27 23:21:41 +04:00
|
|
|
xy -= aSbSize;
|
2000-04-03 10:26:38 +04:00
|
|
|
}
|
1999-10-12 04:16:06 +04:00
|
|
|
}
|
|
|
|
|
2000-05-15 08:12:31 +04:00
|
|
|
// not enough room? Yes? Return true.
|
2004-09-27 23:21:41 +04:00
|
|
|
if (size >= 0) {
|
1999-10-12 04:16:06 +04:00
|
|
|
aHasScrollbar = aAdd;
|
|
|
|
aSize = size;
|
2004-09-27 23:21:41 +04:00
|
|
|
aXY = xy;
|
2000-05-15 08:12:31 +04:00
|
|
|
return PR_TRUE;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
2002-08-21 12:56:58 +04:00
|
|
|
aHasScrollbar = PR_FALSE;
|
2000-05-15 08:12:31 +04:00
|
|
|
return PR_FALSE;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
2002-01-23 05:53:02 +03:00
|
|
|
/**
|
|
|
|
* When reflowing a HTML document where the content model is being created
|
|
|
|
* The nsGfxScrollFrame will get an Initial reflow when the body is opened by the content sink.
|
|
|
|
* But there isn't enough content to really reflow very much of the document
|
|
|
|
* so it never needs to do layout for the scrollbars
|
|
|
|
*
|
|
|
|
* So later other reflows happen and these are Incremental reflows, and then the scrollbars
|
|
|
|
* get reflowed. The important point here is that when they reflowed the ReflowState inside the
|
|
|
|
* BoxLayoutState contains an "Incremental" reason and never a "Initial" reason.
|
|
|
|
*
|
|
|
|
* When it reflows for Print Preview, the content model is already full constructed and it lays
|
|
|
|
* out the entire document at that time. When it returns back here it discovers it needs scrollbars
|
|
|
|
* and this is a problem because the ReflowState inside the BoxLayoutState still has a "Initial"
|
|
|
|
* reason and if it does a Layout it is essentially asking everything to reflow yet again with
|
|
|
|
* an "Initial" reason. This causes a lot of problems especially for tables.
|
|
|
|
*
|
|
|
|
* The solution for this is to change the ReflowState's reason from Initial to Resize and let
|
|
|
|
* all the frames do what is necessary for a resize refow. Now, we only need to do this when
|
|
|
|
* it is doing PrintPreview and we need only do it for HTML documents and NOT chrome.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void
|
2005-04-29 01:57:22 +04:00
|
|
|
nsXULScrollFrame::AdjustReflowStateForPrintPreview(nsBoxLayoutState& aState, PRBool& aSetBack)
|
2002-01-23 05:53:02 +03:00
|
|
|
{
|
|
|
|
aSetBack = PR_FALSE;
|
|
|
|
PRBool isChrome;
|
|
|
|
PRBool isInitialPP = nsBoxFrame::IsInitialReflowForPrintPreview(aState, isChrome);
|
|
|
|
if (isInitialPP && !isChrome) {
|
|
|
|
// I know you shouldn't, but we cast away the "const" here
|
|
|
|
nsHTMLReflowState* reflowState = (nsHTMLReflowState*)aState.GetReflowState();
|
|
|
|
reflowState->reason = eReflowReason_Resize;
|
|
|
|
aSetBack = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets reflow state back to Initial when we are done.
|
|
|
|
*/
|
|
|
|
void
|
2005-04-29 01:57:22 +04:00
|
|
|
nsXULScrollFrame::AdjustReflowStateBack(nsBoxLayoutState& aState, PRBool aSetBack)
|
2002-01-23 05:53:02 +03:00
|
|
|
{
|
|
|
|
// I know you shouldn't, but we cast away the "const" here
|
|
|
|
nsHTMLReflowState* reflowState = (nsHTMLReflowState*)aState.GetReflowState();
|
|
|
|
if (aSetBack && reflowState->reason == eReflowReason_Resize) {
|
|
|
|
reflowState->reason = eReflowReason_Initial;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-04 01:00:41 +04:00
|
|
|
void
|
2005-04-29 01:57:22 +04:00
|
|
|
nsXULScrollFrame::LayoutScrollArea(nsBoxLayoutState& aState, const nsRect& aRect)
|
2005-04-04 01:00:41 +04:00
|
|
|
{
|
2005-04-29 01:57:22 +04:00
|
|
|
nsIView* scrollView = mInner.mScrollableView->View();
|
2005-04-04 01:00:41 +04:00
|
|
|
nsIViewManager* vm = scrollView->GetViewManager();
|
|
|
|
vm->MoveViewTo(scrollView, aRect.x, aRect.y);
|
|
|
|
vm->ResizeView(scrollView, nsRect(nsPoint(0, 0), aRect.Size()), PR_TRUE);
|
|
|
|
|
|
|
|
PRUint32 oldflags = aState.LayoutFlags();
|
2006-03-09 21:46:14 +03:00
|
|
|
nsPoint childOffset =
|
|
|
|
mInner.mScrolledFrame->GetView()->GetOffsetTo(GetView());
|
|
|
|
nsRect childRect = nsRect(childOffset, aRect.Size());
|
2005-04-04 01:00:41 +04:00
|
|
|
|
|
|
|
PRInt32 flags = NS_FRAME_NO_MOVE_VIEW;
|
|
|
|
|
2005-08-22 04:22:41 +04:00
|
|
|
nsSize minSize(0,0);
|
|
|
|
mInner.mScrolledFrame->GetMinSize(aState, minSize);
|
2005-04-29 01:57:22 +04:00
|
|
|
|
2005-08-22 04:22:41 +04:00
|
|
|
if (minSize.height > childRect.height)
|
|
|
|
childRect.height = minSize.height;
|
2005-04-29 01:57:22 +04:00
|
|
|
|
2005-08-22 04:22:41 +04:00
|
|
|
if (minSize.width > childRect.width)
|
|
|
|
childRect.width = minSize.width;
|
2005-04-04 01:00:41 +04:00
|
|
|
|
|
|
|
aState.SetLayoutFlags(flags);
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.mScrolledFrame->SetBounds(aState, childRect);
|
|
|
|
mInner.mScrolledFrame->Layout(aState);
|
2005-04-04 01:00:41 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
childRect = mInner.mScrolledFrame->GetRect();
|
2005-04-04 01:00:41 +04:00
|
|
|
|
|
|
|
if (childRect.width < aRect.width || childRect.height < aRect.height)
|
|
|
|
{
|
|
|
|
childRect.width = PR_MAX(childRect.width, aRect.width);
|
|
|
|
childRect.height = PR_MAX(childRect.height, aRect.height);
|
|
|
|
|
|
|
|
// remove overflow area when we update the bounds,
|
|
|
|
// because we've already accounted for it
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.mScrolledFrame->SetBounds(aState, childRect, PR_TRUE);
|
2005-04-04 01:00:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
aState.SetLayoutFlags(oldflags);
|
|
|
|
|
2005-08-31 04:57:27 +04:00
|
|
|
mInner.PostOverflowEvents();
|
|
|
|
}
|
2005-04-04 01:00:41 +04:00
|
|
|
|
2005-08-31 04:57:27 +04:00
|
|
|
void nsGfxScrollFrameInner::PostOverflowEvents()
|
|
|
|
{
|
|
|
|
nsSize childSize = mScrolledFrame->GetSize();
|
2006-03-15 19:55:19 +03:00
|
|
|
nsSize scrollportSize = GetScrollPortSize();
|
2005-08-31 04:57:27 +04:00
|
|
|
|
|
|
|
PRBool newVerticalOverflow = childSize.height > scrollportSize.height;
|
|
|
|
PRBool vertChanged = mVerticalOverflow != newVerticalOverflow;
|
|
|
|
mVerticalOverflow = newVerticalOverflow;
|
2005-04-04 01:00:41 +04:00
|
|
|
|
2005-08-31 04:57:27 +04:00
|
|
|
PRBool newHorizontalOverflow = childSize.width > scrollportSize.width;
|
|
|
|
PRBool horizChanged = mHorizontalOverflow != newHorizontalOverflow;
|
|
|
|
mHorizontalOverflow = newHorizontalOverflow;
|
2005-04-04 01:00:41 +04:00
|
|
|
|
2005-08-31 04:57:27 +04:00
|
|
|
if (vertChanged) {
|
|
|
|
if (horizChanged) {
|
|
|
|
if (mVerticalOverflow == mHorizontalOverflow) {
|
2005-04-04 01:00:41 +04:00
|
|
|
// both either overflowed or underflowed. 1 event
|
2005-08-31 04:57:27 +04:00
|
|
|
PostScrollPortEvent(mVerticalOverflow, nsScrollPortEvent::both);
|
2005-04-04 01:00:41 +04:00
|
|
|
} else {
|
|
|
|
// one overflowed and one underflowed
|
2005-08-31 04:57:27 +04:00
|
|
|
PostScrollPortEvent(mVerticalOverflow, nsScrollPortEvent::vertical);
|
|
|
|
PostScrollPortEvent(mHorizontalOverflow, nsScrollPortEvent::horizontal);
|
2005-04-04 01:00:41 +04:00
|
|
|
}
|
2005-08-31 04:57:27 +04:00
|
|
|
} else {
|
|
|
|
PostScrollPortEvent(mVerticalOverflow, nsScrollPortEvent::vertical);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (horizChanged) {
|
|
|
|
PostScrollPortEvent(mHorizontalOverflow, nsScrollPortEvent::horizontal);
|
|
|
|
}
|
2005-04-04 01:00:41 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
PRBool
|
2006-03-15 19:55:19 +03:00
|
|
|
nsGfxScrollFrameInner::IsLTR() const
|
2005-04-29 01:57:22 +04:00
|
|
|
{
|
|
|
|
//TODO make bidi code set these from preferences
|
2006-03-15 19:55:19 +03:00
|
|
|
|
|
|
|
nsIFrame *frame = mOuter;
|
|
|
|
// XXX This is a bit on the slow side.
|
|
|
|
if (mIsRoot) {
|
|
|
|
// If we're the root scrollframe, we need the root element's style data.
|
|
|
|
nsPresContext *presContext = mOuter->GetPresContext();
|
|
|
|
nsIDocument *document = presContext->GetDocument();
|
|
|
|
nsIContent *root = document->GetRootContent();
|
|
|
|
|
|
|
|
// But for HTML we want the body element.
|
|
|
|
nsCOMPtr<nsIDOMHTMLDocument> htmlDoc = do_QueryInterface(document);
|
|
|
|
if (htmlDoc && !document->IsCaseSensitive()) { // HTML, not XHTML
|
|
|
|
nsCOMPtr<nsIDOMHTMLElement> body;
|
|
|
|
htmlDoc->GetBody(getter_AddRefs(body));
|
|
|
|
nsCOMPtr<nsIContent> bodyContent = do_QueryInterface(body);
|
|
|
|
if (bodyContent)
|
|
|
|
root = bodyContent; // we can trust the document to hold on to it
|
|
|
|
}
|
|
|
|
|
|
|
|
if (root) {
|
|
|
|
nsIFrame *rootsFrame =
|
|
|
|
presContext->PresShell()->GetPrimaryFrameFor(root);
|
|
|
|
if (rootsFrame)
|
|
|
|
frame = rootsFrame;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return frame->GetStyleVisibility()->mDirection != NS_STYLE_DIRECTION_RTL;
|
2005-04-29 01:57:22 +04:00
|
|
|
}
|
|
|
|
|
1999-08-20 02:16:23 +04:00
|
|
|
/**
|
|
|
|
* Reflow the scroll area if it needs it and return its size. Also determine if the reflow will
|
|
|
|
* cause any of the scrollbars to need to be reflowed.
|
|
|
|
*/
|
2000-03-31 11:02:06 +04:00
|
|
|
nsresult
|
2005-04-29 01:57:22 +04:00
|
|
|
nsXULScrollFrame::Layout(nsBoxLayoutState& aState)
|
1999-08-20 02:16:23 +04:00
|
|
|
{
|
2005-04-29 01:57:22 +04:00
|
|
|
PRBool scrollbarRight = mInner.IsScrollbarOnRight();
|
|
|
|
PRBool scrollbarBottom = PR_TRUE;
|
2001-04-12 03:04:11 +04:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
// get the content rect
|
|
|
|
nsRect clientRect(0,0,0,0);
|
2005-04-29 01:57:22 +04:00
|
|
|
GetClientRect(clientRect);
|
2000-03-31 11:02:06 +04:00
|
|
|
|
|
|
|
// the scroll area size starts off as big as our content area
|
|
|
|
nsRect scrollAreaRect(clientRect);
|
|
|
|
|
2004-03-11 02:52:01 +03:00
|
|
|
/**************
|
|
|
|
Our basic strategy here is to first try laying out the content with
|
|
|
|
the scrollbars in their current state. We're hoping that that will
|
|
|
|
just "work"; the content will overflow wherever there's a scrollbar
|
|
|
|
already visible. If that does work, then there's no need to lay out
|
|
|
|
the scrollarea. Otherwise we fix up the scrollbars; first we add a
|
|
|
|
vertical one to scroll the content if necessary, or remove it if
|
|
|
|
it's not needed. Then we reflow the content if the scrollbar
|
|
|
|
changed. Then we add a horizontal scrollbar if necessary (or
|
|
|
|
remove if not needed), and if that changed, we reflow the content
|
|
|
|
again. At this point, any scrollbars that are needed to scroll the
|
|
|
|
content have been added.
|
|
|
|
|
|
|
|
In the second phase we check to see if any scrollbars are too small
|
|
|
|
to display, and if so, we remove them. We check the horizontal
|
|
|
|
scrollbar first; removing it might make room for the vertical
|
|
|
|
scrollbar, and if we have room for just one scrollbar we'll save
|
|
|
|
the vertical one.
|
|
|
|
|
|
|
|
Finally we position and size the scrollbars and scrollcorner (the
|
|
|
|
square that is needed in the corner of the window when two
|
|
|
|
scrollbars are visible), and reflow any fixed position views
|
|
|
|
(if we're the viewport and we added or removed a scrollbar).
|
|
|
|
**************/
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
ScrollbarStyles styles = GetScrollbarStyles();
|
2003-05-22 05:46:13 +04:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
// Look at our style do we always have vertical or horizontal scrollbars?
|
2003-05-22 05:46:13 +04:00
|
|
|
if (styles.mHorizontal == NS_STYLE_OVERFLOW_SCROLL)
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.mHasHorizontalScrollbar = PR_TRUE;
|
2003-05-22 05:46:13 +04:00
|
|
|
if (styles.mVertical == NS_STYLE_OVERFLOW_SCROLL)
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.mHasVerticalScrollbar = PR_TRUE;
|
2000-03-31 11:02:06 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
if (mInner.mHasHorizontalScrollbar)
|
|
|
|
AddHorizontalScrollbar(aState, scrollAreaRect, scrollbarBottom);
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
if (mInner.mHasVerticalScrollbar)
|
|
|
|
AddVerticalScrollbar(aState, scrollAreaRect, scrollbarRight);
|
2000-05-15 08:12:31 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
nsRect oldScrollAreaBounds = mInner.mScrollableView->View()->GetBounds();
|
1) implememted box reflow coelescing.
2) implemented gfx scrollbars for list boxes
3) fixed progess meter to be an animated gif
4) fixed bugs 23521, 24721, 19114, 20546, 24385, 24457, 23156, 20226, 22543
-r hyatt, troy, rod
2000-02-10 01:02:40 +03:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
// layout our the scroll area
|
2005-04-04 01:00:41 +04:00
|
|
|
LayoutScrollArea(aState, scrollAreaRect);
|
2000-03-31 11:02:06 +04:00
|
|
|
|
|
|
|
// now look at the content area and see if we need scrollbars or not
|
|
|
|
PRBool needsLayout = PR_FALSE;
|
2006-03-15 19:55:19 +03:00
|
|
|
|
|
|
|
nsRect scrolledRect = mInner.GetScrolledRect(scrollAreaRect.Size());
|
|
|
|
nsSize scrolledContentSize(scrolledRect.XMost(), scrolledRect.YMost());
|
2000-03-31 11:02:06 +04:00
|
|
|
|
|
|
|
// if we have 'auto' scrollbars look at the vertical case
|
2003-05-22 05:46:13 +04:00
|
|
|
if (styles.mVertical != NS_STYLE_OVERFLOW_SCROLL) {
|
2000-03-31 11:02:06 +04:00
|
|
|
// There are two cases to consider
|
|
|
|
if (scrolledContentSize.height <= scrollAreaRect.height
|
2003-05-22 05:46:13 +04:00
|
|
|
|| styles.mVertical != NS_STYLE_OVERFLOW_AUTO) {
|
2005-04-29 01:57:22 +04:00
|
|
|
if (mInner.mHasVerticalScrollbar) {
|
2000-03-31 11:02:06 +04:00
|
|
|
// We left room for the vertical scrollbar, but it's not needed;
|
|
|
|
// remove it.
|
2005-04-29 01:57:22 +04:00
|
|
|
RemoveVerticalScrollbar(aState, scrollAreaRect, scrollbarRight);
|
2004-03-11 02:52:01 +03:00
|
|
|
needsLayout = PR_TRUE;
|
2000-03-31 11:02:06 +04:00
|
|
|
}
|
|
|
|
} else {
|
2005-04-29 01:57:22 +04:00
|
|
|
if (!mInner.mHasVerticalScrollbar) {
|
2000-03-31 11:02:06 +04:00
|
|
|
// We didn't leave room for the vertical scrollbar, but it turns
|
|
|
|
// out we needed it
|
2005-04-29 01:57:22 +04:00
|
|
|
if (AddVerticalScrollbar(aState, scrollAreaRect, scrollbarRight))
|
2000-03-31 11:02:06 +04:00
|
|
|
needsLayout = PR_TRUE;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
2000-03-31 11:02:06 +04:00
|
|
|
}
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
// ok layout at the right size
|
|
|
|
if (needsLayout) {
|
|
|
|
nsBoxLayoutState resizeState(aState);
|
|
|
|
resizeState.SetLayoutReason(nsBoxLayoutState::Resize);
|
2002-01-23 05:53:02 +03:00
|
|
|
PRBool setBack;
|
|
|
|
AdjustReflowStateForPrintPreview(aState, setBack);
|
2005-04-04 01:00:41 +04:00
|
|
|
LayoutScrollArea(resizeState, scrollAreaRect);
|
2002-01-23 05:53:02 +03:00
|
|
|
AdjustReflowStateBack(aState, setBack);
|
2000-05-15 08:12:31 +04:00
|
|
|
needsLayout = PR_FALSE;
|
2000-03-31 11:02:06 +04:00
|
|
|
}
|
|
|
|
}
|
1999-08-20 02:16:23 +04:00
|
|
|
|
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
// if scrollbars are auto look at the horizontal case
|
2003-05-22 05:46:13 +04:00
|
|
|
if (styles.mHorizontal != NS_STYLE_OVERFLOW_SCROLL)
|
2000-03-31 11:02:06 +04:00
|
|
|
{
|
|
|
|
// if the child is wider that the scroll area
|
|
|
|
// and we don't have a scrollbar add one.
|
|
|
|
if (scrolledContentSize.width > scrollAreaRect.width
|
2003-05-22 05:46:13 +04:00
|
|
|
&& styles.mHorizontal == NS_STYLE_OVERFLOW_AUTO) {
|
2000-03-31 11:02:06 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
if (!mInner.mHasHorizontalScrollbar) {
|
2000-05-15 08:12:31 +04:00
|
|
|
// no scrollbar?
|
2005-04-29 01:57:22 +04:00
|
|
|
if (AddHorizontalScrollbar(aState, scrollAreaRect, scrollbarBottom))
|
2000-03-31 11:02:06 +04:00
|
|
|
needsLayout = PR_TRUE;
|
2000-05-15 08:12:31 +04:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
// if we added a horizonal scrollbar and we did not have a vertical
|
|
|
|
// there is a chance that by adding the horizonal scrollbar we will
|
|
|
|
// suddenly need a vertical scrollbar. Is a special case but its
|
|
|
|
// important.
|
2000-04-27 01:01:57 +04:00
|
|
|
//if (!mHasVerticalScrollbar && scrolledContentSize.height > scrollAreaRect.height - sbSize.height)
|
2000-10-29 02:17:53 +04:00
|
|
|
// printf("****Gfx Scrollbar Special case hit!!*****\n");
|
2000-04-03 10:26:38 +04:00
|
|
|
|
1) implememted box reflow coelescing.
2) implemented gfx scrollbars for list boxes
3) fixed progess meter to be an animated gif
4) fixed bugs 23521, 24721, 19114, 20546, 24385, 24457, 23156, 20226, 22543
-r hyatt, troy, rod
2000-02-10 01:02:40 +03:00
|
|
|
}
|
2000-03-31 11:02:06 +04:00
|
|
|
} else {
|
|
|
|
// if the area is smaller or equal to and we have a scrollbar then
|
|
|
|
// remove it.
|
2005-04-29 01:57:22 +04:00
|
|
|
if (mInner.mHasHorizontalScrollbar) {
|
|
|
|
RemoveHorizontalScrollbar(aState, scrollAreaRect, scrollbarBottom);
|
2004-03-11 02:52:01 +03:00
|
|
|
needsLayout = PR_TRUE;
|
2000-03-31 11:02:06 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
// we only need to set the rect. The inner child stays the same size.
|
|
|
|
if (needsLayout) {
|
|
|
|
nsBoxLayoutState resizeState(aState);
|
|
|
|
resizeState.SetLayoutReason(nsBoxLayoutState::Resize);
|
2002-01-23 05:53:02 +03:00
|
|
|
PRBool setBack;
|
|
|
|
AdjustReflowStateForPrintPreview(aState, setBack);
|
2005-04-04 01:00:41 +04:00
|
|
|
LayoutScrollArea(resizeState, scrollAreaRect);
|
2002-01-23 05:53:02 +03:00
|
|
|
AdjustReflowStateBack(aState, setBack);
|
2000-05-15 08:12:31 +04:00
|
|
|
needsLayout = PR_FALSE;
|
1999-11-19 18:33:29 +03:00
|
|
|
}
|
2000-03-31 11:02:06 +04:00
|
|
|
|
2004-03-11 02:52:01 +03:00
|
|
|
// get the preferred size of the scrollbars
|
2005-04-29 01:57:22 +04:00
|
|
|
nsSize hMinSize(0, 0);
|
|
|
|
if (mInner.mHScrollbarBox && mInner.mHasHorizontalScrollbar) {
|
2005-05-09 02:33:40 +04:00
|
|
|
GetScrollbarMetrics(aState, mInner.mHScrollbarBox, &hMinSize, nsnull, PR_FALSE);
|
2004-03-11 02:52:01 +03:00
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
nsSize vMinSize(0, 0);
|
|
|
|
if (mInner.mVScrollbarBox && mInner.mHasVerticalScrollbar) {
|
2005-05-09 02:33:40 +04:00
|
|
|
GetScrollbarMetrics(aState, mInner.mVScrollbarBox, &vMinSize, nsnull, PR_TRUE);
|
2004-03-11 02:52:01 +03:00
|
|
|
}
|
2000-03-31 11:02:06 +04:00
|
|
|
|
2004-03-11 02:52:01 +03:00
|
|
|
// Disable scrollbars that are too small
|
|
|
|
// Disable horizontal scrollbar first. If we have to disable only one
|
|
|
|
// scrollbar, we'd rather keep the vertical scrollbar.
|
2004-03-12 06:35:53 +03:00
|
|
|
// Note that we always give horizontal scrollbars their preferred height,
|
|
|
|
// never their min-height. So check that there's room for the preferred height.
|
2005-04-29 01:57:22 +04:00
|
|
|
if (mInner.mHasHorizontalScrollbar &&
|
|
|
|
(hMinSize.width > clientRect.width - vMinSize.width
|
|
|
|
|| hMinSize.height > clientRect.height)) {
|
|
|
|
RemoveHorizontalScrollbar(aState, scrollAreaRect, scrollbarBottom);
|
2004-03-11 02:52:01 +03:00
|
|
|
needsLayout = PR_TRUE;
|
|
|
|
}
|
|
|
|
// Now disable vertical scrollbar if necessary
|
2005-04-29 01:57:22 +04:00
|
|
|
if (mInner.mHasVerticalScrollbar &&
|
|
|
|
(vMinSize.height > clientRect.height - hMinSize.height
|
|
|
|
|| vMinSize.width > clientRect.width)) {
|
|
|
|
RemoveVerticalScrollbar(aState, scrollAreaRect, scrollbarRight);
|
2004-03-11 02:52:01 +03:00
|
|
|
needsLayout = PR_TRUE;
|
2000-04-25 11:10:48 +04:00
|
|
|
}
|
2000-03-31 11:02:06 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
// we only need to set the rect. The inner child stays the same size.
|
|
|
|
if (needsLayout) {
|
|
|
|
nsBoxLayoutState resizeState(aState);
|
|
|
|
resizeState.SetLayoutReason(nsBoxLayoutState::Resize);
|
|
|
|
LayoutScrollArea(resizeState, scrollAreaRect);
|
|
|
|
}
|
|
|
|
|
2005-07-26 03:23:53 +04:00
|
|
|
if (!mInner.mSupppressScrollbarUpdate) {
|
|
|
|
mInner.LayoutScrollbars(aState, clientRect, oldScrollAreaBounds, scrollAreaRect);
|
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
mInner.ScrollToRestoredPosition();
|
2005-08-25 04:10:37 +04:00
|
|
|
if (aState.GetReflowState()->reason != eReflowReason_Initial) {
|
|
|
|
mInner.mHadNonInitialReflow = PR_TRUE;
|
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::LayoutScrollbars(nsBoxLayoutState& aState,
|
|
|
|
const nsRect& aContentArea,
|
|
|
|
const nsRect& aOldScrollArea,
|
|
|
|
const nsRect& aScrollArea)
|
|
|
|
{
|
2005-07-26 03:23:53 +04:00
|
|
|
NS_ASSERTION(!mSupppressScrollbarUpdate,
|
|
|
|
"This should have been suppressed");
|
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
nsPresContext* presContext = aState.PresContext();
|
|
|
|
mOnePixel = presContext->IntScaledPixelsToTwips(1);
|
|
|
|
const nsStyleFont* font = mOuter->GetStyleFont();
|
|
|
|
const nsFont& f = font->mFont;
|
|
|
|
nsCOMPtr<nsIFontMetrics> fm = presContext->GetMetricsFor(f);
|
|
|
|
nscoord fontHeight = 1;
|
|
|
|
NS_ASSERTION(fm,"FontMetrics is null assuming fontHeight == 1");
|
|
|
|
if (fm)
|
|
|
|
fm->GetHeight(fontHeight);
|
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
nsRect scrolledContentRect = GetScrolledRect(aScrollArea.Size());
|
2005-04-29 01:57:22 +04:00
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
nscoord minX = scrolledContentRect.x;
|
|
|
|
nscoord maxX = scrolledContentRect.XMost() - aScrollArea.width;
|
|
|
|
|
|
|
|
nscoord minY = scrolledContentRect.y;
|
|
|
|
nscoord maxY = scrolledContentRect.YMost() - aScrollArea.height;
|
2000-04-03 10:26:38 +04:00
|
|
|
|
2004-05-05 06:32:27 +04:00
|
|
|
nsIScrollableView* scrollable = GetScrollableView();
|
2004-03-11 02:52:01 +03:00
|
|
|
scrollable->SetLineHeight(fontHeight);
|
2000-03-31 11:02:06 +04:00
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
// Suppress handling of the curpos attribute changes we make here.
|
|
|
|
PRBool oldFrameInitiatedScroll = mFrameInitiatedScroll;
|
|
|
|
mFrameInitiatedScroll = PR_TRUE;
|
|
|
|
|
2004-03-11 02:52:01 +03:00
|
|
|
if (mVScrollbarBox) {
|
2005-10-05 03:49:39 +04:00
|
|
|
NS_PRECONDITION(mVScrollbarBox->IsBoxFrame(), "Must be a box frame!");
|
2006-03-15 19:55:19 +03:00
|
|
|
nscoord curPosX, curPosY;
|
|
|
|
scrollable->GetScrollPosition(curPosX, curPosY);
|
|
|
|
// Scrollbars assume zero is the minimum position, so translate for them.
|
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::curpos, curPosY - minY);
|
|
|
|
SetScrollbarEnabled(mVScrollbarBox, maxY - minY);
|
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::maxpos, maxY - minY);
|
2005-04-29 01:57:22 +04:00
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::pageincrement, nscoord(aScrollArea.height - fontHeight));
|
2002-09-19 02:38:23 +04:00
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::increment, fontHeight);
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
nsRect vRect(aScrollArea);
|
|
|
|
vRect.width = aContentArea.width - aScrollArea.width;
|
|
|
|
vRect.x = IsScrollbarOnRight() ? aScrollArea.XMost() : aContentArea.x;
|
2004-03-11 02:52:01 +03:00
|
|
|
nsMargin margin;
|
|
|
|
mVScrollbarBox->GetMargin(margin);
|
|
|
|
vRect.Deflate(margin);
|
2005-04-29 01:57:22 +04:00
|
|
|
nsBoxFrame::LayoutChildAt(aState, mVScrollbarBox, vRect);
|
2000-08-04 02:42:36 +04:00
|
|
|
}
|
2004-03-11 02:52:01 +03:00
|
|
|
|
|
|
|
if (mHScrollbarBox) {
|
2005-10-05 03:49:39 +04:00
|
|
|
NS_PRECONDITION(mHScrollbarBox->IsBoxFrame(), "Must be a box frame!");
|
2006-03-15 19:55:19 +03:00
|
|
|
nscoord curPosX, curPosY;
|
|
|
|
scrollable->GetScrollPosition(curPosX, curPosY);
|
|
|
|
// Scrollbars assume zero is the minimum position, so translate for them.
|
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::curpos, curPosX - minX);
|
|
|
|
SetScrollbarEnabled(mHScrollbarBox, maxX - minX);
|
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::maxpos, maxX - minX);
|
2005-04-29 01:57:22 +04:00
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::pageincrement, nscoord(float(aScrollArea.width)*0.8));
|
2002-09-20 18:50:43 +04:00
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::increment, 10*mOnePixel);
|
2000-04-25 11:10:48 +04:00
|
|
|
|
2005-04-29 01:57:22 +04:00
|
|
|
nsRect hRect(aScrollArea);
|
|
|
|
hRect.height = aContentArea.height - aScrollArea.height;
|
|
|
|
hRect.y = PR_TRUE ? aScrollArea.YMost() : aContentArea.y;
|
2004-03-11 02:52:01 +03:00
|
|
|
nsMargin margin;
|
|
|
|
mHScrollbarBox->GetMargin(margin);
|
|
|
|
hRect.Deflate(margin);
|
2005-04-29 01:57:22 +04:00
|
|
|
nsBoxFrame::LayoutChildAt(aState, mHScrollbarBox, hRect);
|
2000-05-15 08:12:31 +04:00
|
|
|
}
|
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
mFrameInitiatedScroll = oldFrameInitiatedScroll;
|
|
|
|
// We used to rely on the curpos attribute changes above to scroll the
|
|
|
|
// view. However, for scrolling to the left of the viewport, we
|
|
|
|
// rescale the curpos attribute, which means that operations like
|
|
|
|
// resizing the window while it is scrolled all the way to the left
|
|
|
|
// hold the curpos attribute constant at 0 while still requiring
|
|
|
|
// scrolling. So we suppress the effect of the changes above with
|
|
|
|
// mFrameInitiatedScroll and call CurPosAttributeChanged here.
|
|
|
|
// (It actually even works some of the time without this, thanks to
|
|
|
|
// nsSliderFrame::AttributeChanged's handling of maxpos, but not when
|
|
|
|
// we hide the scrollbar on a large size change, such as
|
|
|
|
// maximization.)
|
|
|
|
if (mHScrollbarBox || mVScrollbarBox)
|
|
|
|
CurPosAttributeChanged(mVScrollbarBox ? mVScrollbarBox->GetContent()
|
|
|
|
: mHScrollbarBox->GetContent());
|
|
|
|
|
2003-11-21 13:45:24 +03:00
|
|
|
// place the scrollcorner
|
|
|
|
if (mScrollCornerBox) {
|
2005-10-05 03:49:39 +04:00
|
|
|
NS_PRECONDITION(mScrollCornerBox->IsBoxFrame(), "Must be a box frame!");
|
2003-11-21 13:45:24 +03:00
|
|
|
nsRect r(0, 0, 0, 0);
|
2005-04-29 01:57:22 +04:00
|
|
|
if (aContentArea.x != aScrollArea.x) {
|
2003-11-21 13:45:24 +03:00
|
|
|
// scrollbar (if any) on left
|
2005-04-29 01:57:22 +04:00
|
|
|
r.x = aContentArea.x;
|
|
|
|
r.width = aScrollArea.x - aContentArea.x;
|
2003-11-21 13:45:24 +03:00
|
|
|
NS_ASSERTION(r.width >= 0, "Scroll area should be inside client rect");
|
|
|
|
} else {
|
|
|
|
// scrollbar (if any) on right
|
2005-04-29 01:57:22 +04:00
|
|
|
r.x = aScrollArea.XMost();
|
|
|
|
r.width = aContentArea.XMost() - aScrollArea.XMost();
|
2003-11-21 13:45:24 +03:00
|
|
|
NS_ASSERTION(r.width >= 0, "Scroll area should be inside client rect");
|
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
if (aContentArea.y != aScrollArea.y) {
|
2003-11-21 13:45:24 +03:00
|
|
|
// scrollbar (if any) on top
|
2005-04-29 01:57:22 +04:00
|
|
|
r.y = aContentArea.y;
|
|
|
|
r.height = aScrollArea.y - aContentArea.y;
|
2003-11-21 13:45:24 +03:00
|
|
|
NS_ASSERTION(r.height >= 0, "Scroll area should be inside client rect");
|
|
|
|
} else {
|
|
|
|
// scrollbar (if any) on bottom
|
2005-04-29 01:57:22 +04:00
|
|
|
r.y = aScrollArea.YMost();
|
|
|
|
r.height = aContentArea.YMost() - aScrollArea.YMost();
|
2003-11-21 13:45:24 +03:00
|
|
|
NS_ASSERTION(r.height >= 0, "Scroll area should be inside client rect");
|
|
|
|
}
|
2005-04-29 01:57:22 +04:00
|
|
|
nsBoxFrame::LayoutChildAt(aState, mScrollCornerBox, r);
|
2003-11-21 13:45:24 +03:00
|
|
|
}
|
|
|
|
|
2001-04-17 05:45:38 +04:00
|
|
|
// may need to update fixed position children of the viewport,
|
|
|
|
// if the client area changed size because of some dirty reflow
|
|
|
|
// (if the reflow is initial or resize, the fixed children will
|
|
|
|
// be re-laid out anyway)
|
2005-04-29 01:57:22 +04:00
|
|
|
if (aOldScrollArea.Size() != aScrollArea.Size()
|
2005-05-31 22:30:27 +04:00
|
|
|
&& nsBoxLayoutState::Dirty == aState.LayoutReason() &&
|
2005-06-16 06:57:23 +04:00
|
|
|
mIsRoot) {
|
2005-05-31 22:30:27 +04:00
|
|
|
// Usually there are no fixed children, so don't do anything unless there's
|
|
|
|
// at least one fixed child
|
2003-06-29 07:43:05 +04:00
|
|
|
nsIFrame* parentFrame = mOuter->GetParent();
|
2005-05-31 22:30:27 +04:00
|
|
|
if (parentFrame->GetFirstChild(nsLayoutAtoms::fixedList)) {
|
|
|
|
// force a reflow of the fixed children
|
|
|
|
mOuter->GetPresContext()->PresShell()->
|
|
|
|
AppendReflowCommand(parentFrame, eReflowType_UserDefined,
|
|
|
|
nsLayoutAtoms::fixedList);
|
2001-04-17 05:45:38 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-08-20 02:16:23 +04:00
|
|
|
|
|
|
|
void
|
2004-08-01 03:15:21 +04:00
|
|
|
nsGfxScrollFrameInner::ScrollbarChanged(nsPresContext* aPresContext, nscoord aX, nscoord aY, PRUint32 aFlags)
|
1999-08-20 02:16:23 +04:00
|
|
|
{
|
2004-05-05 06:32:27 +04:00
|
|
|
nsIScrollableView* scrollable = GetScrollableView();
|
2003-03-24 08:29:45 +03:00
|
|
|
scrollable->ScrollTo(aX, aY, aFlags);
|
2000-10-29 02:17:53 +04:00
|
|
|
// printf("scrolling to: %d, %d\n", aX, aY);
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
2004-09-22 10:33:36 +04:00
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::SetScrollbarEnabled(nsIBox* aBox, nscoord aMaxPos, PRBool aReflow)
|
|
|
|
{
|
|
|
|
mOuter->GetPresContext()->PresShell()->PostAttributeChange(
|
2004-09-28 22:37:50 +04:00
|
|
|
aBox->GetContent(),
|
2004-09-22 10:33:36 +04:00
|
|
|
kNameSpaceID_None,
|
|
|
|
nsHTMLAtoms::disabled,
|
|
|
|
NS_LITERAL_STRING("true"),
|
|
|
|
aReflow,
|
|
|
|
aMaxPos ? eChangeType_Remove : eChangeType_Set);
|
|
|
|
}
|
|
|
|
|
1) implememted box reflow coelescing.
2) implemented gfx scrollbars for list boxes
3) fixed progess meter to be an animated gif
4) fixed bugs 23521, 24721, 19114, 20546, 24385, 24457, 23156, 20226, 22543
-r hyatt, troy, rod
2000-02-10 01:02:40 +03:00
|
|
|
/**
|
|
|
|
* Returns whether it actually needed to change the attribute
|
|
|
|
*/
|
|
|
|
PRBool
|
2000-03-31 11:02:06 +04:00
|
|
|
nsGfxScrollFrameInner::SetAttribute(nsIBox* aBox, nsIAtom* aAtom, nscoord aSize, PRBool aReflow)
|
1999-08-20 02:16:23 +04:00
|
|
|
{
|
|
|
|
// convert to pixels
|
|
|
|
aSize /= mOnePixel;
|
|
|
|
|
1999-10-12 04:16:06 +04:00
|
|
|
// only set the attribute if it changed.
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2006-03-22 10:10:31 +03:00
|
|
|
nsIContent *content = aBox->GetContent();
|
1) implememted box reflow coelescing.
2) implemented gfx scrollbars for list boxes
3) fixed progess meter to be an animated gif
4) fixed bugs 23521, 24721, 19114, 20546, 24385, 24457, 23156, 20226, 22543
-r hyatt, troy, rod
2000-02-10 01:02:40 +03:00
|
|
|
|
2006-03-22 10:10:31 +03:00
|
|
|
nsAutoString oldValue;
|
|
|
|
content->GetAttr(kNameSpaceID_None, aAtom, oldValue);
|
|
|
|
|
|
|
|
nsAutoString newValue;
|
|
|
|
newValue.AppendInt(aSize);
|
|
|
|
|
|
|
|
if (oldValue == newValue)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
content->SetAttr(kNameSpaceID_None, aAtom, newValue, aReflow);
|
|
|
|
return PR_TRUE;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
nsRect
|
|
|
|
nsGfxScrollFrameInner::GetScrolledRect(const nsSize& aScrollPortSize) const
|
2000-07-08 02:24:06 +04:00
|
|
|
{
|
2006-03-15 19:55:19 +03:00
|
|
|
nsRect result = mScrolledFrame->GetOverflowRect();
|
|
|
|
nscoord x1 = result.x, x2 = result.XMost(),
|
|
|
|
y1 = result.y, y2 = result.YMost();
|
|
|
|
if (y1 < 0)
|
|
|
|
y1 = 0;
|
|
|
|
if (IsLTR() || mIsXUL) {
|
|
|
|
if (x1 < 0)
|
|
|
|
x1 = 0;
|
|
|
|
} else {
|
|
|
|
if (x2 > aScrollPortSize.width)
|
|
|
|
x2 = aScrollPortSize.width;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsRect(x1, y1, x2 - x1, y2 - y1);
|
2004-09-29 06:08:51 +04:00
|
|
|
}
|
2000-07-08 02:24:06 +04:00
|
|
|
|
2004-09-29 06:08:51 +04:00
|
|
|
nsMargin
|
|
|
|
nsGfxScrollFrameInner::GetActualScrollbarSizes() const {
|
2005-08-03 00:19:34 +04:00
|
|
|
nsMargin border;
|
|
|
|
mOuter->GetBorder(border);
|
2005-08-24 00:41:08 +04:00
|
|
|
nsRect r(nsPoint(0,0), mOuter->GetSize());
|
2005-08-03 00:19:34 +04:00
|
|
|
r.Deflate(border);
|
2005-04-04 01:00:41 +04:00
|
|
|
nsRect scrollArea = mScrollableView->View()->GetBounds();
|
2004-09-29 06:08:51 +04:00
|
|
|
|
2005-08-03 00:19:34 +04:00
|
|
|
return nsMargin(scrollArea.x - r.x, scrollArea.y - r.y,
|
|
|
|
r.XMost() - scrollArea.XMost(),
|
|
|
|
r.YMost() - scrollArea.YMost());
|
2000-07-08 02:24:06 +04:00
|
|
|
}
|
|
|
|
|
2000-05-15 08:12:31 +04:00
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::SetScrollbarVisibility(nsIBox* aScrollbar, PRBool aVisible)
|
|
|
|
{
|
2002-10-24 07:11:53 +04:00
|
|
|
if (!aScrollbar)
|
|
|
|
return;
|
|
|
|
|
2000-07-14 03:00:59 +04:00
|
|
|
nsCOMPtr<nsIScrollbarFrame> scrollbar(do_QueryInterface(aScrollbar));
|
|
|
|
if (scrollbar) {
|
|
|
|
// See if we have a mediator.
|
|
|
|
nsCOMPtr<nsIScrollbarMediator> mediator;
|
|
|
|
scrollbar->GetScrollbarMediator(getter_AddRefs(mediator));
|
|
|
|
if (mediator) {
|
|
|
|
// Inform the mediator of the visibility change.
|
2004-05-29 04:09:05 +04:00
|
|
|
mediator->VisibilityChanged(scrollbar, aVisible);
|
2000-07-14 03:00:59 +04:00
|
|
|
}
|
|
|
|
}
|
2000-05-15 08:12:31 +04:00
|
|
|
}
|
|
|
|
|
1999-10-12 04:16:06 +04:00
|
|
|
PRInt32
|
2000-03-31 11:02:06 +04:00
|
|
|
nsGfxScrollFrameInner::GetIntegerAttribute(nsIBox* aBox, nsIAtom* atom, PRInt32 defaultValue)
|
1999-08-20 02:16:23 +04:00
|
|
|
{
|
2006-03-15 19:55:19 +03:00
|
|
|
if (aBox) {
|
2004-09-28 22:37:50 +04:00
|
|
|
nsIContent* content = aBox->GetContent();
|
1999-08-20 02:16:23 +04:00
|
|
|
|
Landing changes Vidur made while the tree was closed for beta1 work, here's a list of the changes. r=me
[1] Cutting down the size of content. Made nsIJSScriptObject inherit from nsIScriptObjectOwner
[2] Cutting down the size of content. Made nsITextContent inherit from nsIContent.
[3] Cutting down the size of content. Moved implementation of nsIDOMReceiver to nsListenerManager. This is not true aggregation since it isn't transitive, but it's OK for now. It will be necessary for nsListenerManager to have a reference to its content in the future anyway, so the transitivity could be done.
dom/public/nsDOMPropEnums.h,v - bug 12559
dom/public/nsIJSScriptObject.h,v - [1]
dom/public/html/MANIFEST,v - bug 12559
dom/public/html/Makefile.in,v - bug 12559
dom/public/html/makefile.win,v - bug 12559
dom/public/html/nsIDOMHTMLInputElement.h,v - bug 17544
dom/public/idl/html/HTMLAnchorElement.idl,v - bug 12559
dom/public/idl/html/HTMLAreaElement.idl,v - bug 12559
dom/public/idl/html/HTMLInputElement.idl,v - bug 17544
dom/src/base/nsGlobalWindow.cpp,v - bug 30700
dom/src/base/nsGlobalWindow.h,v - [1]
dom/src/base/nsLocation.cpp,v - [1]
dom/src/html/nsJSHTMLAnchorElement.cpp,v - bug 12559
dom/src/html/nsJSHTMLAreaElement.cpp,v - bug 12559
dom/src/html/nsJSHTMLInputElement.cpp,v - bug 17544
layout/base/public/nsIDocument.h,v - bug 27953
layout/base/public/nsITextContent.h,v - [2]
layout/base/src/nsCommentNode.cpp,v - [2]
layout/base/src/nsDocument.cpp,v - bug 27953
layout/base/src/nsDocument.h,v - bug 27953
layout/base/src/nsDocumentViewer.cpp,v - bug 27953
layout/base/src/nsGenericDOMDataNode.cpp,v - [3]
layout/base/src/nsGenericDOMDataNode.h,v - [3]
layout/base/src/nsGenericElement.cpp,v - [3]
layout/base/src/nsGenericElement.h,v - [3]
layout/base/src/nsNameSpaceManager.cpp,v - bug 7834
layout/base/src/nsStyleContext.cpp,v - outline property shouldn't reflow
layout/base/src/nsTextNode.cpp,v - [2]
layout/events/src/nsEventListenerManager.cpp,v - [3]
layout/events/src/nsEventListenerManager.h,v - [3]
layout/html/base/src/nsGfxScrollFrame.cpp,v - nsString->nsAutoString
layout/html/content/src/nsAttributeContent.cpp,v - [2]
layout/html/content/src/nsHTMLAnchorElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLAppletElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLAreaElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLBRElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLBaseElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLBaseFontElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLBodyElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLButtonElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLDListElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLDelElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLDirectoryElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLDivElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLEmbedElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLFieldSetElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLFontElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLFormElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLFrameElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLFrameSetElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLHRElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLHeadElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLHeadingElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLHtmlElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLIFrameElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLImageElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLInputElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLInsElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLIsIndexElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLLIElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLLabelElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLLayerElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLLegendElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLLinkElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLMapElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLMenuElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLMetaElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLModElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLOListElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLObjectElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLOptGroupElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLOptionElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLParagraphElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLParamElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLPreElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLQuoteElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLScriptElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLSelectElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLSpacerElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLSpanElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLStyleElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLTableCaptionElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLTableCellElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLTableColElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLTableColGroupElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLTableElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLTableRowElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLTableSectionElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLTextAreaElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLTitleElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLUListElement.cpp,v - [1][3]
layout/html/content/src/nsHTMLWBRElement.cpp,v - [1][3]
layout/html/document/src/nsHTMLDocument.cpp,v - bug 27953
layout/html/document/src/nsHTMLDocument.h,v - bug 27953
layout/xml/content/src/nsXMLCDATASection.cpp,v - [1][2]
layout/xml/content/src/nsXMLDocumentType.cpp,v - [1][2]
layout/xml/content/src/nsXMLElement.h,v - [1][2]
layout/xml/content/src/nsXMLEntity.cpp,v - [1][2]
layout/xml/content/src/nsXMLNotation.cpp,v - [1][2]
layout/xml/content/src/nsXMLProcessingInstruction.cpp,v - [1][2]
layout/xul/base/src/nsBoxFrame.cpp,v - nsString->nsAutoString
layout/xul/base/src/nsSliderFrame.cpp,v - nsString->nsAutoString
netwerk/protocol/http/src/nsHTTPRequest.cpp,v - nsString->nsAutoString
rdf/content/src/nsXULDocument.cpp,v - bug 27953
rdf/content/src/nsXULDocument.h,v - bug 27953
rdf/content/src/nsXULElement.h,v - [1]
xpcom/base/IIDS.h,v - bug 12559
2000-03-17 16:27:00 +03:00
|
|
|
nsAutoString value;
|
2005-10-28 15:25:24 +04:00
|
|
|
content->GetAttr(kNameSpaceID_None, atom, value);
|
|
|
|
if (!value.IsEmpty())
|
1999-10-12 04:16:06 +04:00
|
|
|
{
|
|
|
|
PRInt32 error;
|
1999-08-20 02:16:23 +04:00
|
|
|
|
1999-10-12 04:16:06 +04:00
|
|
|
// convert it to an integer
|
|
|
|
defaultValue = value.ToInteger(&error);
|
|
|
|
}
|
2006-03-15 19:55:19 +03:00
|
|
|
}
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
return defaultValue;
|
1999-08-20 02:16:23 +04:00
|
|
|
}
|
2004-09-13 06:10:29 +04:00
|
|
|
|
2005-08-25 04:10:37 +04:00
|
|
|
static nsIURI* GetDocURI(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
nsIPresShell* shell = aFrame->GetPresContext()->GetPresShell();
|
|
|
|
if (!shell)
|
|
|
|
return nsnull;
|
|
|
|
nsIDocument* doc = shell->GetDocument();
|
|
|
|
if (!doc)
|
|
|
|
return nsnull;
|
|
|
|
return doc->GetDocumentURI();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::SaveVScrollbarStateToGlobalHistory()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mIsRoot, "Only use this on viewports");
|
|
|
|
|
|
|
|
// If the hint is the same as the one we loaded, don't bother
|
|
|
|
// saving it
|
|
|
|
if (mDidLoadHistoryVScrollbarHint &&
|
|
|
|
(mHistoryVScrollbarHint == mHasVerticalScrollbar))
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsIURI* uri = GetDocURI(mOuter);
|
|
|
|
if (!uri)
|
|
|
|
return;
|
|
|
|
|
2006-03-03 06:34:48 +03:00
|
|
|
nsCOMPtr<nsIGlobalHistory3> history(do_GetService(NS_GLOBALHISTORY2_CONTRACTID));
|
2005-08-25 04:10:37 +04:00
|
|
|
if (!history)
|
|
|
|
return;
|
|
|
|
|
|
|
|
PRUint32 flags = 0;
|
|
|
|
if (mHasVerticalScrollbar) {
|
|
|
|
flags |= NS_GECKO_FLAG_NEEDS_VERTICAL_SCROLLBAR;
|
|
|
|
}
|
|
|
|
history->SetURIGeckoFlags(uri, flags);
|
|
|
|
// if it fails, we don't care
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGfxScrollFrameInner::GetVScrollbarHintFromGlobalHistory(PRBool* aVScrollbarNeeded)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mIsRoot, "Only use this on viewports");
|
|
|
|
NS_ASSERTION(!mDidLoadHistoryVScrollbarHint,
|
|
|
|
"Should only load a hint once, it can be expensive");
|
|
|
|
|
|
|
|
nsIURI* uri = GetDocURI(mOuter);
|
|
|
|
if (!uri)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2006-03-03 06:34:48 +03:00
|
|
|
nsCOMPtr<nsIGlobalHistory3> history(do_GetService(NS_GLOBALHISTORY2_CONTRACTID));
|
2005-08-25 04:10:37 +04:00
|
|
|
if (!history)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRUint32 flags;
|
|
|
|
nsresult rv = history->GetURIGeckoFlags(uri, &flags);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
*aVScrollbarNeeded = (flags & NS_GECKO_FLAG_NEEDS_VERTICAL_SCROLLBAR) != 0;
|
|
|
|
mDidLoadHistoryVScrollbarHint = PR_TRUE;
|
|
|
|
mHistoryVScrollbarHint = *aVScrollbarNeeded;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-01-28 01:52:53 +03:00
|
|
|
nsPresState*
|
2005-12-07 02:56:17 +03:00
|
|
|
nsGfxScrollFrameInner::SaveState(nsIStatefulFrame::SpecialStateID aStateID)
|
2004-09-13 06:10:29 +04:00
|
|
|
{
|
2005-12-07 02:56:17 +03:00
|
|
|
// Don't save "normal" state for the root scrollframe; that's
|
|
|
|
// handled via the eDocumentScrollState state id
|
|
|
|
if (mIsRoot && aStateID == nsIStatefulFrame::eNoID) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2004-09-13 06:10:29 +04:00
|
|
|
nsCOMPtr<nsIScrollbarMediator> mediator;
|
|
|
|
nsIFrame* first = GetScrolledFrame();
|
|
|
|
mediator = do_QueryInterface(first);
|
|
|
|
if (mediator) {
|
|
|
|
// Child manages its own scrolling. Bail.
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIScrollableView* scrollingView = GetScrollableView();
|
|
|
|
PRInt32 x,y;
|
|
|
|
scrollingView->GetScrollPosition(x,y);
|
|
|
|
// Don't save scroll position if we are at (0,0)
|
|
|
|
if (!x && !y) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIView* child = nsnull;
|
|
|
|
scrollingView->GetScrolledView(child);
|
|
|
|
if (!child) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect childRect = child->GetBounds();
|
2005-01-28 01:52:53 +03:00
|
|
|
nsAutoPtr<nsPresState> state;
|
|
|
|
nsresult rv = NS_NewPresState(getter_Transfers(state));
|
2004-09-13 06:10:29 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
|
2004-11-01 21:50:36 +03:00
|
|
|
nsCOMPtr<nsISupportsPRInt32> xoffset = do_CreateInstance(NS_SUPPORTS_PRINT32_CONTRACTID);
|
2004-09-13 06:10:29 +04:00
|
|
|
if (xoffset) {
|
|
|
|
rv = xoffset->SetData(x);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
state->SetStatePropertyAsSupports(NS_LITERAL_STRING("x-offset"), xoffset);
|
|
|
|
}
|
|
|
|
|
2004-11-01 21:50:36 +03:00
|
|
|
nsCOMPtr<nsISupportsPRInt32> yoffset = do_CreateInstance(NS_SUPPORTS_PRINT32_CONTRACTID);
|
2004-09-13 06:10:29 +04:00
|
|
|
if (yoffset) {
|
|
|
|
rv = yoffset->SetData(y);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
state->SetStatePropertyAsSupports(NS_LITERAL_STRING("y-offset"), yoffset);
|
|
|
|
}
|
|
|
|
|
2004-11-01 21:50:36 +03:00
|
|
|
nsCOMPtr<nsISupportsPRInt32> width = do_CreateInstance(NS_SUPPORTS_PRINT32_CONTRACTID);
|
2004-09-13 06:10:29 +04:00
|
|
|
if (width) {
|
|
|
|
rv = width->SetData(childRect.width);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
state->SetStatePropertyAsSupports(NS_LITERAL_STRING("width"), width);
|
|
|
|
}
|
|
|
|
|
2004-11-01 21:50:36 +03:00
|
|
|
nsCOMPtr<nsISupportsPRInt32> height = do_CreateInstance(NS_SUPPORTS_PRINT32_CONTRACTID);
|
2004-09-13 06:10:29 +04:00
|
|
|
if (height) {
|
|
|
|
rv = height->SetData(childRect.height);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
state->SetStatePropertyAsSupports(NS_LITERAL_STRING("height"), height);
|
|
|
|
}
|
2005-01-28 01:52:53 +03:00
|
|
|
return state.forget();
|
2004-09-13 06:10:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-01-28 01:52:53 +03:00
|
|
|
nsGfxScrollFrameInner::RestoreState(nsPresState* aState)
|
2004-09-13 06:10:29 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsISupportsPRInt32> xoffset;
|
|
|
|
nsCOMPtr<nsISupportsPRInt32> yoffset;
|
|
|
|
nsCOMPtr<nsISupportsPRInt32> width;
|
|
|
|
nsCOMPtr<nsISupportsPRInt32> height;
|
|
|
|
aState->GetStatePropertyAsSupports(NS_LITERAL_STRING("x-offset"), getter_AddRefs(xoffset));
|
|
|
|
aState->GetStatePropertyAsSupports(NS_LITERAL_STRING("y-offset"), getter_AddRefs(yoffset));
|
|
|
|
aState->GetStatePropertyAsSupports(NS_LITERAL_STRING("width"), getter_AddRefs(width));
|
|
|
|
aState->GetStatePropertyAsSupports(NS_LITERAL_STRING("height"), getter_AddRefs(height));
|
|
|
|
|
|
|
|
if (xoffset && yoffset) {
|
|
|
|
PRInt32 x,y,w,h;
|
|
|
|
nsresult rv = xoffset->GetData(&x);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
rv = yoffset->GetData(&y);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
rv = width->GetData(&w);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
rv = height->GetData(&h);
|
|
|
|
|
|
|
|
mLastPos.x = -1;
|
|
|
|
mLastPos.y = -1;
|
|
|
|
mRestoreRect.SetRect(-1, -1, -1, -1);
|
|
|
|
|
|
|
|
// don't do it now, store it later and do it in layout.
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
mRestoreRect.SetRect(x, y, w, h);
|
2004-09-22 01:41:01 +04:00
|
|
|
mDidHistoryRestore = PR_TRUE;
|
2004-09-13 06:10:29 +04:00
|
|
|
nsIScrollableView* scrollingView = GetScrollableView();
|
|
|
|
if (scrollingView) {
|
|
|
|
scrollingView->GetScrollPosition(mLastPos.x, mLastPos.y);
|
2004-09-22 01:41:01 +04:00
|
|
|
} else {
|
|
|
|
mLastPos = nsPoint(0, 0);
|
2004-09-13 06:10:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|