2008-07-17 06:30:25 +00:00
|
|
|
/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2008-07-17 06:30:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Inline methods that belong in nsStyleStruct.h, except that they
|
|
|
|
* require more headers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsStyleStructInlines_h_
|
|
|
|
#define nsStyleStructInlines_h_
|
|
|
|
|
2012-08-02 11:38:49 +00:00
|
|
|
#include "nsIFrame.h"
|
2008-07-17 06:30:25 +00:00
|
|
|
#include "nsStyleStruct.h"
|
|
|
|
#include "imgIRequest.h"
|
2009-11-14 04:23:00 +00:00
|
|
|
#include "imgIContainer.h"
|
2013-08-23 22:15:45 +00:00
|
|
|
#include "nsIContent.h"
|
2008-07-17 06:30:25 +00:00
|
|
|
|
|
|
|
inline void
|
2014-01-31 03:36:41 +00:00
|
|
|
nsStyleImage::SetSubImage(uint8_t aIndex, imgIContainer* aSubImage) const
|
2008-07-17 06:30:25 +00:00
|
|
|
{
|
2014-01-31 03:36:41 +00:00
|
|
|
const_cast<nsStyleImage*>(this)->mSubImages.ReplaceObjectAt(aSubImage, aIndex);
|
2009-11-14 04:23:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline imgIContainer*
|
2014-01-31 03:36:41 +00:00
|
|
|
nsStyleImage::GetSubImage(uint8_t aIndex) const
|
2009-11-14 04:23:00 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
imgIContainer* subImage = nullptr;
|
2010-01-09 05:03:38 +00:00
|
|
|
if (aIndex < mSubImages.Count())
|
2009-11-14 04:23:00 +00:00
|
|
|
subImage = mSubImages[aIndex];
|
|
|
|
return subImage;
|
|
|
|
}
|
|
|
|
|
2012-08-08 11:37:13 +00:00
|
|
|
bool
|
2014-01-13 12:21:42 +00:00
|
|
|
nsStyleText::HasTextShadow() const
|
2012-08-08 11:37:13 +00:00
|
|
|
{
|
2014-01-13 12:21:42 +00:00
|
|
|
return mTextShadow;
|
2012-08-08 11:37:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCSSShadowArray*
|
2014-01-13 12:21:42 +00:00
|
|
|
nsStyleText::GetTextShadow() const
|
2012-08-08 11:37:13 +00:00
|
|
|
{
|
|
|
|
return mTextShadow;
|
|
|
|
}
|
|
|
|
|
2013-03-25 03:50:59 +00:00
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleText::WhiteSpaceCanWrap(const nsIFrame* aContextFrame) const
|
2013-03-25 03:50:59 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleText() == this, "unexpected aContextFrame");
|
|
|
|
return WhiteSpaceCanWrapStyle() && !aContextFrame->IsSVGText();
|
2013-03-25 03:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleText::WordCanWrap(const nsIFrame* aContextFrame) const
|
2013-03-25 03:50:59 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleText() == this, "unexpected aContextFrame");
|
|
|
|
return WordCanWrapStyle() && !aContextFrame->IsSVGText();
|
2013-03-25 03:50:59 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 11:38:51 +00:00
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleDisplay::IsBlockInside(const nsIFrame* aContextFrame) const
|
2012-08-02 11:38:51 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleDisplay() == this, "unexpected aContextFrame");
|
|
|
|
if (aContextFrame->IsSVGText()) {
|
|
|
|
return aContextFrame->GetType() == nsGkAtoms::blockFrame;
|
2012-08-02 11:38:51 +00:00
|
|
|
}
|
|
|
|
return IsBlockInsideStyle();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleDisplay::IsBlockOutside(const nsIFrame* aContextFrame) const
|
2012-08-02 11:38:51 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleDisplay() == this, "unexpected aContextFrame");
|
|
|
|
if (aContextFrame->IsSVGText()) {
|
|
|
|
return aContextFrame->GetType() == nsGkAtoms::blockFrame;
|
2012-08-02 11:38:51 +00:00
|
|
|
}
|
|
|
|
return IsBlockOutsideStyle();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleDisplay::IsInlineOutside(const nsIFrame* aContextFrame) const
|
2012-08-02 11:38:51 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleDisplay() == this, "unexpected aContextFrame");
|
|
|
|
if (aContextFrame->IsSVGText()) {
|
|
|
|
return aContextFrame->GetType() != nsGkAtoms::blockFrame;
|
2012-08-02 11:38:51 +00:00
|
|
|
}
|
|
|
|
return IsInlineOutsideStyle();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleDisplay::IsOriginalDisplayInlineOutside(const nsIFrame* aContextFrame) const
|
2012-08-02 11:38:51 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleDisplay() == this, "unexpected aContextFrame");
|
|
|
|
if (aContextFrame->IsSVGText()) {
|
|
|
|
return aContextFrame->GetType() != nsGkAtoms::blockFrame;
|
2012-08-02 11:38:51 +00:00
|
|
|
}
|
|
|
|
return IsOriginalDisplayInlineOutsideStyle();
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleDisplay::GetDisplay(const nsIFrame* aContextFrame) const
|
2012-08-02 11:38:51 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleDisplay() == this, "unexpected aContextFrame");
|
|
|
|
if (aContextFrame->IsSVGText() &&
|
2012-08-02 11:38:51 +00:00
|
|
|
mDisplay != NS_STYLE_DISPLAY_NONE) {
|
2013-04-06 23:40:07 +00:00
|
|
|
return aContextFrame->GetType() == nsGkAtoms::blockFrame ?
|
2012-08-02 11:38:51 +00:00
|
|
|
NS_STYLE_DISPLAY_BLOCK :
|
|
|
|
NS_STYLE_DISPLAY_INLINE;
|
|
|
|
}
|
|
|
|
return mDisplay;
|
|
|
|
}
|
|
|
|
|
2012-08-02 11:38:49 +00:00
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleDisplay::IsFloating(const nsIFrame* aContextFrame) const
|
2012-08-02 11:38:49 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleDisplay() == this, "unexpected aContextFrame");
|
|
|
|
return IsFloatingStyle() && !aContextFrame->IsSVGText();
|
2012-08-02 11:38:49 +00:00
|
|
|
}
|
|
|
|
|
2012-12-30 22:45:57 +00:00
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleDisplay::HasTransform(const nsIFrame* aContextFrame) const
|
2012-12-30 22:45:57 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleDisplay() == this, "unexpected aContextFrame");
|
|
|
|
return HasTransformStyle() && aContextFrame->IsFrameOfType(nsIFrame::eSupportsCSSTransforms);
|
2012-12-30 22:45:57 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 11:38:50 +00:00
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleDisplay::IsPositioned(const nsIFrame* aContextFrame) const
|
2012-08-02 11:38:50 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleDisplay() == this,
|
|
|
|
"unexpected aContextFrame");
|
2012-12-04 04:50:05 +00:00
|
|
|
return (IsAbsolutelyPositionedStyle() ||
|
|
|
|
IsRelativelyPositionedStyle() ||
|
2013-04-06 23:40:07 +00:00
|
|
|
HasTransform(aContextFrame)) &&
|
|
|
|
!aContextFrame->IsSVGText();
|
2012-08-02 11:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleDisplay::IsRelativelyPositioned(const nsIFrame* aContextFrame) const
|
2012-08-02 11:38:50 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleDisplay() == this, "unexpected aContextFrame");
|
|
|
|
return IsRelativelyPositionedStyle() && !aContextFrame->IsSVGText();
|
2012-08-02 11:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-04-06 23:40:07 +00:00
|
|
|
nsStyleDisplay::IsAbsolutelyPositioned(const nsIFrame* aContextFrame) const
|
2012-08-02 11:38:50 +00:00
|
|
|
{
|
2013-04-06 23:40:07 +00:00
|
|
|
NS_ASSERTION(aContextFrame->StyleDisplay() == this, "unexpected aContextFrame");
|
|
|
|
return IsAbsolutelyPositionedStyle() && !aContextFrame->IsSVGText();
|
2012-08-02 11:38:50 +00:00
|
|
|
}
|
|
|
|
|
2012-11-02 10:42:59 +00:00
|
|
|
uint8_t
|
|
|
|
nsStyleVisibility::GetEffectivePointerEvents(nsIFrame* aFrame) const
|
|
|
|
{
|
|
|
|
if (aFrame->GetContent() && !aFrame->GetContent()->GetParent()) {
|
|
|
|
// The root element has a cluster of frames associated with it
|
|
|
|
// (root scroll frame, canvas frame, the actual primary frame). Make
|
|
|
|
// those take their pointer-events value from the root element's primary
|
|
|
|
// frame.
|
|
|
|
nsIFrame* f = aFrame->GetContent()->GetPrimaryFrame();
|
|
|
|
if (f) {
|
2013-02-16 21:51:02 +00:00
|
|
|
return f->StyleVisibility()->mPointerEvents;
|
2012-11-02 10:42:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return mPointerEvents;
|
|
|
|
}
|
|
|
|
|
2008-07-17 06:30:25 +00:00
|
|
|
#endif /* !defined(nsStyleStructInlines_h_) */
|