| 1112 | } |
| 1113 | |
| 1114 | void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override |
| 1115 | { |
| 1116 | if (widget != WID_Q_TEXT) return; |
| 1117 | |
| 1118 | size = GetStringMultiLineBoundingBox(this->message.GetDecodedString(), size); |
| 1119 | } |
| 1120 | |
| 1121 | void DrawWidget(const Rect &r, WidgetID widget) const override |
| 1122 | { |
nothing calls this directly
no test coverage detected