| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2004, 2008, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2008, 2010 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2010 Google Inc. All rights reserved. | 5 * Copyright (C) 2010 Google 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 56 const AtomicString& altText() const; | 56 const AtomicString& altText() const; |
| 57 | 57 |
| 58 CompositeOperator compositeOperator() const { return m_compositeOperator; } | 58 CompositeOperator compositeOperator() const { return m_compositeOperator; } |
| 59 | 59 |
| 60 ImageResource* cachedImage() const { return imageLoader().image(); } | 60 ImageResource* cachedImage() const { return imageLoader().image(); } |
| 61 void setImageResource(ImageResource* i) { imageLoader().setImage(i); }; | 61 void setImageResource(ImageResource* i) { imageLoader().setImage(i); }; |
| 62 | 62 |
| 63 void setLoadManually(bool loadManually) { imageLoader().setLoadManually(load
Manually); } | 63 void setLoadManually(bool loadManually) { imageLoader().setLoadManually(load
Manually); } |
| 64 | 64 |
| 65 const AtomicString& alt() const; | |
| 66 | |
| 67 void setHeight(int); | 65 void setHeight(int); |
| 68 | 66 |
| 69 KURL src() const; | 67 KURL src() const; |
| 70 void setSrc(const String&); | 68 void setSrc(const String&); |
| 71 | 69 |
| 72 void setWidth(int); | 70 void setWidth(int); |
| 73 | 71 |
| 74 int x() const; | 72 int x() const; |
| 75 int y() const; | 73 int y() const; |
| 76 | 74 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 CompositeOperator m_compositeOperator; | 143 CompositeOperator m_compositeOperator; |
| 146 AtomicString m_bestFitImageURL; | 144 AtomicString m_bestFitImageURL; |
| 147 float m_imageDevicePixelRatio; | 145 float m_imageDevicePixelRatio; |
| 148 bool m_formWasSetByParser; | 146 bool m_formWasSetByParser; |
| 149 bool m_elementCreatedByParser; | 147 bool m_elementCreatedByParser; |
| 150 }; | 148 }; |
| 151 | 149 |
| 152 } //namespace | 150 } //namespace |
| 153 | 151 |
| 154 #endif | 152 #endif |
| OLD | NEW |