2013-05-21 20:14:00 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 et tw=78: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_TextTrackList_h
|
|
|
|
#define mozilla_dom_TextTrackList_h
|
|
|
|
|
2014-04-01 10:13:50 +04:00
|
|
|
#include "mozilla/DOMEventTargetHelper.h"
|
2013-05-21 20:14:00 +04:00
|
|
|
#include "mozilla/dom/TextTrack.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-01-27 23:51:28 +04:00
|
|
|
class HTMLMediaElement;
|
|
|
|
class TextTrackManager;
|
2014-02-27 21:47:23 +04:00
|
|
|
class CompareTextTracks;
|
2013-10-04 22:28:25 +04:00
|
|
|
class TrackEvent;
|
|
|
|
class TrackEventRunner;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class TextTrackList final : public DOMEventTargetHelper
|
2013-05-21 20:14:00 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2014-04-01 10:13:50 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(TextTrackList, DOMEventTargetHelper)
|
2013-05-21 20:14:00 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
explicit TextTrackList(nsPIDOMWindowInner* aOwnerWindow);
|
|
|
|
TextTrackList(nsPIDOMWindowInner* aOwnerWindow, TextTrackManager* aTextTrackManager);
|
2013-05-21 20:14:00 +04:00
|
|
|
|
2016-01-18 06:50:29 +03:00
|
|
|
JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-05-21 20:14:00 +04:00
|
|
|
|
|
|
|
uint32_t Length() const
|
|
|
|
{
|
|
|
|
return mTextTracks.Length();
|
|
|
|
}
|
|
|
|
|
2013-12-12 19:57:21 +04:00
|
|
|
// Get all the current active cues.
|
2016-07-18 10:39:14 +03:00
|
|
|
void GetShowingCues(nsTArray<RefPtr<TextTrackCue> >& aCues);
|
2013-12-12 19:57:21 +04:00
|
|
|
|
2013-05-21 20:14:00 +04:00
|
|
|
TextTrack* IndexedGetter(uint32_t aIndex, bool& aFound);
|
2014-03-01 00:40:00 +04:00
|
|
|
TextTrack* operator[](uint32_t aIndex);
|
2013-05-21 20:14:00 +04:00
|
|
|
|
2014-01-28 00:17:20 +04:00
|
|
|
already_AddRefed<TextTrack> AddTextTrack(TextTrackKind aKind,
|
2013-05-21 20:14:00 +04:00
|
|
|
const nsAString& aLabel,
|
2014-02-27 21:47:23 +04:00
|
|
|
const nsAString& aLanguage,
|
2014-03-13 21:18:06 +04:00
|
|
|
TextTrackMode aMode,
|
2014-03-13 22:41:21 +04:00
|
|
|
TextTrackReadyState aReadyState,
|
2014-02-27 21:47:23 +04:00
|
|
|
TextTrackSource aTextTrackSource,
|
|
|
|
const CompareTextTracks& aCompareTT);
|
2013-07-09 19:44:35 +04:00
|
|
|
TextTrack* GetTrackById(const nsAString& aId);
|
|
|
|
|
2014-02-27 21:47:23 +04:00
|
|
|
void AddTextTrack(TextTrack* aTextTrack, const CompareTextTracks& aCompareTT);
|
2013-05-21 20:14:00 +04:00
|
|
|
|
2013-10-21 18:15:00 +04:00
|
|
|
void RemoveTextTrack(TextTrack* aTrack);
|
2013-06-15 00:10:36 +04:00
|
|
|
void DidSeek();
|
2013-05-21 20:14:00 +04:00
|
|
|
|
2014-01-27 23:51:28 +04:00
|
|
|
HTMLMediaElement* GetMediaElement();
|
|
|
|
void SetTextTrackManager(TextTrackManager* aTextTrackManager);
|
|
|
|
|
2013-12-18 09:19:09 +04:00
|
|
|
nsresult DispatchTrackEvent(nsIDOMEvent* aEvent);
|
|
|
|
void CreateAndDispatchChangeEvent();
|
2016-06-01 08:35:53 +03:00
|
|
|
void SetCuesInactive();
|
2013-10-04 22:28:25 +04:00
|
|
|
|
2013-12-18 09:19:09 +04:00
|
|
|
IMPL_EVENT_HANDLER(change)
|
2013-05-21 20:14:00 +04:00
|
|
|
IMPL_EVENT_HANDLER(addtrack)
|
|
|
|
IMPL_EVENT_HANDLER(removetrack)
|
|
|
|
|
|
|
|
private:
|
2014-07-09 01:23:16 +04:00
|
|
|
~TextTrackList();
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray< RefPtr<TextTrack> > mTextTracks;
|
|
|
|
RefPtr<TextTrackManager> mTextTrackManager;
|
2013-10-04 22:28:25 +04:00
|
|
|
|
|
|
|
void CreateAndDispatchTrackEventRunner(TextTrack* aTrack,
|
|
|
|
const nsAString& aEventName);
|
2013-05-21 20:14:00 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_TextTrackList_h
|