Sun, 07 Dec 2025 15:50:20 +0100
rename tree.h to list.h
|
917
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
1 | /* |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
3 | * |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
4 | * Copyright 2025 Olaf Wintermann. All rights reserved. |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
5 | * |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
6 | * Redistribution and use in source and binary forms, with or without |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
7 | * modification, are permitted provided that the following conditions are met: |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
8 | * |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
9 | * 1. Redistributions of source code must retain the above copyright |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
10 | * notice, this list of conditions and the following disclaimer. |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
11 | * |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
12 | * 2. Redistributions in binary form must reproduce the above copyright |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
13 | * notice, this list of conditions and the following disclaimer in the |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
14 | * documentation and/or other materials provided with the distribution. |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
15 | * |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
26 | * POSSIBILITY OF SUCH DAMAGE. |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
27 | */ |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
28 | |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
29 | #ifndef LIST_H |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
30 | #define LIST_H |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
31 | |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
32 | #include "toolkit.h" |
|
971
0224108bd8c2
rename tree.h to list.h
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
938
diff
changeset
|
33 | #include "../ui/list.h" |
|
917
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
34 | #include "win32.h" |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
35 | #include <commctrl.h> |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
36 | |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
37 | #ifdef __cplusplus |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
38 | extern "C" { |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
39 | #endif |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
40 | |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
41 | typedef struct UiListView { |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
42 | W32Widget widget; |
|
919
d9018dcd4e2d
implement listview selection events (Win32)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
917
diff
changeset
|
43 | UiObject *obj; |
|
917
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
44 | UiVar *var; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
45 | ui_getvaluefunc2 getvalue; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
46 | void *getvaluedata; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
47 | ui_getstylefunc getstyle; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
48 | void *getstyledata; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
49 | UiModel *model; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
50 | UiBool istable; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
51 | int preferred_width; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
52 | int preferred_height; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
53 | ui_callback onactivate; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
54 | void* onactivatedata; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
55 | ui_callback onselection; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
56 | void* onselectiondata; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
57 | ui_callback ondragstart; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
58 | void* ondragstartdata; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
59 | ui_callback ondragcomplete; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
60 | void* ondragcompletedata; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
61 | ui_callback ondrop; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
62 | void* ondropdata; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
63 | } UiListView; |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
64 | |
|
938
be4c88ded783
change w32 eventproc signature + fix grid repaint bug (Win32)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
936
diff
changeset
|
65 | int ui_listview_eventproc(W32Widget *widget, HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); |
|
917
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
66 | W32Size ui_listview_get_preferred_size(W32Widget *widget); |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
67 | |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
68 | void ui_listview_update(UiList *list, int row); |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
69 | UiListSelection ui_listview_getselection(UiList *list); |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
70 | void ui_listview_setselection(UiList *list, UiListSelection selection); |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
71 | |
|
938
be4c88ded783
change w32 eventproc signature + fix grid repaint bug (Win32)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
936
diff
changeset
|
72 | int ui_dropdown_eventproc(W32Widget *widget, HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); |
|
936
d40a72210be8
add ui_combobox (Win32)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
919
diff
changeset
|
73 | W32Size ui_dropdown_get_preferred_size(W32Widget *widget); |
|
d40a72210be8
add ui_combobox (Win32)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
919
diff
changeset
|
74 | |
|
d40a72210be8
add ui_combobox (Win32)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
919
diff
changeset
|
75 | void ui_dropdown_update(UiList *list, int row); |
|
d40a72210be8
add ui_combobox (Win32)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
919
diff
changeset
|
76 | UiListSelection ui_dropdown_getselection(UiList *list); |
|
d40a72210be8
add ui_combobox (Win32)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
919
diff
changeset
|
77 | void ui_dropdown_setselection(UiList *list, UiListSelection selection); |
|
d40a72210be8
add ui_combobox (Win32)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
919
diff
changeset
|
78 | |
|
917
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
79 | #ifdef __cplusplus |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
80 | } |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
81 | #endif |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
82 | |
|
ca3918f9c96b
add first win32 listview/table code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff
changeset
|
83 | #endif //_LIST_H |