1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 #pragma once
30
31 #include "../ui/tree.h"
32 #include "toolkit.h"
33
34 #include "../ui/container.h"
35
36
37 extern "C" void ui_simple_list_update(UiList * list,
int i);
38
39 extern "C" void ui_breadcrumbbar_update(UiList * list,
int i);
40
41 std::vector<
int> ui_create_listview_selection(winrt::Microsoft::
UI::Xaml::Controls::ListView listview);
42
43 extern "C" UiListSelection ui_listview_getselection(UiList *list);
44 extern "C" void ui_listview_setselection(UiList *list, UiListSelection selection);
45
46 extern "C" UiListSelection ui_dropdown_getselection(UiList *list);
47 extern "C" void ui_dropdown_setselection(UiList *list, UiListSelection selection);
48