mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:17:35 +00:00
LibGUI: Unify naming of searching timer related members
This commit is contained in:
parent
9225b45c2d
commit
b775b1c199
2 changed files with 24 additions and 24 deletions
|
@ -163,8 +163,8 @@ protected:
|
|||
void update_edit_widget_position();
|
||||
|
||||
bool is_searching() const { return !m_highlighted_search.is_null(); }
|
||||
void cancel_searching();
|
||||
void start_searching_timer();
|
||||
void stop_highlighted_search_timer();
|
||||
void start_highlighted_search_timer();
|
||||
void do_search(String&&);
|
||||
|
||||
ModelIndex drop_candidate_index() const { return m_drop_candidate_index; }
|
||||
|
@ -193,7 +193,7 @@ private:
|
|||
RefPtr<Model> m_model;
|
||||
ModelSelection m_selection;
|
||||
String m_highlighted_search;
|
||||
RefPtr<Core::Timer> m_searching_timer;
|
||||
RefPtr<Core::Timer> m_highlighted_search_timer;
|
||||
SelectionBehavior m_selection_behavior { SelectionBehavior::SelectItems };
|
||||
SelectionMode m_selection_mode { SelectionMode::SingleSelection };
|
||||
unsigned m_edit_triggers { EditTrigger::DoubleClicked | EditTrigger::EditKeyPressed };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue