| OLD | NEW |
| 1 /* | 1 /* |
| 2 * CSS Media Query Evaluator | 2 * CSS Media Query Evaluator |
| 3 * | 3 * |
| 4 * Copyright (C) 2006 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>. | 4 * Copyright (C) 2006 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 // Creates evaluator which evaluates only simple media queries | 58 // Creates evaluator which evaluates only simple media queries |
| 59 // Evaluator returns true for "all", and returns value of \mediaFeatureResul
t | 59 // Evaluator returns true for "all", and returns value of \mediaFeatureResul
t |
| 60 // for any media features | 60 // for any media features |
| 61 | 61 |
| 62 explicit MediaQueryEvaluator(bool mediaFeatureResult = false); | 62 explicit MediaQueryEvaluator(bool mediaFeatureResult = false); |
| 63 | 63 |
| 64 // Creates evaluator which evaluates only simple media queries | 64 // Creates evaluator which evaluates only simple media queries |
| 65 // Evaluator returns true for acceptedMediaType and returns value of \media
featureResult | 65 // Evaluator returns true for acceptedMediaType and returns value of \media
featureResult |
| 66 // for any media features | 66 // for any media features |
| 67 | 67 |
| 68 MediaQueryEvaluator(const String& acceptedMediaType, bool mediaFeatureResult
= false); | |
| 69 MediaQueryEvaluator(const char* acceptedMediaType, bool mediaFeatureResult =
false); | 68 MediaQueryEvaluator(const char* acceptedMediaType, bool mediaFeatureResult =
false); |
| 70 | 69 |
| 71 // Creates evaluator which evaluates full media queries | 70 // Creates evaluator which evaluates full media queries |
| 72 MediaQueryEvaluator(const String& acceptedMediaType, LocalFrame*); | 71 MediaQueryEvaluator(LocalFrame*); |
| 73 | 72 |
| 74 // Creates evaluator which evaluates in a thread-safe manner a subset of med
ia values | 73 // Creates evaluator which evaluates in a thread-safe manner a subset of med
ia values |
| 75 MediaQueryEvaluator(const String& acceptedMediaType, const MediaValues&); | 74 MediaQueryEvaluator(const MediaValues&); |
| 76 | 75 |
| 77 ~MediaQueryEvaluator(); | 76 ~MediaQueryEvaluator(); |
| 78 | 77 |
| 79 bool mediaTypeMatch(const String& mediaTypeToMatch) const; | 78 bool mediaTypeMatch(const String& mediaTypeToMatch) const; |
| 80 bool mediaTypeMatchSpecific(const char* mediaTypeToMatch) const; | 79 bool mediaTypeMatchSpecific(const char* mediaTypeToMatch) const; |
| 81 | 80 |
| 82 // Evaluates a list of media queries | 81 // Evaluates a list of media queries |
| 83 bool eval(const MediaQuerySet*, MediaQueryResultList* = 0) const; | 82 bool eval(const MediaQuerySet*, MediaQueryResultList* = 0) const; |
| 84 | 83 |
| 85 // Evaluates media query subexpression, ie "and (media-feature: value)" part | 84 // Evaluates media query subexpression, ie "and (media-feature: value)" part |
| 86 bool eval(const MediaQueryExp*) const; | 85 bool eval(const MediaQueryExp*) const; |
| 87 | 86 |
| 88 private: | 87 private: |
| 88 const String mediaType() const; |
| 89 |
| 89 String m_mediaType; | 90 String m_mediaType; |
| 90 bool m_expectedResult; | 91 bool m_expectedResult; |
| 91 RefPtr<MediaValues> m_mediaValues; | 92 RefPtr<MediaValues> m_mediaValues; |
| 92 }; | 93 }; |
| 93 | 94 |
| 94 } // namespace | 95 } // namespace |
| 95 #endif | 96 #endif |
| OLD | NEW |