diff options
author | Neil <nyamatongwe@gmail.com> | 2021-03-18 17:38:38 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-03-18 17:38:38 +1100 |
commit | bac6aef730e569c6b4bcda7026bf1c1db3e827b6 (patch) | |
tree | 898ef25cd1964752c397cb752866b9527c1f9c30 /src | |
parent | 30e8720a235014e96125f9142e5c0a7e628526ce (diff) | |
download | scintilla-mirror-bac6aef730e569c6b4bcda7026bf1c1db3e827b6.tar.gz |
ListBox options API. ListOptions is currently empty but may contain list item
colours in the future.
Diffstat (limited to 'src')
-rw-r--r-- | src/Platform.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Platform.h b/src/Platform.h index 3b5b991b0..33116999c 100644 --- a/src/Platform.h +++ b/src/Platform.h @@ -269,6 +269,9 @@ public: virtual void ListNotify(ListBoxEvent *plbe)=0; }; +struct ListOptions { +}; + class ListBox : public Window { public: ListBox() noexcept; @@ -294,6 +297,7 @@ public: virtual void ClearRegisteredImages()=0; virtual void SetDelegate(IListBoxDelegate *lbDelegate)=0; virtual void SetList(const char* list, char separator, char typesep)=0; + virtual void SetOptions(ListOptions options_)=0; }; /** |