| 125 | } |
| 126 | |
| 127 | Rect Widget::GetFrameGeometry() const |
| 128 | { |
| 129 | if (Type == WidgetType::Child) |
| 130 | { |
| 131 | return FrameGeometry; |
| 132 | } |
| 133 | else |
| 134 | { |
| 135 | return DispWindow->GetWindowFrame(); |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | void Widget::SetNoncontentSizes(double left, double top, double right, double bottom) |
| 140 | { |
no test coverage detected