mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
187 lines
5.9 KiB
C++
187 lines
5.9 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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/. */
|
|
|
|
/*
|
|
* representation of media lists used when linking to style sheets or by
|
|
* @media rules
|
|
*/
|
|
|
|
#ifndef nsIMediaList_h_
|
|
#define nsIMediaList_h_
|
|
|
|
#include "nsIDOMMediaList.h"
|
|
#include "nsTArray.h"
|
|
#include "nsIAtom.h"
|
|
#include "nsCSSValue.h"
|
|
#include "mozilla/Attributes.h"
|
|
|
|
class nsPresContext;
|
|
class nsCSSStyleSheet;
|
|
class nsAString;
|
|
struct nsMediaFeature;
|
|
|
|
struct nsMediaExpression {
|
|
enum Range { eMin, eMax, eEqual };
|
|
|
|
const nsMediaFeature *mFeature;
|
|
Range mRange;
|
|
nsCSSValue mValue;
|
|
|
|
// aActualValue must be obtained from mFeature->mGetter
|
|
bool Matches(nsPresContext* aPresContext,
|
|
const nsCSSValue& aActualValue) const;
|
|
};
|
|
|
|
/**
|
|
* An nsMediaQueryResultCacheKey records what feature/value combinations
|
|
* a set of media query results are valid for. This allows the caller
|
|
* to quickly learn whether a prior result of media query evaluation is
|
|
* still valid (e.g., due to a window size change) without rerunning all
|
|
* of the evaluation and rebuilding the list of rules.
|
|
*
|
|
* This object may not be used after any media rules in any of the
|
|
* sheets it was given to have been modified. However, this is
|
|
* generally not a problem since ClearRuleCascades is called on the
|
|
* sheet whenever this happens, and these objects are stored inside the
|
|
* rule cascades. (FIXME: We're not actually doing this all the time.)
|
|
*
|
|
* The implementation could be further optimized in the future to store
|
|
* ranges (combinations of less-than, less-than-or-equal, greater-than,
|
|
* greater-than-or-equal, equal, not-equal, present, not-present) for
|
|
* each feature rather than simply storing the list of expressions.
|
|
* However, this requires combining any such ranges.
|
|
*/
|
|
class nsMediaQueryResultCacheKey {
|
|
public:
|
|
nsMediaQueryResultCacheKey(nsIAtom* aMedium)
|
|
: mMedium(aMedium)
|
|
{}
|
|
|
|
/**
|
|
* Record that aExpression was tested while building the cached set
|
|
* that this cache key is for, and that aExpressionMatches was whether
|
|
* it matched.
|
|
*/
|
|
void AddExpression(const nsMediaExpression* aExpression,
|
|
bool aExpressionMatches);
|
|
bool Matches(nsPresContext* aPresContext) const;
|
|
private:
|
|
struct ExpressionEntry {
|
|
// FIXME: if we were better at maintaining invariants about clearing
|
|
// rule cascades when media lists change, this could be a |const
|
|
// nsMediaExpression*| instead.
|
|
nsMediaExpression mExpression;
|
|
bool mExpressionMatches;
|
|
};
|
|
struct FeatureEntry {
|
|
const nsMediaFeature *mFeature;
|
|
InfallibleTArray<ExpressionEntry> mExpressions;
|
|
};
|
|
nsCOMPtr<nsIAtom> mMedium;
|
|
nsTArray<FeatureEntry> mFeatureCache;
|
|
};
|
|
|
|
class nsMediaQuery {
|
|
public:
|
|
nsMediaQuery()
|
|
: mNegated(false)
|
|
, mHasOnly(false)
|
|
, mTypeOmitted(false)
|
|
, mHadUnknownExpression(false)
|
|
{
|
|
}
|
|
|
|
private:
|
|
// for Clone only
|
|
nsMediaQuery(const nsMediaQuery& aOther)
|
|
: mNegated(aOther.mNegated)
|
|
, mHasOnly(aOther.mHasOnly)
|
|
, mTypeOmitted(aOther.mTypeOmitted)
|
|
, mHadUnknownExpression(aOther.mHadUnknownExpression)
|
|
, mMediaType(aOther.mMediaType)
|
|
// Clone checks the result of this deep copy for allocation failure
|
|
, mExpressions(aOther.mExpressions)
|
|
{
|
|
}
|
|
|
|
public:
|
|
|
|
void SetNegated() { mNegated = true; }
|
|
void SetHasOnly() { mHasOnly = true; }
|
|
void SetTypeOmitted() { mTypeOmitted = true; }
|
|
void SetHadUnknownExpression() { mHadUnknownExpression = true; }
|
|
void SetType(nsIAtom* aMediaType) {
|
|
NS_ASSERTION(aMediaType,
|
|
"expected non-null");
|
|
mMediaType = aMediaType;
|
|
}
|
|
|
|
// Return a new nsMediaExpression in the array for the caller to fill
|
|
// in. The caller must either fill it in completely, or call
|
|
// SetHadUnknownExpression on this nsMediaQuery.
|
|
// Returns null on out-of-memory.
|
|
nsMediaExpression* NewExpression() { return mExpressions.AppendElement(); }
|
|
|
|
void AppendToString(nsAString& aString) const;
|
|
|
|
nsMediaQuery* Clone() const;
|
|
|
|
// Does this query apply to the presentation?
|
|
// If |aKey| is non-null, add cache information to it.
|
|
bool Matches(nsPresContext* aPresContext,
|
|
nsMediaQueryResultCacheKey* aKey) const;
|
|
|
|
private:
|
|
bool mNegated;
|
|
bool mHasOnly; // only needed for serialization
|
|
bool mTypeOmitted; // only needed for serialization
|
|
bool mHadUnknownExpression;
|
|
nsCOMPtr<nsIAtom> mMediaType;
|
|
nsTArray<nsMediaExpression> mExpressions;
|
|
};
|
|
|
|
class nsMediaList MOZ_FINAL : public nsIDOMMediaList {
|
|
public:
|
|
nsMediaList();
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIDOMMEDIALIST
|
|
|
|
nsresult GetText(nsAString& aMediaText);
|
|
nsresult SetText(const nsAString& aMediaText);
|
|
|
|
// Does this query apply to the presentation?
|
|
// If |aKey| is non-null, add cache information to it.
|
|
bool Matches(nsPresContext* aPresContext,
|
|
nsMediaQueryResultCacheKey* aKey);
|
|
|
|
nsresult SetStyleSheet(nsCSSStyleSheet* aSheet);
|
|
void AppendQuery(nsAutoPtr<nsMediaQuery>& aQuery) {
|
|
// Takes ownership of aQuery
|
|
mArray.AppendElement(aQuery.forget());
|
|
}
|
|
|
|
nsresult Clone(nsMediaList** aResult);
|
|
|
|
int32_t Count() { return mArray.Length(); }
|
|
nsMediaQuery* MediumAt(int32_t aIndex) { return mArray[aIndex]; }
|
|
void Clear() { mArray.Clear(); }
|
|
|
|
protected:
|
|
~nsMediaList();
|
|
|
|
nsresult Delete(const nsAString & aOldMedium);
|
|
nsresult Append(const nsAString & aOldMedium);
|
|
|
|
InfallibleTArray<nsAutoPtr<nsMediaQuery> > mArray;
|
|
// not refcounted; sheet will let us know when it goes away
|
|
// mStyleSheet is the sheet that needs to be dirtied when this medialist
|
|
// changes
|
|
nsCSSStyleSheet* mStyleSheet;
|
|
};
|
|
#endif /* !defined(nsIMediaList_h_) */
|