| 475 | int GetHorizontalRange() const override |
| 476 | { return IsWindowValid(mwWindow) ? mwWindow->GetHorizontalRange() : 0; } |
| 477 | void SetHorizontalThumbPosition(int viewStart) override |
| 478 | { |
| 479 | if (IsWindowValid(mwWindow)) mwWindow->SetHorizontalThumbPosition(viewStart); |
| 480 | } |
| 481 | void SetHorizontalScrollbar(int position, int thumbSize, |
| 482 | int range, int pageSize, bool refresh) override |
| 483 | { |
nothing calls this directly
no test coverage detected