2015-12-22 18:54:19 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; 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 "DisplayItemScrollClip.h"
|
|
|
|
|
2015-09-10 13:24:34 +03:00
|
|
|
#include "DisplayItemClip.h"
|
|
|
|
|
2015-12-22 18:54:19 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
/* static */ bool
|
|
|
|
DisplayItemScrollClip::IsAncestor(const DisplayItemScrollClip* aAncestor,
|
|
|
|
const DisplayItemScrollClip* aDescendant)
|
|
|
|
{
|
|
|
|
if (!aAncestor) {
|
|
|
|
// null means root.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-04 22:49:35 +03:00
|
|
|
for (const DisplayItemScrollClip* sc = aDescendant; sc; sc = sc->mParent) {
|
2015-12-22 18:54:19 +03:00
|
|
|
if (sc == aAncestor) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-30 19:08:35 +03:00
|
|
|
bool
|
|
|
|
DisplayItemScrollClip::HasRoundedCorners() const
|
|
|
|
{
|
|
|
|
for (const DisplayItemScrollClip* scrollClip = this;
|
|
|
|
scrollClip; scrollClip = scrollClip->mParent) {
|
|
|
|
if (scrollClip->mClip->GetRoundedRectCount() > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-22 18:54:19 +03:00
|
|
|
/* static */ nsCString
|
|
|
|
DisplayItemScrollClip::ToString(const DisplayItemScrollClip* aScrollClip)
|
|
|
|
{
|
|
|
|
nsAutoCString str;
|
|
|
|
for (const DisplayItemScrollClip* scrollClip = aScrollClip;
|
|
|
|
scrollClip; scrollClip = scrollClip->mParent) {
|
2016-02-24 18:23:32 +03:00
|
|
|
str.AppendPrintf("<%s>%s", scrollClip->mClip ? scrollClip->mClip->ToString().get() : "null",
|
|
|
|
scrollClip->mIsAsyncScrollable ? " [async-scrollable]" : "");
|
2015-12-22 18:54:19 +03:00
|
|
|
if (scrollClip->mParent) {
|
2016-02-24 18:23:32 +03:00
|
|
|
str.Append(", ");
|
2015-12-22 18:54:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|