Sun, 19 Nov 2017 09:38:23 +0100
replaces usage of some deprecated functions (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; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
49 | UiVar *var; |
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 | |
65 | ||
66 | // interface functions | |
67 | ||
68 | GtkTreeModelFlags ui_list_model_get_flags(GtkTreeModel *tree_model); | |
69 | ||
70 | gint ui_list_model_get_n_columns(GtkTreeModel *tree_model); | |
71 | ||
72 | GType ui_list_model_get_column_type(GtkTreeModel *tree_model, gint index); | |
73 | ||
74 | gboolean ui_list_model_get_iter( | |
75 | GtkTreeModel *tree_model, | |
76 | GtkTreeIter *iter, | |
77 | GtkTreePath *path); | |
78 | ||
79 | GtkTreePath* ui_list_model_get_path( | |
80 | GtkTreeModel *tree_model, | |
81 | GtkTreeIter *iter); | |
82 | ||
83 | void ui_list_model_get_value( | |
84 | GtkTreeModel *tree_model, | |
85 | GtkTreeIter *iter, | |
86 | gint column, | |
87 | GValue *value); | |
88 | ||
89 | gboolean ui_list_model_iter_next( | |
90 | GtkTreeModel *tree_model, | |
91 | GtkTreeIter *iter); | |
92 | ||
93 | gboolean ui_list_model_iter_children( | |
94 | GtkTreeModel *tree_model, | |
95 | GtkTreeIter *iter, | |
96 | GtkTreeIter *parent); | |
97 | ||
98 | gboolean ui_list_model_iter_has_child( | |
99 | GtkTreeModel *tree_model, | |
100 | GtkTreeIter *iter); | |
101 | ||
102 | gint ui_list_model_iter_n_children( | |
103 | GtkTreeModel *tree_model, | |
104 | GtkTreeIter *iter); | |
105 | ||
106 | gboolean ui_list_model_iter_nth_child( | |
107 | GtkTreeModel *tree_model, | |
108 | GtkTreeIter *iter, | |
109 | GtkTreeIter *parent, | |
110 | gint n); | |
111 | ||
112 | gboolean ui_list_model_iter_parent( | |
113 | GtkTreeModel *tree_model, | |
114 | GtkTreeIter *iter, | |
115 | GtkTreeIter *child); | |
116 | ||
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
117 | /* dnd */ |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
118 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
119 | 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
|
120 | GtkTreeDragDest *drag_dest, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
121 | GtkTreePath *dest, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
122 | GtkSelectionData *selection_data); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
123 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
124 | 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
|
125 | GtkTreeDragDest *drag_dest, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
126 | GtkTreePath *dest_path, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
127 | GtkSelectionData *selection_data); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
128 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
129 | gboolean ui_list_model_row_draggable( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
130 | GtkTreeDragSource *drag_source, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
131 | GtkTreePath *path); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
132 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
133 | 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
|
134 | GtkTreeDragSource *drag_source, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
135 | GtkTreePath *path, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
136 | GtkSelectionData *selection_data); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
137 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
138 | 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
|
139 | GtkTreeDragSource *drag_source, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
140 | GtkTreePath *path); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
141 | |
35 | 142 | #ifdef __cplusplus |
143 | } | |
144 | #endif | |
145 | ||
146 | #endif /* MODEL_H */ |