Thu, 15 Feb 2024 21:33:08 +0100
port progressbar to new API (GTK)
35 | 1 | /* |
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
3 | * | |
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
40
diff
changeset
|
4 | * Copyright 2017 Olaf Wintermann. All rights reserved. |
35 | 5 | * |
6 | * Redistribution and use in source and binary forms, with or without | |
7 | * modification, are permitted provided that the following conditions are met: | |
8 | * | |
9 | * 1. Redistributions of source code must retain the above copyright | |
10 | * notice, this list of conditions and the following disclaimer. | |
11 | * | |
12 | * 2. Redistributions in binary form must reproduce the above copyright | |
13 | * notice, this list of conditions and the following disclaimer in the | |
14 | * documentation and/or other materials provided with the distribution. | |
15 | * | |
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
26 | * POSSIBILITY OF SUCH DAMAGE. | |
27 | */ | |
28 | ||
29 | #ifndef MODEL_H | |
30 | #define MODEL_H | |
31 | ||
32 | #include "../ui/toolkit.h" | |
33 | #include "../common/context.h" | |
40
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
34 | #include "../ui/tree.h" |
35 | 35 | |
36 | #ifdef __cplusplus | |
37 | extern "C" { | |
38 | #endif | |
39 | ||
40 | typedef struct UiListModel UiListModel; | |
41 | ||
42 | /* | |
43 | * UiList to GtkTreeModel wrapper | |
44 | */ | |
45 | struct UiListModel { | |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
46 | GObject object; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
47 | UiObject *obj; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
48 | UiModel *model; |
163
b70e2a77dea0
refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
152
diff
changeset
|
49 | UiVar *var; |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
50 | GType *columntypes; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
51 | int numcolumns; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
52 | int stamp; |
35 | 53 | }; |
54 | ||
55 | /* | |
56 | * initialize the class and register the type | |
57 | */ | |
58 | void ui_list_init(); | |
59 | ||
60 | /* | |
61 | * Creates a UiListModel for a given UiList | |
62 | */ | |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
63 | UiListModel* ui_list_model_new(UiObject *obj, UiVar *var, UiModel *info); |
35 | 64 | |
152
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
65 | void ui_list_model_dispose(GObject *obj); |
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
66 | void ui_list_model_finalize(GObject *obj); |
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
67 | |
35 | 68 | |
69 | // interface functions | |
70 | ||
71 | GtkTreeModelFlags ui_list_model_get_flags(GtkTreeModel *tree_model); | |
72 | ||
73 | gint ui_list_model_get_n_columns(GtkTreeModel *tree_model); | |
74 | ||
75 | GType ui_list_model_get_column_type(GtkTreeModel *tree_model, gint index); | |
76 | ||
77 | gboolean ui_list_model_get_iter( | |
78 | GtkTreeModel *tree_model, | |
79 | GtkTreeIter *iter, | |
80 | GtkTreePath *path); | |
81 | ||
82 | GtkTreePath* ui_list_model_get_path( | |
83 | GtkTreeModel *tree_model, | |
84 | GtkTreeIter *iter); | |
85 | ||
86 | void ui_list_model_get_value( | |
87 | GtkTreeModel *tree_model, | |
88 | GtkTreeIter *iter, | |
89 | gint column, | |
90 | GValue *value); | |
91 | ||
92 | gboolean ui_list_model_iter_next( | |
93 | GtkTreeModel *tree_model, | |
94 | GtkTreeIter *iter); | |
95 | ||
96 | gboolean ui_list_model_iter_children( | |
97 | GtkTreeModel *tree_model, | |
98 | GtkTreeIter *iter, | |
99 | GtkTreeIter *parent); | |
100 | ||
101 | gboolean ui_list_model_iter_has_child( | |
102 | GtkTreeModel *tree_model, | |
103 | GtkTreeIter *iter); | |
104 | ||
105 | gint ui_list_model_iter_n_children( | |
106 | GtkTreeModel *tree_model, | |
107 | GtkTreeIter *iter); | |
108 | ||
109 | gboolean ui_list_model_iter_nth_child( | |
110 | GtkTreeModel *tree_model, | |
111 | GtkTreeIter *iter, | |
112 | GtkTreeIter *parent, | |
113 | gint n); | |
114 | ||
115 | gboolean ui_list_model_iter_parent( | |
116 | GtkTreeModel *tree_model, | |
117 | GtkTreeIter *iter, | |
118 | GtkTreeIter *child); | |
119 | ||
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
120 | /* dnd */ |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
121 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
122 | gboolean ui_list_model_drag_data_received( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
123 | GtkTreeDragDest *drag_dest, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
124 | GtkTreePath *dest, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
125 | GtkSelectionData *selection_data); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
126 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
127 | gboolean ui_list_model_row_drop_possible( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
128 | GtkTreeDragDest *drag_dest, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
129 | GtkTreePath *dest_path, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
130 | GtkSelectionData *selection_data); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
131 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
132 | gboolean ui_list_model_row_draggable( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
133 | GtkTreeDragSource *drag_source, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
134 | GtkTreePath *path); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
135 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
136 | gboolean ui_list_model_drag_data_get( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
137 | GtkTreeDragSource *drag_source, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
138 | GtkTreePath *path, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
139 | GtkSelectionData *selection_data); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
140 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
141 | gboolean ui_list_model_drag_data_delete( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
142 | GtkTreeDragSource *drag_source, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
143 | GtkTreePath *path); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
144 | |
35 | 145 | #ifdef __cplusplus |
146 | } | |
147 | #endif | |
148 | ||
149 | #endif /* MODEL_H */ |