Add search bar and Active/Ready filter to quest log

Adds a name search input and All/Active/Ready radio buttons above the
quest list. Clears the filter automatically when openAndSelectQuest() is
called so the target quest is always visible.
This commit is contained in:
Kelsi 2026-03-11 23:17:38 -07:00
parent 3446fffe86
commit b3d3814ce9
2 changed files with 44 additions and 0 deletions

View file

@ -31,6 +31,10 @@ private:
uint32_t lastDetailRequestQuestId_ = 0;
double lastDetailRequestAt_ = 0.0;
std::unordered_set<uint32_t> questDetailQueryNoResponse_;
// Search / filter
char questSearchFilter_[64] = {};
// 0=all, 1=active only, 2=complete only
int questFilterMode_ = 0;
};
}} // namespace wowee::ui