2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Original Author: David W. Hyatt (hyatt@netscape.com)
|
2010-10-28 09:01:37 -07:00
|
|
|
* Mihai Șucan <mihai.sucan@gmail.com>
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2011-05-28 00:43:53 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIScrollBoxObject.h"
|
|
|
|
#include "nsBoxObject.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsIScrollableFrame.h"
|
|
|
|
|
|
|
|
class nsScrollBoxObject : public nsIScrollBoxObject, public nsBoxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSISCROLLBOXOBJECT
|
|
|
|
|
|
|
|
nsScrollBoxObject();
|
|
|
|
virtual ~nsScrollBoxObject();
|
|
|
|
|
2009-09-02 20:57:46 -07:00
|
|
|
virtual nsIScrollableFrame* GetScrollFrame() {
|
|
|
|
return do_QueryFrame(GetFrame(PR_FALSE));
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/* additional members */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Implementation file */
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN(nsScrollBoxObject)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScrollBoxObject)
|
|
|
|
NS_INTERFACE_MAP_END_INHERITING(nsBoxObject)
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF_INHERITED(nsScrollBoxObject, nsBoxObject)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(nsScrollBoxObject, nsBoxObject)
|
|
|
|
|
|
|
|
nsScrollBoxObject::nsScrollBoxObject()
|
|
|
|
{
|
|
|
|
/* member initializers and constructor code */
|
|
|
|
}
|
|
|
|
|
|
|
|
nsScrollBoxObject::~nsScrollBoxObject()
|
|
|
|
{
|
|
|
|
/* destructor code */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* void scrollTo (in long x, in long y); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::ScrollTo(PRInt32 x, PRInt32 y)
|
|
|
|
{
|
2009-09-02 20:57:46 -07:00
|
|
|
nsIScrollableFrame* sf = GetScrollFrame();
|
|
|
|
if (!sf)
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2009-09-02 20:57:46 -07:00
|
|
|
sf->ScrollTo(nsPoint(nsPresContext::CSSPixelsToAppUnits(x),
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(y)),
|
|
|
|
nsIScrollableFrame::INSTANT);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* void scrollBy (in long dx, in long dy); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::ScrollBy(PRInt32 dx, PRInt32 dy)
|
|
|
|
{
|
|
|
|
PRInt32 x, y;
|
|
|
|
nsresult rv = GetPosition(&x, &y);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return ScrollTo(x + dx, y + dy);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* void scrollByLine (in long dlines); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::ScrollByLine(PRInt32 dlines)
|
|
|
|
{
|
2009-09-02 20:57:46 -07:00
|
|
|
nsIScrollableFrame* sf = GetScrollFrame();
|
|
|
|
if (!sf)
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2009-09-02 20:57:46 -07:00
|
|
|
sf->ScrollBy(nsIntPoint(0, dlines), nsIScrollableFrame::LINES,
|
|
|
|
nsIScrollableFrame::SMOOTH);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// XUL <scrollbox> elements have a single box child element.
|
|
|
|
// Get a pointer to that box.
|
|
|
|
// Note that now that the <scrollbox> is just a regular box
|
|
|
|
// with 'overflow:hidden', the boxobject's frame is an nsXULScrollFrame,
|
|
|
|
// the <scrollbox>'s box frame is the scrollframe's "scrolled frame", and
|
|
|
|
// the <scrollbox>'s child box is a child of that.
|
|
|
|
static nsIFrame* GetScrolledBox(nsBoxObject* aScrollBox) {
|
|
|
|
nsIFrame* frame = aScrollBox->GetFrame(PR_FALSE);
|
|
|
|
if (!frame)
|
|
|
|
return nsnull;
|
2009-01-12 11:20:59 -08:00
|
|
|
nsIScrollableFrame* scrollFrame = do_QueryFrame(frame);
|
|
|
|
if (!scrollFrame) {
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_WARNING("nsIScrollBoxObject attached to something that's not a scroll frame!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
nsIFrame* scrolledFrame = scrollFrame->GetScrolledFrame();
|
|
|
|
if (!scrolledFrame)
|
|
|
|
return nsnull;
|
|
|
|
return scrolledFrame->GetChildBox();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* void scrollByIndex (in long dindexes); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::ScrollByIndex(PRInt32 dindexes)
|
|
|
|
{
|
2009-09-02 20:57:46 -07:00
|
|
|
nsIScrollableFrame* sf = GetScrollFrame();
|
|
|
|
if (!sf)
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsIFrame* scrolledBox = GetScrolledBox(this);
|
|
|
|
if (!scrolledBox)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsRect rect;
|
|
|
|
|
|
|
|
// now get the scrolled boxes first child.
|
|
|
|
nsIFrame* child = scrolledBox->GetChildBox();
|
|
|
|
|
|
|
|
PRBool horiz = scrolledBox->IsHorizontal();
|
2009-09-02 20:57:46 -07:00
|
|
|
nsPoint cp = sf->GetScrollPosition();
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord diff = 0;
|
|
|
|
PRInt32 curIndex = 0;
|
|
|
|
PRBool isLTR = scrolledBox->IsNormalDirection();
|
|
|
|
|
|
|
|
PRInt32 frameWidth = 0;
|
|
|
|
if (!isLTR && horiz) {
|
|
|
|
GetWidth(&frameWidth);
|
|
|
|
nsCOMPtr<nsIPresShell> shell = GetPresShell(PR_FALSE);
|
|
|
|
if (!shell) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
frameWidth = nsPresContext::CSSPixelsToAppUnits(frameWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
// first find out what index we are currently at
|
|
|
|
while(child) {
|
|
|
|
rect = child->GetRect();
|
|
|
|
if (horiz) {
|
|
|
|
// In the left-to-right case we break from the loop when the center of
|
|
|
|
// the current child rect is greater than the scrolled position of
|
|
|
|
// the left edge of the scrollbox
|
|
|
|
// In the right-to-left case we break when the center of the current
|
|
|
|
// child rect is less than the scrolled position of the right edge of
|
|
|
|
// the scrollbox.
|
|
|
|
diff = rect.x + rect.width/2; // use the center, to avoid rounding errors
|
|
|
|
if ((isLTR && diff > cp.x) ||
|
|
|
|
(!isLTR && diff < cp.x + frameWidth)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
diff = rect.y + rect.height/2;// use the center, to avoid rounding errors
|
|
|
|
if (diff > cp.y) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
child = child->GetNextBox();
|
|
|
|
curIndex++;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 count = 0;
|
|
|
|
|
|
|
|
if (dindexes == 0)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
if (dindexes > 0) {
|
|
|
|
while(child) {
|
|
|
|
child = child->GetNextBox();
|
|
|
|
if (child)
|
|
|
|
rect = child->GetRect();
|
|
|
|
count++;
|
|
|
|
if (count >= dindexes)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (dindexes < 0) {
|
|
|
|
child = scrolledBox->GetChildBox();
|
|
|
|
while(child) {
|
|
|
|
rect = child->GetRect();
|
|
|
|
if (count >= curIndex + dindexes)
|
|
|
|
break;
|
|
|
|
|
|
|
|
count++;
|
|
|
|
child = child->GetNextBox();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (horiz)
|
|
|
|
// In the left-to-right case we scroll so that the left edge of the
|
|
|
|
// selected child is scrolled to the left edge of the scrollbox.
|
|
|
|
// In the right-to-left case we scroll so that the right edge of the
|
|
|
|
// selected child is scrolled to the right edge of the scrollbox.
|
2009-09-02 20:57:46 -07:00
|
|
|
sf->ScrollTo(nsPoint(isLTR ? rect.x : rect.x + rect.width - frameWidth,
|
|
|
|
cp.y),
|
|
|
|
nsIScrollableFrame::INSTANT);
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
2009-09-02 20:57:46 -07:00
|
|
|
sf->ScrollTo(nsPoint(cp.x, rect.y), nsIScrollableFrame::INSTANT);
|
|
|
|
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* void scrollToLine (in long line); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::ScrollToLine(PRInt32 line)
|
|
|
|
{
|
2009-09-02 20:57:46 -07:00
|
|
|
nsIScrollableFrame* sf = GetScrollFrame();
|
|
|
|
if (!sf)
|
|
|
|
return NS_ERROR_FAILURE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-02 20:57:46 -07:00
|
|
|
nscoord y = sf->GetLineScrollAmount().height * line;
|
|
|
|
sf->ScrollTo(nsPoint(0, y), nsIScrollableFrame::INSTANT);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* void scrollToElement (in nsIDOMElement child); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::ScrollToElement(nsIDOMElement *child)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(child);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPresShell> shell = GetPresShell(PR_FALSE);
|
|
|
|
if (!shell) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
2010-10-28 09:01:37 -07:00
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(child);
|
|
|
|
shell->ScrollContentIntoView(content,
|
|
|
|
NS_PRESSHELL_SCROLL_TOP,
|
|
|
|
NS_PRESSHELL_SCROLL_LEFT,
|
|
|
|
nsIPresShell::SCROLL_FIRST_ANCESTOR_ONLY |
|
|
|
|
nsIPresShell::SCROLL_OVERFLOW_HIDDEN);
|
2009-09-02 20:57:46 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* void scrollToIndex (in long index); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::ScrollToIndex(PRInt32 index)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* void getPosition (out long x, out long y); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::GetPosition(PRInt32 *x, PRInt32 *y)
|
|
|
|
{
|
2009-09-02 20:57:46 -07:00
|
|
|
nsIScrollableFrame* sf = GetScrollFrame();
|
|
|
|
if (!sf)
|
|
|
|
return NS_ERROR_FAILURE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-02 20:57:46 -07:00
|
|
|
nsPoint pt = sf->GetScrollPosition();
|
|
|
|
*x = nsPresContext::AppUnitsToIntCSSPixels(pt.x);
|
|
|
|
*y = nsPresContext::AppUnitsToIntCSSPixels(pt.y);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* void getScrolledSize (out long width, out long height); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::GetScrolledSize(PRInt32 *width, PRInt32 *height)
|
|
|
|
{
|
|
|
|
nsIFrame* scrolledBox = GetScrolledBox(this);
|
|
|
|
if (!scrolledBox)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsRect scrollRect = scrolledBox->GetRect();
|
|
|
|
|
|
|
|
*width = nsPresContext::AppUnitsToIntCSSPixels(scrollRect.width);
|
|
|
|
*height = nsPresContext::AppUnitsToIntCSSPixels(scrollRect.height);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* void ensureElementIsVisible (in nsIDOMElement child); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::EnsureElementIsVisible(nsIDOMElement *child)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(child);
|
|
|
|
|
2010-10-28 09:01:37 -07:00
|
|
|
nsCOMPtr<nsIPresShell> shell = GetPresShell(PR_FALSE);
|
|
|
|
if (!shell) {
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
2010-10-28 09:01:37 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(child);
|
|
|
|
shell->ScrollContentIntoView(content,
|
|
|
|
NS_PRESSHELL_SCROLL_ANYWHERE,
|
|
|
|
NS_PRESSHELL_SCROLL_ANYWHERE,
|
|
|
|
nsIPresShell::SCROLL_FIRST_ANCESTOR_ONLY |
|
|
|
|
nsIPresShell::SCROLL_OVERFLOW_HIDDEN);
|
2009-09-02 20:57:46 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* void ensureIndexIsVisible (in long index); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::EnsureIndexIsVisible(PRInt32 index)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* void ensureLineIsVisible (in long line); */
|
|
|
|
NS_IMETHODIMP nsScrollBoxObject::EnsureLineIsVisible(PRInt32 line)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NS_NewScrollBoxObject(nsIBoxObject** aResult)
|
|
|
|
{
|
|
|
|
*aResult = new nsScrollBoxObject;
|
|
|
|
if (!*aResult)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|