mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
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:
parent
3446fffe86
commit
b3d3814ce9
2 changed files with 44 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue