diff options
Diffstat (limited to 'src/AutoComplete.h')
-rw-r--r-- | src/AutoComplete.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/AutoComplete.h b/src/AutoComplete.h index 4d27e6add..9977196a2 100644 --- a/src/AutoComplete.h +++ b/src/AutoComplete.h @@ -21,6 +21,7 @@ class AutoComplete { char separator; char typesep; // Type seperator enum { maxItemLen=1000 }; + std::vector<int> sortMatrix; public: @@ -36,6 +37,11 @@ public: unsigned int ignoreCaseBehaviour; int widthLBDefault; int heightLBDefault; + /** SC_ORDER_PRESORTED: Assume the list is presorted; selection will fail if it is not alphabetical<br /> + * SC_ORDER_PERFORMSORT: Sort the list alphabetically; start up performance cost for sorting<br /> + * SC_ORDER_CUSTOM: Handle non-alphabetical entries; start up performance cost for generating a sorted lookup table + */ + int autoSort; AutoComplete(); ~AutoComplete(); |