Home
last modified time | relevance | path

Searched refs:fChoiceModel (Results 1 – 3 of 3) sorted by relevance

/haiku/src/apps/webpositive/autocompletion/
H A DAutoCompleterDefaultImpl.cpp57 if (!fChoiceView || !fChoiceModel || index == fSelectedIndex in Select()
58 || index < -1 || index >= fChoiceModel->CountChoices()) { in Select()
71 if (!fChoiceModel || fChoiceModel->CountChoices() == 0) in SelectNext()
75 if (newIndex >= fChoiceModel->CountChoices()) { in SelectNext()
88 if (!fChoiceModel || fChoiceModel->CountChoices() == 0) in SelectPrevious()
94 newIndex = fChoiceModel->CountChoices() - 1; in SelectPrevious()
119 if (!fChoiceModel || !fChoiceView || !fEditView || fSelectedIndex < 0) in ApplyChoice()
124 const BString& choiceStr = fChoiceModel->ChoiceAt(fSelectedIndex)->Text(); in ApplyChoice()
163 if (fIgnoreEditViewStateChanges || !fChoiceModel || !fChoiceView in EditViewStateChanged()
182 fChoiceModel->FetchChoicesFor(pattern); in EditViewStateChanged()
[all …]
H A DAutoCompleter.cpp48 fChoiceModel(choiceModel), in CompletionStyle()
57 delete fChoiceModel; in ~CompletionStyle()
83 delete fChoiceModel; in SetChoiceModel()
84 fChoiceModel = model; in SetChoiceModel()
H A DAutoCompleter.h116 ChoiceModel* GetChoiceModel() { return fChoiceModel; } in GetChoiceModel()
122 ChoiceModel* fChoiceModel; variable