2013-05-21 09:14:00 -07: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-03-31 23:13:50 -07:00
|
|
|
#include "mozilla/DOMEventTargetHelper.h"
|
2013-05-21 09:14:00 -07:00
|
|
|
#include "mozilla/dom/TextTrack.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-01-27 11:51:28 -08:00
|
|
|
class HTMLMediaElement;
|
|
|
|
class TextTrackManager;
|
2014-02-27 09:47:23 -08:00
|
|
|
class CompareTextTracks;
|
2013-10-04 11:28:25 -07:00
|
|
|
class TrackEvent;
|
|
|
|
class TrackEventRunner;
|
|
|
|
|
2014-03-31 23:13:50 -07:00
|
|
|
class TextTrackList MOZ_FINAL : public DOMEventTargetHelper
|
2013-05-21 09:14:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2014-03-31 23:13:50 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(TextTrackList, DOMEventTargetHelper)
|
2013-05-21 09:14:00 -07:00
|
|
|
|
2014-08-31 20:50:23 -07:00
|
|
|
explicit TextTrackList(nsPIDOMWindow* aOwnerWindow);
|
2014-04-07 10:58:38 -07:00
|
|
|
TextTrackList(nsPIDOMWindow* aOwnerWindow, TextTrackManager* aTextTrackManager);
|
2013-05-21 09:14:00 -07:00
|
|
|
|
2014-04-08 15:27:18 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
2013-05-21 09:14:00 -07:00
|
|
|
|
|
|
|
uint32_t Length() const
|
|
|
|
{
|
|
|
|
return mTextTracks.Length();
|
|
|
|
}
|
|
|
|
|
2013-12-12 07:57:21 -08:00
|
|
|
// Get all the current active cues.
|
2014-02-27 07:02:40 -08:00
|
|
|
void UpdateAndGetShowingCues(nsTArray<nsRefPtr<TextTrackCue> >& aCues);
|
2013-12-12 07:57:21 -08:00
|
|
|
|
2013-05-21 09:14:00 -07:00
|
|
|
TextTrack* IndexedGetter(uint32_t aIndex, bool& aFound);
|
2014-02-28 12:40:00 -08:00
|
|
|
TextTrack* operator[](uint32_t aIndex);
|
2013-05-21 09:14:00 -07:00
|
|
|
|
2014-01-27 12:17:20 -08:00
|
|
|
already_AddRefed<TextTrack> AddTextTrack(TextTrackKind aKind,
|
2013-05-21 09:14:00 -07:00
|
|
|
const nsAString& aLabel,
|
2014-02-27 09:47:23 -08:00
|
|
|
const nsAString& aLanguage,
|
2014-03-13 10:18:06 -07:00
|
|
|
TextTrackMode aMode,
|
2014-03-13 11:41:21 -07:00
|
|
|
TextTrackReadyState aReadyState,
|
2014-02-27 09:47:23 -08:00
|
|
|
TextTrackSource aTextTrackSource,
|
|
|
|
const CompareTextTracks& aCompareTT);
|
2013-07-09 08:44:35 -07:00
|
|
|
TextTrack* GetTrackById(const nsAString& aId);
|
|
|
|
|
2014-02-27 09:47:23 -08:00
|
|
|
void AddTextTrack(TextTrack* aTextTrack, const CompareTextTracks& aCompareTT);
|
2013-05-21 09:14:00 -07:00
|
|
|
|
2013-10-21 07:15:00 -07:00
|
|
|
void RemoveTextTrack(TextTrack* aTrack);
|
2013-06-14 13:10:36 -07:00
|
|
|
void DidSeek();
|
2013-05-21 09:14:00 -07:00
|
|
|
|
2014-01-27 11:51:28 -08:00
|
|
|
HTMLMediaElement* GetMediaElement();
|
|
|
|
void SetTextTrackManager(TextTrackManager* aTextTrackManager);
|
|
|
|
|
2013-12-17 21:19:09 -08:00
|
|
|
nsresult DispatchTrackEvent(nsIDOMEvent* aEvent);
|
|
|
|
void CreateAndDispatchChangeEvent();
|
2013-10-04 11:28:25 -07:00
|
|
|
|
2013-12-17 21:19:09 -08:00
|
|
|
IMPL_EVENT_HANDLER(change)
|
2013-05-21 09:14:00 -07:00
|
|
|
IMPL_EVENT_HANDLER(addtrack)
|
|
|
|
IMPL_EVENT_HANDLER(removetrack)
|
|
|
|
|
|
|
|
private:
|
2014-07-08 14:23:16 -07:00
|
|
|
~TextTrackList();
|
|
|
|
|
2013-05-21 09:14:00 -07:00
|
|
|
nsTArray< nsRefPtr<TextTrack> > mTextTracks;
|
2014-01-27 11:51:28 -08:00
|
|
|
nsRefPtr<TextTrackManager> mTextTrackManager;
|
2013-10-04 11:28:25 -07:00
|
|
|
|
|
|
|
void CreateAndDispatchTrackEventRunner(TextTrack* aTrack,
|
|
|
|
const nsAString& aEventName);
|
2013-05-21 09:14:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_TextTrackList_h
|