Scroll to class when using picker tool on object

See: #572
This commit is contained in:
Jonathan G Rennison
2023-07-20 10:43:10 +01:00
parent c8ca16e43d
commit 40faaa46f4
3 changed files with 53 additions and 0 deletions

View File

@@ -417,6 +417,24 @@ public:
}
}
/**
* Clear class filter if the selected class is not included in the filter.
* @param object_class Object class select.
*/
void ClearFilterIsClassNotIncluded(ObjectClassID object_class)
{
/* Filter is not enabled */
if (!this->object_classes.IsFilterEnabled()) return;
for (auto oc : this->object_classes) {
if (oc == object_class) {
return;
}
}
this->ClearEditBox(WID_BO_FILTER);
}
/**
* Select the specified object class.
* @param object_class Object class select.
@@ -456,6 +474,22 @@ public:
this->UpdateButtons(_selected_object_class, _selected_object_index, _selected_object_view);
}
/**
* Scrolls #WID_BO_SCROLLBAR so that the selected class is visible.
*/
void EnsureSelectedClassIsVisible()
{
uint pos = 0;
for (auto object_class : this->object_classes) {
if (object_class == _selected_object_class) {
this->vscroll->SetCount(this->object_classes.size());
this->vscroll->ScrollTowards(pos);
return;
}
pos++;
}
}
void UpdateSelectSize()
{
if (_selected_object_index == -1) {
@@ -760,8 +794,10 @@ void ShowBuildObjectPickerAndSelect(const ObjectSpec *spec)
BuildObjectWindow *w = AllocateWindowDescFront<BuildObjectWindow>(&_build_object_desc, 0, true);
if (w != nullptr) {
w->ClearFilterIsClassNotIncluded(spec->cls_id);
w->SelectOtherClass(spec->cls_id);
w->SelectOtherObject(spec_id);
w->EnsureSelectedClassIsVisible();
}
}