mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
129 lines
4.4 KiB
C++
129 lines
4.4 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
/* 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/. */
|
|
|
|
/* rendering object for the HTML <video> element */
|
|
|
|
#ifndef nsVideoFrame_h___
|
|
#define nsVideoFrame_h___
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "nsContainerFrame.h"
|
|
#include "nsString.h"
|
|
#include "nsAString.h"
|
|
#include "nsIIOService.h"
|
|
#include "nsITimer.h"
|
|
#include "nsTArray.h"
|
|
#include "nsIAnonymousContentCreator.h"
|
|
#include "FrameLayerBuilder.h"
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
class Layer;
|
|
class LayerManager;
|
|
}
|
|
}
|
|
|
|
class nsPresContext;
|
|
class nsDisplayItem;
|
|
|
|
nsIFrame* NS_NewVideoFrame (nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
class nsVideoFrame : public nsContainerFrame, public nsIAnonymousContentCreator
|
|
{
|
|
public:
|
|
typedef mozilla::layers::Layer Layer;
|
|
typedef mozilla::layers::LayerManager LayerManager;
|
|
typedef mozilla::FrameLayerBuilder::ContainerParameters ContainerParameters;
|
|
|
|
nsVideoFrame(nsStyleContext* aContext);
|
|
|
|
NS_DECL_QUERYFRAME
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
const nsRect& aDirtyRect,
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD AttributeChanged(int32_t aNameSpaceID,
|
|
nsIAtom* aAttribute,
|
|
int32_t aModType);
|
|
|
|
/* get the size of the video's display */
|
|
nsSize GetVideoIntrinsicSize(nsRenderingContext *aRenderingContext);
|
|
virtual nsSize GetIntrinsicRatio();
|
|
virtual nsSize ComputeSize(nsRenderingContext *aRenderingContext,
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
nsSize aMargin, nsSize aBorder, nsSize aPadding,
|
|
uint32_t aFlags) MOZ_OVERRIDE;
|
|
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext);
|
|
virtual nscoord GetPrefWidth(nsRenderingContext *aRenderingContext);
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
|
|
virtual bool IsLeaf() const MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
const nsHTMLReflowState& aReflowState,
|
|
nsReflowStatus& aStatus);
|
|
|
|
#ifdef ACCESSIBILITY
|
|
virtual already_AddRefed<Accessible> CreateAccessible();
|
|
#endif
|
|
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const
|
|
{
|
|
return nsSplittableFrame::IsFrameOfType(aFlags & ~(nsIFrame::eReplaced));
|
|
}
|
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements) MOZ_OVERRIDE;
|
|
virtual void AppendAnonymousContentTo(nsBaseContentList& aElements,
|
|
uint32_t aFilters) MOZ_OVERRIDE;
|
|
|
|
nsIContent* GetPosterImage() { return mPosterImage; }
|
|
|
|
// Returns true if we should display the poster. Note that once we show
|
|
// a video frame, the poster will never be displayed again.
|
|
bool ShouldDisplayPoster();
|
|
|
|
#ifdef DEBUG
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
|
#endif
|
|
|
|
already_AddRefed<Layer> BuildLayer(nsDisplayListBuilder* aBuilder,
|
|
LayerManager* aManager,
|
|
nsDisplayItem* aItem,
|
|
const ContainerParameters& aContainerParameters);
|
|
|
|
protected:
|
|
|
|
// Returns true if we're rendering for a video element. We still create
|
|
// nsVideoFrame to render controls for an audio element.
|
|
bool HasVideoElement();
|
|
|
|
// Returns true if there is video data to render. Can return false
|
|
// when we're the frame for an audio element, or we've created a video
|
|
// element for a media which is audio-only.
|
|
bool HasVideoData();
|
|
|
|
// Sets the mPosterImage's src attribute to be the video's poster attribute,
|
|
// if we're the frame for a video element. Only call on frames for video
|
|
// elements, not for frames for audio elements.
|
|
nsresult UpdatePosterSource(bool aNotify);
|
|
|
|
virtual ~nsVideoFrame();
|
|
|
|
nsMargin mBorderPadding;
|
|
|
|
// Anonymous child which is bound via XBL to the video controls.
|
|
nsCOMPtr<nsIContent> mVideoControls;
|
|
|
|
// Anonymous child which is the image element of the poster frame.
|
|
nsCOMPtr<nsIContent> mPosterImage;
|
|
};
|
|
|
|
#endif /* nsVideoFrame_h___ */
|