Get rectangle in screen coordinates */
| 65 | } |
| 66 | /** Get rectangle in screen coordinates */ |
| 67 | IntRect getAbsoluteRect() const |
| 68 | { |
| 69 | return { |
| 70 | mAbsolutePosition.left, |
| 71 | mAbsolutePosition.top, |
| 72 | mAbsolutePosition.left + mCoord.width, |
| 73 | mAbsolutePosition.top + mCoord.height}; |
| 74 | } |
| 75 | /** Get coordinate in screen coordinates */ |
| 76 | IntCoord getAbsoluteCoord() const |
| 77 | { |
no outgoing calls
no test coverage detected