2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-08-19 22:16:23 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-08-19 22:16:23 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00: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-19 22:16:23 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-08-19 22:16:23 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsHTMLParts.h"
|
|
|
|
#include "nsIPresContext.h"
|
2001-12-17 22:39:59 +00:00
|
|
|
#include "nsHTMLReflowCommand.h"
|
1999-08-19 22:16:23 +00:00
|
|
|
#include "nsIDeviceContext.h"
|
|
|
|
#include "nsPageFrame.h"
|
|
|
|
#include "nsViewsCID.h"
|
2000-01-25 06:35:27 +00:00
|
|
|
#include "nsIServiceManager.h"
|
1999-08-19 22:16:23 +00:00
|
|
|
#include "nsIView.h"
|
|
|
|
#include "nsIViewManager.h"
|
|
|
|
#include "nsHTMLContainerFrame.h"
|
|
|
|
#include "nsIScrollableView.h"
|
|
|
|
#include "nsWidgetsCID.h"
|
|
|
|
#include "nsGfxScrollFrame.h"
|
|
|
|
#include "nsLayoutAtoms.h"
|
|
|
|
#include "nsIXMLContent.h"
|
|
|
|
#include "nsXULAtoms.h"
|
|
|
|
#include "nsHTMLAtoms.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsISupportsArray.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIFontMetrics.h"
|
1999-10-12 00:16:06 +00:00
|
|
|
#include "nsIDocumentObserver.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIScrollPositionListener.h"
|
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-09 22:02:40 +00:00
|
|
|
//#include "nsBoxFrame.h"
|
2000-01-25 06:35:27 +00:00
|
|
|
#include "nsIElementFactory.h"
|
2000-03-31 07:02:06 +00:00
|
|
|
#include "nsBoxLayoutState.h"
|
2000-05-10 13:13:39 +00:00
|
|
|
#include "nsINodeInfo.h"
|
2000-07-13 23:00:59 +00:00
|
|
|
#include "nsIScrollbarFrame.h"
|
|
|
|
#include "nsIScrollbarMediator.h"
|
2002-07-26 20:57:24 +00:00
|
|
|
#include "nsITextControlFrame.h"
|
2000-08-03 22:42:36 +00:00
|
|
|
#include "nsIDOMHTMLTextAreaElement.h"
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2002-01-23 02:53:02 +00:00
|
|
|
#include "nsIPrintPreviewContext.h"
|
|
|
|
#include "nsIURI.h"
|
2002-06-20 21:47:59 +00:00
|
|
|
#include "nsGUIEvent.h"
|
1999-08-19 22:16:23 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
class nsGfxScrollFrameInner : public nsIDocumentObserver,
|
|
|
|
public nsIScrollPositionListener {
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
nsGfxScrollFrameInner(nsGfxScrollFrame* aOuter);
|
|
|
|
virtual ~nsGfxScrollFrameInner();
|
|
|
|
|
|
|
|
// nsIScrollPositionListener
|
|
|
|
|
1999-10-15 04:29:30 +00:00
|
|
|
NS_IMETHOD ScrollPositionWillChange(nsIScrollableView* aScrollable, nscoord aX, nscoord aY);
|
|
|
|
NS_IMETHOD ScrollPositionDidChange(nsIScrollableView* aScrollable, nscoord aX, nscoord aY);
|
1999-10-12 00:16:06 +00:00
|
|
|
|
|
|
|
// nsIDocumentObserver
|
|
|
|
NS_IMETHOD BeginUpdate(nsIDocument *aDocument) { return NS_OK; }
|
|
|
|
NS_IMETHOD EndUpdate(nsIDocument *aDocument) { return NS_OK; }
|
|
|
|
NS_IMETHOD BeginLoad(nsIDocument *aDocument) { return NS_OK; }
|
|
|
|
NS_IMETHOD EndLoad(nsIDocument *aDocument) { return NS_OK; }
|
|
|
|
NS_IMETHOD BeginReflow(nsIDocument *aDocument,
|
|
|
|
nsIPresShell* aShell) { return NS_OK; }
|
|
|
|
NS_IMETHOD EndReflow(nsIDocument *aDocument,
|
|
|
|
nsIPresShell* aShell) { return NS_OK; }
|
|
|
|
NS_IMETHOD ContentChanged(nsIDocument* aDoc,
|
|
|
|
nsIContent* aContent,
|
|
|
|
nsISupports* aSubContent) { return NS_OK; }
|
|
|
|
NS_IMETHOD ContentStatesChanged(nsIDocument* aDocument,
|
|
|
|
nsIContent* aContent1,
|
2002-03-07 03:34:29 +00:00
|
|
|
nsIContent* aContent2,
|
2002-04-11 03:49:30 +00:00
|
|
|
PRInt32 aStateMask) { return NS_OK; }
|
1999-10-12 00:16:06 +00:00
|
|
|
NS_IMETHOD AttributeChanged(nsIDocument *aDocument,
|
|
|
|
nsIContent* aContent,
|
1999-10-15 23:16:45 +00:00
|
|
|
PRInt32 aNameSpaceID,
|
1999-10-12 00:16:06 +00:00
|
|
|
nsIAtom* aAttribute,
|
2001-08-25 02:01:08 +00:00
|
|
|
PRInt32 aModType,
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint aHint);
|
1999-10-12 00:16:06 +00:00
|
|
|
NS_IMETHOD ContentAppended(nsIDocument *aDocument,
|
|
|
|
nsIContent* aContainer,
|
|
|
|
PRInt32 aNewIndexInContainer) { return NS_OK; }
|
|
|
|
NS_IMETHOD ContentInserted(nsIDocument *aDocument,
|
|
|
|
nsIContent* aContainer,
|
|
|
|
nsIContent* aChild,
|
|
|
|
PRInt32 aIndexInContainer) { return NS_OK; }
|
|
|
|
NS_IMETHOD ContentReplaced(nsIDocument *aDocument,
|
|
|
|
nsIContent* aContainer,
|
|
|
|
nsIContent* aOldChild,
|
|
|
|
nsIContent* aNewChild,
|
|
|
|
PRInt32 aIndexInContainer) { return NS_OK; }
|
|
|
|
NS_IMETHOD ContentRemoved(nsIDocument *aDocument,
|
|
|
|
nsIContent* aContainer,
|
|
|
|
nsIContent* aChild,
|
|
|
|
PRInt32 aIndexInContainer) { return NS_OK; }
|
|
|
|
NS_IMETHOD StyleSheetAdded(nsIDocument *aDocument,
|
|
|
|
nsIStyleSheet* aStyleSheet) { return NS_OK; }
|
|
|
|
NS_IMETHOD StyleSheetRemoved(nsIDocument *aDocument,
|
|
|
|
nsIStyleSheet* aStyleSheet) { return NS_OK; }
|
2002-12-03 05:48:14 +00:00
|
|
|
NS_IMETHOD StyleSheetApplicableStateChanged(nsIDocument *aDocument,
|
|
|
|
nsIStyleSheet* aStyleSheet,
|
|
|
|
PRBool aApplicable) { return NS_OK; }
|
1999-10-12 00:16:06 +00:00
|
|
|
NS_IMETHOD StyleRuleChanged(nsIDocument *aDocument,
|
|
|
|
nsIStyleSheet* aStyleSheet,
|
|
|
|
nsIStyleRule* aStyleRule,
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint aHint) { return NS_OK; }
|
1999-10-12 00:16:06 +00:00
|
|
|
NS_IMETHOD StyleRuleAdded(nsIDocument *aDocument,
|
|
|
|
nsIStyleSheet* aStyleSheet,
|
|
|
|
nsIStyleRule* aStyleRule) { return NS_OK; }
|
|
|
|
NS_IMETHOD StyleRuleRemoved(nsIDocument *aDocument,
|
|
|
|
nsIStyleSheet* aStyleSheet,
|
|
|
|
nsIStyleRule* aStyleRule) { return NS_OK; }
|
|
|
|
NS_IMETHOD DocumentWillBeDestroyed(nsIDocument *aDocument) { mDocument = nsnull; return NS_OK; }
|
|
|
|
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
PRBool SetAttribute(nsIBox* aBox, nsIAtom* aAtom, nscoord aSize, PRBool aReflow=PR_TRUE);
|
|
|
|
PRInt32 GetIntegerAttribute(nsIBox* aFrame, nsIAtom* atom, PRInt32 defaultValue);
|
1999-10-12 00:16:06 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
nsresult Layout(nsBoxLayoutState& aState);
|
|
|
|
nsresult LayoutBox(nsBoxLayoutState& aState, nsIBox* aBox, const nsRect& aRect);
|
1999-10-12 00:16:06 +00:00
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
PRBool AddRemoveScrollbar (PRBool& aHasScrollbar,
|
2000-04-03 06:26:38 +00:00
|
|
|
nscoord& aXY,
|
|
|
|
nscoord& aSize,
|
|
|
|
nscoord aSbSize,
|
|
|
|
PRBool aOnRightOrBottom,
|
|
|
|
PRBool aAdd);
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
PRBool AddRemoveScrollbar(nsBoxLayoutState& aState,
|
|
|
|
nsRect& aScrollAreaSize,
|
|
|
|
PRBool aOnTop,
|
|
|
|
PRBool aHorizontal,
|
|
|
|
PRBool aAdd);
|
|
|
|
|
|
|
|
PRBool AddHorizontalScrollbar (nsBoxLayoutState& aState, nsRect& aScrollAreaSize, PRBool aOnBottom);
|
|
|
|
PRBool AddVerticalScrollbar (nsBoxLayoutState& aState, nsRect& aScrollAreaSize, PRBool aOnRight);
|
|
|
|
PRBool RemoveHorizontalScrollbar(nsBoxLayoutState& aState, nsRect& aScrollAreaSize, PRBool aOnBottom);
|
|
|
|
PRBool RemoveVerticalScrollbar (nsBoxLayoutState& aState, nsRect& aScrollAreaSize, PRBool aOnRight);
|
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-09 22:02:40 +00:00
|
|
|
|
1999-10-26 04:44:41 +00:00
|
|
|
nsIScrollableView* GetScrollableView(nsIPresContext* aPresContext);
|
1999-10-12 00:16:06 +00:00
|
|
|
|
1999-10-26 04:44:41 +00:00
|
|
|
void ScrollbarChanged(nsIPresContext* aPresContext, nscoord aX, nscoord aY);
|
1999-10-12 00:16:06 +00:00
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
void SetScrollbarVisibility(nsIBox* aScrollbar, PRBool aVisible);
|
|
|
|
|
2000-07-07 22:24:06 +00:00
|
|
|
NS_IMETHOD GetScrolledSize(nsIPresContext* aPresContext,
|
|
|
|
nscoord *aWidth,
|
|
|
|
nscoord *aHeight) const;
|
2002-01-23 02:53:02 +00:00
|
|
|
void AdjustReflowStateForPrintPreview(nsBoxLayoutState& aState, PRBool& aSetBack);
|
|
|
|
void AdjustReflowStateBack(nsBoxLayoutState& aState, PRBool aSetBack);
|
2000-07-07 22:24:06 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
nsIBox* mHScrollbarBox;
|
|
|
|
nsIBox* mVScrollbarBox;
|
|
|
|
nsIBox* mScrollAreaBox;
|
1999-10-12 00:16:06 +00:00
|
|
|
nscoord mOnePixel;
|
|
|
|
nsCOMPtr<nsIDocument> mDocument;
|
|
|
|
nsGfxScrollFrame* mOuter;
|
|
|
|
nsIScrollableView* mScrollableView;
|
2003-01-09 14:26:32 +00:00
|
|
|
nscoord mMaxElementWidth;
|
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-09 22:02:40 +00:00
|
|
|
|
2001-12-14 23:13:08 +00:00
|
|
|
PRPackedBool mNeverHasVerticalScrollbar;
|
|
|
|
PRPackedBool mNeverHasHorizontalScrollbar;
|
|
|
|
|
|
|
|
PRPackedBool mHasVerticalScrollbar;
|
|
|
|
PRPackedBool mHasHorizontalScrollbar;
|
|
|
|
PRPackedBool mFirstPass;
|
|
|
|
PRPackedBool mIsRoot;
|
|
|
|
PRPackedBool mNeverReflowed;
|
1999-10-12 00:16:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS2(nsGfxScrollFrameInner, nsIDocumentObserver, nsIScrollPositionListener)
|
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
nsresult
|
2000-03-31 07:02:06 +00:00
|
|
|
NS_NewGfxScrollFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame, nsIDocument* aDocument, PRBool aIsRoot)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aNewFrame, "null OUT ptr");
|
|
|
|
if (nsnull == aNewFrame) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
2000-03-31 07:02:06 +00:00
|
|
|
nsGfxScrollFrame* it = new (aPresShell) nsGfxScrollFrame(aPresShell, aDocument, aIsRoot);
|
1999-08-19 22:16:23 +00:00
|
|
|
if (nsnull == it) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
*aNewFrame = it;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
nsGfxScrollFrame::nsGfxScrollFrame(nsIPresShell* aShell, nsIDocument* aDocument, PRBool aIsRoot):nsBoxFrame(aShell, aIsRoot)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
1999-10-12 00:16:06 +00:00
|
|
|
mInner = new nsGfxScrollFrameInner(this);
|
|
|
|
mInner->AddRef();
|
|
|
|
mInner->mDocument = aDocument;
|
1999-10-26 04:44:41 +00:00
|
|
|
mPresContext = nsnull;
|
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-09 22:02:40 +00:00
|
|
|
mInner->mIsRoot = PR_FALSE;
|
2000-02-10 21:36:28 +00:00
|
|
|
mInner->mNeverReflowed = PR_TRUE;
|
2000-03-31 07:02:06 +00:00
|
|
|
SetLayoutManager(nsnull);
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsGfxScrollFrame::~nsGfxScrollFrame()
|
|
|
|
{
|
|
|
|
mInner->mOuter = nsnull;
|
|
|
|
mInner->Release();
|
1999-10-26 04:44:41 +00:00
|
|
|
mPresContext = nsnull;
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
1999-12-07 03:36:05 +00:00
|
|
|
/**
|
|
|
|
* Set the view that we are scrolling within the scrolling view.
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::SetScrolledFrame(nsIPresContext* aPresContext, nsIFrame *aScrolledFrame)
|
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
NS_ERROR("Not implemented!");
|
|
|
|
/*
|
|
|
|
mFrames.DestroyFrame(aPresContext, mInner->mScrollAreaBox);
|
|
|
|
mInner->mScrollAreaBox = aScrolledFrame;
|
|
|
|
mFrames.InsertFrame(nsnull, nsnull, mInner->mScrollAreaBox);
|
|
|
|
*/
|
1999-12-07 03:36:05 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the view that we are scrolling within the scrolling view.
|
|
|
|
* @result child view
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetScrolledFrame(nsIPresContext* aPresContext, nsIFrame *&aScrolledFrame) const
|
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
nsIBox* child = nsnull;
|
|
|
|
mInner->mScrollAreaBox->GetChildBox(&child);
|
|
|
|
child->GetFrame(&aScrolledFrame);
|
|
|
|
return NS_OK;
|
1999-12-07 03:36:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the size of the area that lies inside the scrollbars but clips the scrolled frame
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetClipSize(nsIPresContext* aPresContext,
|
|
|
|
nscoord *aWidth,
|
|
|
|
nscoord *aHeight) const
|
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
nsRect rect;
|
|
|
|
mInner->mScrollAreaBox->GetBounds(rect);
|
|
|
|
*aWidth = rect.width;
|
|
|
|
*aHeight = rect.height;
|
1999-12-07 03:36:05 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about whether the vertical and horizontal scrollbars
|
2000-05-13 23:00:53 +00:00
|
|
|
* are currently visible
|
1999-12-07 03:36:05 +00:00
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetScrollbarVisibility(nsIPresContext* aPresContext,
|
|
|
|
PRBool *aVerticalVisible,
|
|
|
|
PRBool *aHorizontalVisible) const
|
|
|
|
{
|
|
|
|
*aVerticalVisible = mInner->mHasVerticalScrollbar;
|
|
|
|
*aHorizontalVisible = mInner->mHasHorizontalScrollbar;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-07-27 06:57:32 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetScrollableView(nsIPresContext* aContext, nsIScrollableView** aResult)
|
|
|
|
{
|
|
|
|
*aResult = mInner->GetScrollableView(aContext);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-05-13 23:00:53 +00:00
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetScrollPosition(nsIPresContext* aContext, nscoord &aX, nscoord& aY) const
|
|
|
|
{
|
|
|
|
nsIScrollableView* s = mInner->GetScrollableView(aContext);
|
|
|
|
return s->GetScrollPosition(aX, aY);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::ScrollTo(nsIPresContext* aContext, nscoord aX, nscoord aY, PRUint32 aFlags)
|
|
|
|
{
|
|
|
|
nsIScrollableView* s = mInner->GetScrollableView(aContext);
|
|
|
|
return s->ScrollTo(aX, aY, aFlags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query whether scroll bars should be displayed all the time, never or
|
|
|
|
* only when necessary.
|
|
|
|
* @return current scrollbar selection
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
2000-05-17 04:45:44 +00:00
|
|
|
nsGfxScrollFrame::GetScrollPreference(nsIPresContext* aPresContext, nsScrollPref* aScrollPreference) const
|
2000-05-15 04:12:31 +00:00
|
|
|
{
|
|
|
|
const nsStyleDisplay* styleDisplay = nsnull;
|
|
|
|
|
|
|
|
GetStyleData(eStyleStruct_Display,
|
|
|
|
(const nsStyleStruct*&)styleDisplay);
|
|
|
|
|
|
|
|
switch (styleDisplay->mOverflow)
|
|
|
|
{
|
|
|
|
case NS_STYLE_OVERFLOW_SCROLL:
|
|
|
|
*aScrollPreference = AlwaysScroll;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NS_STYLE_OVERFLOW_SCROLLBARS_HORIZONTAL:
|
|
|
|
*aScrollPreference = AlwaysScrollHorizontal;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NS_STYLE_OVERFLOW_SCROLLBARS_VERTICAL:
|
|
|
|
*aScrollPreference = AlwaysScrollVertical;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NS_STYLE_OVERFLOW_AUTO:
|
|
|
|
*aScrollPreference = Auto;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
*aScrollPreference = NeverScroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the size of the area that lies inside the scrollbars but clips the scrolled frame
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetScrollbarSizes(nsIPresContext* aPresContext,
|
|
|
|
nscoord *aVbarWidth,
|
|
|
|
nscoord *aHbarHeight) const
|
|
|
|
{
|
|
|
|
nsBoxLayoutState state(aPresContext);
|
|
|
|
|
2001-12-17 22:51:39 +00:00
|
|
|
if (mInner->mHScrollbarBox) {
|
|
|
|
nsSize hs;
|
|
|
|
mInner->mHScrollbarBox->GetPrefSize(state, hs);
|
|
|
|
*aHbarHeight = hs.height;
|
|
|
|
}
|
2000-05-15 04:12:31 +00:00
|
|
|
|
2001-12-17 22:51:39 +00:00
|
|
|
if (mInner->mVScrollbarBox) {
|
|
|
|
nsSize vs;
|
|
|
|
mInner->mVScrollbarBox->GetPrefSize(state, vs);
|
|
|
|
*aVbarWidth = vs.width;
|
|
|
|
}
|
2000-05-15 04:12:31 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-05-13 23:00:53 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::SetScrollbarVisibility(nsIPresContext* aPresContext,
|
|
|
|
PRBool aVerticalVisible,
|
|
|
|
PRBool aHorizontalVisible)
|
|
|
|
{
|
|
|
|
mInner->mNeverHasVerticalScrollbar = !aVerticalVisible;
|
|
|
|
mInner->mNeverHasHorizontalScrollbar = !aHorizontalVisible;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-06-06 23:14:11 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetScrollbarBox(PRBool aVertical, nsIBox** aResult)
|
|
|
|
{
|
|
|
|
*aResult = aVertical ? mInner->mVScrollbarBox : mInner->mHScrollbarBox;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-05-13 23:00:53 +00:00
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
NS_IMETHODIMP
|
2000-01-22 01:16:50 +00:00
|
|
|
nsGfxScrollFrame::CreateAnonymousContent(nsIPresContext* aPresContext,
|
|
|
|
nsISupportsArray& aAnonymousChildren)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2000-08-03 22:42:36 +00:00
|
|
|
// The anonymous <div> used by <inputs> never gets scrollbars.
|
2002-07-26 20:57:24 +00:00
|
|
|
nsCOMPtr<nsITextControlFrame> textFrame(do_QueryInterface(mParent));
|
2000-08-03 22:42:36 +00:00
|
|
|
if (textFrame) {
|
|
|
|
// Make sure we are not a text area.
|
|
|
|
nsCOMPtr<nsIContent> content;
|
|
|
|
mParent->GetContent(getter_AddRefs(content));
|
2000-08-05 20:48:22 +00:00
|
|
|
nsCOMPtr<nsIDOMHTMLTextAreaElement> textAreaElement(do_QueryInterface(content));
|
2000-08-03 22:42:36 +00:00
|
|
|
if (!textAreaElement) {
|
|
|
|
SetScrollbarVisibility(aPresContext, PR_FALSE, PR_FALSE);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
// create horzontal scrollbar
|
2000-01-25 06:35:27 +00:00
|
|
|
nsresult rv;
|
2001-07-25 07:54:28 +00:00
|
|
|
nsCOMPtr<nsIElementFactory> elementFactory =
|
|
|
|
do_GetService(NS_ELEMENT_FACTORY_CONTRACTID_PREFIX "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", &rv);
|
2000-01-25 06:35:27 +00:00
|
|
|
if (!elementFactory)
|
|
|
|
return NS_ERROR_FAILURE;
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-05-10 13:13:39 +00:00
|
|
|
nsCOMPtr<nsINodeInfoManager> nodeInfoManager;
|
|
|
|
mInner->mDocument->GetNodeInfoManager(*getter_AddRefs(nodeInfoManager));
|
|
|
|
NS_ENSURE_TRUE(nodeInfoManager, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsINodeInfo> nodeInfo;
|
2001-11-14 01:33:42 +00:00
|
|
|
nodeInfoManager->GetNodeInfo(NS_LITERAL_STRING("scrollbar"),
|
|
|
|
NS_LITERAL_STRING(""),
|
|
|
|
NS_LITERAL_STRING("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"),
|
|
|
|
*getter_AddRefs(nodeInfo));
|
2000-05-10 13:13:39 +00:00
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
nsCOMPtr<nsIContent> content;
|
2000-05-10 13:13:39 +00:00
|
|
|
elementFactory->CreateInstanceByTag(nodeInfo, getter_AddRefs(content));
|
2001-08-17 08:14:14 +00:00
|
|
|
content->SetAttr(kNameSpaceID_None, nsXULAtoms::orient,
|
|
|
|
NS_LITERAL_STRING("horizontal"), PR_FALSE);
|
2000-05-15 04:12:31 +00:00
|
|
|
|
2001-08-17 08:14:14 +00:00
|
|
|
content->SetAttr(kNameSpaceID_None, nsXULAtoms::collapsed,
|
|
|
|
NS_LITERAL_STRING("true"), PR_FALSE);
|
2000-05-15 04:12:31 +00:00
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
aAnonymousChildren.AppendElement(content);
|
|
|
|
|
|
|
|
// create vertical scrollbar
|
2000-01-25 06:35:27 +00:00
|
|
|
content = nsnull;
|
2000-05-10 13:13:39 +00:00
|
|
|
elementFactory->CreateInstanceByTag(nodeInfo, getter_AddRefs(content));
|
2001-08-17 08:14:14 +00:00
|
|
|
content->SetAttr(kNameSpaceID_None, nsXULAtoms::orient,
|
|
|
|
NS_LITERAL_STRING("vertical"), PR_FALSE);
|
2000-05-15 04:12:31 +00:00
|
|
|
|
2001-08-17 08:14:14 +00:00
|
|
|
content->SetAttr(kNameSpaceID_None, nsXULAtoms::collapsed,
|
|
|
|
NS_LITERAL_STRING("true"), PR_FALSE);
|
2000-05-15 04:12:31 +00:00
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
aAnonymousChildren.AppendElement(content);
|
|
|
|
|
|
|
|
// XXX For GFX never have scrollbars
|
|
|
|
// mScrollableView->SetScrollPreference(nsScrollPreference_kNeverScroll);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsGfxScrollFrame::Destroy(nsIPresContext* aPresContext)
|
1999-08-19 22:16:23 +00:00
|
|
|
|
|
|
|
{
|
2002-07-09 04:30:28 +00:00
|
|
|
nsIScrollableView *view = mInner->GetScrollableView(aPresContext);
|
|
|
|
NS_ASSERTION(view, "unexpected null pointer");
|
|
|
|
if (view)
|
|
|
|
view->RemoveScrollPositionListener(mInner);
|
2000-03-31 07:02:06 +00:00
|
|
|
return nsBoxFrame::Destroy(aPresContext);
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsGfxScrollFrame::Init(nsIPresContext* aPresContext,
|
1999-08-19 22:16:23 +00:00
|
|
|
nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aStyleContext,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
1999-11-24 06:03:41 +00:00
|
|
|
mPresContext = aPresContext;
|
2000-03-31 07:02:06 +00:00
|
|
|
nsresult rv = nsBoxFrame::Init(aPresContext, aContent,
|
1999-08-19 22:16:23 +00:00
|
|
|
aParent, aStyleContext,
|
|
|
|
aPrevInFlow);
|
1999-10-12 00:16:06 +00:00
|
|
|
mInner->mDocument->AddObserver(mInner);
|
1999-08-19 22:16:23 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsGfxScrollFrame::SetInitialChildList(nsIPresContext* aPresContext,
|
1999-08-19 22:16:23 +00:00
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList)
|
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
nsresult rv = nsBoxFrame::SetInitialChildList(aPresContext, aListName,
|
1999-08-19 22:16:23 +00:00
|
|
|
aChildList);
|
|
|
|
// get scroll area
|
2000-03-31 07:02:06 +00:00
|
|
|
GetChildBox(&mInner->mScrollAreaBox);
|
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
// horizontal scrollbar
|
2000-03-31 07:02:06 +00:00
|
|
|
mInner->mScrollAreaBox->GetNextBox(&mInner->mHScrollbarBox);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
|
|
|
// vertical scrollbar
|
2000-08-03 22:42:36 +00:00
|
|
|
if (mInner->mHScrollbarBox)
|
|
|
|
mInner->mHScrollbarBox->GetNextBox(&mInner->mVScrollbarBox);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
// listen for scroll events.
|
1999-11-24 06:03:41 +00:00
|
|
|
mInner->GetScrollableView(aPresContext)->AddScrollPositionListener(mInner);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
return rv;
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsGfxScrollFrame::AppendFrames(nsIPresContext* aPresContext,
|
2000-05-15 04:12:31 +00:00
|
|
|
nsIPresShell& aPresShell,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aFrameList)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2000-05-15 04:12:31 +00:00
|
|
|
nsIFrame* frame;
|
|
|
|
mInner->mScrollAreaBox->GetFrame(&frame);
|
|
|
|
return frame->AppendFrames(aPresContext,
|
|
|
|
aPresShell,
|
|
|
|
aListName,
|
|
|
|
aFrameList);
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsGfxScrollFrame::InsertFrames(nsIPresContext* aPresContext,
|
2000-05-15 04:12:31 +00:00
|
|
|
nsIPresShell& aPresShell,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsIFrame* aFrameList)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2000-05-15 04:12:31 +00:00
|
|
|
nsIFrame* frame;
|
|
|
|
mInner->mScrollAreaBox->GetFrame(&frame);
|
|
|
|
|
|
|
|
return frame->InsertFrames(aPresContext,
|
|
|
|
aPresShell,
|
|
|
|
aListName,
|
|
|
|
aPrevFrame,
|
|
|
|
aFrameList);
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsGfxScrollFrame::RemoveFrame(nsIPresContext* aPresContext,
|
2000-05-15 04:12:31 +00:00
|
|
|
nsIPresShell& aPresShell,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aOldFrame)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2001-12-17 22:51:39 +00:00
|
|
|
nsIFrame* vscroll = nsnull;
|
|
|
|
if (mInner->mVScrollbarBox)
|
|
|
|
mInner->mVScrollbarBox->GetFrame(&vscroll);
|
|
|
|
nsIFrame* hscroll = nsnull;
|
|
|
|
if (mInner->mHScrollbarBox)
|
|
|
|
mInner->mHScrollbarBox->GetFrame(&hscroll);
|
2000-05-15 04:12:31 +00:00
|
|
|
|
2001-12-17 22:51:39 +00:00
|
|
|
if (aOldFrame == vscroll) {
|
|
|
|
mInner->mVScrollbarBox = nsnull;
|
|
|
|
return nsBoxFrame::RemoveFrame(aPresContext, aPresShell, aListName, aOldFrame);
|
|
|
|
}
|
|
|
|
else if (aOldFrame == hscroll) {
|
|
|
|
mInner->mHScrollbarBox = nsnull;
|
|
|
|
return nsBoxFrame::RemoveFrame(aPresContext, aPresShell, aListName, aOldFrame);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nsIFrame* frame;
|
|
|
|
mInner->mScrollAreaBox->GetFrame(&frame);
|
|
|
|
|
|
|
|
return frame->RemoveFrame (aPresContext,
|
|
|
|
aPresShell,
|
|
|
|
aListName,
|
|
|
|
aOldFrame);
|
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::ReplaceFrame(nsIPresContext* aPresContext,
|
|
|
|
nsIPresShell& aPresShell,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aOldFrame,
|
|
|
|
nsIFrame* aNewFrame)
|
|
|
|
{
|
|
|
|
nsIFrame* frame;
|
|
|
|
mInner->mScrollAreaBox->GetFrame(&frame);
|
|
|
|
|
|
|
|
return frame->ReplaceFrame (aPresContext,
|
|
|
|
aPresShell,
|
|
|
|
aListName,
|
|
|
|
aOldFrame,
|
|
|
|
aNewFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
NS_IMETHODIMP
|
2000-03-31 07:02:06 +00:00
|
|
|
nsGfxScrollFrame::GetPadding(nsMargin& aMargin)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
aMargin.SizeTo(0,0,0,0);
|
|
|
|
return NS_OK;
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2001-09-19 12:35:19 +00:00
|
|
|
nsGfxScrollFrame::Paint(nsIPresContext* aPresContext,
|
2000-03-31 07:02:06 +00:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
2001-09-19 12:35:19 +00:00
|
|
|
nsFramePaintLayer aWhichLayer,
|
|
|
|
PRUint32 aFlags)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2002-01-08 14:58:52 +00:00
|
|
|
nsresult result;
|
|
|
|
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
// Paint our children
|
2002-02-15 14:48:12 +00:00
|
|
|
result = nsBoxFrame::Paint(aPresContext, aRenderingContext, aDirtyRect,aWhichLayer);
|
2002-01-08 14:58:52 +00:00
|
|
|
return result;
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetContentAndOffsetsFromPoint(nsIPresContext* aCX,
|
|
|
|
const nsPoint& aPoint,
|
|
|
|
nsIContent ** aNewContent,
|
|
|
|
PRInt32& aContentOffset,
|
|
|
|
PRInt32& aContentOffsetEnd,
|
|
|
|
PRBool& aBeginFrameContent)
|
|
|
|
{
|
|
|
|
if (! mInner)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
1999-10-12 00:16:06 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
nsIFrame* frame = nsnull;
|
|
|
|
mInner->mScrollAreaBox->GetFrame(&frame);
|
2002-08-26 20:55:30 +00:00
|
|
|
nsIView *view;
|
|
|
|
nsPoint point(aPoint);
|
|
|
|
nsPoint currentPoint;
|
|
|
|
//we need to translate the coordinates to the inner
|
|
|
|
nsresult result = GetClosestViewForFrame(aCX, this, &view);
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
if (!view)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsIView *innerView;
|
|
|
|
result = GetClosestViewForFrame(aCX, frame, &innerView);
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
while (view != innerView && innerView)
|
|
|
|
{
|
|
|
|
innerView->GetPosition(¤tPoint.x, ¤tPoint.y);
|
|
|
|
point.x -= currentPoint.x;
|
|
|
|
point.y -= currentPoint.y;
|
|
|
|
innerView->GetParent(innerView);
|
|
|
|
}
|
1999-10-12 00:16:06 +00:00
|
|
|
|
2002-08-26 20:55:30 +00:00
|
|
|
return frame->GetContentAndOffsetsFromPoint(aCX, point, aNewContent, aContentOffset, aContentOffsetEnd, aBeginFrameContent);
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
1999-10-12 00:16:06 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
PRIntn
|
|
|
|
nsGfxScrollFrame::GetSkipSides() const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
1999-10-12 00:16:06 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetFrameType(nsIAtom** aType) const
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aType, "null OUT parameter pointer");
|
|
|
|
*aType = nsLayoutAtoms::scrollFrame;
|
|
|
|
NS_ADDREF(*aType);
|
1999-08-19 22:16:23 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetAscent(nsBoxLayoutState& aState, nscoord& aAscent)
|
|
|
|
{
|
|
|
|
aAscent = 0;
|
|
|
|
nsresult rv = mInner->mScrollAreaBox->GetAscent(aState, aAscent);
|
|
|
|
nsMargin m(0,0,0,0);
|
|
|
|
GetBorderAndPadding(m);
|
|
|
|
aAscent += m.top;
|
|
|
|
GetMargin(m);
|
|
|
|
aAscent += m.top;
|
|
|
|
GetInset(m);
|
|
|
|
aAscent += m.top;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
NS_IMETHODIMP
|
2000-03-31 07:02:06 +00:00
|
|
|
nsGfxScrollFrame::GetPrefSize(nsBoxLayoutState& aState, nsSize& aSize)
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
PropagateDebug(aState);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
nsIFrame* frame = nsnull;
|
|
|
|
GetFrame(&frame);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
const nsStyleDisplay* styleDisplay = nsnull;
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
frame->GetStyleData(eStyleStruct_Display,
|
|
|
|
(const nsStyleStruct*&)styleDisplay);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2002-10-01 01:23:47 +00:00
|
|
|
nsSize vSize(0,0);
|
2000-03-31 07:02:06 +00:00
|
|
|
if (styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLL ||
|
|
|
|
styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLLBARS_VERTICAL) {
|
2000-05-26 06:42:29 +00:00
|
|
|
// make sure they are visible.
|
|
|
|
mInner->SetScrollbarVisibility(mInner->mVScrollbarBox, PR_TRUE);
|
2000-03-31 07:02:06 +00:00
|
|
|
mInner->mVScrollbarBox->GetPrefSize(aState, vSize);
|
|
|
|
nsBox::AddMargin(mInner->mVScrollbarBox, vSize);
|
|
|
|
}
|
|
|
|
|
2002-10-01 01:23:47 +00:00
|
|
|
nsSize hSize(0,0);
|
2000-03-31 07:02:06 +00:00
|
|
|
if (styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLL ||
|
|
|
|
styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLLBARS_HORIZONTAL) {
|
2000-05-26 06:42:29 +00:00
|
|
|
mInner->SetScrollbarVisibility(mInner->mHScrollbarBox, PR_TRUE);
|
2000-03-31 07:02:06 +00:00
|
|
|
mInner->mHScrollbarBox->GetPrefSize(aState, hSize);
|
|
|
|
nsBox::AddMargin(mInner->mHScrollbarBox, hSize);
|
2002-10-01 01:23:47 +00:00
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2002-10-01 01:23:47 +00:00
|
|
|
// if one of the width and height is constrained,
|
|
|
|
// do smarter preferred size checking in case the scrolled frame is a block.
|
|
|
|
nsSize oldConstrainedSize;
|
|
|
|
aState.GetScrolledBlockSizeConstraint(oldConstrainedSize);
|
2002-10-01 22:53:43 +00:00
|
|
|
const nsHTMLReflowState* HTMLState = aState.GetReflowState();
|
|
|
|
nsSize computedSize(NS_INTRINSICSIZE, NS_INTRINSICSIZE);
|
|
|
|
if (HTMLState != nsnull) {
|
|
|
|
computedSize.width = HTMLState->mComputedWidth;
|
|
|
|
computedSize.height = HTMLState->mComputedHeight;
|
|
|
|
if ((computedSize.width == NS_INTRINSICSIZE)
|
|
|
|
!= (computedSize.height == NS_INTRINSICSIZE)) {
|
|
|
|
// adjust constraints in case we have scrollbars
|
|
|
|
if (computedSize.width != NS_INTRINSICSIZE) {
|
|
|
|
computedSize.width = PR_MAX(0, computedSize.width - vSize.width);
|
|
|
|
}
|
|
|
|
if (computedSize.height != NS_INTRINSICSIZE) {
|
|
|
|
computedSize.height = PR_MAX(0, computedSize.height - hSize.height);
|
|
|
|
}
|
|
|
|
aState.SetScrolledBlockSizeConstraint(computedSize);
|
|
|
|
} else {
|
|
|
|
aState.SetScrolledBlockSizeConstraint(nsSize(-1,-1));
|
2002-10-01 01:23:47 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
aState.SetScrolledBlockSizeConstraint(nsSize(-1,-1));
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
2002-10-01 22:53:43 +00:00
|
|
|
|
2002-10-01 01:23:47 +00:00
|
|
|
nsresult rv = mInner->mScrollAreaBox->GetPrefSize(aState, aSize);
|
|
|
|
aState.SetScrolledBlockSizeConstraint(oldConstrainedSize);
|
|
|
|
|
|
|
|
if (styleDisplay->mOverflow == NS_STYLE_OVERFLOW_AUTO) {
|
|
|
|
if (computedSize.height == NS_INTRINSICSIZE
|
|
|
|
&& computedSize.width != NS_INTRINSICSIZE
|
|
|
|
&& aSize.width > computedSize.width) {
|
|
|
|
// Add height of horizontal scrollbar which will be needed
|
|
|
|
mInner->SetScrollbarVisibility(mInner->mHScrollbarBox, PR_TRUE);
|
|
|
|
mInner->mHScrollbarBox->GetPrefSize(aState, hSize);
|
|
|
|
nsBox::AddMargin(mInner->mHScrollbarBox, hSize);
|
|
|
|
}
|
|
|
|
if (computedSize.width == NS_INTRINSICSIZE
|
|
|
|
&& computedSize.height != NS_INTRINSICSIZE
|
|
|
|
&& aSize.height > computedSize.height) {
|
|
|
|
// Add width of vertical scrollbar which will be needed
|
|
|
|
mInner->SetScrollbarVisibility(mInner->mVScrollbarBox, PR_TRUE);
|
|
|
|
mInner->mVScrollbarBox->GetPrefSize(aState, vSize);
|
|
|
|
nsBox::AddMargin(mInner->mVScrollbarBox, vSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsBox::AddMargin(mInner->mScrollAreaBox, aSize);
|
|
|
|
|
|
|
|
aSize.width += vSize.width;
|
|
|
|
aSize.height += hSize.height;
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
AddBorderAndPadding(aSize);
|
|
|
|
AddInset(aSize);
|
|
|
|
nsIBox::AddCSSPrefSize(aState, this, aSize);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
return rv;
|
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrame::GetMinSize(nsBoxLayoutState& aState, nsSize& aSize)
|
|
|
|
{
|
|
|
|
PropagateDebug(aState);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-05-02 02:28:41 +00:00
|
|
|
nsIFrame* frame = nsnull;
|
2000-03-31 07:02:06 +00:00
|
|
|
GetFrame(&frame);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
const nsStyleDisplay* styleDisplay = nsnull;
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
frame->GetStyleData(eStyleStruct_Display,
|
|
|
|
(const nsStyleStruct*&)styleDisplay);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
nsresult rv = mInner->mScrollAreaBox->GetMinSize(aState, aSize);
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
if (styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLL ||
|
2000-03-31 07:02:06 +00:00
|
|
|
styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLLBARS_VERTICAL) {
|
|
|
|
nsSize vSize(0,0);
|
|
|
|
mInner->mVScrollbarBox->GetMinSize(aState, vSize);
|
|
|
|
AddMargin(mInner->mVScrollbarBox, vSize);
|
|
|
|
aSize.width += vSize.width;
|
|
|
|
if (aSize.height < vSize.height)
|
|
|
|
aSize.height = vSize.height;
|
|
|
|
}
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
if (styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLL ||
|
2000-03-31 07:02:06 +00:00
|
|
|
styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLLBARS_HORIZONTAL) {
|
|
|
|
nsSize hSize(0,0);
|
|
|
|
mInner->mHScrollbarBox->GetMinSize(aState, hSize);
|
|
|
|
AddMargin(mInner->mHScrollbarBox, hSize);
|
|
|
|
aSize.height += hSize.height;
|
|
|
|
if (aSize.width < hSize.width)
|
|
|
|
aSize.width = hSize.width;
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
AddBorderAndPadding(aSize);
|
|
|
|
AddInset(aSize);
|
|
|
|
nsIBox::AddCSSMinSize(aState, this, aSize);
|
|
|
|
return rv;
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
|
|
|
|
1999-11-18 19:40:52 +00:00
|
|
|
NS_IMETHODIMP
|
2000-03-31 07:02:06 +00:00
|
|
|
nsGfxScrollFrame::GetMaxSize(nsBoxLayoutState& aState, nsSize& aSize)
|
1999-11-18 19:40:52 +00:00
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
PropagateDebug(aState);
|
|
|
|
|
|
|
|
aSize.width = NS_INTRINSICSIZE;
|
|
|
|
aSize.height = NS_INTRINSICSIZE;
|
1999-11-18 19:40:52 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
AddBorderAndPadding(aSize);
|
|
|
|
AddInset(aSize);
|
|
|
|
nsIBox::AddCSSMaxSize(aState, this, aSize);
|
|
|
|
return NS_OK;
|
1999-11-18 19:40:52 +00:00
|
|
|
}
|
1999-10-12 00:16:06 +00:00
|
|
|
|
2000-04-05 00:19:00 +00:00
|
|
|
NS_IMETHODIMP
|
2001-10-29 01:43:59 +00:00
|
|
|
nsGfxScrollFrame::Reflow(nsIPresContext* aPresContext,
|
2000-04-05 00:19:00 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
|
|
|
{
|
2000-04-21 14:59:47 +00:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsGfxScrollFrame", aReflowState.reason);
|
2001-11-14 13:40:03 +00:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
2000-05-02 02:28:41 +00:00
|
|
|
|
|
|
|
// if there is a max element request then set it to -1 so we can see if it gets set
|
2003-01-09 14:26:32 +00:00
|
|
|
if (aDesiredSize.mComputeMEW)
|
2000-05-02 02:28:41 +00:00
|
|
|
{
|
2003-01-09 14:26:32 +00:00
|
|
|
aDesiredSize.mMaxElementWidth = -1;
|
2000-05-02 02:28:41 +00:00
|
|
|
}
|
|
|
|
|
2000-04-05 00:19:00 +00:00
|
|
|
nsresult rv = nsBoxFrame::Reflow(aPresContext, aDesiredSize, aReflowState, aStatus);
|
|
|
|
|
2000-05-02 02:28:41 +00:00
|
|
|
// if it was set then cache it. Otherwise set it.
|
2003-01-09 14:26:32 +00:00
|
|
|
if (aDesiredSize.mComputeMEW)
|
2000-04-05 00:19:00 +00:00
|
|
|
{
|
2000-05-02 02:28:41 +00:00
|
|
|
// if not set then use the cached size. If set then set it.
|
2003-01-09 14:26:32 +00:00
|
|
|
if (aDesiredSize.mMaxElementWidth == -1)
|
|
|
|
aDesiredSize.mMaxElementWidth = mInner->mMaxElementWidth;
|
2000-05-02 02:28:41 +00:00
|
|
|
else
|
2003-01-09 14:26:32 +00:00
|
|
|
mInner->mMaxElementWidth = aDesiredSize.mMaxElementWidth;
|
2000-05-02 02:28:41 +00:00
|
|
|
}
|
|
|
|
|
2002-05-28 22:50:43 +00:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
|
2000-04-05 00:19:00 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
|
|
nsGfxScrollFrame::AddRef(void)
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
return NS_OK;
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
|
|
nsGfxScrollFrame::Release(void)
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
return NS_OK;
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
|
|
|
|
1999-11-01 22:12:45 +00:00
|
|
|
#ifdef NS_DEBUG
|
1999-10-12 00:16:06 +00:00
|
|
|
NS_IMETHODIMP
|
2001-11-14 01:33:42 +00:00
|
|
|
nsGfxScrollFrame::GetFrameName(nsAString& aResult) const
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
2001-11-14 01:33:42 +00:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("GfxScroll"), aResult);
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
1999-10-12 00:16:06 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
NS_INTERFACE_MAP_BEGIN(nsGfxScrollFrame)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIAnonymousContentCreator)
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIFrameDebug)
|
|
|
|
#endif
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScrollableFrame)
|
|
|
|
NS_INTERFACE_MAP_END_INHERITING(nsBoxFrame)
|
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
//-------------------- Inner ----------------------
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
nsGfxScrollFrameInner::nsGfxScrollFrameInner(nsGfxScrollFrame* aOuter):mHScrollbarBox(nsnull),
|
|
|
|
mVScrollbarBox(nsnull),
|
|
|
|
mScrollAreaBox(nsnull),
|
2000-03-30 03:21:26 +00:00
|
|
|
mOnePixel(20),
|
1999-10-12 00:16:06 +00:00
|
|
|
mHasVerticalScrollbar(PR_FALSE),
|
2000-03-30 03:21:26 +00:00
|
|
|
mHasHorizontalScrollbar(PR_FALSE)
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
|
|
|
mOuter = aOuter;
|
2003-01-09 14:26:32 +00:00
|
|
|
mMaxElementWidth = 0;
|
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-09 22:02:40 +00:00
|
|
|
mFirstPass = PR_FALSE;
|
2000-05-13 23:00:53 +00:00
|
|
|
mNeverHasVerticalScrollbar = PR_FALSE;
|
|
|
|
mNeverHasHorizontalScrollbar = PR_FALSE;
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
|
|
|
|
1999-10-15 04:29:30 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrameInner::ScrollPositionWillChange(nsIScrollableView* aScrollable, nscoord aX, nscoord aY)
|
|
|
|
{
|
|
|
|
// Do nothing.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
/**
|
|
|
|
* Called if something externally moves the scroll area
|
|
|
|
* This can happen if the user pages up down or uses arrow keys
|
|
|
|
* So what we need to do up adjust the scrollbars to match.
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
1999-10-15 04:29:30 +00:00
|
|
|
nsGfxScrollFrameInner::ScrollPositionDidChange(nsIScrollableView* aScrollable, nscoord aX, nscoord aY)
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
2000-08-03 22:42:36 +00:00
|
|
|
if (mVScrollbarBox)
|
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::curpos, aY);
|
|
|
|
|
|
|
|
if (mHScrollbarBox)
|
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::curpos, aX);
|
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrameInner::AttributeChanged(nsIDocument *aDocument,
|
1999-10-26 04:44:41 +00:00
|
|
|
nsIContent* aContent,
|
|
|
|
PRInt32 aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
2001-08-25 02:01:08 +00:00
|
|
|
PRInt32 aModType,
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint aHint)
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
2002-09-24 11:53:20 +00:00
|
|
|
if (mHScrollbarBox && mVScrollbarBox)
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
nsIFrame* hframe = nsnull;
|
|
|
|
mHScrollbarBox->GetFrame(&hframe);
|
|
|
|
|
|
|
|
nsIFrame* vframe = nsnull;
|
|
|
|
mVScrollbarBox->GetFrame(&vframe);
|
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
nsCOMPtr<nsIContent> vcontent;
|
|
|
|
nsCOMPtr<nsIContent> hcontent;
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
hframe->GetContent(getter_AddRefs(hcontent));
|
|
|
|
vframe->GetContent(getter_AddRefs(vcontent));
|
1999-10-12 00:16:06 +00:00
|
|
|
|
2002-06-20 21:47:59 +00:00
|
|
|
nsIFrame * targetFrame = nsnull;
|
|
|
|
nsCOMPtr<nsIContent> targetContent;
|
1999-10-12 00:16:06 +00:00
|
|
|
if (hcontent.get() == aContent || vcontent.get() == aContent)
|
|
|
|
{
|
|
|
|
nscoord x = 0;
|
|
|
|
nscoord y = 0;
|
|
|
|
|
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 13:27:00 +00:00
|
|
|
nsAutoString value;
|
2001-08-17 08:14:14 +00:00
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == hcontent->GetAttr(kNameSpaceID_None, nsXULAtoms::curpos, value))
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
|
|
|
PRInt32 error;
|
|
|
|
|
|
|
|
// convert it to an integer
|
|
|
|
x = value.ToInteger(&error);
|
2002-06-20 21:47:59 +00:00
|
|
|
targetFrame = hframe;
|
|
|
|
targetContent = hcontent;
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
|
|
|
|
2001-08-17 08:14:14 +00:00
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == vcontent->GetAttr(kNameSpaceID_None, nsXULAtoms::curpos, value))
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
|
|
|
PRInt32 error;
|
|
|
|
|
|
|
|
// convert it to an integer
|
|
|
|
y = value.ToInteger(&error);
|
2002-06-20 21:47:59 +00:00
|
|
|
targetFrame = vframe;
|
|
|
|
targetContent = vcontent;
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
|
|
|
|
2002-09-25 21:29:33 +00:00
|
|
|
// 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;
|
2000-04-25 07:10:48 +00:00
|
|
|
nsIScrollableView* s = GetScrollableView(mOuter->mPresContext);
|
2002-09-25 21:29:33 +00:00
|
|
|
if (s) {
|
|
|
|
s->GetScrollPosition(curPosX, curPosY);
|
|
|
|
if ((x*mOnePixel) == curPosX && (y*mOnePixel) == curPosY)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
s->RemoveScrollPositionListener(this);
|
|
|
|
ScrollbarChanged(mOuter->mPresContext, x*mOnePixel, y*mOnePixel);
|
|
|
|
s->AddScrollPositionListener(this);
|
2002-11-14 20:00:13 +00:00
|
|
|
// Fire the onScroll event now that we have scrolled
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
mOuter->mPresContext->GetShell(getter_AddRefs(presShell));
|
|
|
|
if (presShell && targetFrame && targetContent) {
|
|
|
|
nsScrollbarEvent event;
|
|
|
|
event.eventStructType = NS_SCROLLBAR_EVENT;
|
|
|
|
event.message = NS_SCROLL_EVENT;
|
|
|
|
event.flags = 0;
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
presShell->HandleEventWithTarget(&event, targetFrame,
|
|
|
|
targetContent,
|
|
|
|
NS_EVENT_FLAG_INIT, &status);
|
|
|
|
}
|
2002-09-25 21:29:33 +00:00
|
|
|
}
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsIScrollableView*
|
1999-10-26 04:44:41 +00:00
|
|
|
nsGfxScrollFrameInner::GetScrollableView(nsIPresContext* aPresContext)
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
|
|
|
nsIScrollableView* scrollingView;
|
|
|
|
nsIView* view;
|
2000-03-31 07:02:06 +00:00
|
|
|
nsIFrame* frame = nsnull;
|
|
|
|
mScrollAreaBox->GetFrame(&frame);
|
|
|
|
frame->GetView(aPresContext, &view);
|
2001-01-04 20:44:42 +00:00
|
|
|
nsresult result = view->QueryInterface(NS_GET_IID(nsIScrollableView), (void**)&scrollingView);
|
1999-10-12 00:16:06 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(result), "assertion gfx scrollframe does not contain a scrollframe");
|
|
|
|
return scrollingView;
|
|
|
|
}
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
PRBool
|
|
|
|
nsGfxScrollFrameInner::AddHorizontalScrollbar(nsBoxLayoutState& aState, nsRect& aScrollAreaSize, PRBool aOnTop)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2001-12-17 22:51:39 +00:00
|
|
|
if (!mHScrollbarBox)
|
|
|
|
return PR_TRUE;
|
|
|
|
|
2001-04-11 23:04:11 +00:00
|
|
|
#ifdef IBMBIDI
|
2001-12-17 22:51:39 +00:00
|
|
|
PRInt32 dir = GetIntegerAttribute(mHScrollbarBox, nsXULAtoms::dir, -1);
|
|
|
|
const nsStyleVisibility* vis;
|
|
|
|
mOuter->GetStyleData(eStyleStruct_Visibility, (const nsStyleStruct*&)vis);
|
|
|
|
|
|
|
|
// when creating the scrollbar for the first time, or whenever
|
|
|
|
// display direction is changed, scroll the view horizontally
|
|
|
|
if (dir != vis->mDirection) {
|
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::curpos,
|
|
|
|
(NS_STYLE_DIRECTION_LTR == vis->mDirection) ? 0 : 0x7FFFFFFF);
|
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::dir, vis->mDirection * mOnePixel);
|
2001-04-11 23:04:11 +00:00
|
|
|
}
|
|
|
|
#endif // IBMBIDI
|
2001-12-17 22:51:39 +00:00
|
|
|
|
|
|
|
return AddRemoveScrollbar(aState, aScrollAreaSize, aOnTop, PR_TRUE, PR_TRUE);
|
2000-05-15 04:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsGfxScrollFrameInner::AddVerticalScrollbar(nsBoxLayoutState& aState, nsRect& aScrollAreaSize, PRBool aOnRight)
|
|
|
|
{
|
2001-12-17 22:51:39 +00:00
|
|
|
if (!mVScrollbarBox)
|
|
|
|
return PR_TRUE;
|
|
|
|
|
|
|
|
return AddRemoveScrollbar(aState, aScrollAreaSize, aOnRight, PR_FALSE, PR_TRUE);
|
2000-05-15 04:12:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsGfxScrollFrameInner::RemoveHorizontalScrollbar(nsBoxLayoutState& aState, nsRect& aScrollAreaSize, PRBool aOnTop)
|
|
|
|
{
|
|
|
|
return AddRemoveScrollbar(aState, aScrollAreaSize, aOnTop, PR_TRUE, PR_FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsGfxScrollFrameInner::RemoveVerticalScrollbar(nsBoxLayoutState& aState, nsRect& aScrollAreaSize, PRBool aOnRight)
|
|
|
|
{
|
|
|
|
return AddRemoveScrollbar(aState, aScrollAreaSize, aOnRight, PR_FALSE, PR_FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsGfxScrollFrameInner::AddRemoveScrollbar(nsBoxLayoutState& aState, nsRect& aScrollAreaSize, PRBool aOnTop, PRBool aHorizontal, PRBool aAdd)
|
|
|
|
{
|
|
|
|
if (aHorizontal) {
|
2002-10-24 03:11:53 +00:00
|
|
|
if (mNeverHasHorizontalScrollbar || !mHScrollbarBox)
|
2000-05-15 04:12:31 +00:00
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
if (aAdd)
|
|
|
|
SetScrollbarVisibility(mHScrollbarBox, aAdd);
|
|
|
|
|
|
|
|
nsSize hSize;
|
|
|
|
mHScrollbarBox->GetPrefSize(aState, hSize);
|
|
|
|
nsBox::AddMargin(mHScrollbarBox, hSize);
|
|
|
|
|
|
|
|
if (!aAdd)
|
|
|
|
SetScrollbarVisibility(mHScrollbarBox, aAdd);
|
|
|
|
|
2001-12-14 23:13:08 +00:00
|
|
|
PRBool hasHorizontalScrollbar;
|
|
|
|
PRBool fit = AddRemoveScrollbar(hasHorizontalScrollbar, aScrollAreaSize.y, aScrollAreaSize.height, hSize.height, aOnTop, aAdd);
|
|
|
|
mHasHorizontalScrollbar = hasHorizontalScrollbar; // because mHasHorizontalScrollbar is a PRPackedBool
|
2000-05-15 04:12:31 +00:00
|
|
|
if (!fit)
|
|
|
|
SetScrollbarVisibility(mHScrollbarBox, !aAdd);
|
|
|
|
|
|
|
|
return fit;
|
|
|
|
} else {
|
2002-10-24 03:11:53 +00:00
|
|
|
if (mNeverHasVerticalScrollbar || !mVScrollbarBox)
|
2000-05-15 04:12:31 +00:00
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
if (aAdd)
|
|
|
|
SetScrollbarVisibility(mVScrollbarBox, aAdd);
|
|
|
|
|
|
|
|
nsSize vSize;
|
|
|
|
mVScrollbarBox->GetPrefSize(aState, vSize);
|
|
|
|
|
|
|
|
if (!aAdd)
|
|
|
|
SetScrollbarVisibility(mVScrollbarBox, aAdd);
|
|
|
|
|
|
|
|
nsBox::AddMargin(mVScrollbarBox, vSize);
|
2001-12-14 23:13:08 +00:00
|
|
|
PRBool hasVerticalScrollbar;
|
|
|
|
PRBool fit = AddRemoveScrollbar(hasVerticalScrollbar, aScrollAreaSize.x, aScrollAreaSize.width, vSize.width, aOnTop, aAdd);
|
|
|
|
mHasVerticalScrollbar = hasVerticalScrollbar; // because mHasVerticalScrollbar is a PRPackedBool
|
2000-05-15 04:12:31 +00:00
|
|
|
if (!fit)
|
|
|
|
SetScrollbarVisibility(mVScrollbarBox, !aAdd);
|
|
|
|
|
|
|
|
return fit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsGfxScrollFrameInner::AddRemoveScrollbar(PRBool& aHasScrollbar, nscoord& aXY, nscoord& aSize, nscoord aSbSize, PRBool aRightOrBottom, PRBool aAdd)
|
|
|
|
{
|
1999-10-12 00:16:06 +00:00
|
|
|
nscoord size = aSize;
|
|
|
|
|
|
|
|
if (size != NS_INTRINSICSIZE) {
|
2000-04-03 06:26:38 +00:00
|
|
|
if (aAdd) {
|
1999-10-12 00:16:06 +00:00
|
|
|
size -= aSbSize;
|
2000-05-15 04:12:31 +00:00
|
|
|
if (!aRightOrBottom && size >= 0)
|
2000-04-03 06:26:38 +00:00
|
|
|
aXY += aSbSize;
|
|
|
|
} else {
|
1999-10-12 00:16:06 +00:00
|
|
|
size += aSbSize;
|
2000-04-03 06:26:38 +00:00
|
|
|
if (!aRightOrBottom)
|
|
|
|
aXY -= aSbSize;
|
|
|
|
}
|
1999-10-12 00:16:06 +00:00
|
|
|
}
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
// not enough room? Yes? Return true.
|
1999-10-12 00:16:06 +00:00
|
|
|
if (size >= aSbSize) {
|
|
|
|
aHasScrollbar = aAdd;
|
|
|
|
aSize = size;
|
2000-05-15 04:12:31 +00:00
|
|
|
return PR_TRUE;
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
2002-08-21 08:56:58 +00:00
|
|
|
aHasScrollbar = PR_FALSE;
|
2000-05-15 04:12:31 +00:00
|
|
|
return PR_FALSE;
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2000-03-31 07:02:06 +00:00
|
|
|
nsGfxScrollFrameInner::LayoutBox(nsBoxLayoutState& aState, nsIBox* aBox, const nsRect& aRect)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
return mOuter->LayoutChildAt(aState, aBox, aRect);
|
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
NS_IMETHODIMP
|
2000-07-07 22:24:06 +00:00
|
|
|
nsGfxScrollFrame::DoLayout(nsBoxLayoutState& aState)
|
2000-03-31 07:02:06 +00:00
|
|
|
{
|
2000-04-25 07:10:48 +00:00
|
|
|
PRUint32 flags = 0;
|
|
|
|
aState.GetLayoutFlags(flags);
|
2000-03-31 07:02:06 +00:00
|
|
|
nsresult rv = mInner->Layout(aState);
|
2000-04-25 07:10:48 +00:00
|
|
|
aState.SetLayoutFlags(flags);
|
|
|
|
|
2000-07-07 22:24:06 +00:00
|
|
|
nsBox::DoLayout(aState);
|
2000-03-31 07:02:06 +00:00
|
|
|
return rv;
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2002-01-23 02:53:02 +00: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
|
|
|
|
nsGfxScrollFrameInner::AdjustReflowStateForPrintPreview(nsBoxLayoutState& aState, PRBool& aSetBack)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
nsGfxScrollFrameInner::AdjustReflowStateBack(nsBoxLayoutState& aState, PRBool aSetBack)
|
|
|
|
{
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-08-19 22:16:23 +00: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 07:02:06 +00:00
|
|
|
nsresult
|
|
|
|
nsGfxScrollFrameInner::Layout(nsBoxLayoutState& aState)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2000-04-03 06:26:38 +00:00
|
|
|
//TODO make bidi code set these from preferences
|
|
|
|
|
|
|
|
// if true places the vertical scrollbar on the right false puts it on the left.
|
|
|
|
PRBool scrollBarRight = PR_TRUE;
|
|
|
|
|
|
|
|
// if true places the horizontal scrollbar on the bottom false puts it on the top.
|
|
|
|
PRBool scrollBarBottom = PR_TRUE;
|
|
|
|
|
2001-04-11 23:04:11 +00:00
|
|
|
#ifdef IBMBIDI
|
2001-05-31 22:19:43 +00:00
|
|
|
const nsStyleVisibility* vis;
|
|
|
|
mOuter->GetStyleData(eStyleStruct_Visibility, (const nsStyleStruct*&)vis);
|
|
|
|
|
2001-04-11 23:04:11 +00:00
|
|
|
//
|
|
|
|
// Direction Style from this->GetStyleData()
|
2001-05-31 22:19:43 +00:00
|
|
|
// now in (vis->mDirection)
|
2001-04-11 23:04:11 +00:00
|
|
|
// ------------------
|
|
|
|
// NS_STYLE_DIRECTION_LTR : LTR or Default
|
|
|
|
// NS_STYLE_DIRECTION_RTL
|
|
|
|
// NS_STYLE_DIRECTION_INHERIT
|
|
|
|
//
|
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
if (vis->mDirection == NS_STYLE_DIRECTION_RTL){
|
2001-04-11 23:04:11 +00:00
|
|
|
// if true places the vertical scrollbar on the right false puts it on the left.
|
|
|
|
scrollBarRight = PR_FALSE;
|
|
|
|
|
|
|
|
// if true places the horizontal scrollbar on the bottom false puts it on the top.
|
|
|
|
scrollBarBottom = PR_TRUE;
|
|
|
|
}
|
|
|
|
nsHTMLReflowState* reflowState = (nsHTMLReflowState*)aState.GetReflowState();
|
|
|
|
#endif // IBMBIDI
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
nsIFrame* frame = nsnull;
|
|
|
|
mOuter->GetFrame(&frame);
|
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-09 22:02:40 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
const nsStyleDisplay* styleDisplay = nsnull;
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
frame->GetStyleData(eStyleStruct_Display,
|
|
|
|
(const nsStyleStruct*&)styleDisplay);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
|
|
|
|
// get the content rect
|
|
|
|
nsRect clientRect(0,0,0,0);
|
|
|
|
mOuter->GetClientRect(clientRect);
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
// get the preferred size of the scrollbars
|
|
|
|
nsSize hSize(0,0);
|
|
|
|
nsSize vSize(0,0);
|
|
|
|
nsSize hMinSize(0,0);
|
|
|
|
nsSize vMinSize(0,0);
|
2000-05-15 04:12:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
mHScrollbarBox->GetPrefSize(aState, hSize);
|
|
|
|
mVScrollbarBox->GetPrefSize(aState, vSize);
|
2000-03-31 07:02:06 +00:00
|
|
|
mHScrollbarBox->GetMinSize(aState, hMinSize);
|
|
|
|
mVScrollbarBox->GetMinSize(aState, vMinSize);
|
|
|
|
|
|
|
|
nsBox::AddMargin(mHScrollbarBox, hSize);
|
|
|
|
nsBox::AddMargin(mVScrollbarBox, vSize);
|
|
|
|
nsBox::AddMargin(mHScrollbarBox, hMinSize);
|
|
|
|
nsBox::AddMargin(mVScrollbarBox, vMinSize);
|
2000-05-15 04:12:31 +00:00
|
|
|
*/
|
2000-03-31 07:02:06 +00:00
|
|
|
|
|
|
|
// the scroll area size starts off as big as our content area
|
|
|
|
nsRect scrollAreaRect(clientRect);
|
|
|
|
|
|
|
|
// Look at our style do we always have vertical or horizontal scrollbars?
|
|
|
|
if (styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLL || styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLLBARS_HORIZONTAL)
|
|
|
|
mHasHorizontalScrollbar = PR_TRUE;
|
|
|
|
if (styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLL || styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLLBARS_VERTICAL)
|
|
|
|
mHasVerticalScrollbar = PR_TRUE;
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
if (mHasHorizontalScrollbar)
|
|
|
|
AddHorizontalScrollbar(aState, scrollAreaRect, scrollBarBottom);
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
if (mHasVerticalScrollbar)
|
|
|
|
AddVerticalScrollbar(aState, scrollAreaRect, scrollBarRight);
|
|
|
|
|
2001-04-17 01:45:38 +00:00
|
|
|
nsRect oldScrollAreaBounds;
|
|
|
|
mScrollAreaBox->GetClientRect(oldScrollAreaBounds);
|
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-09 22:02:40 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
// layout our the scroll area
|
|
|
|
LayoutBox(aState, mScrollAreaBox, scrollAreaRect);
|
|
|
|
|
|
|
|
// now look at the content area and see if we need scrollbars or not
|
|
|
|
PRBool needsLayout = PR_FALSE;
|
|
|
|
nsSize scrolledContentSize(0,0);
|
|
|
|
|
|
|
|
// if we have 'auto' scrollbars look at the vertical case
|
|
|
|
if (styleDisplay->mOverflow != NS_STYLE_OVERFLOW_SCROLL
|
|
|
|
&& styleDisplay->mOverflow != NS_STYLE_OVERFLOW_SCROLLBARS_VERTICAL) {
|
|
|
|
// get the area frame is the scrollarea
|
2000-07-07 22:24:06 +00:00
|
|
|
GetScrolledSize(aState.GetPresContext(),&scrolledContentSize.width, &scrolledContentSize.height);
|
2000-03-31 07:02:06 +00:00
|
|
|
|
|
|
|
// There are two cases to consider
|
|
|
|
if (scrolledContentSize.height <= scrollAreaRect.height
|
|
|
|
|| styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLLBARS_HORIZONTAL
|
|
|
|
|| styleDisplay->mOverflow == NS_STYLE_OVERFLOW_SCROLLBARS_NONE) {
|
|
|
|
if (mHasVerticalScrollbar) {
|
|
|
|
// We left room for the vertical scrollbar, but it's not needed;
|
|
|
|
// remove it.
|
2000-09-12 20:19:11 +00:00
|
|
|
if (RemoveVerticalScrollbar(aState, scrollAreaRect, scrollBarRight)) {
|
2000-05-15 04:12:31 +00:00
|
|
|
needsLayout = PR_TRUE;
|
2000-09-12 20:19:11 +00:00
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::curpos, 0);
|
|
|
|
}
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!mHasVerticalScrollbar) {
|
|
|
|
// We didn't leave room for the vertical scrollbar, but it turns
|
|
|
|
// out we needed it
|
2000-05-15 04:12:31 +00:00
|
|
|
if (AddVerticalScrollbar(aState, scrollAreaRect, scrollBarRight))
|
2000-03-31 07:02:06 +00:00
|
|
|
needsLayout = PR_TRUE;
|
2000-05-15 04:12:31 +00:00
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
// ok layout at the right size
|
|
|
|
if (needsLayout) {
|
|
|
|
nsBoxLayoutState resizeState(aState);
|
|
|
|
resizeState.SetLayoutReason(nsBoxLayoutState::Resize);
|
2002-01-23 02:53:02 +00:00
|
|
|
PRBool setBack;
|
|
|
|
AdjustReflowStateForPrintPreview(aState, setBack);
|
2000-03-31 07:02:06 +00:00
|
|
|
LayoutBox(resizeState, mScrollAreaBox, scrollAreaRect);
|
2002-01-23 02:53:02 +00:00
|
|
|
AdjustReflowStateBack(aState, setBack);
|
2000-05-15 04:12:31 +00:00
|
|
|
needsLayout = PR_FALSE;
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
// if scrollbars are auto look at the horizontal case
|
|
|
|
if ((NS_STYLE_OVERFLOW_SCROLL != styleDisplay->mOverflow)
|
|
|
|
&& (NS_STYLE_OVERFLOW_SCROLLBARS_HORIZONTAL != styleDisplay->mOverflow))
|
|
|
|
{
|
|
|
|
// get the area frame is the scrollarea
|
2000-07-07 22:24:06 +00:00
|
|
|
GetScrolledSize(aState.GetPresContext(),&scrolledContentSize.width, &scrolledContentSize.height);
|
2000-03-31 07:02:06 +00:00
|
|
|
|
|
|
|
// if the child is wider that the scroll area
|
|
|
|
// and we don't have a scrollbar add one.
|
|
|
|
if (scrolledContentSize.width > scrollAreaRect.width
|
|
|
|
&& styleDisplay->mOverflow != NS_STYLE_OVERFLOW_SCROLLBARS_VERTICAL
|
|
|
|
&& styleDisplay->mOverflow != NS_STYLE_OVERFLOW_SCROLLBARS_NONE) {
|
|
|
|
|
|
|
|
if (!mHasHorizontalScrollbar) {
|
2000-05-15 04:12:31 +00:00
|
|
|
// no scrollbar?
|
|
|
|
if (AddHorizontalScrollbar(aState, scrollAreaRect, scrollBarBottom))
|
2000-03-31 07:02:06 +00:00
|
|
|
needsLayout = PR_TRUE;
|
2000-05-15 04:12:31 +00:00
|
|
|
|
2000-03-31 07:02:06 +00: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-26 21:01:57 +00:00
|
|
|
//if (!mHasVerticalScrollbar && scrolledContentSize.height > scrollAreaRect.height - sbSize.height)
|
2000-10-28 22:17:53 +00:00
|
|
|
// printf("****Gfx Scrollbar Special case hit!!*****\n");
|
2000-04-03 06:26:38 +00: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-09 22:02:40 +00:00
|
|
|
}
|
2001-04-11 23:04:11 +00:00
|
|
|
#ifdef IBMBIDI
|
2001-05-31 22:19:43 +00:00
|
|
|
const nsStyleVisibility* ourVis;
|
|
|
|
frame->GetStyleData(eStyleStruct_Visibility, (const nsStyleStruct*&)ourVis);
|
|
|
|
|
|
|
|
if (NS_STYLE_DIRECTION_RTL == ourVis->mDirection) {
|
2002-07-26 20:57:24 +00:00
|
|
|
nsCOMPtr<nsITextControlFrame> textControl(
|
2001-04-11 23:04:11 +00:00
|
|
|
do_QueryInterface(mOuter->mParent) );
|
|
|
|
if (textControl) {
|
|
|
|
needsLayout = PR_TRUE;
|
|
|
|
reflowState->mRightEdge = scrolledContentSize.width;
|
|
|
|
mScrollAreaBox->MarkDirty(aState);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // IBMBIDI
|
2000-03-31 07:02:06 +00:00
|
|
|
} else {
|
|
|
|
// if the area is smaller or equal to and we have a scrollbar then
|
|
|
|
// remove it.
|
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-09 22:02:40 +00:00
|
|
|
if (mHasHorizontalScrollbar) {
|
2000-05-15 04:12:31 +00:00
|
|
|
if (RemoveHorizontalScrollbar(aState, scrollAreaRect, scrollBarBottom))
|
|
|
|
needsLayout = PR_TRUE;
|
2000-09-12 20:19:11 +00:00
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::curpos, 0);
|
2000-03-31 07:02:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00: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 02:53:02 +00:00
|
|
|
PRBool setBack;
|
|
|
|
AdjustReflowStateForPrintPreview(aState, setBack);
|
2000-04-03 06:26:38 +00:00
|
|
|
LayoutBox(resizeState, mScrollAreaBox, scrollAreaRect);
|
2002-01-23 02:53:02 +00:00
|
|
|
AdjustReflowStateBack(aState, setBack);
|
2000-05-15 04:12:31 +00:00
|
|
|
needsLayout = PR_FALSE;
|
2001-04-11 23:04:11 +00:00
|
|
|
#ifdef IBMBIDI
|
|
|
|
reflowState->mRightEdge = NS_UNCONSTRAINEDSIZE;
|
|
|
|
#endif // IBMBIDI
|
1999-11-19 15:33:29 +00:00
|
|
|
}
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2000-07-07 22:24:06 +00:00
|
|
|
GetScrolledSize(aState.GetPresContext(),&scrolledContentSize.width, &scrolledContentSize.height);
|
2000-03-31 07:02:06 +00:00
|
|
|
|
|
|
|
nsIPresContext* presContext = aState.GetPresContext();
|
|
|
|
float p2t;
|
|
|
|
presContext->GetScaledPixelsToTwips(&p2t);
|
|
|
|
mOnePixel = NSIntPixelsToTwips(1, p2t);
|
|
|
|
const nsStyleFont* font;
|
|
|
|
mOuter->GetStyleData(eStyleStruct_Font, (const nsStyleStruct*&) font);
|
|
|
|
const nsFont& f = font->mFont;
|
|
|
|
nsCOMPtr<nsIFontMetrics> fm;
|
|
|
|
presContext->GetMetricsFor(f, getter_AddRefs(fm));
|
|
|
|
nscoord fontHeight = 1;
|
2001-05-15 03:12:08 +00:00
|
|
|
NS_ASSERTION(fm,"FontMetrics is null assuming fontHeight == 1");
|
|
|
|
if (fm)
|
|
|
|
fm->GetHeight(fontHeight);
|
2000-03-31 07:02:06 +00:00
|
|
|
|
|
|
|
nscoord maxX = scrolledContentSize.width - scrollAreaRect.width;
|
|
|
|
nscoord maxY = scrolledContentSize.height - scrollAreaRect.height;
|
|
|
|
|
|
|
|
nsIScrollableView* scrollable = GetScrollableView(presContext);
|
|
|
|
scrollable->SetLineHeight(fontHeight);
|
|
|
|
|
2000-08-03 22:42:36 +00:00
|
|
|
if (mHScrollbarBox)
|
|
|
|
mHScrollbarBox->GetPrefSize(aState, hSize);
|
|
|
|
|
|
|
|
if (mVScrollbarBox)
|
|
|
|
mVScrollbarBox->GetPrefSize(aState, vSize);
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2000-04-25 07:10:48 +00:00
|
|
|
// layout vertical scrollbar
|
|
|
|
nsRect vRect(clientRect);
|
|
|
|
vRect.width = vSize.width;
|
|
|
|
vRect.y = clientRect.y;
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2000-04-25 07:10:48 +00:00
|
|
|
if (mHasHorizontalScrollbar) {
|
|
|
|
vRect.height -= hSize.height;
|
|
|
|
if (!scrollBarBottom)
|
|
|
|
vRect.y += hSize.height;
|
|
|
|
}
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2000-04-25 07:10:48 +00:00
|
|
|
vRect.x = clientRect.x;
|
2000-04-03 06:26:38 +00:00
|
|
|
|
2000-04-25 07:10:48 +00:00
|
|
|
if (scrollBarRight)
|
|
|
|
vRect.x += clientRect.width - vSize.width;
|
2000-03-31 07:02:06 +00:00
|
|
|
|
2001-12-17 22:51:39 +00:00
|
|
|
if (mHasVerticalScrollbar && mVScrollbarBox) {
|
2000-04-25 07:10:48 +00:00
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::maxpos, maxY);
|
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::pageincrement, nscoord(scrollAreaRect.height - fontHeight));
|
2002-09-18 22:38:23 +00:00
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::increment, fontHeight);
|
1999-11-19 15:33:29 +00:00
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-08-03 22:42:36 +00:00
|
|
|
if (mVScrollbarBox) {
|
|
|
|
LayoutBox(aState, mVScrollbarBox, vRect);
|
|
|
|
mVScrollbarBox->GetPrefSize(aState, vSize);
|
|
|
|
mVScrollbarBox->GetMinSize(aState, vMinSize);
|
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2001-12-17 22:51:39 +00:00
|
|
|
if (mHasVerticalScrollbar && mVScrollbarBox && (vMinSize.width > vRect.width || vMinSize.height > vRect.height)) {
|
2000-09-12 20:19:11 +00:00
|
|
|
if (RemoveVerticalScrollbar(aState, scrollAreaRect, scrollBarRight)) {
|
2000-05-15 04:12:31 +00:00
|
|
|
needsLayout = PR_TRUE;
|
2000-09-12 20:19:11 +00:00
|
|
|
SetAttribute(mVScrollbarBox, nsXULAtoms::curpos, 0);
|
|
|
|
}
|
|
|
|
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
mVScrollbarBox->GetPrefSize(aState, vSize);
|
|
|
|
}
|
2000-04-03 06:26:38 +00:00
|
|
|
|
2000-04-25 07:10:48 +00:00
|
|
|
// layout horizontal scrollbar
|
|
|
|
nsRect hRect(clientRect);
|
|
|
|
hRect.height = hSize.height;
|
2000-04-03 06:26:38 +00:00
|
|
|
|
2000-04-25 07:10:48 +00:00
|
|
|
hRect.x = clientRect.x;
|
2000-04-03 06:26:38 +00:00
|
|
|
|
2000-04-25 07:10:48 +00:00
|
|
|
if (mHasVerticalScrollbar) {
|
|
|
|
hRect.width -= vSize.width;
|
|
|
|
if (!scrollBarRight)
|
|
|
|
hRect.x += vSize.width;
|
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-04-25 07:10:48 +00:00
|
|
|
hRect.y = clientRect.y;
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-04-25 07:10:48 +00:00
|
|
|
if (scrollBarBottom)
|
|
|
|
hRect.y += clientRect.height - hSize.height;
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2001-12-17 22:51:39 +00:00
|
|
|
if (mHasHorizontalScrollbar && mHScrollbarBox) {
|
2000-04-25 07:10:48 +00:00
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::maxpos, maxX);
|
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::pageincrement, nscoord(float(scrollAreaRect.width)*0.8));
|
2002-09-20 14:50:43 +00:00
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::increment, 10*mOnePixel);
|
2000-04-25 07:10:48 +00:00
|
|
|
}
|
|
|
|
|
2000-08-03 22:42:36 +00:00
|
|
|
if (mHScrollbarBox) {
|
|
|
|
LayoutBox(aState, mHScrollbarBox, hRect);
|
|
|
|
mHScrollbarBox->GetMinSize(aState, hMinSize);
|
|
|
|
}
|
2000-05-15 04:12:31 +00:00
|
|
|
|
2001-12-17 22:51:39 +00:00
|
|
|
if (mHasHorizontalScrollbar && mHScrollbarBox && (hMinSize.width > hRect.width || hMinSize.height > hRect.height)) {
|
2000-09-12 20:19:11 +00:00
|
|
|
if (RemoveHorizontalScrollbar(aState, scrollAreaRect, scrollBarBottom)) {
|
2000-05-15 04:12:31 +00:00
|
|
|
needsLayout = PR_TRUE;
|
2000-09-12 20:19:11 +00:00
|
|
|
SetAttribute(mHScrollbarBox, nsXULAtoms::curpos, 0);
|
|
|
|
}
|
2000-04-25 07:10:48 +00:00
|
|
|
}
|
2000-05-15 04:12:31 +00:00
|
|
|
|
|
|
|
// we only need to set the rect. The inner child stays the same size.
|
|
|
|
if (needsLayout) {
|
|
|
|
nsBoxLayoutState resizeState(aState);
|
|
|
|
resizeState.SetLayoutReason(nsBoxLayoutState::Resize);
|
|
|
|
LayoutBox(resizeState, mScrollAreaBox, scrollAreaRect);
|
|
|
|
needsLayout = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2001-04-17 01:45:38 +00: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)
|
|
|
|
if ((oldScrollAreaBounds.width != scrollAreaRect.width
|
|
|
|
|| oldScrollAreaBounds.height != scrollAreaRect.height)
|
|
|
|
&& nsBoxLayoutState::Dirty == aState.GetLayoutReason()) {
|
|
|
|
nsIFrame* parentFrame;
|
|
|
|
mOuter->GetParent(&parentFrame);
|
|
|
|
if (parentFrame) {
|
|
|
|
nsCOMPtr<nsIAtom> parentFrameType;
|
|
|
|
parentFrame->GetFrameType(getter_AddRefs(parentFrameType));
|
|
|
|
if (parentFrameType.get() == nsLayoutAtoms::viewportFrame) {
|
|
|
|
// Usually there are no fixed children, so don't do anything unless there's
|
|
|
|
// at least one fixed child
|
|
|
|
nsIFrame* child;
|
|
|
|
if (NS_SUCCEEDED(parentFrame->FirstChild(mOuter->mPresContext,
|
|
|
|
nsLayoutAtoms::fixedList, &child)) && child) {
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
mOuter->mPresContext->GetShell(getter_AddRefs(presShell));
|
|
|
|
|
|
|
|
// force a reflow of the fixed children
|
|
|
|
nsFrame::CreateAndPostReflowCommand(presShell, parentFrame,
|
2001-12-17 22:39:59 +00:00
|
|
|
eReflowType_UserDefined, nsnull, nsnull, nsLayoutAtoms::fixedList);
|
2001-04-17 01:45:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-04-25 07:10:48 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
2001-04-17 01:45:38 +00:00
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
|
|
|
void
|
1999-10-26 04:44:41 +00:00
|
|
|
nsGfxScrollFrameInner::ScrollbarChanged(nsIPresContext* aPresContext, nscoord aX, nscoord aY)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
1999-10-26 04:44:41 +00:00
|
|
|
nsIScrollableView* scrollable = GetScrollableView(aPresContext);
|
1999-08-27 06:06:39 +00:00
|
|
|
scrollable->ScrollTo(aX,aY, NS_SCROLL_PROPERTY_ALWAYS_BLIT);
|
2000-10-28 22:17:53 +00:00
|
|
|
// printf("scrolling to: %d, %d\n", aX, aY);
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
nsGfxScrollFrameInner::~nsGfxScrollFrameInner()
|
|
|
|
{
|
|
|
|
if (mDocument) {
|
|
|
|
mDocument->RemoveObserver(this);
|
|
|
|
mDocument = nsnull;
|
|
|
|
}
|
1999-08-19 22:16:23 +00: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-09 22:02:40 +00:00
|
|
|
/**
|
|
|
|
* Returns whether it actually needed to change the attribute
|
|
|
|
*/
|
|
|
|
PRBool
|
2000-03-31 07:02:06 +00:00
|
|
|
nsGfxScrollFrameInner::SetAttribute(nsIBox* aBox, nsIAtom* aAtom, nscoord aSize, PRBool aReflow)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
|
|
|
// convert to pixels
|
|
|
|
aSize /= mOnePixel;
|
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
// only set the attribute if it changed.
|
1999-08-19 22:16:23 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
PRInt32 current = GetIntegerAttribute(aBox, aAtom, -1);
|
1999-10-12 00:16:06 +00:00
|
|
|
if (current != aSize)
|
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
nsIFrame* frame = nsnull;
|
|
|
|
aBox->GetFrame(&frame);
|
1999-10-12 00:16:06 +00:00
|
|
|
nsCOMPtr<nsIContent> content;
|
2000-03-31 07:02:06 +00:00
|
|
|
frame->GetContent(getter_AddRefs(content));
|
2001-08-02 12:12:53 +00:00
|
|
|
nsAutoString newValue;
|
|
|
|
newValue.AppendInt(aSize);
|
2001-08-17 08:14:14 +00:00
|
|
|
content->SetAttr(kNameSpaceID_None, aAtom, newValue, aReflow);
|
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-09 22:02:40 +00:00
|
|
|
return PR_TRUE;
|
1999-10-12 00:16:06 +00: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-09 22:02:40 +00:00
|
|
|
|
|
|
|
return PR_FALSE;
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
2000-07-07 22:24:06 +00:00
|
|
|
/**
|
|
|
|
* Gets the size of the area that lies inside the scrollbars but clips the scrolled frame
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGfxScrollFrameInner::GetScrolledSize(nsIPresContext* aPresContext,
|
|
|
|
nscoord *aWidth,
|
|
|
|
nscoord *aHeight) const
|
|
|
|
{
|
|
|
|
|
|
|
|
// our scrolled size is the size of our scrolled view.
|
|
|
|
nsSize size;
|
|
|
|
nsIBox* child = nsnull;
|
|
|
|
mScrollAreaBox->GetChildBox(&child);
|
|
|
|
nsIFrame* frame;
|
|
|
|
child->GetFrame(&frame);
|
|
|
|
nsIView* view;
|
|
|
|
frame->GetView(aPresContext, &view);
|
|
|
|
NS_ASSERTION(view,"Scrolled frame must have a view!!!");
|
|
|
|
|
|
|
|
nsRect rect(0,0,0,0);
|
|
|
|
view->GetBounds(rect);
|
|
|
|
|
|
|
|
size.width = rect.width;
|
|
|
|
size.height = rect.height;
|
|
|
|
|
|
|
|
nsBox::AddMargin(child, size);
|
|
|
|
nsBox::AddBorderAndPadding(mScrollAreaBox, size);
|
|
|
|
nsBox::AddInset(mScrollAreaBox, size);
|
|
|
|
|
|
|
|
*aWidth = size.width;
|
|
|
|
*aHeight = size.height;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
void
|
|
|
|
nsGfxScrollFrameInner::SetScrollbarVisibility(nsIBox* aScrollbar, PRBool aVisible)
|
|
|
|
{
|
2002-10-24 03:11:53 +00:00
|
|
|
if (!aScrollbar)
|
|
|
|
return;
|
|
|
|
|
2000-05-15 04:12:31 +00:00
|
|
|
nsIFrame* frame = nsnull;
|
|
|
|
aScrollbar->GetFrame(&frame);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> content;
|
|
|
|
frame->GetContent(getter_AddRefs(content));
|
|
|
|
|
|
|
|
PRBool old = PR_TRUE;
|
|
|
|
|
|
|
|
nsAutoString value;
|
|
|
|
|
2001-08-17 08:14:14 +00:00
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == content->GetAttr(kNameSpaceID_None, nsXULAtoms::collapsed, value))
|
2000-05-15 04:12:31 +00:00
|
|
|
old = PR_FALSE;
|
|
|
|
|
|
|
|
if (aVisible == old)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!aVisible)
|
2001-08-17 08:14:14 +00:00
|
|
|
content->SetAttr(kNameSpaceID_None, nsXULAtoms::collapsed, NS_LITERAL_STRING("true"), PR_TRUE);
|
2000-05-15 04:12:31 +00:00
|
|
|
else
|
2001-08-17 08:14:14 +00:00
|
|
|
content->UnsetAttr(kNameSpaceID_None, nsXULAtoms::collapsed, PR_TRUE);
|
2000-07-13 23:00:59 +00: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.
|
|
|
|
mediator->VisibilityChanged(aVisible);
|
|
|
|
}
|
|
|
|
}
|
2000-05-15 04:12:31 +00:00
|
|
|
}
|
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
PRInt32
|
2000-03-31 07:02:06 +00:00
|
|
|
nsGfxScrollFrameInner::GetIntegerAttribute(nsIBox* aBox, nsIAtom* atom, PRInt32 defaultValue)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
nsIFrame* frame = nsnull;
|
|
|
|
aBox->GetFrame(&frame);
|
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
nsCOMPtr<nsIContent> content;
|
2000-03-31 07:02:06 +00:00
|
|
|
frame->GetContent(getter_AddRefs(content));
|
1999-08-19 22:16:23 +00: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 13:27:00 +00:00
|
|
|
nsAutoString value;
|
2001-08-17 08:14:14 +00:00
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == content->GetAttr(kNameSpaceID_None, atom, value))
|
1999-10-12 00:16:06 +00:00
|
|
|
{
|
|
|
|
PRInt32 error;
|
1999-08-19 22:16:23 +00:00
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
// convert it to an integer
|
|
|
|
defaultValue = value.ToInteger(&error);
|
|
|
|
}
|
1999-08-19 22:16:23 +00:00
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
return defaultValue;
|
1999-08-19 22:16:23 +00:00
|
|
|
}
|
|
|
|
|
1999-10-12 00:16:06 +00:00
|
|
|
nsresult
|
2000-03-31 07:02:06 +00:00
|
|
|
nsGfxScrollFrame::GetContentOf(nsIContent** aContent)
|
1999-08-19 22:16:23 +00:00
|
|
|
{
|
2000-03-31 07:02:06 +00:00
|
|
|
GetContent(aContent);
|
1999-08-19 22:16:23 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|