| 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) 2003, 2006, 2007 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 virtual int minPrefWidth() const; | 44 virtual int minPrefWidth() const; |
| 45 virtual int maxPrefWidth() const; | 45 virtual int maxPrefWidth() const; |
| 46 | 46 |
| 47 virtual int overrideSize() const; | 47 virtual int overrideSize() const; |
| 48 virtual int overrideWidth() const; | 48 virtual int overrideWidth() const; |
| 49 virtual int overrideHeight() const; | 49 virtual int overrideHeight() const; |
| 50 virtual void setOverrideSize(int); | 50 virtual void setOverrideSize(int); |
| 51 | 51 |
| 52 virtual FloatPoint localToAbsolute(FloatPoint localPoint = FloatPoint(), boo
l fixed = false, bool useTransforms = false) const; | 52 virtual FloatPoint localToAbsolute(FloatPoint localPoint = FloatPoint(), boo
l fixed = false, bool useTransforms = false) const; |
| 53 virtual FloatPoint absoluteToLocal(FloatPoint containerPoint, bool fixed = f
alse, bool useTransforms = false) const; | 53 virtual FloatPoint absoluteToLocal(FloatPoint containerPoint, bool fixed = f
alse, bool useTransforms = false) const; |
| 54 virtual FloatQuad localToAbsoluteQuad(const FloatQuad&, bool fixed = false)
const; |
| 54 | 55 |
| 55 virtual int xPos() const { return m_x; } | 56 virtual int xPos() const { return m_x; } |
| 56 virtual int yPos() const { return m_y; } | 57 virtual int yPos() const { return m_y; } |
| 57 virtual void setPos(int x, int y); | 58 virtual void setPos(int x, int y); |
| 58 | 59 |
| 59 virtual int width() const { return m_width; } | 60 virtual int width() const { return m_width; } |
| 60 virtual int height() const { return m_height; } | 61 virtual int height() const { return m_height; } |
| 61 virtual void setWidth(int width) { m_width = width; } | 62 virtual void setWidth(int width) { m_width = width; } |
| 62 virtual void setHeight(int height) { m_height = height; } | 63 virtual void setHeight(int height) { m_height = height; } |
| 63 | 64 |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 | 248 |
| 248 private: | 249 private: |
| 249 // Used to store state between styleWillChange and styleDidChange | 250 // Used to store state between styleWillChange and styleDidChange |
| 250 static bool s_wasFloating; | 251 static bool s_wasFloating; |
| 251 static bool s_hadOverflowClip; | 252 static bool s_hadOverflowClip; |
| 252 }; | 253 }; |
| 253 | 254 |
| 254 } // namespace WebCore | 255 } // namespace WebCore |
| 255 | 256 |
| 256 #endif // RenderBox_h | 257 #endif // RenderBox_h |
| OLD | NEW |