This source file includes following definitions.
- create
- m_matches
- DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED
- addListener
- removeListener
- evaluate
- setMatches
- matches
- trace
#include "config.h"
#include "core/css/MediaQueryList.h"
#include "core/css/MediaList.h"
#include "core/css/MediaQueryEvaluator.h"
#include "core/css/MediaQueryListListener.h"
#include "core/css/MediaQueryMatcher.h"
namespace WebCore {
PassRefPtrWillBeRawPtr<MediaQueryList> MediaQueryList::create(PassRefPtrWillBeRawPtr<MediaQueryMatcher> vector, PassRefPtrWillBeRawPtr<MediaQuerySet> media, bool matches)
{
return adoptRefWillBeNoop(new MediaQueryList(vector, media, matches));
}
MediaQueryList::MediaQueryList(PassRefPtrWillBeRawPtr<MediaQueryMatcher> vector, PassRefPtrWillBeRawPtr<MediaQuerySet> media, bool matches)
: m_matcher(vector)
, m_media(media)
, m_evaluationRound(m_matcher->evaluationRound())
, m_changeRound(m_evaluationRound - 1)
, m_matches(matches)
{
}
DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(MediaQueryList)
String MediaQueryList::media() const
{
return m_media->mediaText();
}
void MediaQueryList::addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener> listener)
{
if (!listener)
return;
m_matcher->addListener(listener, this);
}
void MediaQueryList::removeListener(PassRefPtrWillBeRawPtr<MediaQueryListListener> listener)
{
if (!listener)
return;
m_matcher->removeListener(listener.get(), this);
}
bool MediaQueryList::evaluate(MediaQueryEvaluator* evaluator)
{
if (m_evaluationRound != m_matcher->evaluationRound() && evaluator)
setMatches(evaluator->eval(m_media.get()));
return m_changeRound == m_matcher->evaluationRound();
}
void MediaQueryList::setMatches(bool newValue)
{
m_evaluationRound = m_matcher->evaluationRound();
if (newValue == m_matches)
return;
m_matches = newValue;
m_changeRound = m_evaluationRound;
}
bool MediaQueryList::matches()
{
if (m_evaluationRound != m_matcher->evaluationRound())
setMatches(m_matcher->evaluate(m_media.get()));
return m_matches;
}
void MediaQueryList::trace(Visitor* visitor)
{
visitor->trace(m_matcher);
visitor->trace(m_media);
}
}