|
Blender V4.3
|
#include <BKE_text_suggestions.h>
Public Attributes | |
| SuggItem * | first |
| SuggItem * | last |
| SuggItem * | firstmatch |
| SuggItem * | lastmatch |
| SuggItem * | selected |
| int | top |
Suggestions should be added in sorted order although a linear sorting method is implemented. The list is then divided up based on the prefix provided by update_suggestions:
Example: Prefix: ab aaa <- SuggList::first aab aba <- SuggList::firstmatch abb <- SuggList::lastmatch baa bab <- SuggList::last
Definition at line 35 of file BKE_text_suggestions.h.
| SuggItem* SuggList::first |
Definition at line 36 of file BKE_text_suggestions.h.
Referenced by texttool_suggest_add(), texttool_suggest_prefix(), and txttl_free_suggest().
| SuggItem* SuggList::firstmatch |
Definition at line 37 of file BKE_text_suggestions.h.
Referenced by texttool_suggest_add(), texttool_suggest_first(), texttool_suggest_prefix(), and txttl_free_suggest().
| SuggItem * SuggList::last |
Definition at line 36 of file BKE_text_suggestions.h.
Referenced by texttool_suggest_add(), texttool_suggest_prefix(), and txttl_free_suggest().
| SuggItem * SuggList::lastmatch |
Definition at line 37 of file BKE_text_suggestions.h.
Referenced by texttool_suggest_add(), texttool_suggest_last(), texttool_suggest_prefix(), and txttl_free_suggest().
| SuggItem* SuggList::selected |
Definition at line 38 of file BKE_text_suggestions.h.
Referenced by texttool_suggest_add(), texttool_suggest_prefix(), texttool_suggest_select(), texttool_suggest_selected(), and txttl_free_suggest().
| int SuggList::top |
Definition at line 39 of file BKE_text_suggestions.h.
Referenced by texttool_suggest_add(), texttool_suggest_prefix(), texttool_suggest_top(), and txttl_free_suggest().