mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
9ca494cce7
- Bug 940273 - Part 1 - Fetch changes from maple twig to support Service Worker Cache. (5f8e82dd7)
- Bug 940273 - Part 1b - Expose nsFileProtocolHandler.h in mozilla/net. (71a3ebcf4)
- Bug 940273 - Part 2 - Add a pref to enable Service Worker Cache. (2e7b478d3)
- patch header include (3b90a9b8d)
- override -> MOZ_OVERRIDE (8f51321bc)
- override -> MOZ_OVERRIDE (5f4ab5143)
- Bug 1136563 - ARIA 1.1: Support role 'switch' (2484c9c27)
- Bug 1121518 - ARIA 1.1: Add support for role 'searchbox' (8d3ee1204)
- override -> MOZ_OVERRIDE (3db7a0cb4)
- Bug 1137714 - Make roleDescription nicer/correct/faster (da6beb861)
- Bug 1134280 - Get rid of Tag() - patch 1 - Is{HTML,XUL,MathML,SVG}Element and IsAnyOf{HTML,XUL,MathML,SVG}Elements (133801ca1)
- Bug 1134280 - Get rid of Tag() - patch 2.1 - /accessible - Fix all the occurrences (fbef71d88)
- Bug 1134280 - Get rid of Tag() - patch 2.2 - /editor - Fix all the occurrences (e54a21dcc)
- Bug 1134280 - Get rid of Tag() - patch 2.3 - dom/base and docshell - Fix all the occurrences (8bf192106)
- Bug 1134280 - Get rid of Tag() - patch 2.4 - layout/mathml - Fix all the occurrences (7914f351d)
- Bug 1134280 - Get rid of Tag() - patch 2.5 - dom/xul - Fix all the occurrences (6611b95ef)
- Bug 1134280 - Get rid of Tag() - patch 2.6 - layout/base and layout/form - Fix all the occurrences (61e06ff31)
- Bug 1134280 - Get rid of Tag() - patch 2.7 - layout/generic - Fix all the occurrences (bbe5865c2)
- Bug 1134280 - Get rid of Tag() - patch 2.8 - dom/html - Fix all the occurrences (7af471da5)
- Bug 1134280 - Get rid of Tag() - patch 2.9 - dom/svg, dom/xml, dom/xslt and dom/xbl - Fix all the occurrences (ab9769748)
- Bug 1134280 - Get rid of Tag() - patch 2.10 - dom/events, dom/mathml, dom/plugins, dom/smil - Fix all the occurrences (421ba62f4)
- Bug 1134280 - Get rid of Tag() - patch 2.11 - layout/xul - Fix all the occurrences (e19e64b2c)
- Bug 1134280 - Get rid of Tag() - patch 2.12 - layout/style, layout/svg - Fix all the occurrences (7ec90f520)
- Bug 1134280 - Get rid of Tag() - patch 2.13 - Fix all the occurrences (a887a4341)
- Bug 1134280 - Get rid of Tag() - patch 3 - nsContentUtils::IsHTMLBlock should work with nsIContent inste nsIAtom (28fa04521)
- Bug 1134280 - Get rid of Tag() - patch 4 - Get rid of nsDocumentEncoder::IsTag (ed4bf4d48)
- Bug 1134280 - Get rid of Tag() - patch 5 - nsGenericHTMLElement::IsHTMLElement (70a2822c7)
- Bug 1134280 - Get rid of Tag() - patch 6 - Remove nsINode::Tag() (85885131f)
- Bug 1134280 - Get rid of Tag() - patch 7 - Followup to fix bustage. (actuall, backport, it was missing) (cfcfa3e74)
- Bug 1134280 - Get rid of Tag() - patch 8 - Fixed a debug-only compilation issue (502319995)
- Bug 1356843 - Fix -Wcomma warnings in dom/base/ and dom/xml/. clang's -Wcomma warning warns about suspicious use of the comma operator such as between two statements or to call a function for side effects within an expression. (0f1ad0554)
239 lines
4.9 KiB
C++
239 lines
4.9 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "mozilla/dom/ListBoxObject.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIFrame.h"
|
|
#include "nsGkAtoms.h"
|
|
#include "nsIScrollableFrame.h"
|
|
#include "nsListBoxBodyFrame.h"
|
|
#include "ChildIterator.h"
|
|
#include "mozilla/dom/Element.h"
|
|
#include "mozilla/dom/ListBoxObjectBinding.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(ListBoxObject, BoxObject, nsIListBoxObject,
|
|
nsPIListBoxObject)
|
|
|
|
ListBoxObject::ListBoxObject()
|
|
: mListBoxBody(nullptr)
|
|
{
|
|
}
|
|
|
|
ListBoxObject::~ListBoxObject()
|
|
{
|
|
}
|
|
|
|
JSObject* ListBoxObject::WrapObject(JSContext* aCx)
|
|
{
|
|
return ListBoxObjectBinding::Wrap(aCx, this);
|
|
}
|
|
|
|
// nsIListBoxObject
|
|
NS_IMETHODIMP
|
|
ListBoxObject::GetRowCount(int32_t *aResult)
|
|
{
|
|
*aResult = GetRowCount();
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ListBoxObject::GetItemAtIndex(int32_t index, nsIDOMElement **_retval)
|
|
{
|
|
nsListBoxBodyFrame* body = GetListBoxBody(true);
|
|
if (body) {
|
|
return body->GetItemAtIndex(index, _retval);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ListBoxObject::GetIndexOfItem(nsIDOMElement* aElement, int32_t *aResult)
|
|
{
|
|
*aResult = 0;
|
|
|
|
nsListBoxBodyFrame* body = GetListBoxBody(true);
|
|
if (body) {
|
|
return body->GetIndexOfItem(aElement, aResult);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
// ListBoxObject
|
|
|
|
int32_t
|
|
ListBoxObject::GetRowCount()
|
|
{
|
|
nsListBoxBodyFrame* body = GetListBoxBody(true);
|
|
if (body) {
|
|
return body->GetRowCount();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int32_t
|
|
ListBoxObject::GetNumberOfVisibleRows()
|
|
{
|
|
nsListBoxBodyFrame* body = GetListBoxBody(true);
|
|
if (body) {
|
|
return body->GetNumberOfVisibleRows();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int32_t
|
|
ListBoxObject::GetIndexOfFirstVisibleRow()
|
|
{
|
|
nsListBoxBodyFrame* body = GetListBoxBody(true);
|
|
if (body) {
|
|
return body->GetIndexOfFirstVisibleRow();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
ListBoxObject::EnsureIndexIsVisible(int32_t aRowIndex)
|
|
{
|
|
nsListBoxBodyFrame* body = GetListBoxBody(true);
|
|
if (body) {
|
|
body->EnsureIndexIsVisible(aRowIndex);
|
|
}
|
|
}
|
|
|
|
void
|
|
ListBoxObject::ScrollToIndex(int32_t aRowIndex)
|
|
{
|
|
nsListBoxBodyFrame* body = GetListBoxBody(true);
|
|
if (body) {
|
|
body->ScrollToIndex(aRowIndex);
|
|
}
|
|
}
|
|
|
|
void
|
|
ListBoxObject::ScrollByLines(int32_t aNumLines)
|
|
{
|
|
nsListBoxBodyFrame* body = GetListBoxBody(true);
|
|
if (body) {
|
|
body->ScrollByLines(aNumLines);
|
|
}
|
|
}
|
|
|
|
already_AddRefed<Element>
|
|
ListBoxObject::GetItemAtIndex(int32_t index)
|
|
{
|
|
nsCOMPtr<nsIDOMElement> el;
|
|
GetItemAtIndex(index, getter_AddRefs(el));
|
|
nsCOMPtr<Element> ret(do_QueryInterface(el));
|
|
return ret.forget();
|
|
}
|
|
|
|
int32_t
|
|
ListBoxObject::GetIndexOfItem(Element& aElement)
|
|
{
|
|
int32_t ret;
|
|
nsCOMPtr<nsIDOMElement> el(do_QueryInterface(&aElement));
|
|
GetIndexOfItem(el, &ret);
|
|
return ret;
|
|
}
|
|
|
|
//////////////////////
|
|
|
|
static nsIContent*
|
|
FindBodyContent(nsIContent* aParent)
|
|
{
|
|
if (aParent->IsXULElement(nsGkAtoms::listboxbody)) {
|
|
return aParent;
|
|
}
|
|
|
|
mozilla::dom::FlattenedChildIterator iter(aParent);
|
|
for (nsIContent* child = iter.GetNextChild(); child; child = iter.GetNextChild()) {
|
|
nsIContent* result = FindBodyContent(child);
|
|
if (result) {
|
|
return result;
|
|
}
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
nsListBoxBodyFrame*
|
|
ListBoxObject::GetListBoxBody(bool aFlush)
|
|
{
|
|
if (mListBoxBody) {
|
|
return mListBoxBody;
|
|
}
|
|
|
|
nsIPresShell* shell = GetPresShell(false);
|
|
if (!shell) {
|
|
return nullptr;
|
|
}
|
|
|
|
nsIFrame* frame = aFlush ?
|
|
GetFrame(false) /* does Flush_Frames */ :
|
|
mContent->GetPrimaryFrame();
|
|
if (!frame) {
|
|
return nullptr;
|
|
}
|
|
|
|
// Iterate over our content model children looking for the body.
|
|
nsCOMPtr<nsIContent> content = FindBodyContent(frame->GetContent());
|
|
|
|
if (!content) {
|
|
return nullptr;
|
|
}
|
|
|
|
// this frame will be a nsGFXScrollFrame
|
|
frame = content->GetPrimaryFrame();
|
|
if (!frame) {
|
|
return nullptr;
|
|
}
|
|
|
|
nsIScrollableFrame* scrollFrame = do_QueryFrame(frame);
|
|
if (!scrollFrame) {
|
|
return nullptr;
|
|
}
|
|
|
|
// this frame will be the one we want
|
|
nsIFrame* yeahBaby = scrollFrame->GetScrolledFrame();
|
|
if (!yeahBaby) {
|
|
return nullptr;
|
|
}
|
|
|
|
// It's a frame. Refcounts are irrelevant.
|
|
nsListBoxBodyFrame* listBoxBody = do_QueryFrame(yeahBaby);
|
|
NS_ENSURE_TRUE(listBoxBody &&
|
|
listBoxBody->SetBoxObject(this),
|
|
nullptr);
|
|
mListBoxBody = listBoxBody;
|
|
return mListBoxBody;
|
|
}
|
|
|
|
void
|
|
ListBoxObject::Clear()
|
|
{
|
|
ClearCachedValues();
|
|
BoxObject::Clear();
|
|
}
|
|
|
|
void
|
|
ListBoxObject::ClearCachedValues()
|
|
{
|
|
mListBoxBody = nullptr;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
// Creation Routine ///////////////////////////////////////////////////////////////////////
|
|
|
|
nsresult
|
|
NS_NewListBoxObject(nsIBoxObject** aResult)
|
|
{
|
|
NS_ADDREF(*aResult = new mozilla::dom::ListBoxObject());
|
|
return NS_OK;
|
|
}
|