OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 28 matching lines...) Expand all Loading... |
39 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::cssValue() const | 39 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::cssValue() const |
40 { | 40 { |
41 return m_imageGeneratorValue.get(); | 41 return m_imageGeneratorValue.get(); |
42 } | 42 } |
43 | 43 |
44 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::computedCSSValue() const | 44 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::computedCSSValue() const |
45 { | 45 { |
46 return m_imageGeneratorValue->valueWithURLsMadeAbsolute(); | 46 return m_imageGeneratorValue->valueWithURLsMadeAbsolute(); |
47 } | 47 } |
48 | 48 |
49 LayoutSize StyleGeneratedImage::imageSize(const LayoutObject* layoutObject, floa
t multiplier) const | 49 LayoutSize StyleGeneratedImage::concreteObjectSize(const LayoutObject* layoutObj
ect, const FloatSize& defaultObjectSize, float multiplier) const |
50 { | 50 { |
51 if (m_fixedSize) { | 51 if (m_fixedSize) { |
52 LayoutSize fixedSize(m_imageGeneratorValue->fixedSize(layoutObject)); | 52 LayoutSize fixedSize(m_imageGeneratorValue->fixedSize(layoutObject)); |
53 if (multiplier == 1.0f) | 53 if (multiplier == 1.0f) |
54 return fixedSize; | 54 return fixedSize; |
55 | 55 |
56 LayoutUnit width(fixedSize.width() * multiplier); | 56 LayoutUnit width(fixedSize.width() * multiplier); |
57 LayoutUnit height(fixedSize.height() * multiplier); | 57 LayoutUnit height(fixedSize.height() * multiplier); |
58 | 58 |
59 // Don't let images that have a width/height >= 1 shrink below 1 when zo
omed. | 59 // Don't let images that have a width/height >= 1 shrink below 1 when zo
omed. |
60 if (fixedSize.width() > LayoutUnit()) | 60 if (fixedSize.width() > LayoutUnit()) |
61 width = max(LayoutUnit(1), width); | 61 width = max(LayoutUnit(1), width); |
62 | 62 |
63 if (fixedSize.height() > LayoutUnit()) | 63 if (fixedSize.height() > LayoutUnit()) |
64 height = max(LayoutUnit(1), height); | 64 height = max(LayoutUnit(1), height); |
65 | 65 |
66 return LayoutSize(width, height); | 66 return LayoutSize(width, height); |
67 } | 67 } |
68 | 68 |
69 return LayoutSize(); | 69 return LayoutSize(defaultObjectSize); |
70 } | 70 } |
71 | 71 |
72 void StyleGeneratedImage::computeIntrinsicDimensions(const LayoutObject* layoutO
bject, FloatSize& intrinsicSize, FloatSize& intrinsicRatio) | 72 void StyleGeneratedImage::computeIntrinsicDimensions(const LayoutObject* layoutO
bject, FloatSize& intrinsicSize, FloatSize& intrinsicRatio) |
73 { | 73 { |
74 // At a zoom level of 1 the image is guaranteed to have an integer size. | 74 // At a zoom level of 1 the image is guaranteed to have an integer size. |
75 LayoutSize size = imageSize(layoutObject, 1); | 75 LayoutSize size = concreteObjectSize(layoutObject, FloatSize(300, 150), 1);
// TODO: defaultConcreteObjectSize |
76 ASSERT(size.fraction().isZero()); | 76 ASSERT(size.fraction().isZero()); |
77 intrinsicSize = intrinsicRatio = FloatSize(size); | 77 intrinsicSize = intrinsicRatio = FloatSize(size); |
78 } | 78 } |
79 | 79 |
80 void StyleGeneratedImage::addClient(LayoutObject* layoutObject) | 80 void StyleGeneratedImage::addClient(LayoutObject* layoutObject) |
81 { | 81 { |
82 m_imageGeneratorValue->addClient(layoutObject, IntSize()); | 82 m_imageGeneratorValue->addClient(layoutObject, IntSize()); |
83 } | 83 } |
84 | 84 |
85 void StyleGeneratedImage::removeClient(LayoutObject* layoutObject) | 85 void StyleGeneratedImage::removeClient(LayoutObject* layoutObject) |
(...skipping 11 matching lines...) Expand all Loading... |
97 return m_imageGeneratorValue->knownToBeOpaque(layoutObject); | 97 return m_imageGeneratorValue->knownToBeOpaque(layoutObject); |
98 } | 98 } |
99 | 99 |
100 DEFINE_TRACE(StyleGeneratedImage) | 100 DEFINE_TRACE(StyleGeneratedImage) |
101 { | 101 { |
102 visitor->trace(m_imageGeneratorValue); | 102 visitor->trace(m_imageGeneratorValue); |
103 StyleImage::trace(visitor); | 103 StyleImage::trace(visitor); |
104 } | 104 } |
105 | 105 |
106 } // namespace blink | 106 } // namespace blink |
OLD | NEW |