1 /* 2 * This file is part of d-dazzle. 3 * 4 * d-dazzle is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU Lesser General Public License 6 * as published by the Free Software Foundation; either version 3 7 * of the License, or (at your option) any later version, with 8 * some exceptions, please read the COPYING file. 9 * 10 * d-dazzle is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public License 16 * along with d-dazzle; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA 18 */ 19 module dazzle.c.functions; 20 21 import std.stdio; 22 import dazzle.c.types; 23 import gtkd.Loader; 24 25 version (Windows) 26 static immutable LIBRARY_DAZZLE = ["libdazzle-1.0-0.dll;dazzle-1.0-0.dll;dazzle-1.dll"]; 27 else version (OSX) 28 static immutable LIBRARY_DAZZLE = ["libdazzle-1.0.0.dylib"]; 29 else 30 static immutable LIBRARY_DAZZLE = ["libdazzle-1.0.so.0"]; 31 32 shared static this() 33 { 34 // dazzle.Animation 35 36 Linker.link(dzl_animation_get_type, "dzl_animation_get_type", LIBRARY_DAZZLE); 37 Linker.link(dzl_animation_calculate_duration, "dzl_animation_calculate_duration", LIBRARY_DAZZLE); 38 Linker.link(dzl_animation_add_property, "dzl_animation_add_property", LIBRARY_DAZZLE); 39 Linker.link(dzl_animation_start, "dzl_animation_start", LIBRARY_DAZZLE); 40 Linker.link(dzl_animation_stop, "dzl_animation_stop", LIBRARY_DAZZLE); 41 42 // dazzle.Application 43 44 Linker.link(dzl_application_get_type, "dzl_application_get_type", LIBRARY_DAZZLE); 45 Linker.link(dzl_application_new, "dzl_application_new", LIBRARY_DAZZLE); 46 Linker.link(dzl_application_add_resources, "dzl_application_add_resources", LIBRARY_DAZZLE); 47 Linker.link(dzl_application_get_menu_by_id, "dzl_application_get_menu_by_id", LIBRARY_DAZZLE); 48 Linker.link(dzl_application_get_menu_manager, "dzl_application_get_menu_manager", LIBRARY_DAZZLE); 49 Linker.link(dzl_application_get_shortcut_manager, "dzl_application_get_shortcut_manager", LIBRARY_DAZZLE); 50 Linker.link(dzl_application_get_theme_manager, "dzl_application_get_theme_manager", LIBRARY_DAZZLE); 51 Linker.link(dzl_application_remove_resources, "dzl_application_remove_resources", LIBRARY_DAZZLE); 52 53 // dazzle.ApplicationWindow 54 55 Linker.link(dzl_application_window_get_type, "dzl_application_window_get_type", LIBRARY_DAZZLE); 56 Linker.link(dzl_application_window_get_fullscreen, "dzl_application_window_get_fullscreen", LIBRARY_DAZZLE); 57 Linker.link(dzl_application_window_get_titlebar, "dzl_application_window_get_titlebar", LIBRARY_DAZZLE); 58 Linker.link(dzl_application_window_set_fullscreen, "dzl_application_window_set_fullscreen", LIBRARY_DAZZLE); 59 Linker.link(dzl_application_window_set_titlebar, "dzl_application_window_set_titlebar", LIBRARY_DAZZLE); 60 61 // dazzle.Bin 62 63 Linker.link(dzl_bin_get_type, "dzl_bin_get_type", LIBRARY_DAZZLE); 64 Linker.link(dzl_bin_new, "dzl_bin_new", LIBRARY_DAZZLE); 65 66 // dazzle.BindingGroup 67 68 Linker.link(dzl_binding_group_get_type, "dzl_binding_group_get_type", LIBRARY_DAZZLE); 69 Linker.link(dzl_binding_group_new, "dzl_binding_group_new", LIBRARY_DAZZLE); 70 Linker.link(dzl_binding_group_bind, "dzl_binding_group_bind", LIBRARY_DAZZLE); 71 Linker.link(dzl_binding_group_bind_full, "dzl_binding_group_bind_full", LIBRARY_DAZZLE); 72 Linker.link(dzl_binding_group_bind_with_closures, "dzl_binding_group_bind_with_closures", LIBRARY_DAZZLE); 73 Linker.link(dzl_binding_group_get_source, "dzl_binding_group_get_source", LIBRARY_DAZZLE); 74 Linker.link(dzl_binding_group_set_source, "dzl_binding_group_set_source", LIBRARY_DAZZLE); 75 76 // dazzle.BoldingLabel 77 78 Linker.link(dzl_bolding_label_get_type, "dzl_bolding_label_get_type", LIBRARY_DAZZLE); 79 Linker.link(dzl_bolding_label_new, "dzl_bolding_label_new", LIBRARY_DAZZLE); 80 Linker.link(dzl_bolding_label_new_with_mnemonic, "dzl_bolding_label_new_with_mnemonic", LIBRARY_DAZZLE); 81 Linker.link(dzl_bolding_label_set_bold, "dzl_bolding_label_set_bold", LIBRARY_DAZZLE); 82 Linker.link(dzl_bolding_label_set_weight, "dzl_bolding_label_set_weight", LIBRARY_DAZZLE); 83 84 // dazzle.Box 85 86 Linker.link(dzl_box_get_type, "dzl_box_get_type", LIBRARY_DAZZLE); 87 Linker.link(dzl_box_new, "dzl_box_new", LIBRARY_DAZZLE); 88 Linker.link(dzl_box_get_max_width_request, "dzl_box_get_max_width_request", LIBRARY_DAZZLE); 89 Linker.link(dzl_box_get_nth_child, "dzl_box_get_nth_child", LIBRARY_DAZZLE); 90 Linker.link(dzl_box_set_max_width_request, "dzl_box_set_max_width_request", LIBRARY_DAZZLE); 91 92 // dazzle.BoxTheatric 93 94 Linker.link(dzl_box_theatric_get_type, "dzl_box_theatric_get_type", LIBRARY_DAZZLE); 95 96 // dazzle.CenteringBin 97 98 Linker.link(dzl_centering_bin_get_type, "dzl_centering_bin_get_type", LIBRARY_DAZZLE); 99 Linker.link(dzl_centering_bin_new, "dzl_centering_bin_new", LIBRARY_DAZZLE); 100 101 // dazzle.ChildPropertyAction 102 103 Linker.link(dzl_child_property_action_get_type, "dzl_child_property_action_get_type", LIBRARY_DAZZLE); 104 Linker.link(dzl_child_property_action_new, "dzl_child_property_action_new", LIBRARY_DAZZLE); 105 106 // dazzle.ColumnLayout 107 108 Linker.link(dzl_column_layout_get_type, "dzl_column_layout_get_type", LIBRARY_DAZZLE); 109 Linker.link(dzl_column_layout_new, "dzl_column_layout_new", LIBRARY_DAZZLE); 110 Linker.link(dzl_column_layout_get_column_spacing, "dzl_column_layout_get_column_spacing", LIBRARY_DAZZLE); 111 Linker.link(dzl_column_layout_get_column_width, "dzl_column_layout_get_column_width", LIBRARY_DAZZLE); 112 Linker.link(dzl_column_layout_get_max_columns, "dzl_column_layout_get_max_columns", LIBRARY_DAZZLE); 113 Linker.link(dzl_column_layout_get_row_spacing, "dzl_column_layout_get_row_spacing", LIBRARY_DAZZLE); 114 Linker.link(dzl_column_layout_set_column_spacing, "dzl_column_layout_set_column_spacing", LIBRARY_DAZZLE); 115 Linker.link(dzl_column_layout_set_column_width, "dzl_column_layout_set_column_width", LIBRARY_DAZZLE); 116 Linker.link(dzl_column_layout_set_max_columns, "dzl_column_layout_set_max_columns", LIBRARY_DAZZLE); 117 Linker.link(dzl_column_layout_set_row_spacing, "dzl_column_layout_set_row_spacing", LIBRARY_DAZZLE); 118 119 // dazzle.Counter 120 121 Linker.link(dzl_counter_get, "dzl_counter_get", LIBRARY_DAZZLE); 122 Linker.link(dzl_counter_reset, "dzl_counter_reset", LIBRARY_DAZZLE); 123 124 // dazzle.CounterArena 125 126 Linker.link(dzl_counter_arena_get_type, "dzl_counter_arena_get_type", LIBRARY_DAZZLE); 127 Linker.link(dzl_counter_arena_new_for_pid, "dzl_counter_arena_new_for_pid", LIBRARY_DAZZLE); 128 Linker.link(dzl_counter_arena_foreach, "dzl_counter_arena_foreach", LIBRARY_DAZZLE); 129 Linker.link(dzl_counter_arena_ref, "dzl_counter_arena_ref", LIBRARY_DAZZLE); 130 Linker.link(dzl_counter_arena_register, "dzl_counter_arena_register", LIBRARY_DAZZLE); 131 Linker.link(dzl_counter_arena_unref, "dzl_counter_arena_unref", LIBRARY_DAZZLE); 132 Linker.link(dzl_counter_arena_get_default, "dzl_counter_arena_get_default", LIBRARY_DAZZLE); 133 134 // dazzle.CountersWindow 135 136 Linker.link(dzl_counters_window_get_type, "dzl_counters_window_get_type", LIBRARY_DAZZLE); 137 Linker.link(dzl_counters_window_new, "dzl_counters_window_new", LIBRARY_DAZZLE); 138 Linker.link(dzl_counters_window_get_arena, "dzl_counters_window_get_arena", LIBRARY_DAZZLE); 139 Linker.link(dzl_counters_window_set_arena, "dzl_counters_window_set_arena", LIBRARY_DAZZLE); 140 141 // dazzle.CpuGraph 142 143 Linker.link(dzl_cpu_graph_get_type, "dzl_cpu_graph_get_type", LIBRARY_DAZZLE); 144 Linker.link(dzl_cpu_graph_new_full, "dzl_cpu_graph_new_full", LIBRARY_DAZZLE); 145 146 // dazzle.CpuModel 147 148 Linker.link(dzl_cpu_model_get_type, "dzl_cpu_model_get_type", LIBRARY_DAZZLE); 149 Linker.link(dzl_cpu_model_new, "dzl_cpu_model_new", LIBRARY_DAZZLE); 150 151 // dazzle.CssProvider 152 153 Linker.link(dzl_css_provider_get_type, "dzl_css_provider_get_type", LIBRARY_DAZZLE); 154 Linker.link(dzl_css_provider_new, "dzl_css_provider_new", LIBRARY_DAZZLE); 155 156 // dazzle.DirectoryModel 157 158 Linker.link(dzl_directory_model_get_type, "dzl_directory_model_get_type", LIBRARY_DAZZLE); 159 Linker.link(dzl_directory_model_new, "dzl_directory_model_new", LIBRARY_DAZZLE); 160 Linker.link(dzl_directory_model_get_directory, "dzl_directory_model_get_directory", LIBRARY_DAZZLE); 161 Linker.link(dzl_directory_model_set_directory, "dzl_directory_model_set_directory", LIBRARY_DAZZLE); 162 Linker.link(dzl_directory_model_set_visible_func, "dzl_directory_model_set_visible_func", LIBRARY_DAZZLE); 163 164 // dazzle.DirectoryReaper 165 166 Linker.link(dzl_directory_reaper_get_type, "dzl_directory_reaper_get_type", LIBRARY_DAZZLE); 167 Linker.link(dzl_directory_reaper_new, "dzl_directory_reaper_new", LIBRARY_DAZZLE); 168 Linker.link(dzl_directory_reaper_add_directory, "dzl_directory_reaper_add_directory", LIBRARY_DAZZLE); 169 Linker.link(dzl_directory_reaper_add_file, "dzl_directory_reaper_add_file", LIBRARY_DAZZLE); 170 Linker.link(dzl_directory_reaper_add_glob, "dzl_directory_reaper_add_glob", LIBRARY_DAZZLE); 171 Linker.link(dzl_directory_reaper_execute, "dzl_directory_reaper_execute", LIBRARY_DAZZLE); 172 Linker.link(dzl_directory_reaper_execute_async, "dzl_directory_reaper_execute_async", LIBRARY_DAZZLE); 173 Linker.link(dzl_directory_reaper_execute_finish, "dzl_directory_reaper_execute_finish", LIBRARY_DAZZLE); 174 175 // dazzle.Dock 176 177 Linker.link(dzl_dock_get_type, "dzl_dock_get_type", LIBRARY_DAZZLE); 178 179 // dazzle.DockBin 180 181 Linker.link(dzl_dock_bin_get_type, "dzl_dock_bin_get_type", LIBRARY_DAZZLE); 182 Linker.link(dzl_dock_bin_new, "dzl_dock_bin_new", LIBRARY_DAZZLE); 183 Linker.link(dzl_dock_bin_get_bottom_edge, "dzl_dock_bin_get_bottom_edge", LIBRARY_DAZZLE); 184 Linker.link(dzl_dock_bin_get_center_widget, "dzl_dock_bin_get_center_widget", LIBRARY_DAZZLE); 185 Linker.link(dzl_dock_bin_get_left_edge, "dzl_dock_bin_get_left_edge", LIBRARY_DAZZLE); 186 Linker.link(dzl_dock_bin_get_right_edge, "dzl_dock_bin_get_right_edge", LIBRARY_DAZZLE); 187 Linker.link(dzl_dock_bin_get_top_edge, "dzl_dock_bin_get_top_edge", LIBRARY_DAZZLE); 188 189 // dazzle.DockBinEdge 190 191 Linker.link(dzl_dock_bin_edge_get_type, "dzl_dock_bin_edge_get_type", LIBRARY_DAZZLE); 192 Linker.link(dzl_dock_bin_edge_get_edge, "dzl_dock_bin_edge_get_edge", LIBRARY_DAZZLE); 193 194 // dazzle.DockItem 195 196 Linker.link(dzl_dock_item_get_type, "dzl_dock_item_get_type", LIBRARY_DAZZLE); 197 Linker.link(dzl_dock_item_adopt, "dzl_dock_item_adopt", LIBRARY_DAZZLE); 198 Linker.link(dzl_dock_item_close, "dzl_dock_item_close", LIBRARY_DAZZLE); 199 Linker.link(dzl_dock_item_emit_presented, "dzl_dock_item_emit_presented", LIBRARY_DAZZLE); 200 Linker.link(dzl_dock_item_get_can_close, "dzl_dock_item_get_can_close", LIBRARY_DAZZLE); 201 Linker.link(dzl_dock_item_get_can_minimize, "dzl_dock_item_get_can_minimize", LIBRARY_DAZZLE); 202 Linker.link(dzl_dock_item_get_child_visible, "dzl_dock_item_get_child_visible", LIBRARY_DAZZLE); 203 Linker.link(dzl_dock_item_get_icon_name, "dzl_dock_item_get_icon_name", LIBRARY_DAZZLE); 204 Linker.link(dzl_dock_item_get_manager, "dzl_dock_item_get_manager", LIBRARY_DAZZLE); 205 Linker.link(dzl_dock_item_get_parent, "dzl_dock_item_get_parent", LIBRARY_DAZZLE); 206 Linker.link(dzl_dock_item_get_title, "dzl_dock_item_get_title", LIBRARY_DAZZLE); 207 Linker.link(dzl_dock_item_has_widgets, "dzl_dock_item_has_widgets", LIBRARY_DAZZLE); 208 Linker.link(dzl_dock_item_minimize, "dzl_dock_item_minimize", LIBRARY_DAZZLE); 209 Linker.link(dzl_dock_item_needs_attention, "dzl_dock_item_needs_attention", LIBRARY_DAZZLE); 210 Linker.link(dzl_dock_item_present, "dzl_dock_item_present", LIBRARY_DAZZLE); 211 Linker.link(dzl_dock_item_present_child, "dzl_dock_item_present_child", LIBRARY_DAZZLE); 212 Linker.link(dzl_dock_item_ref_gicon, "dzl_dock_item_ref_gicon", LIBRARY_DAZZLE); 213 Linker.link(dzl_dock_item_release, "dzl_dock_item_release", LIBRARY_DAZZLE); 214 Linker.link(dzl_dock_item_set_child_visible, "dzl_dock_item_set_child_visible", LIBRARY_DAZZLE); 215 Linker.link(dzl_dock_item_set_manager, "dzl_dock_item_set_manager", LIBRARY_DAZZLE); 216 Linker.link(dzl_dock_item_update_visibility, "dzl_dock_item_update_visibility", LIBRARY_DAZZLE); 217 218 // dazzle.DockManager 219 220 Linker.link(dzl_dock_manager_get_type, "dzl_dock_manager_get_type", LIBRARY_DAZZLE); 221 Linker.link(dzl_dock_manager_new, "dzl_dock_manager_new", LIBRARY_DAZZLE); 222 Linker.link(dzl_dock_manager_pause_grabs, "dzl_dock_manager_pause_grabs", LIBRARY_DAZZLE); 223 Linker.link(dzl_dock_manager_register_dock, "dzl_dock_manager_register_dock", LIBRARY_DAZZLE); 224 Linker.link(dzl_dock_manager_release_transient_grab, "dzl_dock_manager_release_transient_grab", LIBRARY_DAZZLE); 225 Linker.link(dzl_dock_manager_unpause_grabs, "dzl_dock_manager_unpause_grabs", LIBRARY_DAZZLE); 226 Linker.link(dzl_dock_manager_unregister_dock, "dzl_dock_manager_unregister_dock", LIBRARY_DAZZLE); 227 228 // dazzle.DockOverlay 229 230 Linker.link(dzl_dock_overlay_get_type, "dzl_dock_overlay_get_type", LIBRARY_DAZZLE); 231 Linker.link(dzl_dock_overlay_new, "dzl_dock_overlay_new", LIBRARY_DAZZLE); 232 Linker.link(dzl_dock_overlay_get_edge, "dzl_dock_overlay_get_edge", LIBRARY_DAZZLE); 233 Linker.link(dzl_dock_overlay_get_edge_adjustment, "dzl_dock_overlay_get_edge_adjustment", LIBRARY_DAZZLE); 234 235 // dazzle.DockOverlayEdge 236 237 Linker.link(dzl_dock_overlay_edge_get_type, "dzl_dock_overlay_edge_get_type", LIBRARY_DAZZLE); 238 Linker.link(dzl_dock_overlay_edge_get_edge, "dzl_dock_overlay_edge_get_edge", LIBRARY_DAZZLE); 239 Linker.link(dzl_dock_overlay_edge_get_position, "dzl_dock_overlay_edge_get_position", LIBRARY_DAZZLE); 240 Linker.link(dzl_dock_overlay_edge_set_edge, "dzl_dock_overlay_edge_set_edge", LIBRARY_DAZZLE); 241 Linker.link(dzl_dock_overlay_edge_set_position, "dzl_dock_overlay_edge_set_position", LIBRARY_DAZZLE); 242 243 // dazzle.DockPaned 244 245 Linker.link(dzl_dock_paned_get_type, "dzl_dock_paned_get_type", LIBRARY_DAZZLE); 246 Linker.link(dzl_dock_paned_new, "dzl_dock_paned_new", LIBRARY_DAZZLE); 247 248 // dazzle.DockRevealer 249 250 Linker.link(dzl_dock_revealer_get_type, "dzl_dock_revealer_get_type", LIBRARY_DAZZLE); 251 Linker.link(dzl_dock_revealer_new, "dzl_dock_revealer_new", LIBRARY_DAZZLE); 252 Linker.link(dzl_dock_revealer_animate_to_position, "dzl_dock_revealer_animate_to_position", LIBRARY_DAZZLE); 253 Linker.link(dzl_dock_revealer_get_child_revealed, "dzl_dock_revealer_get_child_revealed", LIBRARY_DAZZLE); 254 Linker.link(dzl_dock_revealer_get_position, "dzl_dock_revealer_get_position", LIBRARY_DAZZLE); 255 Linker.link(dzl_dock_revealer_get_position_set, "dzl_dock_revealer_get_position_set", LIBRARY_DAZZLE); 256 Linker.link(dzl_dock_revealer_get_reveal_child, "dzl_dock_revealer_get_reveal_child", LIBRARY_DAZZLE); 257 Linker.link(dzl_dock_revealer_get_transition_duration, "dzl_dock_revealer_get_transition_duration", LIBRARY_DAZZLE); 258 Linker.link(dzl_dock_revealer_get_transition_type, "dzl_dock_revealer_get_transition_type", LIBRARY_DAZZLE); 259 Linker.link(dzl_dock_revealer_is_animating, "dzl_dock_revealer_is_animating", LIBRARY_DAZZLE); 260 Linker.link(dzl_dock_revealer_set_position, "dzl_dock_revealer_set_position", LIBRARY_DAZZLE); 261 Linker.link(dzl_dock_revealer_set_position_set, "dzl_dock_revealer_set_position_set", LIBRARY_DAZZLE); 262 Linker.link(dzl_dock_revealer_set_reveal_child, "dzl_dock_revealer_set_reveal_child", LIBRARY_DAZZLE); 263 Linker.link(dzl_dock_revealer_set_transition_duration, "dzl_dock_revealer_set_transition_duration", LIBRARY_DAZZLE); 264 Linker.link(dzl_dock_revealer_set_transition_type, "dzl_dock_revealer_set_transition_type", LIBRARY_DAZZLE); 265 266 // dazzle.DockStack 267 268 Linker.link(dzl_dock_stack_get_type, "dzl_dock_stack_get_type", LIBRARY_DAZZLE); 269 Linker.link(dzl_dock_stack_new, "dzl_dock_stack_new", LIBRARY_DAZZLE); 270 Linker.link(dzl_dock_stack_get_edge, "dzl_dock_stack_get_edge", LIBRARY_DAZZLE); 271 Linker.link(dzl_dock_stack_get_show_pinned_button, "dzl_dock_stack_get_show_pinned_button", LIBRARY_DAZZLE); 272 Linker.link(dzl_dock_stack_get_style, "dzl_dock_stack_get_style", LIBRARY_DAZZLE); 273 Linker.link(dzl_dock_stack_set_edge, "dzl_dock_stack_set_edge", LIBRARY_DAZZLE); 274 Linker.link(dzl_dock_stack_set_show_pinned_button, "dzl_dock_stack_set_show_pinned_button", LIBRARY_DAZZLE); 275 Linker.link(dzl_dock_stack_set_style, "dzl_dock_stack_set_style", LIBRARY_DAZZLE); 276 277 // dazzle.DockTransientGrab 278 279 Linker.link(dzl_dock_transient_grab_get_type, "dzl_dock_transient_grab_get_type", LIBRARY_DAZZLE); 280 Linker.link(dzl_dock_transient_grab_new, "dzl_dock_transient_grab_new", LIBRARY_DAZZLE); 281 Linker.link(dzl_dock_transient_grab_acquire, "dzl_dock_transient_grab_acquire", LIBRARY_DAZZLE); 282 Linker.link(dzl_dock_transient_grab_add_item, "dzl_dock_transient_grab_add_item", LIBRARY_DAZZLE); 283 Linker.link(dzl_dock_transient_grab_cancel, "dzl_dock_transient_grab_cancel", LIBRARY_DAZZLE); 284 Linker.link(dzl_dock_transient_grab_contains, "dzl_dock_transient_grab_contains", LIBRARY_DAZZLE); 285 Linker.link(dzl_dock_transient_grab_get_timeout, "dzl_dock_transient_grab_get_timeout", LIBRARY_DAZZLE); 286 Linker.link(dzl_dock_transient_grab_is_descendant, "dzl_dock_transient_grab_is_descendant", LIBRARY_DAZZLE); 287 Linker.link(dzl_dock_transient_grab_release, "dzl_dock_transient_grab_release", LIBRARY_DAZZLE); 288 Linker.link(dzl_dock_transient_grab_remove_item, "dzl_dock_transient_grab_remove_item", LIBRARY_DAZZLE); 289 Linker.link(dzl_dock_transient_grab_set_timeout, "dzl_dock_transient_grab_set_timeout", LIBRARY_DAZZLE); 290 Linker.link(dzl_dock_transient_grab_steal_common_ancestors, "dzl_dock_transient_grab_steal_common_ancestors", LIBRARY_DAZZLE); 291 292 // dazzle.DockWidget 293 294 Linker.link(dzl_dock_widget_get_type, "dzl_dock_widget_get_type", LIBRARY_DAZZLE); 295 Linker.link(dzl_dock_widget_new, "dzl_dock_widget_new", LIBRARY_DAZZLE); 296 Linker.link(dzl_dock_widget_set_gicon, "dzl_dock_widget_set_gicon", LIBRARY_DAZZLE); 297 Linker.link(dzl_dock_widget_set_icon_name, "dzl_dock_widget_set_icon_name", LIBRARY_DAZZLE); 298 Linker.link(dzl_dock_widget_set_title, "dzl_dock_widget_set_title", LIBRARY_DAZZLE); 299 300 // dazzle.DockWindow 301 302 Linker.link(dzl_dock_window_get_type, "dzl_dock_window_get_type", LIBRARY_DAZZLE); 303 Linker.link(dzl_dock_window_new, "dzl_dock_window_new", LIBRARY_DAZZLE); 304 305 // dazzle.ElasticBin 306 307 Linker.link(dzl_elastic_bin_get_type, "dzl_elastic_bin_get_type", LIBRARY_DAZZLE); 308 Linker.link(dzl_elastic_bin_new, "dzl_elastic_bin_new", LIBRARY_DAZZLE); 309 310 // dazzle.EmptyState 311 312 Linker.link(dzl_empty_state_get_type, "dzl_empty_state_get_type", LIBRARY_DAZZLE); 313 Linker.link(dzl_empty_state_new, "dzl_empty_state_new", LIBRARY_DAZZLE); 314 Linker.link(dzl_empty_state_get_icon_name, "dzl_empty_state_get_icon_name", LIBRARY_DAZZLE); 315 Linker.link(dzl_empty_state_get_subtitle, "dzl_empty_state_get_subtitle", LIBRARY_DAZZLE); 316 Linker.link(dzl_empty_state_get_title, "dzl_empty_state_get_title", LIBRARY_DAZZLE); 317 Linker.link(dzl_empty_state_set_icon_name, "dzl_empty_state_set_icon_name", LIBRARY_DAZZLE); 318 Linker.link(dzl_empty_state_set_resource, "dzl_empty_state_set_resource", LIBRARY_DAZZLE); 319 Linker.link(dzl_empty_state_set_subtitle, "dzl_empty_state_set_subtitle", LIBRARY_DAZZLE); 320 Linker.link(dzl_empty_state_set_title, "dzl_empty_state_set_title", LIBRARY_DAZZLE); 321 322 // dazzle.EntryBox 323 324 Linker.link(dzl_entry_box_get_type, "dzl_entry_box_get_type", LIBRARY_DAZZLE); 325 Linker.link(dzl_entry_box_new, "dzl_entry_box_new", LIBRARY_DAZZLE); 326 327 // dazzle.FileChooserEntry 328 329 Linker.link(dzl_file_chooser_entry_get_type, "dzl_file_chooser_entry_get_type", LIBRARY_DAZZLE); 330 Linker.link(dzl_file_chooser_entry_new, "dzl_file_chooser_entry_new", LIBRARY_DAZZLE); 331 Linker.link(dzl_file_chooser_entry_get_entry, "dzl_file_chooser_entry_get_entry", LIBRARY_DAZZLE); 332 Linker.link(dzl_file_chooser_entry_get_file, "dzl_file_chooser_entry_get_file", LIBRARY_DAZZLE); 333 Linker.link(dzl_file_chooser_entry_set_file, "dzl_file_chooser_entry_set_file", LIBRARY_DAZZLE); 334 335 // dazzle.FileTransfer 336 337 Linker.link(dzl_file_transfer_get_type, "dzl_file_transfer_get_type", LIBRARY_DAZZLE); 338 Linker.link(dzl_file_transfer_new, "dzl_file_transfer_new", LIBRARY_DAZZLE); 339 Linker.link(dzl_file_transfer_add, "dzl_file_transfer_add", LIBRARY_DAZZLE); 340 Linker.link(dzl_file_transfer_execute, "dzl_file_transfer_execute", LIBRARY_DAZZLE); 341 Linker.link(dzl_file_transfer_execute_async, "dzl_file_transfer_execute_async", LIBRARY_DAZZLE); 342 Linker.link(dzl_file_transfer_execute_finish, "dzl_file_transfer_execute_finish", LIBRARY_DAZZLE); 343 Linker.link(dzl_file_transfer_get_flags, "dzl_file_transfer_get_flags", LIBRARY_DAZZLE); 344 Linker.link(dzl_file_transfer_get_progress, "dzl_file_transfer_get_progress", LIBRARY_DAZZLE); 345 Linker.link(dzl_file_transfer_set_flags, "dzl_file_transfer_set_flags", LIBRARY_DAZZLE); 346 Linker.link(dzl_file_transfer_stat, "dzl_file_transfer_stat", LIBRARY_DAZZLE); 347 348 // dazzle.FuzzyIndex 349 350 Linker.link(dzl_fuzzy_index_get_type, "dzl_fuzzy_index_get_type", LIBRARY_DAZZLE); 351 Linker.link(dzl_fuzzy_index_new, "dzl_fuzzy_index_new", LIBRARY_DAZZLE); 352 Linker.link(dzl_fuzzy_index_get_metadata, "dzl_fuzzy_index_get_metadata", LIBRARY_DAZZLE); 353 Linker.link(dzl_fuzzy_index_get_metadata_string, "dzl_fuzzy_index_get_metadata_string", LIBRARY_DAZZLE); 354 Linker.link(dzl_fuzzy_index_get_metadata_uint32, "dzl_fuzzy_index_get_metadata_uint32", LIBRARY_DAZZLE); 355 Linker.link(dzl_fuzzy_index_get_metadata_uint64, "dzl_fuzzy_index_get_metadata_uint64", LIBRARY_DAZZLE); 356 Linker.link(dzl_fuzzy_index_load_file, "dzl_fuzzy_index_load_file", LIBRARY_DAZZLE); 357 Linker.link(dzl_fuzzy_index_load_file_async, "dzl_fuzzy_index_load_file_async", LIBRARY_DAZZLE); 358 Linker.link(dzl_fuzzy_index_load_file_finish, "dzl_fuzzy_index_load_file_finish", LIBRARY_DAZZLE); 359 Linker.link(dzl_fuzzy_index_query_async, "dzl_fuzzy_index_query_async", LIBRARY_DAZZLE); 360 Linker.link(dzl_fuzzy_index_query_finish, "dzl_fuzzy_index_query_finish", LIBRARY_DAZZLE); 361 362 // dazzle.FuzzyIndexBuilder 363 364 Linker.link(dzl_fuzzy_index_builder_get_type, "dzl_fuzzy_index_builder_get_type", LIBRARY_DAZZLE); 365 Linker.link(dzl_fuzzy_index_builder_new, "dzl_fuzzy_index_builder_new", LIBRARY_DAZZLE); 366 Linker.link(dzl_fuzzy_index_builder_get_case_sensitive, "dzl_fuzzy_index_builder_get_case_sensitive", LIBRARY_DAZZLE); 367 Linker.link(dzl_fuzzy_index_builder_get_document, "dzl_fuzzy_index_builder_get_document", LIBRARY_DAZZLE); 368 Linker.link(dzl_fuzzy_index_builder_insert, "dzl_fuzzy_index_builder_insert", LIBRARY_DAZZLE); 369 Linker.link(dzl_fuzzy_index_builder_set_case_sensitive, "dzl_fuzzy_index_builder_set_case_sensitive", LIBRARY_DAZZLE); 370 Linker.link(dzl_fuzzy_index_builder_set_metadata, "dzl_fuzzy_index_builder_set_metadata", LIBRARY_DAZZLE); 371 Linker.link(dzl_fuzzy_index_builder_set_metadata_string, "dzl_fuzzy_index_builder_set_metadata_string", LIBRARY_DAZZLE); 372 Linker.link(dzl_fuzzy_index_builder_set_metadata_uint32, "dzl_fuzzy_index_builder_set_metadata_uint32", LIBRARY_DAZZLE); 373 Linker.link(dzl_fuzzy_index_builder_set_metadata_uint64, "dzl_fuzzy_index_builder_set_metadata_uint64", LIBRARY_DAZZLE); 374 Linker.link(dzl_fuzzy_index_builder_write, "dzl_fuzzy_index_builder_write", LIBRARY_DAZZLE); 375 Linker.link(dzl_fuzzy_index_builder_write_async, "dzl_fuzzy_index_builder_write_async", LIBRARY_DAZZLE); 376 Linker.link(dzl_fuzzy_index_builder_write_finish, "dzl_fuzzy_index_builder_write_finish", LIBRARY_DAZZLE); 377 378 // dazzle.FuzzyIndexCursor 379 380 Linker.link(dzl_fuzzy_index_cursor_get_type, "dzl_fuzzy_index_cursor_get_type", LIBRARY_DAZZLE); 381 Linker.link(dzl_fuzzy_index_cursor_get_index, "dzl_fuzzy_index_cursor_get_index", LIBRARY_DAZZLE); 382 383 // dazzle.FuzzyIndexMatch 384 385 Linker.link(dzl_fuzzy_index_match_get_type, "dzl_fuzzy_index_match_get_type", LIBRARY_DAZZLE); 386 Linker.link(dzl_fuzzy_index_match_get_document, "dzl_fuzzy_index_match_get_document", LIBRARY_DAZZLE); 387 Linker.link(dzl_fuzzy_index_match_get_key, "dzl_fuzzy_index_match_get_key", LIBRARY_DAZZLE); 388 Linker.link(dzl_fuzzy_index_match_get_priority, "dzl_fuzzy_index_match_get_priority", LIBRARY_DAZZLE); 389 Linker.link(dzl_fuzzy_index_match_get_score, "dzl_fuzzy_index_match_get_score", LIBRARY_DAZZLE); 390 391 // dazzle.FuzzyMutableIndex 392 393 Linker.link(dzl_fuzzy_mutable_index_get_type, "dzl_fuzzy_mutable_index_get_type", LIBRARY_DAZZLE); 394 Linker.link(dzl_fuzzy_mutable_index_new, "dzl_fuzzy_mutable_index_new", LIBRARY_DAZZLE); 395 Linker.link(dzl_fuzzy_mutable_index_new_with_free_func, "dzl_fuzzy_mutable_index_new_with_free_func", LIBRARY_DAZZLE); 396 Linker.link(dzl_fuzzy_mutable_index_begin_bulk_insert, "dzl_fuzzy_mutable_index_begin_bulk_insert", LIBRARY_DAZZLE); 397 Linker.link(dzl_fuzzy_mutable_index_contains, "dzl_fuzzy_mutable_index_contains", LIBRARY_DAZZLE); 398 Linker.link(dzl_fuzzy_mutable_index_end_bulk_insert, "dzl_fuzzy_mutable_index_end_bulk_insert", LIBRARY_DAZZLE); 399 Linker.link(dzl_fuzzy_mutable_index_insert, "dzl_fuzzy_mutable_index_insert", LIBRARY_DAZZLE); 400 Linker.link(dzl_fuzzy_mutable_index_match, "dzl_fuzzy_mutable_index_match", LIBRARY_DAZZLE); 401 Linker.link(dzl_fuzzy_mutable_index_ref, "dzl_fuzzy_mutable_index_ref", LIBRARY_DAZZLE); 402 Linker.link(dzl_fuzzy_mutable_index_remove, "dzl_fuzzy_mutable_index_remove", LIBRARY_DAZZLE); 403 Linker.link(dzl_fuzzy_mutable_index_set_free_func, "dzl_fuzzy_mutable_index_set_free_func", LIBRARY_DAZZLE); 404 Linker.link(dzl_fuzzy_mutable_index_unref, "dzl_fuzzy_mutable_index_unref", LIBRARY_DAZZLE); 405 406 // dazzle.GraphColumn 407 408 Linker.link(dzl_graph_view_column_get_type, "dzl_graph_view_column_get_type", LIBRARY_DAZZLE); 409 Linker.link(dzl_graph_view_column_new, "dzl_graph_view_column_new", LIBRARY_DAZZLE); 410 Linker.link(dzl_graph_view_column_get_name, "dzl_graph_view_column_get_name", LIBRARY_DAZZLE); 411 Linker.link(dzl_graph_view_column_set_name, "dzl_graph_view_column_set_name", LIBRARY_DAZZLE); 412 413 // dazzle.GraphLineRenderer 414 415 Linker.link(dzl_graph_view_line_renderer_get_type, "dzl_graph_view_line_renderer_get_type", LIBRARY_DAZZLE); 416 Linker.link(dzl_graph_view_line_renderer_new, "dzl_graph_view_line_renderer_new", LIBRARY_DAZZLE); 417 Linker.link(dzl_graph_view_line_renderer_get_stroke_color_rgba, "dzl_graph_view_line_renderer_get_stroke_color_rgba", LIBRARY_DAZZLE); 418 Linker.link(dzl_graph_view_line_renderer_set_stroke_color, "dzl_graph_view_line_renderer_set_stroke_color", LIBRARY_DAZZLE); 419 Linker.link(dzl_graph_view_line_renderer_set_stroke_color_rgba, "dzl_graph_view_line_renderer_set_stroke_color_rgba", LIBRARY_DAZZLE); 420 421 // dazzle.GraphModel 422 423 Linker.link(dzl_graph_view_model_get_type, "dzl_graph_view_model_get_type", LIBRARY_DAZZLE); 424 Linker.link(dzl_graph_view_model_new, "dzl_graph_view_model_new", LIBRARY_DAZZLE); 425 Linker.link(dzl_graph_view_model_iter_get, "dzl_graph_view_model_iter_get", LIBRARY_DAZZLE); 426 Linker.link(dzl_graph_view_model_iter_get_timestamp, "dzl_graph_view_model_iter_get_timestamp", LIBRARY_DAZZLE); 427 Linker.link(dzl_graph_view_model_iter_get_value, "dzl_graph_view_model_iter_get_value", LIBRARY_DAZZLE); 428 Linker.link(dzl_graph_view_model_iter_next, "dzl_graph_view_model_iter_next", LIBRARY_DAZZLE); 429 Linker.link(dzl_graph_view_model_iter_set, "dzl_graph_view_model_iter_set", LIBRARY_DAZZLE); 430 Linker.link(dzl_graph_view_model_iter_set_value, "dzl_graph_view_model_iter_set_value", LIBRARY_DAZZLE); 431 Linker.link(dzl_graph_view_model_add_column, "dzl_graph_view_model_add_column", LIBRARY_DAZZLE); 432 Linker.link(dzl_graph_view_model_get_end_time, "dzl_graph_view_model_get_end_time", LIBRARY_DAZZLE); 433 Linker.link(dzl_graph_view_model_get_iter_first, "dzl_graph_view_model_get_iter_first", LIBRARY_DAZZLE); 434 Linker.link(dzl_graph_view_model_get_iter_last, "dzl_graph_view_model_get_iter_last", LIBRARY_DAZZLE); 435 Linker.link(dzl_graph_view_model_get_max_samples, "dzl_graph_view_model_get_max_samples", LIBRARY_DAZZLE); 436 Linker.link(dzl_graph_view_model_get_n_columns, "dzl_graph_view_model_get_n_columns", LIBRARY_DAZZLE); 437 Linker.link(dzl_graph_view_model_get_timespan, "dzl_graph_view_model_get_timespan", LIBRARY_DAZZLE); 438 Linker.link(dzl_graph_view_model_push, "dzl_graph_view_model_push", LIBRARY_DAZZLE); 439 Linker.link(dzl_graph_view_model_set_max_samples, "dzl_graph_view_model_set_max_samples", LIBRARY_DAZZLE); 440 Linker.link(dzl_graph_view_model_set_timespan, "dzl_graph_view_model_set_timespan", LIBRARY_DAZZLE); 441 442 // dazzle.GraphRenderer 443 444 Linker.link(dzl_graph_view_renderer_get_type, "dzl_graph_view_renderer_get_type", LIBRARY_DAZZLE); 445 Linker.link(dzl_graph_view_renderer_render, "dzl_graph_view_renderer_render", LIBRARY_DAZZLE); 446 447 // dazzle.GraphView 448 449 Linker.link(dzl_graph_view_get_type, "dzl_graph_view_get_type", LIBRARY_DAZZLE); 450 Linker.link(dzl_graph_view_new, "dzl_graph_view_new", LIBRARY_DAZZLE); 451 Linker.link(dzl_graph_view_add_renderer, "dzl_graph_view_add_renderer", LIBRARY_DAZZLE); 452 Linker.link(dzl_graph_view_get_model, "dzl_graph_view_get_model", LIBRARY_DAZZLE); 453 Linker.link(dzl_graph_view_set_model, "dzl_graph_view_set_model", LIBRARY_DAZZLE); 454 455 // dazzle.Heap 456 457 Linker.link(dzl_heap_get_type, "dzl_heap_get_type", LIBRARY_DAZZLE); 458 Linker.link(dzl_heap_new, "dzl_heap_new", LIBRARY_DAZZLE); 459 Linker.link(dzl_heap_extract, "dzl_heap_extract", LIBRARY_DAZZLE); 460 Linker.link(dzl_heap_extract_index, "dzl_heap_extract_index", LIBRARY_DAZZLE); 461 Linker.link(dzl_heap_insert_vals, "dzl_heap_insert_vals", LIBRARY_DAZZLE); 462 Linker.link(dzl_heap_ref, "dzl_heap_ref", LIBRARY_DAZZLE); 463 Linker.link(dzl_heap_unref, "dzl_heap_unref", LIBRARY_DAZZLE); 464 465 // dazzle.JoinedMenu 466 467 Linker.link(dzl_joined_menu_get_type, "dzl_joined_menu_get_type", LIBRARY_DAZZLE); 468 Linker.link(dzl_joined_menu_new, "dzl_joined_menu_new", LIBRARY_DAZZLE); 469 Linker.link(dzl_joined_menu_append_menu, "dzl_joined_menu_append_menu", LIBRARY_DAZZLE); 470 Linker.link(dzl_joined_menu_get_n_joined, "dzl_joined_menu_get_n_joined", LIBRARY_DAZZLE); 471 Linker.link(dzl_joined_menu_prepend_menu, "dzl_joined_menu_prepend_menu", LIBRARY_DAZZLE); 472 Linker.link(dzl_joined_menu_remove_index, "dzl_joined_menu_remove_index", LIBRARY_DAZZLE); 473 Linker.link(dzl_joined_menu_remove_menu, "dzl_joined_menu_remove_menu", LIBRARY_DAZZLE); 474 475 // dazzle.ListBox 476 477 Linker.link(dzl_list_box_get_type, "dzl_list_box_get_type", LIBRARY_DAZZLE); 478 Linker.link(dzl_list_box_new, "dzl_list_box_new", LIBRARY_DAZZLE); 479 Linker.link(dzl_list_box_get_model, "dzl_list_box_get_model", LIBRARY_DAZZLE); 480 Linker.link(dzl_list_box_get_property_name, "dzl_list_box_get_property_name", LIBRARY_DAZZLE); 481 Linker.link(dzl_list_box_get_row_type, "dzl_list_box_get_row_type", LIBRARY_DAZZLE); 482 Linker.link(dzl_list_box_set_model, "dzl_list_box_set_model", LIBRARY_DAZZLE); 483 Linker.link(dzl_list_box_set_recycle_max, "dzl_list_box_set_recycle_max", LIBRARY_DAZZLE); 484 485 // dazzle.ListBoxRow 486 487 Linker.link(dzl_list_box_row_get_type, "dzl_list_box_row_get_type", LIBRARY_DAZZLE); 488 489 // dazzle.ListModelFilter 490 491 Linker.link(dzl_list_model_filter_get_type, "dzl_list_model_filter_get_type", LIBRARY_DAZZLE); 492 Linker.link(dzl_list_model_filter_new, "dzl_list_model_filter_new", LIBRARY_DAZZLE); 493 Linker.link(dzl_list_model_filter_get_child_model, "dzl_list_model_filter_get_child_model", LIBRARY_DAZZLE); 494 Linker.link(dzl_list_model_filter_invalidate, "dzl_list_model_filter_invalidate", LIBRARY_DAZZLE); 495 Linker.link(dzl_list_model_filter_set_filter_func, "dzl_list_model_filter_set_filter_func", LIBRARY_DAZZLE); 496 497 // dazzle.ListStoreAdapter 498 499 Linker.link(dzl_list_store_adapter_get_type, "dzl_list_store_adapter_get_type", LIBRARY_DAZZLE); 500 Linker.link(dzl_list_store_adapter_new, "dzl_list_store_adapter_new", LIBRARY_DAZZLE); 501 Linker.link(dzl_list_store_adapter_get_model, "dzl_list_store_adapter_get_model", LIBRARY_DAZZLE); 502 Linker.link(dzl_list_store_adapter_set_model, "dzl_list_store_adapter_set_model", LIBRARY_DAZZLE); 503 504 // dazzle.MenuButton 505 506 Linker.link(dzl_menu_button_get_type, "dzl_menu_button_get_type", LIBRARY_DAZZLE); 507 Linker.link(dzl_menu_button_new_with_model, "dzl_menu_button_new_with_model", LIBRARY_DAZZLE); 508 Linker.link(dzl_menu_button_get_model, "dzl_menu_button_get_model", LIBRARY_DAZZLE); 509 Linker.link(dzl_menu_button_get_show_accels, "dzl_menu_button_get_show_accels", LIBRARY_DAZZLE); 510 Linker.link(dzl_menu_button_get_show_arrow, "dzl_menu_button_get_show_arrow", LIBRARY_DAZZLE); 511 Linker.link(dzl_menu_button_get_show_icons, "dzl_menu_button_get_show_icons", LIBRARY_DAZZLE); 512 Linker.link(dzl_menu_button_set_model, "dzl_menu_button_set_model", LIBRARY_DAZZLE); 513 Linker.link(dzl_menu_button_set_show_accels, "dzl_menu_button_set_show_accels", LIBRARY_DAZZLE); 514 Linker.link(dzl_menu_button_set_show_arrow, "dzl_menu_button_set_show_arrow", LIBRARY_DAZZLE); 515 Linker.link(dzl_menu_button_set_show_icons, "dzl_menu_button_set_show_icons", LIBRARY_DAZZLE); 516 517 // dazzle.MenuManager 518 519 Linker.link(dzl_menu_manager_get_type, "dzl_menu_manager_get_type", LIBRARY_DAZZLE); 520 Linker.link(dzl_menu_manager_new, "dzl_menu_manager_new", LIBRARY_DAZZLE); 521 Linker.link(dzl_menu_manager_add_filename, "dzl_menu_manager_add_filename", LIBRARY_DAZZLE); 522 Linker.link(dzl_menu_manager_add_resource, "dzl_menu_manager_add_resource", LIBRARY_DAZZLE); 523 Linker.link(dzl_menu_manager_get_menu_by_id, "dzl_menu_manager_get_menu_by_id", LIBRARY_DAZZLE); 524 Linker.link(dzl_menu_manager_merge, "dzl_menu_manager_merge", LIBRARY_DAZZLE); 525 Linker.link(dzl_menu_manager_remove, "dzl_menu_manager_remove", LIBRARY_DAZZLE); 526 527 // dazzle.MultiPaned 528 529 Linker.link(dzl_multi_paned_get_type, "dzl_multi_paned_get_type", LIBRARY_DAZZLE); 530 Linker.link(dzl_multi_paned_new, "dzl_multi_paned_new", LIBRARY_DAZZLE); 531 Linker.link(dzl_multi_paned_get_at_point, "dzl_multi_paned_get_at_point", LIBRARY_DAZZLE); 532 Linker.link(dzl_multi_paned_get_n_children, "dzl_multi_paned_get_n_children", LIBRARY_DAZZLE); 533 Linker.link(dzl_multi_paned_get_nth_child, "dzl_multi_paned_get_nth_child", LIBRARY_DAZZLE); 534 535 // dazzle.Path 536 537 Linker.link(dzl_path_get_type, "dzl_path_get_type", LIBRARY_DAZZLE); 538 Linker.link(dzl_path_new, "dzl_path_new", LIBRARY_DAZZLE); 539 Linker.link(dzl_path_append, "dzl_path_append", LIBRARY_DAZZLE); 540 Linker.link(dzl_path_get_element, "dzl_path_get_element", LIBRARY_DAZZLE); 541 Linker.link(dzl_path_get_elements, "dzl_path_get_elements", LIBRARY_DAZZLE); 542 Linker.link(dzl_path_get_length, "dzl_path_get_length", LIBRARY_DAZZLE); 543 Linker.link(dzl_path_has_prefix, "dzl_path_has_prefix", LIBRARY_DAZZLE); 544 Linker.link(dzl_path_is_empty, "dzl_path_is_empty", LIBRARY_DAZZLE); 545 Linker.link(dzl_path_prepend, "dzl_path_prepend", LIBRARY_DAZZLE); 546 Linker.link(dzl_path_printf, "dzl_path_printf", LIBRARY_DAZZLE); 547 548 // dazzle.PathBar 549 550 Linker.link(dzl_path_bar_get_type, "dzl_path_bar_get_type", LIBRARY_DAZZLE); 551 Linker.link(dzl_path_bar_new, "dzl_path_bar_new", LIBRARY_DAZZLE); 552 Linker.link(dzl_path_bar_get_path, "dzl_path_bar_get_path", LIBRARY_DAZZLE); 553 Linker.link(dzl_path_bar_set_path, "dzl_path_bar_set_path", LIBRARY_DAZZLE); 554 Linker.link(dzl_path_bar_set_selected_index, "dzl_path_bar_set_selected_index", LIBRARY_DAZZLE); 555 556 // dazzle.PathElement 557 558 Linker.link(dzl_path_element_get_type, "dzl_path_element_get_type", LIBRARY_DAZZLE); 559 Linker.link(dzl_path_element_new, "dzl_path_element_new", LIBRARY_DAZZLE); 560 Linker.link(dzl_path_element_get_icon_name, "dzl_path_element_get_icon_name", LIBRARY_DAZZLE); 561 Linker.link(dzl_path_element_get_id, "dzl_path_element_get_id", LIBRARY_DAZZLE); 562 Linker.link(dzl_path_element_get_title, "dzl_path_element_get_title", LIBRARY_DAZZLE); 563 564 // dazzle.PatternSpec 565 566 Linker.link(dzl_pattern_spec_get_type, "dzl_pattern_spec_get_type", LIBRARY_DAZZLE); 567 Linker.link(dzl_pattern_spec_new, "dzl_pattern_spec_new", LIBRARY_DAZZLE); 568 Linker.link(dzl_pattern_spec_get_text, "dzl_pattern_spec_get_text", LIBRARY_DAZZLE); 569 Linker.link(dzl_pattern_spec_match, "dzl_pattern_spec_match", LIBRARY_DAZZLE); 570 Linker.link(dzl_pattern_spec_ref, "dzl_pattern_spec_ref", LIBRARY_DAZZLE); 571 Linker.link(dzl_pattern_spec_unref, "dzl_pattern_spec_unref", LIBRARY_DAZZLE); 572 573 // dazzle.PillBox 574 575 Linker.link(dzl_pill_box_get_type, "dzl_pill_box_get_type", LIBRARY_DAZZLE); 576 Linker.link(dzl_pill_box_new, "dzl_pill_box_new", LIBRARY_DAZZLE); 577 Linker.link(dzl_pill_box_get_label, "dzl_pill_box_get_label", LIBRARY_DAZZLE); 578 Linker.link(dzl_pill_box_set_label, "dzl_pill_box_set_label", LIBRARY_DAZZLE); 579 580 // dazzle.Preferences 581 582 Linker.link(dzl_preferences_get_type, "dzl_preferences_get_type", LIBRARY_DAZZLE); 583 Linker.link(dzl_preferences_add_custom, "dzl_preferences_add_custom", LIBRARY_DAZZLE); 584 Linker.link(dzl_preferences_add_file_chooser, "dzl_preferences_add_file_chooser", LIBRARY_DAZZLE); 585 Linker.link(dzl_preferences_add_font_button, "dzl_preferences_add_font_button", LIBRARY_DAZZLE); 586 Linker.link(dzl_preferences_add_group, "dzl_preferences_add_group", LIBRARY_DAZZLE); 587 Linker.link(dzl_preferences_add_list_group, "dzl_preferences_add_list_group", LIBRARY_DAZZLE); 588 Linker.link(dzl_preferences_add_page, "dzl_preferences_add_page", LIBRARY_DAZZLE); 589 Linker.link(dzl_preferences_add_radio, "dzl_preferences_add_radio", LIBRARY_DAZZLE); 590 Linker.link(dzl_preferences_add_spin_button, "dzl_preferences_add_spin_button", LIBRARY_DAZZLE); 591 Linker.link(dzl_preferences_add_switch, "dzl_preferences_add_switch", LIBRARY_DAZZLE); 592 Linker.link(dzl_preferences_add_table_row, "dzl_preferences_add_table_row", LIBRARY_DAZZLE); 593 Linker.link(dzl_preferences_get_widget, "dzl_preferences_get_widget", LIBRARY_DAZZLE); 594 Linker.link(dzl_preferences_remove_id, "dzl_preferences_remove_id", LIBRARY_DAZZLE); 595 Linker.link(dzl_preferences_set_page, "dzl_preferences_set_page", LIBRARY_DAZZLE); 596 597 // dazzle.PreferencesBin 598 599 Linker.link(dzl_preferences_bin_get_type, "dzl_preferences_bin_get_type", LIBRARY_DAZZLE); 600 601 // dazzle.PreferencesEntry 602 603 Linker.link(dzl_preferences_entry_get_type, "dzl_preferences_entry_get_type", LIBRARY_DAZZLE); 604 Linker.link(dzl_preferences_entry_get_entry_widget, "dzl_preferences_entry_get_entry_widget", LIBRARY_DAZZLE); 605 Linker.link(dzl_preferences_entry_get_title_widget, "dzl_preferences_entry_get_title_widget", LIBRARY_DAZZLE); 606 607 // dazzle.PreferencesFileChooserButton 608 609 Linker.link(dzl_preferences_file_chooser_button_get_type, "dzl_preferences_file_chooser_button_get_type", LIBRARY_DAZZLE); 610 611 // dazzle.PreferencesFlowBox 612 613 Linker.link(dzl_preferences_flow_box_get_type, "dzl_preferences_flow_box_get_type", LIBRARY_DAZZLE); 614 Linker.link(dzl_preferences_flow_box_new, "dzl_preferences_flow_box_new", LIBRARY_DAZZLE); 615 616 // dazzle.PreferencesFontButton 617 618 Linker.link(dzl_preferences_font_button_get_type, "dzl_preferences_font_button_get_type", LIBRARY_DAZZLE); 619 620 // dazzle.PreferencesGroup 621 622 Linker.link(dzl_preferences_group_get_type, "dzl_preferences_group_get_type", LIBRARY_DAZZLE); 623 Linker.link(dzl_preferences_group_add, "dzl_preferences_group_add", LIBRARY_DAZZLE); 624 Linker.link(dzl_preferences_group_get_priority, "dzl_preferences_group_get_priority", LIBRARY_DAZZLE); 625 Linker.link(dzl_preferences_group_get_size_group, "dzl_preferences_group_get_size_group", LIBRARY_DAZZLE); 626 Linker.link(dzl_preferences_group_get_title, "dzl_preferences_group_get_title", LIBRARY_DAZZLE); 627 Linker.link(dzl_preferences_group_refilter, "dzl_preferences_group_refilter", LIBRARY_DAZZLE); 628 Linker.link(dzl_preferences_group_set_map, "dzl_preferences_group_set_map", LIBRARY_DAZZLE); 629 630 // dazzle.PreferencesPage 631 632 Linker.link(dzl_preferences_page_get_type, "dzl_preferences_page_get_type", LIBRARY_DAZZLE); 633 Linker.link(dzl_preferences_page_add_group, "dzl_preferences_page_add_group", LIBRARY_DAZZLE); 634 Linker.link(dzl_preferences_page_get_group, "dzl_preferences_page_get_group", LIBRARY_DAZZLE); 635 Linker.link(dzl_preferences_page_refilter, "dzl_preferences_page_refilter", LIBRARY_DAZZLE); 636 Linker.link(dzl_preferences_page_set_map, "dzl_preferences_page_set_map", LIBRARY_DAZZLE); 637 638 // dazzle.PreferencesSpinButton 639 640 Linker.link(dzl_preferences_spin_button_get_type, "dzl_preferences_spin_button_get_type", LIBRARY_DAZZLE); 641 Linker.link(dzl_preferences_spin_button_get_spin_button, "dzl_preferences_spin_button_get_spin_button", LIBRARY_DAZZLE); 642 643 // dazzle.PreferencesSwitch 644 645 Linker.link(dzl_preferences_switch_get_type, "dzl_preferences_switch_get_type", LIBRARY_DAZZLE); 646 647 // dazzle.PreferencesView 648 649 Linker.link(dzl_preferences_view_get_type, "dzl_preferences_view_get_type", LIBRARY_DAZZLE); 650 Linker.link(dzl_preferences_view_new, "dzl_preferences_view_new", LIBRARY_DAZZLE); 651 Linker.link(dzl_preferences_view_get_show_search_entry, "dzl_preferences_view_get_show_search_entry", LIBRARY_DAZZLE); 652 Linker.link(dzl_preferences_view_get_use_sidebar, "dzl_preferences_view_get_use_sidebar", LIBRARY_DAZZLE); 653 Linker.link(dzl_preferences_view_reapply_filter, "dzl_preferences_view_reapply_filter", LIBRARY_DAZZLE); 654 Linker.link(dzl_preferences_view_set_show_search_entry, "dzl_preferences_view_set_show_search_entry", LIBRARY_DAZZLE); 655 Linker.link(dzl_preferences_view_set_use_sidebar, "dzl_preferences_view_set_use_sidebar", LIBRARY_DAZZLE); 656 657 // dazzle.PriorityBox 658 659 Linker.link(dzl_priority_box_get_type, "dzl_priority_box_get_type", LIBRARY_DAZZLE); 660 Linker.link(dzl_priority_box_new, "dzl_priority_box_new", LIBRARY_DAZZLE); 661 662 // dazzle.ProgressButton 663 664 Linker.link(dzl_progress_button_get_type, "dzl_progress_button_get_type", LIBRARY_DAZZLE); 665 Linker.link(dzl_progress_button_new, "dzl_progress_button_new", LIBRARY_DAZZLE); 666 Linker.link(dzl_progress_button_get_progress, "dzl_progress_button_get_progress", LIBRARY_DAZZLE); 667 Linker.link(dzl_progress_button_get_show_progress, "dzl_progress_button_get_show_progress", LIBRARY_DAZZLE); 668 Linker.link(dzl_progress_button_set_progress, "dzl_progress_button_set_progress", LIBRARY_DAZZLE); 669 Linker.link(dzl_progress_button_set_show_progress, "dzl_progress_button_set_show_progress", LIBRARY_DAZZLE); 670 671 // dazzle.ProgressIcon 672 673 Linker.link(dzl_progress_icon_get_type, "dzl_progress_icon_get_type", LIBRARY_DAZZLE); 674 Linker.link(dzl_progress_icon_new, "dzl_progress_icon_new", LIBRARY_DAZZLE); 675 Linker.link(dzl_progress_icon_get_progress, "dzl_progress_icon_get_progress", LIBRARY_DAZZLE); 676 Linker.link(dzl_progress_icon_set_progress, "dzl_progress_icon_set_progress", LIBRARY_DAZZLE); 677 678 // dazzle.ProgressMenuButton 679 680 Linker.link(dzl_progress_menu_button_get_type, "dzl_progress_menu_button_get_type", LIBRARY_DAZZLE); 681 Linker.link(dzl_progress_menu_button_new, "dzl_progress_menu_button_new", LIBRARY_DAZZLE); 682 Linker.link(dzl_progress_menu_button_get_progress, "dzl_progress_menu_button_get_progress", LIBRARY_DAZZLE); 683 Linker.link(dzl_progress_menu_button_get_show_progress, "dzl_progress_menu_button_get_show_progress", LIBRARY_DAZZLE); 684 Linker.link(dzl_progress_menu_button_get_show_theatric, "dzl_progress_menu_button_get_show_theatric", LIBRARY_DAZZLE); 685 Linker.link(dzl_progress_menu_button_reset_theatrics, "dzl_progress_menu_button_reset_theatrics", LIBRARY_DAZZLE); 686 Linker.link(dzl_progress_menu_button_set_progress, "dzl_progress_menu_button_set_progress", LIBRARY_DAZZLE); 687 Linker.link(dzl_progress_menu_button_set_show_progress, "dzl_progress_menu_button_set_show_progress", LIBRARY_DAZZLE); 688 Linker.link(dzl_progress_menu_button_set_show_theatric, "dzl_progress_menu_button_set_show_theatric", LIBRARY_DAZZLE); 689 690 // dazzle.PropertiesGroup 691 692 Linker.link(dzl_properties_group_get_type, "dzl_properties_group_get_type", LIBRARY_DAZZLE); 693 Linker.link(dzl_properties_group_new, "dzl_properties_group_new", LIBRARY_DAZZLE); 694 Linker.link(dzl_properties_group_new_for_type, "dzl_properties_group_new_for_type", LIBRARY_DAZZLE); 695 Linker.link(dzl_properties_group_add_all_properties, "dzl_properties_group_add_all_properties", LIBRARY_DAZZLE); 696 Linker.link(dzl_properties_group_add_property, "dzl_properties_group_add_property", LIBRARY_DAZZLE); 697 Linker.link(dzl_properties_group_add_property_full, "dzl_properties_group_add_property_full", LIBRARY_DAZZLE); 698 Linker.link(dzl_properties_group_remove, "dzl_properties_group_remove", LIBRARY_DAZZLE); 699 700 // dazzle.RadioBox 701 702 Linker.link(dzl_radio_box_get_type, "dzl_radio_box_get_type", LIBRARY_DAZZLE); 703 Linker.link(dzl_radio_box_new, "dzl_radio_box_new", LIBRARY_DAZZLE); 704 Linker.link(dzl_radio_box_add_item, "dzl_radio_box_add_item", LIBRARY_DAZZLE); 705 Linker.link(dzl_radio_box_get_active_id, "dzl_radio_box_get_active_id", LIBRARY_DAZZLE); 706 Linker.link(dzl_radio_box_remove_item, "dzl_radio_box_remove_item", LIBRARY_DAZZLE); 707 Linker.link(dzl_radio_box_set_active_id, "dzl_radio_box_set_active_id", LIBRARY_DAZZLE); 708 709 // dazzle.ReadOnlyListModel 710 711 Linker.link(dzl_read_only_list_model_get_type, "dzl_read_only_list_model_get_type", LIBRARY_DAZZLE); 712 Linker.link(dzl_read_only_list_model_new, "dzl_read_only_list_model_new", LIBRARY_DAZZLE); 713 714 // dazzle.RecursiveFileMonitor 715 716 Linker.link(dzl_recursive_file_monitor_get_type, "dzl_recursive_file_monitor_get_type", LIBRARY_DAZZLE); 717 Linker.link(dzl_recursive_file_monitor_new, "dzl_recursive_file_monitor_new", LIBRARY_DAZZLE); 718 Linker.link(dzl_recursive_file_monitor_cancel, "dzl_recursive_file_monitor_cancel", LIBRARY_DAZZLE); 719 Linker.link(dzl_recursive_file_monitor_get_root, "dzl_recursive_file_monitor_get_root", LIBRARY_DAZZLE); 720 Linker.link(dzl_recursive_file_monitor_set_ignore_func, "dzl_recursive_file_monitor_set_ignore_func", LIBRARY_DAZZLE); 721 Linker.link(dzl_recursive_file_monitor_start_async, "dzl_recursive_file_monitor_start_async", LIBRARY_DAZZLE); 722 Linker.link(dzl_recursive_file_monitor_start_finish, "dzl_recursive_file_monitor_start_finish", LIBRARY_DAZZLE); 723 724 // dazzle.Ring 725 726 Linker.link(dzl_ring_get_type, "dzl_ring_get_type", LIBRARY_DAZZLE); 727 Linker.link(dzl_ring_sized_new, "dzl_ring_sized_new", LIBRARY_DAZZLE); 728 Linker.link(dzl_ring_append_vals, "dzl_ring_append_vals", LIBRARY_DAZZLE); 729 Linker.link(dzl_ring_foreach, "dzl_ring_foreach", LIBRARY_DAZZLE); 730 Linker.link(dzl_ring_ref, "dzl_ring_ref", LIBRARY_DAZZLE); 731 Linker.link(dzl_ring_unref, "dzl_ring_unref", LIBRARY_DAZZLE); 732 733 // dazzle.ScrolledWindow 734 735 Linker.link(dzl_scrolled_window_get_type, "dzl_scrolled_window_get_type", LIBRARY_DAZZLE); 736 737 // dazzle.SearchBar 738 739 Linker.link(dzl_search_bar_get_type, "dzl_search_bar_get_type", LIBRARY_DAZZLE); 740 Linker.link(dzl_search_bar_new, "dzl_search_bar_new", LIBRARY_DAZZLE); 741 Linker.link(dzl_search_bar_get_entry, "dzl_search_bar_get_entry", LIBRARY_DAZZLE); 742 Linker.link(dzl_search_bar_get_search_mode_enabled, "dzl_search_bar_get_search_mode_enabled", LIBRARY_DAZZLE); 743 Linker.link(dzl_search_bar_get_show_close_button, "dzl_search_bar_get_show_close_button", LIBRARY_DAZZLE); 744 Linker.link(dzl_search_bar_set_search_mode_enabled, "dzl_search_bar_set_search_mode_enabled", LIBRARY_DAZZLE); 745 Linker.link(dzl_search_bar_set_show_close_button, "dzl_search_bar_set_show_close_button", LIBRARY_DAZZLE); 746 747 // dazzle.SettingsFlagAction 748 749 Linker.link(dzl_settings_flag_action_get_type, "dzl_settings_flag_action_get_type", LIBRARY_DAZZLE); 750 Linker.link(dzl_settings_flag_action_new, "dzl_settings_flag_action_new", LIBRARY_DAZZLE); 751 752 // dazzle.SettingsSandwich 753 754 Linker.link(dzl_settings_sandwich_get_type, "dzl_settings_sandwich_get_type", LIBRARY_DAZZLE); 755 Linker.link(dzl_settings_sandwich_new, "dzl_settings_sandwich_new", LIBRARY_DAZZLE); 756 Linker.link(dzl_settings_sandwich_append, "dzl_settings_sandwich_append", LIBRARY_DAZZLE); 757 Linker.link(dzl_settings_sandwich_bind, "dzl_settings_sandwich_bind", LIBRARY_DAZZLE); 758 Linker.link(dzl_settings_sandwich_bind_with_mapping, "dzl_settings_sandwich_bind_with_mapping", LIBRARY_DAZZLE); 759 Linker.link(dzl_settings_sandwich_get_boolean, "dzl_settings_sandwich_get_boolean", LIBRARY_DAZZLE); 760 Linker.link(dzl_settings_sandwich_get_default_value, "dzl_settings_sandwich_get_default_value", LIBRARY_DAZZLE); 761 Linker.link(dzl_settings_sandwich_get_double, "dzl_settings_sandwich_get_double", LIBRARY_DAZZLE); 762 Linker.link(dzl_settings_sandwich_get_int, "dzl_settings_sandwich_get_int", LIBRARY_DAZZLE); 763 Linker.link(dzl_settings_sandwich_get_string, "dzl_settings_sandwich_get_string", LIBRARY_DAZZLE); 764 Linker.link(dzl_settings_sandwich_get_uint, "dzl_settings_sandwich_get_uint", LIBRARY_DAZZLE); 765 Linker.link(dzl_settings_sandwich_get_user_value, "dzl_settings_sandwich_get_user_value", LIBRARY_DAZZLE); 766 Linker.link(dzl_settings_sandwich_get_value, "dzl_settings_sandwich_get_value", LIBRARY_DAZZLE); 767 Linker.link(dzl_settings_sandwich_set_boolean, "dzl_settings_sandwich_set_boolean", LIBRARY_DAZZLE); 768 Linker.link(dzl_settings_sandwich_set_double, "dzl_settings_sandwich_set_double", LIBRARY_DAZZLE); 769 Linker.link(dzl_settings_sandwich_set_int, "dzl_settings_sandwich_set_int", LIBRARY_DAZZLE); 770 Linker.link(dzl_settings_sandwich_set_string, "dzl_settings_sandwich_set_string", LIBRARY_DAZZLE); 771 Linker.link(dzl_settings_sandwich_set_uint, "dzl_settings_sandwich_set_uint", LIBRARY_DAZZLE); 772 Linker.link(dzl_settings_sandwich_set_value, "dzl_settings_sandwich_set_value", LIBRARY_DAZZLE); 773 Linker.link(dzl_settings_sandwich_unbind, "dzl_settings_sandwich_unbind", LIBRARY_DAZZLE); 774 775 // dazzle.ShortcutAccelDialog 776 777 Linker.link(dzl_shortcut_accel_dialog_get_type, "dzl_shortcut_accel_dialog_get_type", LIBRARY_DAZZLE); 778 Linker.link(dzl_shortcut_accel_dialog_new, "dzl_shortcut_accel_dialog_new", LIBRARY_DAZZLE); 779 Linker.link(dzl_shortcut_accel_dialog_get_accelerator, "dzl_shortcut_accel_dialog_get_accelerator", LIBRARY_DAZZLE); 780 Linker.link(dzl_shortcut_accel_dialog_get_chord, "dzl_shortcut_accel_dialog_get_chord", LIBRARY_DAZZLE); 781 Linker.link(dzl_shortcut_accel_dialog_get_shortcut_title, "dzl_shortcut_accel_dialog_get_shortcut_title", LIBRARY_DAZZLE); 782 Linker.link(dzl_shortcut_accel_dialog_set_accelerator, "dzl_shortcut_accel_dialog_set_accelerator", LIBRARY_DAZZLE); 783 Linker.link(dzl_shortcut_accel_dialog_set_shortcut_title, "dzl_shortcut_accel_dialog_set_shortcut_title", LIBRARY_DAZZLE); 784 785 // dazzle.ShortcutChord 786 787 Linker.link(dzl_shortcut_chord_get_type, "dzl_shortcut_chord_get_type", LIBRARY_DAZZLE); 788 Linker.link(dzl_shortcut_chord_new_from_event, "dzl_shortcut_chord_new_from_event", LIBRARY_DAZZLE); 789 Linker.link(dzl_shortcut_chord_new_from_string, "dzl_shortcut_chord_new_from_string", LIBRARY_DAZZLE); 790 Linker.link(dzl_shortcut_chord_append_event, "dzl_shortcut_chord_append_event", LIBRARY_DAZZLE); 791 Linker.link(dzl_shortcut_chord_copy, "dzl_shortcut_chord_copy", LIBRARY_DAZZLE); 792 Linker.link(dzl_shortcut_chord_free, "dzl_shortcut_chord_free", LIBRARY_DAZZLE); 793 Linker.link(dzl_shortcut_chord_get_label, "dzl_shortcut_chord_get_label", LIBRARY_DAZZLE); 794 Linker.link(dzl_shortcut_chord_get_length, "dzl_shortcut_chord_get_length", LIBRARY_DAZZLE); 795 Linker.link(dzl_shortcut_chord_get_nth_key, "dzl_shortcut_chord_get_nth_key", LIBRARY_DAZZLE); 796 Linker.link(dzl_shortcut_chord_has_modifier, "dzl_shortcut_chord_has_modifier", LIBRARY_DAZZLE); 797 Linker.link(dzl_shortcut_chord_match, "dzl_shortcut_chord_match", LIBRARY_DAZZLE); 798 Linker.link(dzl_shortcut_chord_to_string, "dzl_shortcut_chord_to_string", LIBRARY_DAZZLE); 799 Linker.link(dzl_shortcut_chord_equal, "dzl_shortcut_chord_equal", LIBRARY_DAZZLE); 800 Linker.link(dzl_shortcut_chord_hash, "dzl_shortcut_chord_hash", LIBRARY_DAZZLE); 801 802 // dazzle.ShortcutChordTable 803 804 Linker.link(dzl_shortcut_chord_table_add, "dzl_shortcut_chord_table_add", LIBRARY_DAZZLE); 805 Linker.link(dzl_shortcut_chord_table_foreach, "dzl_shortcut_chord_table_foreach", LIBRARY_DAZZLE); 806 Linker.link(dzl_shortcut_chord_table_free, "dzl_shortcut_chord_table_free", LIBRARY_DAZZLE); 807 Linker.link(dzl_shortcut_chord_table_lookup, "dzl_shortcut_chord_table_lookup", LIBRARY_DAZZLE); 808 Linker.link(dzl_shortcut_chord_table_lookup_data, "dzl_shortcut_chord_table_lookup_data", LIBRARY_DAZZLE); 809 Linker.link(dzl_shortcut_chord_table_printf, "dzl_shortcut_chord_table_printf", LIBRARY_DAZZLE); 810 Linker.link(dzl_shortcut_chord_table_remove, "dzl_shortcut_chord_table_remove", LIBRARY_DAZZLE); 811 Linker.link(dzl_shortcut_chord_table_remove_data, "dzl_shortcut_chord_table_remove_data", LIBRARY_DAZZLE); 812 Linker.link(dzl_shortcut_chord_table_set_free_func, "dzl_shortcut_chord_table_set_free_func", LIBRARY_DAZZLE); 813 Linker.link(dzl_shortcut_chord_table_size, "dzl_shortcut_chord_table_size", LIBRARY_DAZZLE); 814 Linker.link(dzl_shortcut_chord_table_new, "dzl_shortcut_chord_table_new", LIBRARY_DAZZLE); 815 816 // dazzle.ShortcutContext 817 818 Linker.link(dzl_shortcut_context_get_type, "dzl_shortcut_context_get_type", LIBRARY_DAZZLE); 819 Linker.link(dzl_shortcut_context_new, "dzl_shortcut_context_new", LIBRARY_DAZZLE); 820 Linker.link(dzl_shortcut_context_activate, "dzl_shortcut_context_activate", LIBRARY_DAZZLE); 821 Linker.link(dzl_shortcut_context_add_action, "dzl_shortcut_context_add_action", LIBRARY_DAZZLE); 822 Linker.link(dzl_shortcut_context_add_command, "dzl_shortcut_context_add_command", LIBRARY_DAZZLE); 823 Linker.link(dzl_shortcut_context_add_signal, "dzl_shortcut_context_add_signal", LIBRARY_DAZZLE); 824 Linker.link(dzl_shortcut_context_add_signal_va_list, "dzl_shortcut_context_add_signal_va_list", LIBRARY_DAZZLE); 825 Linker.link(dzl_shortcut_context_add_signalv, "dzl_shortcut_context_add_signalv", LIBRARY_DAZZLE); 826 Linker.link(dzl_shortcut_context_get_name, "dzl_shortcut_context_get_name", LIBRARY_DAZZLE); 827 Linker.link(dzl_shortcut_context_load_from_data, "dzl_shortcut_context_load_from_data", LIBRARY_DAZZLE); 828 Linker.link(dzl_shortcut_context_load_from_resource, "dzl_shortcut_context_load_from_resource", LIBRARY_DAZZLE); 829 Linker.link(dzl_shortcut_context_remove, "dzl_shortcut_context_remove", LIBRARY_DAZZLE); 830 831 // dazzle.ShortcutController 832 833 Linker.link(dzl_shortcut_controller_get_type, "dzl_shortcut_controller_get_type", LIBRARY_DAZZLE); 834 Linker.link(dzl_shortcut_controller_new, "dzl_shortcut_controller_new", LIBRARY_DAZZLE); 835 Linker.link(dzl_shortcut_controller_find, "dzl_shortcut_controller_find", LIBRARY_DAZZLE); 836 Linker.link(dzl_shortcut_controller_try_find, "dzl_shortcut_controller_try_find", LIBRARY_DAZZLE); 837 Linker.link(dzl_shortcut_controller_add_command_action, "dzl_shortcut_controller_add_command_action", LIBRARY_DAZZLE); 838 Linker.link(dzl_shortcut_controller_add_command_callback, "dzl_shortcut_controller_add_command_callback", LIBRARY_DAZZLE); 839 Linker.link(dzl_shortcut_controller_add_command_signal, "dzl_shortcut_controller_add_command_signal", LIBRARY_DAZZLE); 840 Linker.link(dzl_shortcut_controller_execute_command, "dzl_shortcut_controller_execute_command", LIBRARY_DAZZLE); 841 Linker.link(dzl_shortcut_controller_get_context, "dzl_shortcut_controller_get_context", LIBRARY_DAZZLE); 842 Linker.link(dzl_shortcut_controller_get_context_for_phase, "dzl_shortcut_controller_get_context_for_phase", LIBRARY_DAZZLE); 843 Linker.link(dzl_shortcut_controller_get_current_chord, "dzl_shortcut_controller_get_current_chord", LIBRARY_DAZZLE); 844 Linker.link(dzl_shortcut_controller_get_manager, "dzl_shortcut_controller_get_manager", LIBRARY_DAZZLE); 845 Linker.link(dzl_shortcut_controller_get_widget, "dzl_shortcut_controller_get_widget", LIBRARY_DAZZLE); 846 Linker.link(dzl_shortcut_controller_remove_accel, "dzl_shortcut_controller_remove_accel", LIBRARY_DAZZLE); 847 Linker.link(dzl_shortcut_controller_set_context_by_name, "dzl_shortcut_controller_set_context_by_name", LIBRARY_DAZZLE); 848 Linker.link(dzl_shortcut_controller_set_manager, "dzl_shortcut_controller_set_manager", LIBRARY_DAZZLE); 849 850 // dazzle.ShortcutLabel 851 852 Linker.link(dzl_shortcut_label_get_type, "dzl_shortcut_label_get_type", LIBRARY_DAZZLE); 853 Linker.link(dzl_shortcut_label_new, "dzl_shortcut_label_new", LIBRARY_DAZZLE); 854 Linker.link(dzl_shortcut_label_get_accelerator, "dzl_shortcut_label_get_accelerator", LIBRARY_DAZZLE); 855 Linker.link(dzl_shortcut_label_get_chord, "dzl_shortcut_label_get_chord", LIBRARY_DAZZLE); 856 Linker.link(dzl_shortcut_label_set_accelerator, "dzl_shortcut_label_set_accelerator", LIBRARY_DAZZLE); 857 Linker.link(dzl_shortcut_label_set_chord, "dzl_shortcut_label_set_chord", LIBRARY_DAZZLE); 858 859 // dazzle.ShortcutManager 860 861 Linker.link(dzl_shortcut_manager_get_type, "dzl_shortcut_manager_get_type", LIBRARY_DAZZLE); 862 Linker.link(dzl_shortcut_manager_get_default, "dzl_shortcut_manager_get_default", LIBRARY_DAZZLE); 863 Linker.link(dzl_shortcut_manager_add_action, "dzl_shortcut_manager_add_action", LIBRARY_DAZZLE); 864 Linker.link(dzl_shortcut_manager_add_command, "dzl_shortcut_manager_add_command", LIBRARY_DAZZLE); 865 Linker.link(dzl_shortcut_manager_add_shortcut_entries, "dzl_shortcut_manager_add_shortcut_entries", LIBRARY_DAZZLE); 866 Linker.link(dzl_shortcut_manager_add_shortcuts_to_window, "dzl_shortcut_manager_add_shortcuts_to_window", LIBRARY_DAZZLE); 867 Linker.link(dzl_shortcut_manager_append_search_path, "dzl_shortcut_manager_append_search_path", LIBRARY_DAZZLE); 868 Linker.link(dzl_shortcut_manager_get_theme, "dzl_shortcut_manager_get_theme", LIBRARY_DAZZLE); 869 Linker.link(dzl_shortcut_manager_get_theme_by_name, "dzl_shortcut_manager_get_theme_by_name", LIBRARY_DAZZLE); 870 Linker.link(dzl_shortcut_manager_get_theme_name, "dzl_shortcut_manager_get_theme_name", LIBRARY_DAZZLE); 871 Linker.link(dzl_shortcut_manager_get_user_dir, "dzl_shortcut_manager_get_user_dir", LIBRARY_DAZZLE); 872 Linker.link(dzl_shortcut_manager_handle_event, "dzl_shortcut_manager_handle_event", LIBRARY_DAZZLE); 873 Linker.link(dzl_shortcut_manager_prepend_search_path, "dzl_shortcut_manager_prepend_search_path", LIBRARY_DAZZLE); 874 Linker.link(dzl_shortcut_manager_queue_reload, "dzl_shortcut_manager_queue_reload", LIBRARY_DAZZLE); 875 Linker.link(dzl_shortcut_manager_reload, "dzl_shortcut_manager_reload", LIBRARY_DAZZLE); 876 Linker.link(dzl_shortcut_manager_remove_search_path, "dzl_shortcut_manager_remove_search_path", LIBRARY_DAZZLE); 877 Linker.link(dzl_shortcut_manager_set_theme, "dzl_shortcut_manager_set_theme", LIBRARY_DAZZLE); 878 Linker.link(dzl_shortcut_manager_set_theme_name, "dzl_shortcut_manager_set_theme_name", LIBRARY_DAZZLE); 879 Linker.link(dzl_shortcut_manager_set_user_dir, "dzl_shortcut_manager_set_user_dir", LIBRARY_DAZZLE); 880 881 // dazzle.ShortcutModel 882 883 Linker.link(dzl_shortcut_model_get_type, "dzl_shortcut_model_get_type", LIBRARY_DAZZLE); 884 Linker.link(dzl_shortcut_model_new, "dzl_shortcut_model_new", LIBRARY_DAZZLE); 885 Linker.link(dzl_shortcut_model_get_manager, "dzl_shortcut_model_get_manager", LIBRARY_DAZZLE); 886 Linker.link(dzl_shortcut_model_get_theme, "dzl_shortcut_model_get_theme", LIBRARY_DAZZLE); 887 Linker.link(dzl_shortcut_model_rebuild, "dzl_shortcut_model_rebuild", LIBRARY_DAZZLE); 888 Linker.link(dzl_shortcut_model_set_chord, "dzl_shortcut_model_set_chord", LIBRARY_DAZZLE); 889 Linker.link(dzl_shortcut_model_set_manager, "dzl_shortcut_model_set_manager", LIBRARY_DAZZLE); 890 Linker.link(dzl_shortcut_model_set_theme, "dzl_shortcut_model_set_theme", LIBRARY_DAZZLE); 891 892 // dazzle.ShortcutSimpleLabel 893 894 Linker.link(dzl_shortcut_simple_label_get_type, "dzl_shortcut_simple_label_get_type", LIBRARY_DAZZLE); 895 Linker.link(dzl_shortcut_simple_label_new, "dzl_shortcut_simple_label_new", LIBRARY_DAZZLE); 896 Linker.link(dzl_shortcut_simple_label_get_accel, "dzl_shortcut_simple_label_get_accel", LIBRARY_DAZZLE); 897 Linker.link(dzl_shortcut_simple_label_get_action, "dzl_shortcut_simple_label_get_action", LIBRARY_DAZZLE); 898 Linker.link(dzl_shortcut_simple_label_get_command, "dzl_shortcut_simple_label_get_command", LIBRARY_DAZZLE); 899 Linker.link(dzl_shortcut_simple_label_get_title, "dzl_shortcut_simple_label_get_title", LIBRARY_DAZZLE); 900 Linker.link(dzl_shortcut_simple_label_set_accel, "dzl_shortcut_simple_label_set_accel", LIBRARY_DAZZLE); 901 Linker.link(dzl_shortcut_simple_label_set_action, "dzl_shortcut_simple_label_set_action", LIBRARY_DAZZLE); 902 Linker.link(dzl_shortcut_simple_label_set_command, "dzl_shortcut_simple_label_set_command", LIBRARY_DAZZLE); 903 Linker.link(dzl_shortcut_simple_label_set_title, "dzl_shortcut_simple_label_set_title", LIBRARY_DAZZLE); 904 905 // dazzle.ShortcutTheme 906 907 Linker.link(dzl_shortcut_theme_get_type, "dzl_shortcut_theme_get_type", LIBRARY_DAZZLE); 908 Linker.link(dzl_shortcut_theme_new, "dzl_shortcut_theme_new", LIBRARY_DAZZLE); 909 Linker.link(dzl_shortcut_theme_add_command, "dzl_shortcut_theme_add_command", LIBRARY_DAZZLE); 910 Linker.link(dzl_shortcut_theme_add_context, "dzl_shortcut_theme_add_context", LIBRARY_DAZZLE); 911 Linker.link(dzl_shortcut_theme_add_css_resource, "dzl_shortcut_theme_add_css_resource", LIBRARY_DAZZLE); 912 Linker.link(dzl_shortcut_theme_find_context_by_name, "dzl_shortcut_theme_find_context_by_name", LIBRARY_DAZZLE); 913 Linker.link(dzl_shortcut_theme_find_default_context, "dzl_shortcut_theme_find_default_context", LIBRARY_DAZZLE); 914 Linker.link(dzl_shortcut_theme_get_chord_for_action, "dzl_shortcut_theme_get_chord_for_action", LIBRARY_DAZZLE); 915 Linker.link(dzl_shortcut_theme_get_chord_for_command, "dzl_shortcut_theme_get_chord_for_command", LIBRARY_DAZZLE); 916 Linker.link(dzl_shortcut_theme_get_name, "dzl_shortcut_theme_get_name", LIBRARY_DAZZLE); 917 Linker.link(dzl_shortcut_theme_get_parent, "dzl_shortcut_theme_get_parent", LIBRARY_DAZZLE); 918 Linker.link(dzl_shortcut_theme_get_parent_name, "dzl_shortcut_theme_get_parent_name", LIBRARY_DAZZLE); 919 Linker.link(dzl_shortcut_theme_get_subtitle, "dzl_shortcut_theme_get_subtitle", LIBRARY_DAZZLE); 920 Linker.link(dzl_shortcut_theme_get_title, "dzl_shortcut_theme_get_title", LIBRARY_DAZZLE); 921 Linker.link(dzl_shortcut_theme_load_from_data, "dzl_shortcut_theme_load_from_data", LIBRARY_DAZZLE); 922 Linker.link(dzl_shortcut_theme_load_from_file, "dzl_shortcut_theme_load_from_file", LIBRARY_DAZZLE); 923 Linker.link(dzl_shortcut_theme_load_from_path, "dzl_shortcut_theme_load_from_path", LIBRARY_DAZZLE); 924 Linker.link(dzl_shortcut_theme_remove_css_resource, "dzl_shortcut_theme_remove_css_resource", LIBRARY_DAZZLE); 925 Linker.link(dzl_shortcut_theme_save_to_file, "dzl_shortcut_theme_save_to_file", LIBRARY_DAZZLE); 926 Linker.link(dzl_shortcut_theme_save_to_path, "dzl_shortcut_theme_save_to_path", LIBRARY_DAZZLE); 927 Linker.link(dzl_shortcut_theme_save_to_stream, "dzl_shortcut_theme_save_to_stream", LIBRARY_DAZZLE); 928 Linker.link(dzl_shortcut_theme_set_accel_for_action, "dzl_shortcut_theme_set_accel_for_action", LIBRARY_DAZZLE); 929 Linker.link(dzl_shortcut_theme_set_accel_for_command, "dzl_shortcut_theme_set_accel_for_command", LIBRARY_DAZZLE); 930 Linker.link(dzl_shortcut_theme_set_chord_for_action, "dzl_shortcut_theme_set_chord_for_action", LIBRARY_DAZZLE); 931 Linker.link(dzl_shortcut_theme_set_chord_for_command, "dzl_shortcut_theme_set_chord_for_command", LIBRARY_DAZZLE); 932 Linker.link(dzl_shortcut_theme_set_parent_name, "dzl_shortcut_theme_set_parent_name", LIBRARY_DAZZLE); 933 934 // dazzle.ShortcutThemeEditor 935 936 Linker.link(dzl_shortcut_theme_editor_get_type, "dzl_shortcut_theme_editor_get_type", LIBRARY_DAZZLE); 937 Linker.link(dzl_shortcut_theme_editor_new, "dzl_shortcut_theme_editor_new", LIBRARY_DAZZLE); 938 Linker.link(dzl_shortcut_theme_editor_get_theme, "dzl_shortcut_theme_editor_get_theme", LIBRARY_DAZZLE); 939 Linker.link(dzl_shortcut_theme_editor_set_theme, "dzl_shortcut_theme_editor_set_theme", LIBRARY_DAZZLE); 940 941 // dazzle.ShortcutTooltip 942 943 Linker.link(dzl_shortcut_tooltip_get_type, "dzl_shortcut_tooltip_get_type", LIBRARY_DAZZLE); 944 Linker.link(dzl_shortcut_tooltip_new, "dzl_shortcut_tooltip_new", LIBRARY_DAZZLE); 945 Linker.link(dzl_shortcut_tooltip_get_accel, "dzl_shortcut_tooltip_get_accel", LIBRARY_DAZZLE); 946 Linker.link(dzl_shortcut_tooltip_get_command_id, "dzl_shortcut_tooltip_get_command_id", LIBRARY_DAZZLE); 947 Linker.link(dzl_shortcut_tooltip_get_title, "dzl_shortcut_tooltip_get_title", LIBRARY_DAZZLE); 948 Linker.link(dzl_shortcut_tooltip_get_widget, "dzl_shortcut_tooltip_get_widget", LIBRARY_DAZZLE); 949 Linker.link(dzl_shortcut_tooltip_set_accel, "dzl_shortcut_tooltip_set_accel", LIBRARY_DAZZLE); 950 Linker.link(dzl_shortcut_tooltip_set_command_id, "dzl_shortcut_tooltip_set_command_id", LIBRARY_DAZZLE); 951 Linker.link(dzl_shortcut_tooltip_set_title, "dzl_shortcut_tooltip_set_title", LIBRARY_DAZZLE); 952 Linker.link(dzl_shortcut_tooltip_set_widget, "dzl_shortcut_tooltip_set_widget", LIBRARY_DAZZLE); 953 954 // dazzle.ShortcutsGroup 955 956 Linker.link(dzl_shortcuts_group_get_type, "dzl_shortcuts_group_get_type", LIBRARY_DAZZLE); 957 958 // dazzle.ShortcutsSection 959 960 Linker.link(dzl_shortcuts_section_get_type, "dzl_shortcuts_section_get_type", LIBRARY_DAZZLE); 961 962 // dazzle.ShortcutsShortcut 963 964 Linker.link(dzl_shortcuts_shortcut_get_type, "dzl_shortcuts_shortcut_get_type", LIBRARY_DAZZLE); 965 966 // dazzle.ShortcutsWindow 967 968 Linker.link(dzl_shortcuts_window_get_type, "dzl_shortcuts_window_get_type", LIBRARY_DAZZLE); 969 970 // dazzle.SignalGroup 971 972 Linker.link(dzl_signal_group_get_type, "dzl_signal_group_get_type", LIBRARY_DAZZLE); 973 Linker.link(dzl_signal_group_new, "dzl_signal_group_new", LIBRARY_DAZZLE); 974 Linker.link(dzl_signal_group_block, "dzl_signal_group_block", LIBRARY_DAZZLE); 975 Linker.link(dzl_signal_group_connect, "dzl_signal_group_connect", LIBRARY_DAZZLE); 976 Linker.link(dzl_signal_group_connect_after, "dzl_signal_group_connect_after", LIBRARY_DAZZLE); 977 Linker.link(dzl_signal_group_connect_data, "dzl_signal_group_connect_data", LIBRARY_DAZZLE); 978 Linker.link(dzl_signal_group_connect_object, "dzl_signal_group_connect_object", LIBRARY_DAZZLE); 979 Linker.link(dzl_signal_group_connect_swapped, "dzl_signal_group_connect_swapped", LIBRARY_DAZZLE); 980 Linker.link(dzl_signal_group_get_target, "dzl_signal_group_get_target", LIBRARY_DAZZLE); 981 Linker.link(dzl_signal_group_set_target, "dzl_signal_group_set_target", LIBRARY_DAZZLE); 982 Linker.link(dzl_signal_group_unblock, "dzl_signal_group_unblock", LIBRARY_DAZZLE); 983 984 // dazzle.SimpleLabel 985 986 Linker.link(dzl_simple_label_get_type, "dzl_simple_label_get_type", LIBRARY_DAZZLE); 987 Linker.link(dzl_simple_label_new, "dzl_simple_label_new", LIBRARY_DAZZLE); 988 Linker.link(dzl_simple_label_get_label, "dzl_simple_label_get_label", LIBRARY_DAZZLE); 989 Linker.link(dzl_simple_label_get_width_chars, "dzl_simple_label_get_width_chars", LIBRARY_DAZZLE); 990 Linker.link(dzl_simple_label_get_xalign, "dzl_simple_label_get_xalign", LIBRARY_DAZZLE); 991 Linker.link(dzl_simple_label_set_label, "dzl_simple_label_set_label", LIBRARY_DAZZLE); 992 Linker.link(dzl_simple_label_set_width_chars, "dzl_simple_label_set_width_chars", LIBRARY_DAZZLE); 993 Linker.link(dzl_simple_label_set_xalign, "dzl_simple_label_set_xalign", LIBRARY_DAZZLE); 994 995 // dazzle.SimplePopover 996 997 Linker.link(dzl_simple_popover_get_type, "dzl_simple_popover_get_type", LIBRARY_DAZZLE); 998 Linker.link(dzl_simple_popover_new, "dzl_simple_popover_new", LIBRARY_DAZZLE); 999 Linker.link(dzl_simple_popover_get_button_text, "dzl_simple_popover_get_button_text", LIBRARY_DAZZLE); 1000 Linker.link(dzl_simple_popover_get_message, "dzl_simple_popover_get_message", LIBRARY_DAZZLE); 1001 Linker.link(dzl_simple_popover_get_ready, "dzl_simple_popover_get_ready", LIBRARY_DAZZLE); 1002 Linker.link(dzl_simple_popover_get_text, "dzl_simple_popover_get_text", LIBRARY_DAZZLE); 1003 Linker.link(dzl_simple_popover_get_title, "dzl_simple_popover_get_title", LIBRARY_DAZZLE); 1004 Linker.link(dzl_simple_popover_set_button_text, "dzl_simple_popover_set_button_text", LIBRARY_DAZZLE); 1005 Linker.link(dzl_simple_popover_set_message, "dzl_simple_popover_set_message", LIBRARY_DAZZLE); 1006 Linker.link(dzl_simple_popover_set_ready, "dzl_simple_popover_set_ready", LIBRARY_DAZZLE); 1007 Linker.link(dzl_simple_popover_set_text, "dzl_simple_popover_set_text", LIBRARY_DAZZLE); 1008 Linker.link(dzl_simple_popover_set_title, "dzl_simple_popover_set_title", LIBRARY_DAZZLE); 1009 1010 // dazzle.Slider 1011 1012 Linker.link(dzl_slider_get_type, "dzl_slider_get_type", LIBRARY_DAZZLE); 1013 Linker.link(dzl_slider_new, "dzl_slider_new", LIBRARY_DAZZLE); 1014 Linker.link(dzl_slider_add_slider, "dzl_slider_add_slider", LIBRARY_DAZZLE); 1015 Linker.link(dzl_slider_get_position, "dzl_slider_get_position", LIBRARY_DAZZLE); 1016 Linker.link(dzl_slider_set_position, "dzl_slider_set_position", LIBRARY_DAZZLE); 1017 1018 // dazzle.StackList 1019 1020 Linker.link(dzl_stack_list_get_type, "dzl_stack_list_get_type", LIBRARY_DAZZLE); 1021 Linker.link(dzl_stack_list_new, "dzl_stack_list_new", LIBRARY_DAZZLE); 1022 Linker.link(dzl_stack_list_clear, "dzl_stack_list_clear", LIBRARY_DAZZLE); 1023 Linker.link(dzl_stack_list_get_depth, "dzl_stack_list_get_depth", LIBRARY_DAZZLE); 1024 Linker.link(dzl_stack_list_get_model, "dzl_stack_list_get_model", LIBRARY_DAZZLE); 1025 Linker.link(dzl_stack_list_pop, "dzl_stack_list_pop", LIBRARY_DAZZLE); 1026 Linker.link(dzl_stack_list_push, "dzl_stack_list_push", LIBRARY_DAZZLE); 1027 1028 // dazzle.StateMachine 1029 1030 Linker.link(dzl_state_machine_get_type, "dzl_state_machine_get_type", LIBRARY_DAZZLE); 1031 Linker.link(dzl_state_machine_new, "dzl_state_machine_new", LIBRARY_DAZZLE); 1032 Linker.link(dzl_state_machine_buildable_iface_init, "dzl_state_machine_buildable_iface_init", LIBRARY_DAZZLE); 1033 Linker.link(dzl_state_machine_add_binding, "dzl_state_machine_add_binding", LIBRARY_DAZZLE); 1034 Linker.link(dzl_state_machine_add_property, "dzl_state_machine_add_property", LIBRARY_DAZZLE); 1035 Linker.link(dzl_state_machine_add_property_valist, "dzl_state_machine_add_property_valist", LIBRARY_DAZZLE); 1036 Linker.link(dzl_state_machine_add_propertyv, "dzl_state_machine_add_propertyv", LIBRARY_DAZZLE); 1037 Linker.link(dzl_state_machine_add_style, "dzl_state_machine_add_style", LIBRARY_DAZZLE); 1038 Linker.link(dzl_state_machine_connect_object, "dzl_state_machine_connect_object", LIBRARY_DAZZLE); 1039 Linker.link(dzl_state_machine_create_action, "dzl_state_machine_create_action", LIBRARY_DAZZLE); 1040 Linker.link(dzl_state_machine_get_state, "dzl_state_machine_get_state", LIBRARY_DAZZLE); 1041 Linker.link(dzl_state_machine_is_state, "dzl_state_machine_is_state", LIBRARY_DAZZLE); 1042 Linker.link(dzl_state_machine_set_state, "dzl_state_machine_set_state", LIBRARY_DAZZLE); 1043 1044 // dazzle.Suggestion 1045 1046 Linker.link(dzl_suggestion_get_type, "dzl_suggestion_get_type", LIBRARY_DAZZLE); 1047 Linker.link(dzl_suggestion_new, "dzl_suggestion_new", LIBRARY_DAZZLE); 1048 Linker.link(dzl_suggestion_get_icon, "dzl_suggestion_get_icon", LIBRARY_DAZZLE); 1049 Linker.link(dzl_suggestion_get_icon_name, "dzl_suggestion_get_icon_name", LIBRARY_DAZZLE); 1050 Linker.link(dzl_suggestion_get_icon_surface, "dzl_suggestion_get_icon_surface", LIBRARY_DAZZLE); 1051 Linker.link(dzl_suggestion_get_id, "dzl_suggestion_get_id", LIBRARY_DAZZLE); 1052 Linker.link(dzl_suggestion_get_subtitle, "dzl_suggestion_get_subtitle", LIBRARY_DAZZLE); 1053 Linker.link(dzl_suggestion_get_title, "dzl_suggestion_get_title", LIBRARY_DAZZLE); 1054 Linker.link(dzl_suggestion_replace_typed_text, "dzl_suggestion_replace_typed_text", LIBRARY_DAZZLE); 1055 Linker.link(dzl_suggestion_set_icon_name, "dzl_suggestion_set_icon_name", LIBRARY_DAZZLE); 1056 Linker.link(dzl_suggestion_set_id, "dzl_suggestion_set_id", LIBRARY_DAZZLE); 1057 Linker.link(dzl_suggestion_set_subtitle, "dzl_suggestion_set_subtitle", LIBRARY_DAZZLE); 1058 Linker.link(dzl_suggestion_set_title, "dzl_suggestion_set_title", LIBRARY_DAZZLE); 1059 Linker.link(dzl_suggestion_suggest_suffix, "dzl_suggestion_suggest_suffix", LIBRARY_DAZZLE); 1060 1061 // dazzle.SuggestionButton 1062 1063 Linker.link(dzl_suggestion_button_get_type, "dzl_suggestion_button_get_type", LIBRARY_DAZZLE); 1064 Linker.link(dzl_suggestion_button_new, "dzl_suggestion_button_new", LIBRARY_DAZZLE); 1065 Linker.link(dzl_suggestion_button_get_button, "dzl_suggestion_button_get_button", LIBRARY_DAZZLE); 1066 Linker.link(dzl_suggestion_button_get_entry, "dzl_suggestion_button_get_entry", LIBRARY_DAZZLE); 1067 1068 // dazzle.SuggestionEntry 1069 1070 Linker.link(dzl_suggestion_entry_get_type, "dzl_suggestion_entry_get_type", LIBRARY_DAZZLE); 1071 Linker.link(dzl_suggestion_entry_new, "dzl_suggestion_entry_new", LIBRARY_DAZZLE); 1072 Linker.link(dzl_suggestion_entry_default_position_func, "dzl_suggestion_entry_default_position_func", LIBRARY_DAZZLE); 1073 Linker.link(dzl_suggestion_entry_get_activate_on_single_click, "dzl_suggestion_entry_get_activate_on_single_click", LIBRARY_DAZZLE); 1074 Linker.link(dzl_suggestion_entry_get_compact, "dzl_suggestion_entry_get_compact", LIBRARY_DAZZLE); 1075 Linker.link(dzl_suggestion_entry_get_model, "dzl_suggestion_entry_get_model", LIBRARY_DAZZLE); 1076 Linker.link(dzl_suggestion_entry_get_popover, "dzl_suggestion_entry_get_popover", LIBRARY_DAZZLE); 1077 Linker.link(dzl_suggestion_entry_get_suggestion, "dzl_suggestion_entry_get_suggestion", LIBRARY_DAZZLE); 1078 Linker.link(dzl_suggestion_entry_get_typed_text, "dzl_suggestion_entry_get_typed_text", LIBRARY_DAZZLE); 1079 Linker.link(dzl_suggestion_entry_hide_suggestions, "dzl_suggestion_entry_hide_suggestions", LIBRARY_DAZZLE); 1080 Linker.link(dzl_suggestion_entry_set_activate_on_single_click, "dzl_suggestion_entry_set_activate_on_single_click", LIBRARY_DAZZLE); 1081 Linker.link(dzl_suggestion_entry_set_compact, "dzl_suggestion_entry_set_compact", LIBRARY_DAZZLE); 1082 Linker.link(dzl_suggestion_entry_set_model, "dzl_suggestion_entry_set_model", LIBRARY_DAZZLE); 1083 Linker.link(dzl_suggestion_entry_set_position_func, "dzl_suggestion_entry_set_position_func", LIBRARY_DAZZLE); 1084 Linker.link(dzl_suggestion_entry_set_suggestion, "dzl_suggestion_entry_set_suggestion", LIBRARY_DAZZLE); 1085 Linker.link(dzl_suggestion_entry_window_position_func, "dzl_suggestion_entry_window_position_func", LIBRARY_DAZZLE); 1086 1087 // dazzle.SuggestionEntryBuffer 1088 1089 Linker.link(dzl_suggestion_entry_buffer_get_type, "dzl_suggestion_entry_buffer_get_type", LIBRARY_DAZZLE); 1090 Linker.link(dzl_suggestion_entry_buffer_new, "dzl_suggestion_entry_buffer_new", LIBRARY_DAZZLE); 1091 Linker.link(dzl_suggestion_entry_buffer_clear, "dzl_suggestion_entry_buffer_clear", LIBRARY_DAZZLE); 1092 Linker.link(dzl_suggestion_entry_buffer_commit, "dzl_suggestion_entry_buffer_commit", LIBRARY_DAZZLE); 1093 Linker.link(dzl_suggestion_entry_buffer_get_suggestion, "dzl_suggestion_entry_buffer_get_suggestion", LIBRARY_DAZZLE); 1094 Linker.link(dzl_suggestion_entry_buffer_get_typed_length, "dzl_suggestion_entry_buffer_get_typed_length", LIBRARY_DAZZLE); 1095 Linker.link(dzl_suggestion_entry_buffer_get_typed_text, "dzl_suggestion_entry_buffer_get_typed_text", LIBRARY_DAZZLE); 1096 Linker.link(dzl_suggestion_entry_buffer_set_suggestion, "dzl_suggestion_entry_buffer_set_suggestion", LIBRARY_DAZZLE); 1097 1098 // dazzle.SuggestionPopover 1099 1100 Linker.link(dzl_suggestion_popover_get_type, "dzl_suggestion_popover_get_type", LIBRARY_DAZZLE); 1101 Linker.link(dzl_suggestion_popover_new, "dzl_suggestion_popover_new", LIBRARY_DAZZLE); 1102 Linker.link(dzl_suggestion_popover_activate_selected, "dzl_suggestion_popover_activate_selected", LIBRARY_DAZZLE); 1103 Linker.link(dzl_suggestion_popover_get_model, "dzl_suggestion_popover_get_model", LIBRARY_DAZZLE); 1104 Linker.link(dzl_suggestion_popover_get_relative_to, "dzl_suggestion_popover_get_relative_to", LIBRARY_DAZZLE); 1105 Linker.link(dzl_suggestion_popover_get_selected, "dzl_suggestion_popover_get_selected", LIBRARY_DAZZLE); 1106 Linker.link(dzl_suggestion_popover_move_by, "dzl_suggestion_popover_move_by", LIBRARY_DAZZLE); 1107 Linker.link(dzl_suggestion_popover_popdown, "dzl_suggestion_popover_popdown", LIBRARY_DAZZLE); 1108 Linker.link(dzl_suggestion_popover_popup, "dzl_suggestion_popover_popup", LIBRARY_DAZZLE); 1109 Linker.link(dzl_suggestion_popover_set_model, "dzl_suggestion_popover_set_model", LIBRARY_DAZZLE); 1110 Linker.link(dzl_suggestion_popover_set_relative_to, "dzl_suggestion_popover_set_relative_to", LIBRARY_DAZZLE); 1111 Linker.link(dzl_suggestion_popover_set_selected, "dzl_suggestion_popover_set_selected", LIBRARY_DAZZLE); 1112 1113 // dazzle.SuggestionRow 1114 1115 Linker.link(dzl_suggestion_row_get_type, "dzl_suggestion_row_get_type", LIBRARY_DAZZLE); 1116 Linker.link(dzl_suggestion_row_new, "dzl_suggestion_row_new", LIBRARY_DAZZLE); 1117 Linker.link(dzl_suggestion_row_get_suggestion, "dzl_suggestion_row_get_suggestion", LIBRARY_DAZZLE); 1118 Linker.link(dzl_suggestion_row_set_suggestion, "dzl_suggestion_row_set_suggestion", LIBRARY_DAZZLE); 1119 1120 // dazzle.Tab 1121 1122 Linker.link(dzl_tab_get_type, "dzl_tab_get_type", LIBRARY_DAZZLE); 1123 Linker.link(dzl_tab_get_active, "dzl_tab_get_active", LIBRARY_DAZZLE); 1124 Linker.link(dzl_tab_get_can_close, "dzl_tab_get_can_close", LIBRARY_DAZZLE); 1125 Linker.link(dzl_tab_get_edge, "dzl_tab_get_edge", LIBRARY_DAZZLE); 1126 Linker.link(dzl_tab_get_icon_name, "dzl_tab_get_icon_name", LIBRARY_DAZZLE); 1127 Linker.link(dzl_tab_get_style, "dzl_tab_get_style", LIBRARY_DAZZLE); 1128 Linker.link(dzl_tab_get_title, "dzl_tab_get_title", LIBRARY_DAZZLE); 1129 Linker.link(dzl_tab_get_widget, "dzl_tab_get_widget", LIBRARY_DAZZLE); 1130 Linker.link(dzl_tab_set_active, "dzl_tab_set_active", LIBRARY_DAZZLE); 1131 Linker.link(dzl_tab_set_can_close, "dzl_tab_set_can_close", LIBRARY_DAZZLE); 1132 Linker.link(dzl_tab_set_edge, "dzl_tab_set_edge", LIBRARY_DAZZLE); 1133 Linker.link(dzl_tab_set_gicon, "dzl_tab_set_gicon", LIBRARY_DAZZLE); 1134 Linker.link(dzl_tab_set_icon_name, "dzl_tab_set_icon_name", LIBRARY_DAZZLE); 1135 Linker.link(dzl_tab_set_style, "dzl_tab_set_style", LIBRARY_DAZZLE); 1136 Linker.link(dzl_tab_set_title, "dzl_tab_set_title", LIBRARY_DAZZLE); 1137 Linker.link(dzl_tab_set_widget, "dzl_tab_set_widget", LIBRARY_DAZZLE); 1138 1139 // dazzle.TabStrip 1140 1141 Linker.link(dzl_tab_strip_get_type, "dzl_tab_strip_get_type", LIBRARY_DAZZLE); 1142 Linker.link(dzl_tab_strip_new, "dzl_tab_strip_new", LIBRARY_DAZZLE); 1143 Linker.link(dzl_tab_strip_add_control, "dzl_tab_strip_add_control", LIBRARY_DAZZLE); 1144 Linker.link(dzl_tab_strip_get_edge, "dzl_tab_strip_get_edge", LIBRARY_DAZZLE); 1145 Linker.link(dzl_tab_strip_get_stack, "dzl_tab_strip_get_stack", LIBRARY_DAZZLE); 1146 Linker.link(dzl_tab_strip_get_style, "dzl_tab_strip_get_style", LIBRARY_DAZZLE); 1147 Linker.link(dzl_tab_strip_set_edge, "dzl_tab_strip_set_edge", LIBRARY_DAZZLE); 1148 Linker.link(dzl_tab_strip_set_stack, "dzl_tab_strip_set_stack", LIBRARY_DAZZLE); 1149 Linker.link(dzl_tab_strip_set_style, "dzl_tab_strip_set_style", LIBRARY_DAZZLE); 1150 1151 // dazzle.TaskCache 1152 1153 Linker.link(dzl_task_cache_get_type, "dzl_task_cache_get_type", LIBRARY_DAZZLE); 1154 Linker.link(dzl_task_cache_new, "dzl_task_cache_new", LIBRARY_DAZZLE); 1155 Linker.link(dzl_task_cache_evict, "dzl_task_cache_evict", LIBRARY_DAZZLE); 1156 Linker.link(dzl_task_cache_evict_all, "dzl_task_cache_evict_all", LIBRARY_DAZZLE); 1157 Linker.link(dzl_task_cache_get_async, "dzl_task_cache_get_async", LIBRARY_DAZZLE); 1158 Linker.link(dzl_task_cache_get_finish, "dzl_task_cache_get_finish", LIBRARY_DAZZLE); 1159 Linker.link(dzl_task_cache_get_values, "dzl_task_cache_get_values", LIBRARY_DAZZLE); 1160 Linker.link(dzl_task_cache_peek, "dzl_task_cache_peek", LIBRARY_DAZZLE); 1161 Linker.link(dzl_task_cache_set_name, "dzl_task_cache_set_name", LIBRARY_DAZZLE); 1162 1163 // dazzle.ThemeManager 1164 1165 Linker.link(dzl_theme_manager_get_type, "dzl_theme_manager_get_type", LIBRARY_DAZZLE); 1166 Linker.link(dzl_theme_manager_new, "dzl_theme_manager_new", LIBRARY_DAZZLE); 1167 Linker.link(dzl_theme_manager_add_resources, "dzl_theme_manager_add_resources", LIBRARY_DAZZLE); 1168 Linker.link(dzl_theme_manager_remove_resources, "dzl_theme_manager_remove_resources", LIBRARY_DAZZLE); 1169 1170 // dazzle.ThreeGrid 1171 1172 Linker.link(dzl_three_grid_get_type, "dzl_three_grid_get_type", LIBRARY_DAZZLE); 1173 Linker.link(dzl_three_grid_new, "dzl_three_grid_new", LIBRARY_DAZZLE); 1174 1175 // dazzle.Tree 1176 1177 Linker.link(dzl_tree_get_type, "dzl_tree_get_type", LIBRARY_DAZZLE); 1178 Linker.link(dzl_tree_add_builder, "dzl_tree_add_builder", LIBRARY_DAZZLE); 1179 Linker.link(dzl_tree_expand_to_node, "dzl_tree_expand_to_node", LIBRARY_DAZZLE); 1180 Linker.link(dzl_tree_find_child_node, "dzl_tree_find_child_node", LIBRARY_DAZZLE); 1181 Linker.link(dzl_tree_find_custom, "dzl_tree_find_custom", LIBRARY_DAZZLE); 1182 Linker.link(dzl_tree_find_item, "dzl_tree_find_item", LIBRARY_DAZZLE); 1183 Linker.link(dzl_tree_get_context_menu, "dzl_tree_get_context_menu", LIBRARY_DAZZLE); 1184 Linker.link(dzl_tree_get_root, "dzl_tree_get_root", LIBRARY_DAZZLE); 1185 Linker.link(dzl_tree_get_selected, "dzl_tree_get_selected", LIBRARY_DAZZLE); 1186 Linker.link(dzl_tree_get_show_icons, "dzl_tree_get_show_icons", LIBRARY_DAZZLE); 1187 Linker.link(dzl_tree_rebuild, "dzl_tree_rebuild", LIBRARY_DAZZLE); 1188 Linker.link(dzl_tree_remove_builder, "dzl_tree_remove_builder", LIBRARY_DAZZLE); 1189 Linker.link(dzl_tree_scroll_to_node, "dzl_tree_scroll_to_node", LIBRARY_DAZZLE); 1190 Linker.link(dzl_tree_set_context_menu, "dzl_tree_set_context_menu", LIBRARY_DAZZLE); 1191 Linker.link(dzl_tree_set_filter, "dzl_tree_set_filter", LIBRARY_DAZZLE); 1192 Linker.link(dzl_tree_set_root, "dzl_tree_set_root", LIBRARY_DAZZLE); 1193 Linker.link(dzl_tree_set_show_icons, "dzl_tree_set_show_icons", LIBRARY_DAZZLE); 1194 Linker.link(dzl_tree_unselect_all, "dzl_tree_unselect_all", LIBRARY_DAZZLE); 1195 1196 // dazzle.TreeBuilder 1197 1198 Linker.link(dzl_tree_builder_get_type, "dzl_tree_builder_get_type", LIBRARY_DAZZLE); 1199 Linker.link(dzl_tree_builder_new, "dzl_tree_builder_new", LIBRARY_DAZZLE); 1200 Linker.link(dzl_tree_builder_get_tree, "dzl_tree_builder_get_tree", LIBRARY_DAZZLE); 1201 1202 // dazzle.TreeNode 1203 1204 Linker.link(dzl_tree_node_get_type, "dzl_tree_node_get_type", LIBRARY_DAZZLE); 1205 Linker.link(dzl_tree_node_new, "dzl_tree_node_new", LIBRARY_DAZZLE); 1206 Linker.link(dzl_tree_node_add_emblem, "dzl_tree_node_add_emblem", LIBRARY_DAZZLE); 1207 Linker.link(dzl_tree_node_append, "dzl_tree_node_append", LIBRARY_DAZZLE); 1208 Linker.link(dzl_tree_node_clear_emblems, "dzl_tree_node_clear_emblems", LIBRARY_DAZZLE); 1209 Linker.link(dzl_tree_node_collapse, "dzl_tree_node_collapse", LIBRARY_DAZZLE); 1210 Linker.link(dzl_tree_node_expand, "dzl_tree_node_expand", LIBRARY_DAZZLE); 1211 Linker.link(dzl_tree_node_get_area, "dzl_tree_node_get_area", LIBRARY_DAZZLE); 1212 Linker.link(dzl_tree_node_get_children_possible, "dzl_tree_node_get_children_possible", LIBRARY_DAZZLE); 1213 Linker.link(dzl_tree_node_get_expanded, "dzl_tree_node_get_expanded", LIBRARY_DAZZLE); 1214 Linker.link(dzl_tree_node_get_foreground_rgba, "dzl_tree_node_get_foreground_rgba", LIBRARY_DAZZLE); 1215 Linker.link(dzl_tree_node_get_gicon, "dzl_tree_node_get_gicon", LIBRARY_DAZZLE); 1216 Linker.link(dzl_tree_node_get_icon_name, "dzl_tree_node_get_icon_name", LIBRARY_DAZZLE); 1217 Linker.link(dzl_tree_node_get_item, "dzl_tree_node_get_item", LIBRARY_DAZZLE); 1218 Linker.link(dzl_tree_node_get_iter, "dzl_tree_node_get_iter", LIBRARY_DAZZLE); 1219 Linker.link(dzl_tree_node_get_parent, "dzl_tree_node_get_parent", LIBRARY_DAZZLE); 1220 Linker.link(dzl_tree_node_get_path, "dzl_tree_node_get_path", LIBRARY_DAZZLE); 1221 Linker.link(dzl_tree_node_get_reset_on_collapse, "dzl_tree_node_get_reset_on_collapse", LIBRARY_DAZZLE); 1222 Linker.link(dzl_tree_node_get_text, "dzl_tree_node_get_text", LIBRARY_DAZZLE); 1223 Linker.link(dzl_tree_node_get_tree, "dzl_tree_node_get_tree", LIBRARY_DAZZLE); 1224 Linker.link(dzl_tree_node_get_use_dim_label, "dzl_tree_node_get_use_dim_label", LIBRARY_DAZZLE); 1225 Linker.link(dzl_tree_node_get_use_markup, "dzl_tree_node_get_use_markup", LIBRARY_DAZZLE); 1226 Linker.link(dzl_tree_node_has_emblem, "dzl_tree_node_has_emblem", LIBRARY_DAZZLE); 1227 Linker.link(dzl_tree_node_insert, "dzl_tree_node_insert", LIBRARY_DAZZLE); 1228 Linker.link(dzl_tree_node_insert_sorted, "dzl_tree_node_insert_sorted", LIBRARY_DAZZLE); 1229 Linker.link(dzl_tree_node_invalidate, "dzl_tree_node_invalidate", LIBRARY_DAZZLE); 1230 Linker.link(dzl_tree_node_is_root, "dzl_tree_node_is_root", LIBRARY_DAZZLE); 1231 Linker.link(dzl_tree_node_n_children, "dzl_tree_node_n_children", LIBRARY_DAZZLE); 1232 Linker.link(dzl_tree_node_nth_child, "dzl_tree_node_nth_child", LIBRARY_DAZZLE); 1233 Linker.link(dzl_tree_node_prepend, "dzl_tree_node_prepend", LIBRARY_DAZZLE); 1234 Linker.link(dzl_tree_node_rebuild, "dzl_tree_node_rebuild", LIBRARY_DAZZLE); 1235 Linker.link(dzl_tree_node_remove, "dzl_tree_node_remove", LIBRARY_DAZZLE); 1236 Linker.link(dzl_tree_node_remove_emblem, "dzl_tree_node_remove_emblem", LIBRARY_DAZZLE); 1237 Linker.link(dzl_tree_node_select, "dzl_tree_node_select", LIBRARY_DAZZLE); 1238 Linker.link(dzl_tree_node_set_children_possible, "dzl_tree_node_set_children_possible", LIBRARY_DAZZLE); 1239 Linker.link(dzl_tree_node_set_emblems, "dzl_tree_node_set_emblems", LIBRARY_DAZZLE); 1240 Linker.link(dzl_tree_node_set_foreground_rgba, "dzl_tree_node_set_foreground_rgba", LIBRARY_DAZZLE); 1241 Linker.link(dzl_tree_node_set_gicon, "dzl_tree_node_set_gicon", LIBRARY_DAZZLE); 1242 Linker.link(dzl_tree_node_set_icon_name, "dzl_tree_node_set_icon_name", LIBRARY_DAZZLE); 1243 Linker.link(dzl_tree_node_set_item, "dzl_tree_node_set_item", LIBRARY_DAZZLE); 1244 Linker.link(dzl_tree_node_set_reset_on_collapse, "dzl_tree_node_set_reset_on_collapse", LIBRARY_DAZZLE); 1245 Linker.link(dzl_tree_node_set_text, "dzl_tree_node_set_text", LIBRARY_DAZZLE); 1246 Linker.link(dzl_tree_node_set_use_dim_label, "dzl_tree_node_set_use_dim_label", LIBRARY_DAZZLE); 1247 Linker.link(dzl_tree_node_set_use_markup, "dzl_tree_node_set_use_markup", LIBRARY_DAZZLE); 1248 Linker.link(dzl_tree_node_show_popover, "dzl_tree_node_show_popover", LIBRARY_DAZZLE); 1249 1250 // dazzle.Trie 1251 1252 Linker.link(dzl_trie_get_type, "dzl_trie_get_type", LIBRARY_DAZZLE); 1253 Linker.link(dzl_trie_new, "dzl_trie_new", LIBRARY_DAZZLE); 1254 Linker.link(dzl_trie_destroy, "dzl_trie_destroy", LIBRARY_DAZZLE); 1255 Linker.link(dzl_trie_insert, "dzl_trie_insert", LIBRARY_DAZZLE); 1256 Linker.link(dzl_trie_lookup, "dzl_trie_lookup", LIBRARY_DAZZLE); 1257 Linker.link(dzl_trie_ref, "dzl_trie_ref", LIBRARY_DAZZLE); 1258 Linker.link(dzl_trie_remove, "dzl_trie_remove", LIBRARY_DAZZLE); 1259 Linker.link(dzl_trie_traverse, "dzl_trie_traverse", LIBRARY_DAZZLE); 1260 Linker.link(dzl_trie_unref, "dzl_trie_unref", LIBRARY_DAZZLE); 1261 1262 // dazzle.WidgetActionGroup 1263 1264 Linker.link(dzl_widget_action_group_get_type, "dzl_widget_action_group_get_type", LIBRARY_DAZZLE); 1265 Linker.link(dzl_widget_action_group_attach, "dzl_widget_action_group_attach", LIBRARY_DAZZLE); 1266 Linker.link(dzl_widget_action_group_new, "dzl_widget_action_group_new", LIBRARY_DAZZLE); 1267 Linker.link(dzl_widget_action_group_set_action_enabled, "dzl_widget_action_group_set_action_enabled", LIBRARY_DAZZLE); 1268 } 1269 1270 __gshared extern(C) 1271 { 1272 1273 // dazzle.Animation 1274 1275 GType function() c_dzl_animation_get_type; 1276 uint function(GdkMonitor* monitor, double fromValue, double toValue) c_dzl_animation_calculate_duration; 1277 void function(DzlAnimation* animation, GParamSpec* pspec, GValue* value) c_dzl_animation_add_property; 1278 void function(DzlAnimation* animation) c_dzl_animation_start; 1279 void function(DzlAnimation* animation) c_dzl_animation_stop; 1280 1281 // dazzle.Application 1282 1283 GType function() c_dzl_application_get_type; 1284 DzlApplication* function(const(char)* applicationId, GApplicationFlags flags) c_dzl_application_new; 1285 void function(DzlApplication* self, const(char)* resourcePath) c_dzl_application_add_resources; 1286 GMenu* function(DzlApplication* self, const(char)* menuId) c_dzl_application_get_menu_by_id; 1287 DzlMenuManager* function(DzlApplication* self) c_dzl_application_get_menu_manager; 1288 DzlShortcutManager* function(DzlApplication* self) c_dzl_application_get_shortcut_manager; 1289 DzlThemeManager* function(DzlApplication* self) c_dzl_application_get_theme_manager; 1290 void function(DzlApplication* self, const(char)* resourcePath) c_dzl_application_remove_resources; 1291 1292 // dazzle.ApplicationWindow 1293 1294 GType function() c_dzl_application_window_get_type; 1295 int function(DzlApplicationWindow* self) c_dzl_application_window_get_fullscreen; 1296 GtkWidget* function(DzlApplicationWindow* self) c_dzl_application_window_get_titlebar; 1297 void function(DzlApplicationWindow* self, int fullscreen) c_dzl_application_window_set_fullscreen; 1298 void function(DzlApplicationWindow* self, GtkWidget* titlebar) c_dzl_application_window_set_titlebar; 1299 1300 // dazzle.Bin 1301 1302 GType function() c_dzl_bin_get_type; 1303 GtkWidget* function() c_dzl_bin_new; 1304 1305 // dazzle.BindingGroup 1306 1307 GType function() c_dzl_binding_group_get_type; 1308 DzlBindingGroup* function() c_dzl_binding_group_new; 1309 void function(DzlBindingGroup* self, const(char)* sourceProperty, void* target, const(char)* targetProperty, GBindingFlags flags) c_dzl_binding_group_bind; 1310 void function(DzlBindingGroup* self, const(char)* sourceProperty, void* target, const(char)* targetProperty, GBindingFlags flags, GBindingTransformFunc transformTo, GBindingTransformFunc transformFrom, void* userData, GDestroyNotify userDataDestroy) c_dzl_binding_group_bind_full; 1311 void function(DzlBindingGroup* self, const(char)* sourceProperty, void* target, const(char)* targetProperty, GBindingFlags flags, GClosure* transformTo, GClosure* transformFrom) c_dzl_binding_group_bind_with_closures; 1312 GObject* function(DzlBindingGroup* self) c_dzl_binding_group_get_source; 1313 void function(DzlBindingGroup* self, void* source) c_dzl_binding_group_set_source; 1314 1315 // dazzle.BoldingLabel 1316 1317 GType function() c_dzl_bolding_label_get_type; 1318 DzlBoldingLabel* function(const(char)* str, int bold) c_dzl_bolding_label_new; 1319 DzlBoldingLabel* function(const(char)* str, int bold) c_dzl_bolding_label_new_with_mnemonic; 1320 void function(DzlBoldingLabel* self, int bold) c_dzl_bolding_label_set_bold; 1321 void function(DzlBoldingLabel* self, PangoWeight weight) c_dzl_bolding_label_set_weight; 1322 1323 // dazzle.Box 1324 1325 GType function() c_dzl_box_get_type; 1326 GtkWidget* function() c_dzl_box_new; 1327 int function(DzlBox* self) c_dzl_box_get_max_width_request; 1328 GtkWidget* function(DzlBox* self, uint nth) c_dzl_box_get_nth_child; 1329 void function(DzlBox* self, int maxWidthRequest) c_dzl_box_set_max_width_request; 1330 1331 // dazzle.BoxTheatric 1332 1333 GType function() c_dzl_box_theatric_get_type; 1334 1335 // dazzle.CenteringBin 1336 1337 GType function() c_dzl_centering_bin_get_type; 1338 GtkWidget* function() c_dzl_centering_bin_new; 1339 1340 // dazzle.ChildPropertyAction 1341 1342 GType function() c_dzl_child_property_action_get_type; 1343 GAction* function(const(char)* name, GtkContainer* container, GtkWidget* child, const(char)* childPropertyName) c_dzl_child_property_action_new; 1344 1345 // dazzle.ColumnLayout 1346 1347 GType function() c_dzl_column_layout_get_type; 1348 GtkWidget* function() c_dzl_column_layout_new; 1349 int function(DzlColumnLayout* self) c_dzl_column_layout_get_column_spacing; 1350 int function(DzlColumnLayout* self) c_dzl_column_layout_get_column_width; 1351 uint function(DzlColumnLayout* self) c_dzl_column_layout_get_max_columns; 1352 int function(DzlColumnLayout* self) c_dzl_column_layout_get_row_spacing; 1353 void function(DzlColumnLayout* self, int columnSpacing) c_dzl_column_layout_set_column_spacing; 1354 void function(DzlColumnLayout* self, int columnWidth) c_dzl_column_layout_set_column_width; 1355 void function(DzlColumnLayout* self, uint maxColumns) c_dzl_column_layout_set_max_columns; 1356 void function(DzlColumnLayout* self, int rowSpacing) c_dzl_column_layout_set_row_spacing; 1357 1358 // dazzle.Counter 1359 1360 long function(DzlCounter* counter) c_dzl_counter_get; 1361 void function(DzlCounter* counter) c_dzl_counter_reset; 1362 1363 // dazzle.CounterArena 1364 1365 GType function() c_dzl_counter_arena_get_type; 1366 DzlCounterArena* function(GPid pid) c_dzl_counter_arena_new_for_pid; 1367 void function(DzlCounterArena* arena, DzlCounterForeachFunc func, void* userData) c_dzl_counter_arena_foreach; 1368 DzlCounterArena* function(DzlCounterArena* arena) c_dzl_counter_arena_ref; 1369 void function(DzlCounterArena* arena, DzlCounter* counter) c_dzl_counter_arena_register; 1370 void function(DzlCounterArena* arena) c_dzl_counter_arena_unref; 1371 DzlCounterArena* function() c_dzl_counter_arena_get_default; 1372 1373 // dazzle.CountersWindow 1374 1375 GType function() c_dzl_counters_window_get_type; 1376 GtkWidget* function() c_dzl_counters_window_new; 1377 DzlCounterArena* function(DzlCountersWindow* self) c_dzl_counters_window_get_arena; 1378 void function(DzlCountersWindow* self, DzlCounterArena* arena) c_dzl_counters_window_set_arena; 1379 1380 // dazzle.CpuGraph 1381 1382 GType function() c_dzl_cpu_graph_get_type; 1383 GtkWidget* function(long timespan, uint maxSamples) c_dzl_cpu_graph_new_full; 1384 1385 // dazzle.CpuModel 1386 1387 GType function() c_dzl_cpu_model_get_type; 1388 DzlGraphModel* function() c_dzl_cpu_model_new; 1389 1390 // dazzle.CssProvider 1391 1392 GType function() c_dzl_css_provider_get_type; 1393 GtkCssProvider* function(const(char)* basePath) c_dzl_css_provider_new; 1394 1395 // dazzle.DirectoryModel 1396 1397 GType function() c_dzl_directory_model_get_type; 1398 GListModel* function(GFile* directory) c_dzl_directory_model_new; 1399 GFile* function(DzlDirectoryModel* self) c_dzl_directory_model_get_directory; 1400 void function(DzlDirectoryModel* self, GFile* directory) c_dzl_directory_model_set_directory; 1401 void function(DzlDirectoryModel* self, DzlDirectoryModelVisibleFunc visibleFunc, void* userData, GDestroyNotify userDataFreeFunc) c_dzl_directory_model_set_visible_func; 1402 1403 // dazzle.DirectoryReaper 1404 1405 GType function() c_dzl_directory_reaper_get_type; 1406 DzlDirectoryReaper* function() c_dzl_directory_reaper_new; 1407 void function(DzlDirectoryReaper* self, GFile* directory, GTimeSpan minAge) c_dzl_directory_reaper_add_directory; 1408 void function(DzlDirectoryReaper* self, GFile* file, GTimeSpan minAge) c_dzl_directory_reaper_add_file; 1409 void function(DzlDirectoryReaper* self, GFile* directory, const(char)* glob, GTimeSpan minAge) c_dzl_directory_reaper_add_glob; 1410 int function(DzlDirectoryReaper* self, GCancellable* cancellable, GError** err) c_dzl_directory_reaper_execute; 1411 void function(DzlDirectoryReaper* self, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_dzl_directory_reaper_execute_async; 1412 int function(DzlDirectoryReaper* self, GAsyncResult* result, GError** err) c_dzl_directory_reaper_execute_finish; 1413 1414 // dazzle.Dock 1415 1416 GType function() c_dzl_dock_get_type; 1417 1418 // dazzle.DockBin 1419 1420 GType function() c_dzl_dock_bin_get_type; 1421 GtkWidget* function() c_dzl_dock_bin_new; 1422 GtkWidget* function(DzlDockBin* self) c_dzl_dock_bin_get_bottom_edge; 1423 GtkWidget* function(DzlDockBin* self) c_dzl_dock_bin_get_center_widget; 1424 GtkWidget* function(DzlDockBin* self) c_dzl_dock_bin_get_left_edge; 1425 GtkWidget* function(DzlDockBin* self) c_dzl_dock_bin_get_right_edge; 1426 GtkWidget* function(DzlDockBin* self) c_dzl_dock_bin_get_top_edge; 1427 1428 // dazzle.DockBinEdge 1429 1430 GType function() c_dzl_dock_bin_edge_get_type; 1431 GtkPositionType function(DzlDockBinEdge* self) c_dzl_dock_bin_edge_get_edge; 1432 1433 // dazzle.DockItem 1434 1435 GType function() c_dzl_dock_item_get_type; 1436 int function(DzlDockItem* self, DzlDockItem* child) c_dzl_dock_item_adopt; 1437 int function(DzlDockItem* self) c_dzl_dock_item_close; 1438 void function(DzlDockItem* self) c_dzl_dock_item_emit_presented; 1439 int function(DzlDockItem* self) c_dzl_dock_item_get_can_close; 1440 int function(DzlDockItem* self) c_dzl_dock_item_get_can_minimize; 1441 int function(DzlDockItem* self, DzlDockItem* child) c_dzl_dock_item_get_child_visible; 1442 char* function(DzlDockItem* self) c_dzl_dock_item_get_icon_name; 1443 DzlDockManager* function(DzlDockItem* self) c_dzl_dock_item_get_manager; 1444 DzlDockItem* function(DzlDockItem* self) c_dzl_dock_item_get_parent; 1445 char* function(DzlDockItem* self) c_dzl_dock_item_get_title; 1446 int function(DzlDockItem* self) c_dzl_dock_item_has_widgets; 1447 int function(DzlDockItem* self, DzlDockItem* child, GtkPositionType* position) c_dzl_dock_item_minimize; 1448 void function(DzlDockItem* self) c_dzl_dock_item_needs_attention; 1449 void function(DzlDockItem* self) c_dzl_dock_item_present; 1450 void function(DzlDockItem* self, DzlDockItem* child) c_dzl_dock_item_present_child; 1451 GIcon* function(DzlDockItem* self) c_dzl_dock_item_ref_gicon; 1452 void function(DzlDockItem* self, DzlDockItem* child) c_dzl_dock_item_release; 1453 void function(DzlDockItem* self, DzlDockItem* child, int childVisible) c_dzl_dock_item_set_child_visible; 1454 void function(DzlDockItem* self, DzlDockManager* manager) c_dzl_dock_item_set_manager; 1455 void function(DzlDockItem* self) c_dzl_dock_item_update_visibility; 1456 1457 // dazzle.DockManager 1458 1459 GType function() c_dzl_dock_manager_get_type; 1460 DzlDockManager* function() c_dzl_dock_manager_new; 1461 void function(DzlDockManager* self) c_dzl_dock_manager_pause_grabs; 1462 void function(DzlDockManager* self, DzlDock* dock) c_dzl_dock_manager_register_dock; 1463 void function(DzlDockManager* self) c_dzl_dock_manager_release_transient_grab; 1464 void function(DzlDockManager* self) c_dzl_dock_manager_unpause_grabs; 1465 void function(DzlDockManager* self, DzlDock* dock) c_dzl_dock_manager_unregister_dock; 1466 1467 // dazzle.DockOverlay 1468 1469 GType function() c_dzl_dock_overlay_get_type; 1470 GtkWidget* function() c_dzl_dock_overlay_new; 1471 DzlDockOverlayEdge* function(DzlDockOverlay* self, GtkPositionType position) c_dzl_dock_overlay_get_edge; 1472 GtkAdjustment* function(DzlDockOverlay* self, GtkPositionType position) c_dzl_dock_overlay_get_edge_adjustment; 1473 1474 // dazzle.DockOverlayEdge 1475 1476 GType function() c_dzl_dock_overlay_edge_get_type; 1477 GtkPositionType function(DzlDockOverlayEdge* self) c_dzl_dock_overlay_edge_get_edge; 1478 int function(DzlDockOverlayEdge* self) c_dzl_dock_overlay_edge_get_position; 1479 void function(DzlDockOverlayEdge* self, GtkPositionType edge) c_dzl_dock_overlay_edge_set_edge; 1480 void function(DzlDockOverlayEdge* self, int position) c_dzl_dock_overlay_edge_set_position; 1481 1482 // dazzle.DockPaned 1483 1484 GType function() c_dzl_dock_paned_get_type; 1485 GtkWidget* function() c_dzl_dock_paned_new; 1486 1487 // dazzle.DockRevealer 1488 1489 GType function() c_dzl_dock_revealer_get_type; 1490 GtkWidget* function() c_dzl_dock_revealer_new; 1491 void function(DzlDockRevealer* self, int position, uint transitionDuration) c_dzl_dock_revealer_animate_to_position; 1492 int function(DzlDockRevealer* self) c_dzl_dock_revealer_get_child_revealed; 1493 int function(DzlDockRevealer* self) c_dzl_dock_revealer_get_position; 1494 int function(DzlDockRevealer* self) c_dzl_dock_revealer_get_position_set; 1495 int function(DzlDockRevealer* self) c_dzl_dock_revealer_get_reveal_child; 1496 uint function(DzlDockRevealer* self) c_dzl_dock_revealer_get_transition_duration; 1497 DzlDockRevealerTransitionType function(DzlDockRevealer* self) c_dzl_dock_revealer_get_transition_type; 1498 int function(DzlDockRevealer* self) c_dzl_dock_revealer_is_animating; 1499 void function(DzlDockRevealer* self, int position) c_dzl_dock_revealer_set_position; 1500 void function(DzlDockRevealer* self, int positionSet) c_dzl_dock_revealer_set_position_set; 1501 void function(DzlDockRevealer* self, int revealChild) c_dzl_dock_revealer_set_reveal_child; 1502 void function(DzlDockRevealer* self, uint transitionDuration) c_dzl_dock_revealer_set_transition_duration; 1503 void function(DzlDockRevealer* self, DzlDockRevealerTransitionType transitionType) c_dzl_dock_revealer_set_transition_type; 1504 1505 // dazzle.DockStack 1506 1507 GType function() c_dzl_dock_stack_get_type; 1508 GtkWidget* function() c_dzl_dock_stack_new; 1509 GtkPositionType function(DzlDockStack* self) c_dzl_dock_stack_get_edge; 1510 int function(DzlDockStack* self) c_dzl_dock_stack_get_show_pinned_button; 1511 DzlTabStyle function(DzlDockStack* self) c_dzl_dock_stack_get_style; 1512 void function(DzlDockStack* self, GtkPositionType edge) c_dzl_dock_stack_set_edge; 1513 void function(DzlDockStack* self, int showPinnedButton) c_dzl_dock_stack_set_show_pinned_button; 1514 void function(DzlDockStack* self, DzlTabStyle style) c_dzl_dock_stack_set_style; 1515 1516 // dazzle.DockTransientGrab 1517 1518 GType function() c_dzl_dock_transient_grab_get_type; 1519 DzlDockTransientGrab* function() c_dzl_dock_transient_grab_new; 1520 void function(DzlDockTransientGrab* self) c_dzl_dock_transient_grab_acquire; 1521 void function(DzlDockTransientGrab* self, DzlDockItem* item) c_dzl_dock_transient_grab_add_item; 1522 void function(DzlDockTransientGrab* self) c_dzl_dock_transient_grab_cancel; 1523 int function(DzlDockTransientGrab* self, DzlDockItem* item) c_dzl_dock_transient_grab_contains; 1524 uint function(DzlDockTransientGrab* self) c_dzl_dock_transient_grab_get_timeout; 1525 int function(DzlDockTransientGrab* self, GtkWidget* widget) c_dzl_dock_transient_grab_is_descendant; 1526 void function(DzlDockTransientGrab* self) c_dzl_dock_transient_grab_release; 1527 void function(DzlDockTransientGrab* self, DzlDockItem* item) c_dzl_dock_transient_grab_remove_item; 1528 void function(DzlDockTransientGrab* self, uint timeout) c_dzl_dock_transient_grab_set_timeout; 1529 void function(DzlDockTransientGrab* self, DzlDockTransientGrab* other) c_dzl_dock_transient_grab_steal_common_ancestors; 1530 1531 // dazzle.DockWidget 1532 1533 GType function() c_dzl_dock_widget_get_type; 1534 GtkWidget* function() c_dzl_dock_widget_new; 1535 void function(DzlDockWidget* self, GIcon* gicon) c_dzl_dock_widget_set_gicon; 1536 void function(DzlDockWidget* self, const(char)* iconName) c_dzl_dock_widget_set_icon_name; 1537 void function(DzlDockWidget* self, const(char)* title) c_dzl_dock_widget_set_title; 1538 1539 // dazzle.DockWindow 1540 1541 GType function() c_dzl_dock_window_get_type; 1542 GtkWidget* function() c_dzl_dock_window_new; 1543 1544 // dazzle.ElasticBin 1545 1546 GType function() c_dzl_elastic_bin_get_type; 1547 GtkWidget* function() c_dzl_elastic_bin_new; 1548 1549 // dazzle.EmptyState 1550 1551 GType function() c_dzl_empty_state_get_type; 1552 GtkWidget* function() c_dzl_empty_state_new; 1553 const(char)* function(DzlEmptyState* self) c_dzl_empty_state_get_icon_name; 1554 const(char)* function(DzlEmptyState* self) c_dzl_empty_state_get_subtitle; 1555 const(char)* function(DzlEmptyState* self) c_dzl_empty_state_get_title; 1556 void function(DzlEmptyState* self, const(char)* iconName) c_dzl_empty_state_set_icon_name; 1557 void function(DzlEmptyState* self, const(char)* resource) c_dzl_empty_state_set_resource; 1558 void function(DzlEmptyState* self, const(char)* title) c_dzl_empty_state_set_subtitle; 1559 void function(DzlEmptyState* self, const(char)* title) c_dzl_empty_state_set_title; 1560 1561 // dazzle.EntryBox 1562 1563 GType function() c_dzl_entry_box_get_type; 1564 GtkWidget* function() c_dzl_entry_box_new; 1565 1566 // dazzle.FileChooserEntry 1567 1568 GType function() c_dzl_file_chooser_entry_get_type; 1569 GtkWidget* function(const(char)* title, GtkFileChooserAction action) c_dzl_file_chooser_entry_new; 1570 GtkEntry* function(DzlFileChooserEntry* self) c_dzl_file_chooser_entry_get_entry; 1571 GFile* function(DzlFileChooserEntry* self) c_dzl_file_chooser_entry_get_file; 1572 void function(DzlFileChooserEntry* self, GFile* file) c_dzl_file_chooser_entry_set_file; 1573 1574 // dazzle.FileTransfer 1575 1576 GType function() c_dzl_file_transfer_get_type; 1577 DzlFileTransfer* function() c_dzl_file_transfer_new; 1578 void function(DzlFileTransfer* self, GFile* src, GFile* dest) c_dzl_file_transfer_add; 1579 int function(DzlFileTransfer* self, int ioPriority, GCancellable* cancellable, GError** err) c_dzl_file_transfer_execute; 1580 void function(DzlFileTransfer* self, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_dzl_file_transfer_execute_async; 1581 int function(DzlFileTransfer* self, GAsyncResult* result, GError** err) c_dzl_file_transfer_execute_finish; 1582 DzlFileTransferFlags function(DzlFileTransfer* self) c_dzl_file_transfer_get_flags; 1583 double function(DzlFileTransfer* self) c_dzl_file_transfer_get_progress; 1584 void function(DzlFileTransfer* self, DzlFileTransferFlags flags) c_dzl_file_transfer_set_flags; 1585 void function(DzlFileTransfer* self, DzlFileTransferStat* statBuf) c_dzl_file_transfer_stat; 1586 1587 // dazzle.FuzzyIndex 1588 1589 GType function() c_dzl_fuzzy_index_get_type; 1590 DzlFuzzyIndex* function() c_dzl_fuzzy_index_new; 1591 GVariant* function(DzlFuzzyIndex* self, const(char)* key) c_dzl_fuzzy_index_get_metadata; 1592 const(char)* function(DzlFuzzyIndex* self, const(char)* key) c_dzl_fuzzy_index_get_metadata_string; 1593 uint function(DzlFuzzyIndex* self, const(char)* key) c_dzl_fuzzy_index_get_metadata_uint32; 1594 ulong function(DzlFuzzyIndex* self, const(char)* key) c_dzl_fuzzy_index_get_metadata_uint64; 1595 int function(DzlFuzzyIndex* self, GFile* file, GCancellable* cancellable, GError** err) c_dzl_fuzzy_index_load_file; 1596 void function(DzlFuzzyIndex* self, GFile* file, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_dzl_fuzzy_index_load_file_async; 1597 int function(DzlFuzzyIndex* self, GAsyncResult* result, GError** err) c_dzl_fuzzy_index_load_file_finish; 1598 void function(DzlFuzzyIndex* self, const(char)* query, uint maxMatches, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_dzl_fuzzy_index_query_async; 1599 GListModel* function(DzlFuzzyIndex* self, GAsyncResult* result, GError** err) c_dzl_fuzzy_index_query_finish; 1600 1601 // dazzle.FuzzyIndexBuilder 1602 1603 GType function() c_dzl_fuzzy_index_builder_get_type; 1604 DzlFuzzyIndexBuilder* function() c_dzl_fuzzy_index_builder_new; 1605 int function(DzlFuzzyIndexBuilder* self) c_dzl_fuzzy_index_builder_get_case_sensitive; 1606 GVariant* function(DzlFuzzyIndexBuilder* self, ulong documentId) c_dzl_fuzzy_index_builder_get_document; 1607 ulong function(DzlFuzzyIndexBuilder* self, const(char)* key, GVariant* document, uint priority) c_dzl_fuzzy_index_builder_insert; 1608 void function(DzlFuzzyIndexBuilder* self, int caseSensitive) c_dzl_fuzzy_index_builder_set_case_sensitive; 1609 void function(DzlFuzzyIndexBuilder* self, const(char)* key, GVariant* value) c_dzl_fuzzy_index_builder_set_metadata; 1610 void function(DzlFuzzyIndexBuilder* self, const(char)* key, const(char)* value) c_dzl_fuzzy_index_builder_set_metadata_string; 1611 void function(DzlFuzzyIndexBuilder* self, const(char)* key, uint value) c_dzl_fuzzy_index_builder_set_metadata_uint32; 1612 void function(DzlFuzzyIndexBuilder* self, const(char)* key, ulong value) c_dzl_fuzzy_index_builder_set_metadata_uint64; 1613 int function(DzlFuzzyIndexBuilder* self, GFile* file, int ioPriority, GCancellable* cancellable, GError** err) c_dzl_fuzzy_index_builder_write; 1614 void function(DzlFuzzyIndexBuilder* self, GFile* file, int ioPriority, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_dzl_fuzzy_index_builder_write_async; 1615 int function(DzlFuzzyIndexBuilder* self, GAsyncResult* result, GError** err) c_dzl_fuzzy_index_builder_write_finish; 1616 1617 // dazzle.FuzzyIndexCursor 1618 1619 GType function() c_dzl_fuzzy_index_cursor_get_type; 1620 DzlFuzzyIndex* function(DzlFuzzyIndexCursor* self) c_dzl_fuzzy_index_cursor_get_index; 1621 1622 // dazzle.FuzzyIndexMatch 1623 1624 GType function() c_dzl_fuzzy_index_match_get_type; 1625 GVariant* function(DzlFuzzyIndexMatch* self) c_dzl_fuzzy_index_match_get_document; 1626 const(char)* function(DzlFuzzyIndexMatch* self) c_dzl_fuzzy_index_match_get_key; 1627 uint function(DzlFuzzyIndexMatch* self) c_dzl_fuzzy_index_match_get_priority; 1628 float function(DzlFuzzyIndexMatch* self) c_dzl_fuzzy_index_match_get_score; 1629 1630 // dazzle.FuzzyMutableIndex 1631 1632 GType function() c_dzl_fuzzy_mutable_index_get_type; 1633 DzlFuzzyMutableIndex* function(int caseSensitive) c_dzl_fuzzy_mutable_index_new; 1634 DzlFuzzyMutableIndex* function(int caseSensitive, GDestroyNotify freeFunc) c_dzl_fuzzy_mutable_index_new_with_free_func; 1635 void function(DzlFuzzyMutableIndex* fuzzy) c_dzl_fuzzy_mutable_index_begin_bulk_insert; 1636 int function(DzlFuzzyMutableIndex* fuzzy, const(char)* key) c_dzl_fuzzy_mutable_index_contains; 1637 void function(DzlFuzzyMutableIndex* fuzzy) c_dzl_fuzzy_mutable_index_end_bulk_insert; 1638 void function(DzlFuzzyMutableIndex* fuzzy, const(char)* key, void* value) c_dzl_fuzzy_mutable_index_insert; 1639 GArray* function(DzlFuzzyMutableIndex* fuzzy, const(char)* needle, size_t maxMatches) c_dzl_fuzzy_mutable_index_match; 1640 DzlFuzzyMutableIndex* function(DzlFuzzyMutableIndex* fuzzy) c_dzl_fuzzy_mutable_index_ref; 1641 void function(DzlFuzzyMutableIndex* fuzzy, const(char)* key) c_dzl_fuzzy_mutable_index_remove; 1642 void function(DzlFuzzyMutableIndex* fuzzy, GDestroyNotify freeFunc) c_dzl_fuzzy_mutable_index_set_free_func; 1643 void function(DzlFuzzyMutableIndex* fuzzy) c_dzl_fuzzy_mutable_index_unref; 1644 1645 // dazzle.GraphColumn 1646 1647 GType function() c_dzl_graph_view_column_get_type; 1648 DzlGraphColumn* function(const(char)* name, GType valueType) c_dzl_graph_view_column_new; 1649 const(char)* function(DzlGraphColumn* self) c_dzl_graph_view_column_get_name; 1650 void function(DzlGraphColumn* self, const(char)* name) c_dzl_graph_view_column_set_name; 1651 1652 // dazzle.GraphLineRenderer 1653 1654 GType function() c_dzl_graph_view_line_renderer_get_type; 1655 DzlGraphLineRenderer* function() c_dzl_graph_view_line_renderer_new; 1656 GdkRGBA* function(DzlGraphLineRenderer* self) c_dzl_graph_view_line_renderer_get_stroke_color_rgba; 1657 void function(DzlGraphLineRenderer* self, const(char)* strokeColor) c_dzl_graph_view_line_renderer_set_stroke_color; 1658 void function(DzlGraphLineRenderer* self, GdkRGBA* strokeColorRgba) c_dzl_graph_view_line_renderer_set_stroke_color_rgba; 1659 1660 // dazzle.GraphModel 1661 1662 GType function() c_dzl_graph_view_model_get_type; 1663 DzlGraphModel* function() c_dzl_graph_view_model_new; 1664 void function(DzlGraphModelIter* iter, int firstColumn, ... ) c_dzl_graph_view_model_iter_get; 1665 long function(DzlGraphModelIter* iter) c_dzl_graph_view_model_iter_get_timestamp; 1666 void function(DzlGraphModelIter* iter, uint column, GValue* value) c_dzl_graph_view_model_iter_get_value; 1667 int function(DzlGraphModelIter* iter) c_dzl_graph_view_model_iter_next; 1668 void function(DzlGraphModelIter* iter, int firstColumn, ... ) c_dzl_graph_view_model_iter_set; 1669 void function(DzlGraphModelIter* iter, uint column, GValue* value) c_dzl_graph_view_model_iter_set_value; 1670 uint function(DzlGraphModel* self, DzlGraphColumn* column) c_dzl_graph_view_model_add_column; 1671 long function(DzlGraphModel* self) c_dzl_graph_view_model_get_end_time; 1672 int function(DzlGraphModel* self, DzlGraphModelIter* iter) c_dzl_graph_view_model_get_iter_first; 1673 int function(DzlGraphModel* self, DzlGraphModelIter* iter) c_dzl_graph_view_model_get_iter_last; 1674 uint function(DzlGraphModel* self) c_dzl_graph_view_model_get_max_samples; 1675 uint function(DzlGraphModel* self) c_dzl_graph_view_model_get_n_columns; 1676 GTimeSpan function(DzlGraphModel* self) c_dzl_graph_view_model_get_timespan; 1677 void function(DzlGraphModel* self, DzlGraphModelIter* iter, long timestamp) c_dzl_graph_view_model_push; 1678 void function(DzlGraphModel* self, uint nRows) c_dzl_graph_view_model_set_max_samples; 1679 void function(DzlGraphModel* self, GTimeSpan timespan) c_dzl_graph_view_model_set_timespan; 1680 1681 // dazzle.GraphRenderer 1682 1683 GType function() c_dzl_graph_view_renderer_get_type; 1684 void function(DzlGraphRenderer* self, DzlGraphModel* table, long xBegin, long xEnd, double yBegin, double yEnd, cairo_t* cr, cairo_rectangle_int_t* area) c_dzl_graph_view_renderer_render; 1685 1686 // dazzle.GraphView 1687 1688 GType function() c_dzl_graph_view_get_type; 1689 GtkWidget* function() c_dzl_graph_view_new; 1690 void function(DzlGraphView* self, DzlGraphRenderer* renderer) c_dzl_graph_view_add_renderer; 1691 DzlGraphModel* function(DzlGraphView* self) c_dzl_graph_view_get_model; 1692 void function(DzlGraphView* self, DzlGraphModel* model) c_dzl_graph_view_set_model; 1693 1694 // dazzle.Heap 1695 1696 GType function() c_dzl_heap_get_type; 1697 DzlHeap* function(uint elementSize, GCompareFunc compareFunc) c_dzl_heap_new; 1698 int function(DzlHeap* heap, void* result) c_dzl_heap_extract; 1699 int function(DzlHeap* heap, size_t index, void* result) c_dzl_heap_extract_index; 1700 void function(DzlHeap* heap, void* data, uint len) c_dzl_heap_insert_vals; 1701 DzlHeap* function(DzlHeap* heap) c_dzl_heap_ref; 1702 void function(DzlHeap* heap) c_dzl_heap_unref; 1703 1704 // dazzle.JoinedMenu 1705 1706 GType function() c_dzl_joined_menu_get_type; 1707 DzlJoinedMenu* function() c_dzl_joined_menu_new; 1708 void function(DzlJoinedMenu* self, GMenuModel* model) c_dzl_joined_menu_append_menu; 1709 uint function(DzlJoinedMenu* self) c_dzl_joined_menu_get_n_joined; 1710 void function(DzlJoinedMenu* self, GMenuModel* model) c_dzl_joined_menu_prepend_menu; 1711 void function(DzlJoinedMenu* self, uint index) c_dzl_joined_menu_remove_index; 1712 void function(DzlJoinedMenu* self, GMenuModel* model) c_dzl_joined_menu_remove_menu; 1713 1714 // dazzle.ListBox 1715 1716 GType function() c_dzl_list_box_get_type; 1717 GtkWidget* function(GType rowType, const(char)* propertyName) c_dzl_list_box_new; 1718 GListModel* function(DzlListBox* self) c_dzl_list_box_get_model; 1719 const(char)* function(DzlListBox* self) c_dzl_list_box_get_property_name; 1720 GType function(DzlListBox* self) c_dzl_list_box_get_row_type; 1721 void function(DzlListBox* self, GListModel* model) c_dzl_list_box_set_model; 1722 void function(DzlListBox* self, uint recycleMax) c_dzl_list_box_set_recycle_max; 1723 1724 // dazzle.ListBoxRow 1725 1726 GType function() c_dzl_list_box_row_get_type; 1727 1728 // dazzle.ListModelFilter 1729 1730 GType function() c_dzl_list_model_filter_get_type; 1731 DzlListModelFilter* function(GListModel* childModel) c_dzl_list_model_filter_new; 1732 GListModel* function(DzlListModelFilter* self) c_dzl_list_model_filter_get_child_model; 1733 void function(DzlListModelFilter* self) c_dzl_list_model_filter_invalidate; 1734 void function(DzlListModelFilter* self, DzlListModelFilterFunc filterFunc, void* filterFuncData, GDestroyNotify filterFuncDataDestroy) c_dzl_list_model_filter_set_filter_func; 1735 1736 // dazzle.ListStoreAdapter 1737 1738 GType function() c_dzl_list_store_adapter_get_type; 1739 DzlListStoreAdapter* function(GListModel* model) c_dzl_list_store_adapter_new; 1740 GListModel* function(DzlListStoreAdapter* self) c_dzl_list_store_adapter_get_model; 1741 void function(DzlListStoreAdapter* self, GListModel* model) c_dzl_list_store_adapter_set_model; 1742 1743 // dazzle.MenuButton 1744 1745 GType function() c_dzl_menu_button_get_type; 1746 GtkWidget* function(const(char)* iconName, GMenuModel* model) c_dzl_menu_button_new_with_model; 1747 GMenuModel* function(DzlMenuButton* self) c_dzl_menu_button_get_model; 1748 int function(DzlMenuButton* self) c_dzl_menu_button_get_show_accels; 1749 int function(DzlMenuButton* self) c_dzl_menu_button_get_show_arrow; 1750 int function(DzlMenuButton* self) c_dzl_menu_button_get_show_icons; 1751 void function(DzlMenuButton* self, GMenuModel* model) c_dzl_menu_button_set_model; 1752 void function(DzlMenuButton* self, int showAccels) c_dzl_menu_button_set_show_accels; 1753 void function(DzlMenuButton* self, int showArrow) c_dzl_menu_button_set_show_arrow; 1754 void function(DzlMenuButton* self, int showIcons) c_dzl_menu_button_set_show_icons; 1755 1756 // dazzle.MenuManager 1757 1758 GType function() c_dzl_menu_manager_get_type; 1759 DzlMenuManager* function() c_dzl_menu_manager_new; 1760 uint function(DzlMenuManager* self, const(char)* filename, GError** err) c_dzl_menu_manager_add_filename; 1761 uint function(DzlMenuManager* self, const(char)* resource, GError** err) c_dzl_menu_manager_add_resource; 1762 GMenu* function(DzlMenuManager* self, const(char)* menuId) c_dzl_menu_manager_get_menu_by_id; 1763 uint function(DzlMenuManager* self, const(char)* menuId, GMenuModel* model) c_dzl_menu_manager_merge; 1764 void function(DzlMenuManager* self, uint mergeId) c_dzl_menu_manager_remove; 1765 1766 // dazzle.MultiPaned 1767 1768 GType function() c_dzl_multi_paned_get_type; 1769 GtkWidget* function() c_dzl_multi_paned_new; 1770 GtkWidget* function(DzlMultiPaned* self, int x, int y) c_dzl_multi_paned_get_at_point; 1771 uint function(DzlMultiPaned* self) c_dzl_multi_paned_get_n_children; 1772 GtkWidget* function(DzlMultiPaned* self, uint nth) c_dzl_multi_paned_get_nth_child; 1773 1774 // dazzle.Path 1775 1776 GType function() c_dzl_path_get_type; 1777 DzlPath* function() c_dzl_path_new; 1778 void function(DzlPath* self, DzlPathElement* element) c_dzl_path_append; 1779 DzlPathElement* function(DzlPath* self, uint index) c_dzl_path_get_element; 1780 GList* function(DzlPath* self) c_dzl_path_get_elements; 1781 uint function(DzlPath* self) c_dzl_path_get_length; 1782 int function(DzlPath* self, DzlPath* prefix) c_dzl_path_has_prefix; 1783 int function(DzlPath* self) c_dzl_path_is_empty; 1784 void function(DzlPath* self, DzlPathElement* element) c_dzl_path_prepend; 1785 char* function(DzlPath* self) c_dzl_path_printf; 1786 1787 // dazzle.PathBar 1788 1789 GType function() c_dzl_path_bar_get_type; 1790 GtkWidget* function() c_dzl_path_bar_new; 1791 DzlPath* function(DzlPathBar* self) c_dzl_path_bar_get_path; 1792 void function(DzlPathBar* self, DzlPath* path) c_dzl_path_bar_set_path; 1793 void function(DzlPathBar* self, uint index) c_dzl_path_bar_set_selected_index; 1794 1795 // dazzle.PathElement 1796 1797 GType function() c_dzl_path_element_get_type; 1798 DzlPathElement* function(const(char)* id, const(char)* iconName, const(char)* title) c_dzl_path_element_new; 1799 const(char)* function(DzlPathElement* self) c_dzl_path_element_get_icon_name; 1800 const(char)* function(DzlPathElement* self) c_dzl_path_element_get_id; 1801 const(char)* function(DzlPathElement* self) c_dzl_path_element_get_title; 1802 1803 // dazzle.PatternSpec 1804 1805 GType function() c_dzl_pattern_spec_get_type; 1806 DzlPatternSpec* function(const(char)* keywords) c_dzl_pattern_spec_new; 1807 const(char)* function(DzlPatternSpec* self) c_dzl_pattern_spec_get_text; 1808 int function(DzlPatternSpec* self, const(char)* haystack) c_dzl_pattern_spec_match; 1809 DzlPatternSpec* function(DzlPatternSpec* self) c_dzl_pattern_spec_ref; 1810 void function(DzlPatternSpec* self) c_dzl_pattern_spec_unref; 1811 1812 // dazzle.PillBox 1813 1814 GType function() c_dzl_pill_box_get_type; 1815 GtkWidget* function(const(char)* label) c_dzl_pill_box_new; 1816 const(char)* function(DzlPillBox* self) c_dzl_pill_box_get_label; 1817 void function(DzlPillBox* self, const(char)* label) c_dzl_pill_box_set_label; 1818 1819 // dazzle.Preferences 1820 1821 GType function() c_dzl_preferences_get_type; 1822 uint function(DzlPreferences* self, const(char)* pageName, const(char)* groupName, GtkWidget* widget, const(char)* keywords, int priority) c_dzl_preferences_add_custom; 1823 uint function(DzlPreferences* self, const(char)* pageName, const(char)* groupName, const(char)* schemaId, const(char)* key, const(char)* path, const(char)* title, const(char)* subtitle, GtkFileChooserAction action, const(char)* keywords, int priority) c_dzl_preferences_add_file_chooser; 1824 uint function(DzlPreferences* self, const(char)* pageName, const(char)* groupName, const(char)* schemaId, const(char)* key, const(char)* title, const(char)* keywords, int priority) c_dzl_preferences_add_font_button; 1825 void function(DzlPreferences* self, const(char)* pageName, const(char)* groupName, const(char)* title, int priority) c_dzl_preferences_add_group; 1826 void function(DzlPreferences* self, const(char)* pageName, const(char)* groupName, const(char)* title, GtkSelectionMode mode, int priority) c_dzl_preferences_add_list_group; 1827 void function(DzlPreferences* self, const(char)* pageName, const(char)* title, int priority) c_dzl_preferences_add_page; 1828 uint function(DzlPreferences* self, const(char)* pageName, const(char)* groupName, const(char)* schemaId, const(char)* key, const(char)* path, const(char)* variantString, const(char)* title, const(char)* subtitle, const(char)* keywords, int priority) c_dzl_preferences_add_radio; 1829 uint function(DzlPreferences* self, const(char)* pageName, const(char)* groupName, const(char)* schemaId, const(char)* key, const(char)* path, const(char)* title, const(char)* subtitle, const(char)* keywords, int priority) c_dzl_preferences_add_spin_button; 1830 uint function(DzlPreferences* self, const(char)* pageName, const(char)* groupName, const(char)* schemaId, const(char)* key, const(char)* path, const(char)* variantString, const(char)* title, const(char)* subtitle, const(char)* keywords, int priority) c_dzl_preferences_add_switch; 1831 uint function(DzlPreferences* self, const(char)* pageName, const(char)* groupName, GtkWidget* firstWidget, ... ) c_dzl_preferences_add_table_row; 1832 GtkWidget* function(DzlPreferences* self, uint widgetId) c_dzl_preferences_get_widget; 1833 int function(DzlPreferences* self, uint widgetId) c_dzl_preferences_remove_id; 1834 void function(DzlPreferences* self, const(char)* pageName, GHashTable* map) c_dzl_preferences_set_page; 1835 1836 // dazzle.PreferencesBin 1837 1838 GType function() c_dzl_preferences_bin_get_type; 1839 1840 // dazzle.PreferencesEntry 1841 1842 GType function() c_dzl_preferences_entry_get_type; 1843 GtkWidget* function(DzlPreferencesEntry* self) c_dzl_preferences_entry_get_entry_widget; 1844 GtkWidget* function(DzlPreferencesEntry* self) c_dzl_preferences_entry_get_title_widget; 1845 1846 // dazzle.PreferencesFileChooserButton 1847 1848 GType function() c_dzl_preferences_file_chooser_button_get_type; 1849 1850 // dazzle.PreferencesFlowBox 1851 1852 GType function() c_dzl_preferences_flow_box_get_type; 1853 GtkWidget* function() c_dzl_preferences_flow_box_new; 1854 1855 // dazzle.PreferencesFontButton 1856 1857 GType function() c_dzl_preferences_font_button_get_type; 1858 1859 // dazzle.PreferencesGroup 1860 1861 GType function() c_dzl_preferences_group_get_type; 1862 void function(DzlPreferencesGroup* self, GtkWidget* widget) c_dzl_preferences_group_add; 1863 int function(DzlPreferencesGroup* self) c_dzl_preferences_group_get_priority; 1864 GtkSizeGroup* function(DzlPreferencesGroup* self, uint column) c_dzl_preferences_group_get_size_group; 1865 const(char)* function(DzlPreferencesGroup* self) c_dzl_preferences_group_get_title; 1866 uint function(DzlPreferencesGroup* self, DzlPatternSpec* spec) c_dzl_preferences_group_refilter; 1867 void function(DzlPreferencesGroup* self, GHashTable* map) c_dzl_preferences_group_set_map; 1868 1869 // dazzle.PreferencesPage 1870 1871 GType function() c_dzl_preferences_page_get_type; 1872 void function(DzlPreferencesPage* self, DzlPreferencesGroup* group) c_dzl_preferences_page_add_group; 1873 DzlPreferencesGroup* function(DzlPreferencesPage* self, const(char)* groupName) c_dzl_preferences_page_get_group; 1874 void function(DzlPreferencesPage* self, DzlPatternSpec* spec) c_dzl_preferences_page_refilter; 1875 void function(DzlPreferencesPage* self, GHashTable* map) c_dzl_preferences_page_set_map; 1876 1877 // dazzle.PreferencesSpinButton 1878 1879 GType function() c_dzl_preferences_spin_button_get_type; 1880 GtkWidget* function(DzlPreferencesSpinButton* self) c_dzl_preferences_spin_button_get_spin_button; 1881 1882 // dazzle.PreferencesSwitch 1883 1884 GType function() c_dzl_preferences_switch_get_type; 1885 1886 // dazzle.PreferencesView 1887 1888 GType function() c_dzl_preferences_view_get_type; 1889 GtkWidget* function() c_dzl_preferences_view_new; 1890 int function(DzlPreferencesView* self) c_dzl_preferences_view_get_show_search_entry; 1891 int function(DzlPreferencesView* self) c_dzl_preferences_view_get_use_sidebar; 1892 void function(DzlPreferencesView* self) c_dzl_preferences_view_reapply_filter; 1893 void function(DzlPreferencesView* self, int showSearchEntry) c_dzl_preferences_view_set_show_search_entry; 1894 void function(DzlPreferencesView* self, int useSidebar) c_dzl_preferences_view_set_use_sidebar; 1895 1896 // dazzle.PriorityBox 1897 1898 GType function() c_dzl_priority_box_get_type; 1899 GtkWidget* function() c_dzl_priority_box_new; 1900 1901 // dazzle.ProgressButton 1902 1903 GType function() c_dzl_progress_button_get_type; 1904 GtkWidget* function() c_dzl_progress_button_new; 1905 uint function(DzlProgressButton* self) c_dzl_progress_button_get_progress; 1906 int function(DzlProgressButton* self) c_dzl_progress_button_get_show_progress; 1907 void function(DzlProgressButton* button, uint percentage) c_dzl_progress_button_set_progress; 1908 void function(DzlProgressButton* button, int showProgress) c_dzl_progress_button_set_show_progress; 1909 1910 // dazzle.ProgressIcon 1911 1912 GType function() c_dzl_progress_icon_get_type; 1913 GtkWidget* function() c_dzl_progress_icon_new; 1914 double function(DzlProgressIcon* self) c_dzl_progress_icon_get_progress; 1915 void function(DzlProgressIcon* self, double progress) c_dzl_progress_icon_set_progress; 1916 1917 // dazzle.ProgressMenuButton 1918 1919 GType function() c_dzl_progress_menu_button_get_type; 1920 GtkWidget* function() c_dzl_progress_menu_button_new; 1921 double function(DzlProgressMenuButton* button) c_dzl_progress_menu_button_get_progress; 1922 int function(DzlProgressMenuButton* self) c_dzl_progress_menu_button_get_show_progress; 1923 int function(DzlProgressMenuButton* self) c_dzl_progress_menu_button_get_show_theatric; 1924 void function(DzlProgressMenuButton* self) c_dzl_progress_menu_button_reset_theatrics; 1925 void function(DzlProgressMenuButton* button, double progress) c_dzl_progress_menu_button_set_progress; 1926 void function(DzlProgressMenuButton* self, int showProgress) c_dzl_progress_menu_button_set_show_progress; 1927 void function(DzlProgressMenuButton* self, int showTheatic) c_dzl_progress_menu_button_set_show_theatric; 1928 1929 // dazzle.PropertiesGroup 1930 1931 GType function() c_dzl_properties_group_get_type; 1932 DzlPropertiesGroup* function(GObject* object) c_dzl_properties_group_new; 1933 DzlPropertiesGroup* function(GType objectType) c_dzl_properties_group_new_for_type; 1934 void function(DzlPropertiesGroup* self) c_dzl_properties_group_add_all_properties; 1935 void function(DzlPropertiesGroup* self, const(char)* name, const(char)* propertyName) c_dzl_properties_group_add_property; 1936 void function(DzlPropertiesGroup* self, const(char)* name, const(char)* propertyName, DzlPropertiesFlags flags) c_dzl_properties_group_add_property_full; 1937 void function(DzlPropertiesGroup* self, const(char)* name) c_dzl_properties_group_remove; 1938 1939 // dazzle.RadioBox 1940 1941 GType function() c_dzl_radio_box_get_type; 1942 GtkWidget* function() c_dzl_radio_box_new; 1943 void function(DzlRadioBox* self, const(char)* id, const(char)* text) c_dzl_radio_box_add_item; 1944 const(char)* function(DzlRadioBox* self) c_dzl_radio_box_get_active_id; 1945 void function(DzlRadioBox* self, const(char)* id) c_dzl_radio_box_remove_item; 1946 void function(DzlRadioBox* self, const(char)* id) c_dzl_radio_box_set_active_id; 1947 1948 // dazzle.ReadOnlyListModel 1949 1950 GType function() c_dzl_read_only_list_model_get_type; 1951 GListModel* function(GListModel* baseModel) c_dzl_read_only_list_model_new; 1952 1953 // dazzle.RecursiveFileMonitor 1954 1955 GType function() c_dzl_recursive_file_monitor_get_type; 1956 DzlRecursiveFileMonitor* function(GFile* root) c_dzl_recursive_file_monitor_new; 1957 void function(DzlRecursiveFileMonitor* self) c_dzl_recursive_file_monitor_cancel; 1958 GFile* function(DzlRecursiveFileMonitor* self) c_dzl_recursive_file_monitor_get_root; 1959 void function(DzlRecursiveFileMonitor* self, DzlRecursiveIgnoreFunc ignoreFunc, void* ignoreFuncData, GDestroyNotify ignoreFuncDataDestroy) c_dzl_recursive_file_monitor_set_ignore_func; 1960 void function(DzlRecursiveFileMonitor* self, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_dzl_recursive_file_monitor_start_async; 1961 int function(DzlRecursiveFileMonitor* self, GAsyncResult* result, GError** err) c_dzl_recursive_file_monitor_start_finish; 1962 1963 // dazzle.Ring 1964 1965 GType function() c_dzl_ring_get_type; 1966 DzlRing* function(uint elementSize, uint reservedSize, GDestroyNotify elementDestroy) c_dzl_ring_sized_new; 1967 uint function(DzlRing* ring, void* data, uint len) c_dzl_ring_append_vals; 1968 void function(DzlRing* ring, GFunc func, void* userData) c_dzl_ring_foreach; 1969 DzlRing* function(DzlRing* ring) c_dzl_ring_ref; 1970 void function(DzlRing* ring) c_dzl_ring_unref; 1971 1972 // dazzle.ScrolledWindow 1973 1974 GType function() c_dzl_scrolled_window_get_type; 1975 1976 // dazzle.SearchBar 1977 1978 GType function() c_dzl_search_bar_get_type; 1979 GtkWidget* function() c_dzl_search_bar_new; 1980 GtkWidget* function(DzlSearchBar* self) c_dzl_search_bar_get_entry; 1981 int function(DzlSearchBar* self) c_dzl_search_bar_get_search_mode_enabled; 1982 int function(DzlSearchBar* self) c_dzl_search_bar_get_show_close_button; 1983 void function(DzlSearchBar* self, int searchModeEnabled) c_dzl_search_bar_set_search_mode_enabled; 1984 void function(DzlSearchBar* self, int showCloseButton) c_dzl_search_bar_set_show_close_button; 1985 1986 // dazzle.SettingsFlagAction 1987 1988 GType function() c_dzl_settings_flag_action_get_type; 1989 GAction* function(const(char)* schemaId, const(char)* schemaKey, const(char)* flagNick) c_dzl_settings_flag_action_new; 1990 1991 // dazzle.SettingsSandwich 1992 1993 GType function() c_dzl_settings_sandwich_get_type; 1994 DzlSettingsSandwich* function(const(char)* schemaId, const(char)* path) c_dzl_settings_sandwich_new; 1995 void function(DzlSettingsSandwich* self, GSettings* settings) c_dzl_settings_sandwich_append; 1996 void function(DzlSettingsSandwich* self, const(char)* key, void* object, const(char)* property, GSettingsBindFlags flags) c_dzl_settings_sandwich_bind; 1997 void function(DzlSettingsSandwich* self, const(char)* key, void* object, const(char)* property, GSettingsBindFlags flags, GSettingsBindGetMapping getMapping, GSettingsBindSetMapping setMapping, void* userData, GDestroyNotify destroy) c_dzl_settings_sandwich_bind_with_mapping; 1998 int function(DzlSettingsSandwich* self, const(char)* key) c_dzl_settings_sandwich_get_boolean; 1999 GVariant* function(DzlSettingsSandwich* self, const(char)* key) c_dzl_settings_sandwich_get_default_value; 2000 double function(DzlSettingsSandwich* self, const(char)* key) c_dzl_settings_sandwich_get_double; 2001 int function(DzlSettingsSandwich* self, const(char)* key) c_dzl_settings_sandwich_get_int; 2002 char* function(DzlSettingsSandwich* self, const(char)* key) c_dzl_settings_sandwich_get_string; 2003 uint function(DzlSettingsSandwich* self, const(char)* key) c_dzl_settings_sandwich_get_uint; 2004 GVariant* function(DzlSettingsSandwich* self, const(char)* key) c_dzl_settings_sandwich_get_user_value; 2005 GVariant* function(DzlSettingsSandwich* self, const(char)* key) c_dzl_settings_sandwich_get_value; 2006 void function(DzlSettingsSandwich* self, const(char)* key, int val) c_dzl_settings_sandwich_set_boolean; 2007 void function(DzlSettingsSandwich* self, const(char)* key, double val) c_dzl_settings_sandwich_set_double; 2008 void function(DzlSettingsSandwich* self, const(char)* key, int val) c_dzl_settings_sandwich_set_int; 2009 void function(DzlSettingsSandwich* self, const(char)* key, const(char)* val) c_dzl_settings_sandwich_set_string; 2010 void function(DzlSettingsSandwich* self, const(char)* key, uint val) c_dzl_settings_sandwich_set_uint; 2011 void function(DzlSettingsSandwich* self, const(char)* key, GVariant* value) c_dzl_settings_sandwich_set_value; 2012 void function(DzlSettingsSandwich* self, const(char)* property) c_dzl_settings_sandwich_unbind; 2013 2014 // dazzle.ShortcutAccelDialog 2015 2016 GType function() c_dzl_shortcut_accel_dialog_get_type; 2017 GtkWidget* function() c_dzl_shortcut_accel_dialog_new; 2018 char* function(DzlShortcutAccelDialog* self) c_dzl_shortcut_accel_dialog_get_accelerator; 2019 DzlShortcutChord* function(DzlShortcutAccelDialog* self) c_dzl_shortcut_accel_dialog_get_chord; 2020 const(char)* function(DzlShortcutAccelDialog* self) c_dzl_shortcut_accel_dialog_get_shortcut_title; 2021 void function(DzlShortcutAccelDialog* self, const(char)* accelerator) c_dzl_shortcut_accel_dialog_set_accelerator; 2022 void function(DzlShortcutAccelDialog* self, const(char)* title) c_dzl_shortcut_accel_dialog_set_shortcut_title; 2023 2024 // dazzle.ShortcutChord 2025 2026 GType function() c_dzl_shortcut_chord_get_type; 2027 DzlShortcutChord* function(GdkEventKey* event) c_dzl_shortcut_chord_new_from_event; 2028 DzlShortcutChord* function(const(char)* accelerator) c_dzl_shortcut_chord_new_from_string; 2029 int function(DzlShortcutChord* self, GdkEventKey* event) c_dzl_shortcut_chord_append_event; 2030 DzlShortcutChord* function(DzlShortcutChord* self) c_dzl_shortcut_chord_copy; 2031 void function(DzlShortcutChord* self) c_dzl_shortcut_chord_free; 2032 char* function(DzlShortcutChord* self) c_dzl_shortcut_chord_get_label; 2033 uint function(DzlShortcutChord* self) c_dzl_shortcut_chord_get_length; 2034 void function(DzlShortcutChord* self, uint nth, uint* keyval, GdkModifierType* modifier) c_dzl_shortcut_chord_get_nth_key; 2035 int function(DzlShortcutChord* self) c_dzl_shortcut_chord_has_modifier; 2036 DzlShortcutMatch function(DzlShortcutChord* self, DzlShortcutChord* other) c_dzl_shortcut_chord_match; 2037 char* function(DzlShortcutChord* self) c_dzl_shortcut_chord_to_string; 2038 int function(void* data1, void* data2) c_dzl_shortcut_chord_equal; 2039 uint function(void* data) c_dzl_shortcut_chord_hash; 2040 2041 // dazzle.ShortcutChordTable 2042 2043 void function(DzlShortcutChordTable* self, DzlShortcutChord* chord, void* data) c_dzl_shortcut_chord_table_add; 2044 void function(DzlShortcutChordTable* self, DzlShortcutChordTableForeach foreachFunc, void* foreachData) c_dzl_shortcut_chord_table_foreach; 2045 void function(DzlShortcutChordTable* self) c_dzl_shortcut_chord_table_free; 2046 DzlShortcutMatch function(DzlShortcutChordTable* self, DzlShortcutChord* chord, void** data) c_dzl_shortcut_chord_table_lookup; 2047 DzlShortcutChord* function(DzlShortcutChordTable* self, void* data) c_dzl_shortcut_chord_table_lookup_data; 2048 void function(DzlShortcutChordTable* self) c_dzl_shortcut_chord_table_printf; 2049 int function(DzlShortcutChordTable* self, DzlShortcutChord* chord) c_dzl_shortcut_chord_table_remove; 2050 int function(DzlShortcutChordTable* self, void* data) c_dzl_shortcut_chord_table_remove_data; 2051 void function(DzlShortcutChordTable* self, GDestroyNotify notify) c_dzl_shortcut_chord_table_set_free_func; 2052 uint function(DzlShortcutChordTable* self) c_dzl_shortcut_chord_table_size; 2053 DzlShortcutChordTable* function() c_dzl_shortcut_chord_table_new; 2054 2055 // dazzle.ShortcutContext 2056 2057 GType function() c_dzl_shortcut_context_get_type; 2058 DzlShortcutContext* function(const(char)* name) c_dzl_shortcut_context_new; 2059 DzlShortcutMatch function(DzlShortcutContext* self, GtkWidget* widget, DzlShortcutChord* chord) c_dzl_shortcut_context_activate; 2060 void function(DzlShortcutContext* self, const(char)* accel, const(char)* detailedActionName) c_dzl_shortcut_context_add_action; 2061 void function(DzlShortcutContext* self, const(char)* accel, const(char)* command) c_dzl_shortcut_context_add_command; 2062 void function(DzlShortcutContext* self, const(char)* accel, const(char)* signalName, uint nArgs, ... ) c_dzl_shortcut_context_add_signal; 2063 void function(DzlShortcutContext* self, const(char)* accel, const(char)* signalName, uint nArgs, void* args) c_dzl_shortcut_context_add_signal_va_list; 2064 void function(DzlShortcutContext* self, const(char)* accel, const(char)* signalName, GArray* values) c_dzl_shortcut_context_add_signalv; 2065 const(char)* function(DzlShortcutContext* self) c_dzl_shortcut_context_get_name; 2066 int function(DzlShortcutContext* self, const(char)* data, ptrdiff_t len, GError** err) c_dzl_shortcut_context_load_from_data; 2067 int function(DzlShortcutContext* self, const(char)* resourcePath, GError** err) c_dzl_shortcut_context_load_from_resource; 2068 int function(DzlShortcutContext* self, const(char)* accel) c_dzl_shortcut_context_remove; 2069 2070 // dazzle.ShortcutController 2071 2072 GType function() c_dzl_shortcut_controller_get_type; 2073 DzlShortcutController* function(GtkWidget* widget) c_dzl_shortcut_controller_new; 2074 DzlShortcutController* function(GtkWidget* widget) c_dzl_shortcut_controller_find; 2075 DzlShortcutController* function(GtkWidget* widget) c_dzl_shortcut_controller_try_find; 2076 void function(DzlShortcutController* self, const(char)* commandId, const(char)* defaultAccel, DzlShortcutPhase phase, const(char)* action) c_dzl_shortcut_controller_add_command_action; 2077 void function(DzlShortcutController* self, const(char)* commandId, const(char)* defaultAccel, DzlShortcutPhase phase, GtkCallback callback, void* callbackData, GDestroyNotify callbackDataDestroy) c_dzl_shortcut_controller_add_command_callback; 2078 void function(DzlShortcutController* self, const(char)* commandId, const(char)* defaultAccel, DzlShortcutPhase phase, const(char)* signalName, uint nArgs, ... ) c_dzl_shortcut_controller_add_command_signal; 2079 int function(DzlShortcutController* self, const(char)* command) c_dzl_shortcut_controller_execute_command; 2080 DzlShortcutContext* function(DzlShortcutController* self) c_dzl_shortcut_controller_get_context; 2081 DzlShortcutContext* function(DzlShortcutController* self, DzlShortcutPhase phase) c_dzl_shortcut_controller_get_context_for_phase; 2082 DzlShortcutChord* function(DzlShortcutController* self) c_dzl_shortcut_controller_get_current_chord; 2083 DzlShortcutManager* function(DzlShortcutController* self) c_dzl_shortcut_controller_get_manager; 2084 GtkWidget* function(DzlShortcutController* self) c_dzl_shortcut_controller_get_widget; 2085 void function(DzlShortcutController* self, const(char)* accel, DzlShortcutPhase phase) c_dzl_shortcut_controller_remove_accel; 2086 void function(DzlShortcutController* self, const(char)* name) c_dzl_shortcut_controller_set_context_by_name; 2087 void function(DzlShortcutController* self, DzlShortcutManager* manager) c_dzl_shortcut_controller_set_manager; 2088 2089 // dazzle.ShortcutLabel 2090 2091 GType function() c_dzl_shortcut_label_get_type; 2092 GtkWidget* function() c_dzl_shortcut_label_new; 2093 char* function(DzlShortcutLabel* self) c_dzl_shortcut_label_get_accelerator; 2094 DzlShortcutChord* function(DzlShortcutLabel* self) c_dzl_shortcut_label_get_chord; 2095 void function(DzlShortcutLabel* self, const(char)* accelerator) c_dzl_shortcut_label_set_accelerator; 2096 void function(DzlShortcutLabel* self, DzlShortcutChord* chord) c_dzl_shortcut_label_set_chord; 2097 2098 // dazzle.ShortcutManager 2099 2100 GType function() c_dzl_shortcut_manager_get_type; 2101 DzlShortcutManager* function() c_dzl_shortcut_manager_get_default; 2102 void function(DzlShortcutManager* self, const(char)* detailedActionName, const(char)* section, const(char)* group, const(char)* title, const(char)* subtitle) c_dzl_shortcut_manager_add_action; 2103 void function(DzlShortcutManager* self, const(char)* command, const(char)* section, const(char)* group, const(char)* title, const(char)* subtitle) c_dzl_shortcut_manager_add_command; 2104 void function(DzlShortcutManager* self, DzlShortcutEntry* shortcuts, uint nShortcuts, const(char)* translationDomain) c_dzl_shortcut_manager_add_shortcut_entries; 2105 void function(DzlShortcutManager* self, DzlShortcutsWindow* window) c_dzl_shortcut_manager_add_shortcuts_to_window; 2106 void function(DzlShortcutManager* self, const(char)* directory) c_dzl_shortcut_manager_append_search_path; 2107 DzlShortcutTheme* function(DzlShortcutManager* self) c_dzl_shortcut_manager_get_theme; 2108 DzlShortcutTheme* function(DzlShortcutManager* self, const(char)* themeName) c_dzl_shortcut_manager_get_theme_by_name; 2109 const(char)* function(DzlShortcutManager* self) c_dzl_shortcut_manager_get_theme_name; 2110 const(char)* function(DzlShortcutManager* self) c_dzl_shortcut_manager_get_user_dir; 2111 int function(DzlShortcutManager* self, GdkEventKey* event, GtkWidget* toplevel) c_dzl_shortcut_manager_handle_event; 2112 void function(DzlShortcutManager* self, const(char)* directory) c_dzl_shortcut_manager_prepend_search_path; 2113 void function(DzlShortcutManager* self) c_dzl_shortcut_manager_queue_reload; 2114 void function(DzlShortcutManager* self, GCancellable* cancellable) c_dzl_shortcut_manager_reload; 2115 void function(DzlShortcutManager* self, const(char)* directory) c_dzl_shortcut_manager_remove_search_path; 2116 void function(DzlShortcutManager* self, DzlShortcutTheme* theme) c_dzl_shortcut_manager_set_theme; 2117 void function(DzlShortcutManager* self, const(char)* themeName) c_dzl_shortcut_manager_set_theme_name; 2118 void function(DzlShortcutManager* self, const(char)* userDir) c_dzl_shortcut_manager_set_user_dir; 2119 2120 // dazzle.ShortcutModel 2121 2122 GType function() c_dzl_shortcut_model_get_type; 2123 GtkTreeModel* function() c_dzl_shortcut_model_new; 2124 DzlShortcutManager* function(DzlShortcutModel* self) c_dzl_shortcut_model_get_manager; 2125 DzlShortcutTheme* function(DzlShortcutModel* self) c_dzl_shortcut_model_get_theme; 2126 void function(DzlShortcutModel* self) c_dzl_shortcut_model_rebuild; 2127 void function(DzlShortcutModel* self, GtkTreeIter* iter, DzlShortcutChord* chord) c_dzl_shortcut_model_set_chord; 2128 void function(DzlShortcutModel* self, DzlShortcutManager* manager) c_dzl_shortcut_model_set_manager; 2129 void function(DzlShortcutModel* self, DzlShortcutTheme* theme) c_dzl_shortcut_model_set_theme; 2130 2131 // dazzle.ShortcutSimpleLabel 2132 2133 GType function() c_dzl_shortcut_simple_label_get_type; 2134 GtkWidget* function() c_dzl_shortcut_simple_label_new; 2135 const(char)* function(DzlShortcutSimpleLabel* self) c_dzl_shortcut_simple_label_get_accel; 2136 const(char)* function(DzlShortcutSimpleLabel* self) c_dzl_shortcut_simple_label_get_action; 2137 const(char)* function(DzlShortcutSimpleLabel* self) c_dzl_shortcut_simple_label_get_command; 2138 const(char)* function(DzlShortcutSimpleLabel* self) c_dzl_shortcut_simple_label_get_title; 2139 void function(DzlShortcutSimpleLabel* self, const(char)* accel) c_dzl_shortcut_simple_label_set_accel; 2140 void function(DzlShortcutSimpleLabel* self, const(char)* action) c_dzl_shortcut_simple_label_set_action; 2141 void function(DzlShortcutSimpleLabel* self, const(char)* command) c_dzl_shortcut_simple_label_set_command; 2142 void function(DzlShortcutSimpleLabel* self, const(char)* title) c_dzl_shortcut_simple_label_set_title; 2143 2144 // dazzle.ShortcutTheme 2145 2146 GType function() c_dzl_shortcut_theme_get_type; 2147 DzlShortcutTheme* function(const(char)* name) c_dzl_shortcut_theme_new; 2148 void function(DzlShortcutTheme* self, const(char)* accelerator, const(char)* command) c_dzl_shortcut_theme_add_command; 2149 void function(DzlShortcutTheme* self, DzlShortcutContext* context) c_dzl_shortcut_theme_add_context; 2150 void function(DzlShortcutTheme* self, const(char)* path) c_dzl_shortcut_theme_add_css_resource; 2151 DzlShortcutContext* function(DzlShortcutTheme* self, const(char)* name) c_dzl_shortcut_theme_find_context_by_name; 2152 DzlShortcutContext* function(DzlShortcutTheme* self, GtkWidget* widget) c_dzl_shortcut_theme_find_default_context; 2153 DzlShortcutChord* function(DzlShortcutTheme* self, const(char)* detailedActionName) c_dzl_shortcut_theme_get_chord_for_action; 2154 DzlShortcutChord* function(DzlShortcutTheme* self, const(char)* command) c_dzl_shortcut_theme_get_chord_for_command; 2155 const(char)* function(DzlShortcutTheme* self) c_dzl_shortcut_theme_get_name; 2156 DzlShortcutTheme* function(DzlShortcutTheme* self) c_dzl_shortcut_theme_get_parent; 2157 const(char)* function(DzlShortcutTheme* self) c_dzl_shortcut_theme_get_parent_name; 2158 const(char)* function(DzlShortcutTheme* self) c_dzl_shortcut_theme_get_subtitle; 2159 const(char)* function(DzlShortcutTheme* self) c_dzl_shortcut_theme_get_title; 2160 int function(DzlShortcutTheme* self, const(char)* data, ptrdiff_t len, GError** err) c_dzl_shortcut_theme_load_from_data; 2161 int function(DzlShortcutTheme* self, GFile* file, GCancellable* cancellable, GError** err) c_dzl_shortcut_theme_load_from_file; 2162 int function(DzlShortcutTheme* self, const(char)* path, GCancellable* cancellable, GError** err) c_dzl_shortcut_theme_load_from_path; 2163 void function(DzlShortcutTheme* self, const(char)* path) c_dzl_shortcut_theme_remove_css_resource; 2164 int function(DzlShortcutTheme* self, GFile* file, GCancellable* cancellable, GError** err) c_dzl_shortcut_theme_save_to_file; 2165 int function(DzlShortcutTheme* self, const(char)* path, GCancellable* cancellable, GError** err) c_dzl_shortcut_theme_save_to_path; 2166 int function(DzlShortcutTheme* self, GOutputStream* stream, GCancellable* cancellable, GError** err) c_dzl_shortcut_theme_save_to_stream; 2167 void function(DzlShortcutTheme* self, const(char)* detailedActionName, const(char)* accel, DzlShortcutPhase phase) c_dzl_shortcut_theme_set_accel_for_action; 2168 void function(DzlShortcutTheme* self, const(char)* command, const(char)* accel, DzlShortcutPhase phase) c_dzl_shortcut_theme_set_accel_for_command; 2169 void function(DzlShortcutTheme* self, const(char)* detailedActionName, DzlShortcutChord* chord, DzlShortcutPhase phase) c_dzl_shortcut_theme_set_chord_for_action; 2170 void function(DzlShortcutTheme* self, const(char)* command, DzlShortcutChord* chord, DzlShortcutPhase phase) c_dzl_shortcut_theme_set_chord_for_command; 2171 void function(DzlShortcutTheme* self, const(char)* parentName) c_dzl_shortcut_theme_set_parent_name; 2172 2173 // dazzle.ShortcutThemeEditor 2174 2175 GType function() c_dzl_shortcut_theme_editor_get_type; 2176 GtkWidget* function() c_dzl_shortcut_theme_editor_new; 2177 DzlShortcutTheme* function(DzlShortcutThemeEditor* self) c_dzl_shortcut_theme_editor_get_theme; 2178 void function(DzlShortcutThemeEditor* self, DzlShortcutTheme* theme) c_dzl_shortcut_theme_editor_set_theme; 2179 2180 // dazzle.ShortcutTooltip 2181 2182 GType function() c_dzl_shortcut_tooltip_get_type; 2183 DzlShortcutTooltip* function() c_dzl_shortcut_tooltip_new; 2184 const(char)* function(DzlShortcutTooltip* self) c_dzl_shortcut_tooltip_get_accel; 2185 const(char)* function(DzlShortcutTooltip* self) c_dzl_shortcut_tooltip_get_command_id; 2186 const(char)* function(DzlShortcutTooltip* self) c_dzl_shortcut_tooltip_get_title; 2187 GtkWidget* function(DzlShortcutTooltip* self) c_dzl_shortcut_tooltip_get_widget; 2188 void function(DzlShortcutTooltip* self, const(char)* accel) c_dzl_shortcut_tooltip_set_accel; 2189 void function(DzlShortcutTooltip* self, const(char)* commandId) c_dzl_shortcut_tooltip_set_command_id; 2190 void function(DzlShortcutTooltip* self, const(char)* title) c_dzl_shortcut_tooltip_set_title; 2191 void function(DzlShortcutTooltip* self, GtkWidget* widget) c_dzl_shortcut_tooltip_set_widget; 2192 2193 // dazzle.ShortcutsGroup 2194 2195 GType function() c_dzl_shortcuts_group_get_type; 2196 2197 // dazzle.ShortcutsSection 2198 2199 GType function() c_dzl_shortcuts_section_get_type; 2200 2201 // dazzle.ShortcutsShortcut 2202 2203 GType function() c_dzl_shortcuts_shortcut_get_type; 2204 2205 // dazzle.ShortcutsWindow 2206 2207 GType function() c_dzl_shortcuts_window_get_type; 2208 2209 // dazzle.SignalGroup 2210 2211 GType function() c_dzl_signal_group_get_type; 2212 DzlSignalGroup* function(GType targetType) c_dzl_signal_group_new; 2213 void function(DzlSignalGroup* self) c_dzl_signal_group_block; 2214 void function(DzlSignalGroup* self, const(char)* detailedSignal, GCallback cHandler, void* data) c_dzl_signal_group_connect; 2215 void function(DzlSignalGroup* self, const(char)* detailedSignal, GCallback cHandler, void* data) c_dzl_signal_group_connect_after; 2216 void function(DzlSignalGroup* self, const(char)* detailedSignal, GCallback cHandler, void* data, GClosureNotify notify, GConnectFlags flags) c_dzl_signal_group_connect_data; 2217 void function(DzlSignalGroup* self, const(char)* detailedSignal, GCallback cHandler, void* object, GConnectFlags flags) c_dzl_signal_group_connect_object; 2218 void function(DzlSignalGroup* self, const(char)* detailedSignal, GCallback cHandler, void* data) c_dzl_signal_group_connect_swapped; 2219 void* function(DzlSignalGroup* self) c_dzl_signal_group_get_target; 2220 void function(DzlSignalGroup* self, void* target) c_dzl_signal_group_set_target; 2221 void function(DzlSignalGroup* self) c_dzl_signal_group_unblock; 2222 2223 // dazzle.SimpleLabel 2224 2225 GType function() c_dzl_simple_label_get_type; 2226 GtkWidget* function(const(char)* label) c_dzl_simple_label_new; 2227 const(char)* function(DzlSimpleLabel* self) c_dzl_simple_label_get_label; 2228 int function(DzlSimpleLabel* self) c_dzl_simple_label_get_width_chars; 2229 float function(DzlSimpleLabel* self) c_dzl_simple_label_get_xalign; 2230 void function(DzlSimpleLabel* self, const(char)* label) c_dzl_simple_label_set_label; 2231 void function(DzlSimpleLabel* self, int widthChars) c_dzl_simple_label_set_width_chars; 2232 void function(DzlSimpleLabel* self, float xalign) c_dzl_simple_label_set_xalign; 2233 2234 // dazzle.SimplePopover 2235 2236 GType function() c_dzl_simple_popover_get_type; 2237 GtkWidget* function() c_dzl_simple_popover_new; 2238 const(char)* function(DzlSimplePopover* self) c_dzl_simple_popover_get_button_text; 2239 const(char)* function(DzlSimplePopover* self) c_dzl_simple_popover_get_message; 2240 int function(DzlSimplePopover* self) c_dzl_simple_popover_get_ready; 2241 const(char)* function(DzlSimplePopover* self) c_dzl_simple_popover_get_text; 2242 const(char)* function(DzlSimplePopover* self) c_dzl_simple_popover_get_title; 2243 void function(DzlSimplePopover* self, const(char)* buttonText) c_dzl_simple_popover_set_button_text; 2244 void function(DzlSimplePopover* self, const(char)* message) c_dzl_simple_popover_set_message; 2245 void function(DzlSimplePopover* self, int ready) c_dzl_simple_popover_set_ready; 2246 void function(DzlSimplePopover* self, const(char)* text) c_dzl_simple_popover_set_text; 2247 void function(DzlSimplePopover* self, const(char)* title) c_dzl_simple_popover_set_title; 2248 2249 // dazzle.Slider 2250 2251 GType function() c_dzl_slider_get_type; 2252 GtkWidget* function() c_dzl_slider_new; 2253 void function(DzlSlider* self, GtkWidget* widget, DzlSliderPosition position) c_dzl_slider_add_slider; 2254 DzlSliderPosition function(DzlSlider* self) c_dzl_slider_get_position; 2255 void function(DzlSlider* self, DzlSliderPosition position) c_dzl_slider_set_position; 2256 2257 // dazzle.StackList 2258 2259 GType function() c_dzl_stack_list_get_type; 2260 GtkWidget* function() c_dzl_stack_list_new; 2261 void function(DzlStackList* self) c_dzl_stack_list_clear; 2262 uint function(DzlStackList* self) c_dzl_stack_list_get_depth; 2263 GListModel* function(DzlStackList* self) c_dzl_stack_list_get_model; 2264 void function(DzlStackList* self) c_dzl_stack_list_pop; 2265 void function(DzlStackList* self, GtkWidget* header, GListModel* model, DzlStackListCreateWidgetFunc createWidgetFunc, void* userData, GDestroyNotify userDataFreeFunc) c_dzl_stack_list_push; 2266 2267 // dazzle.StateMachine 2268 2269 GType function() c_dzl_state_machine_get_type; 2270 DzlStateMachine* function() c_dzl_state_machine_new; 2271 void function(GtkBuildableIface* iface) c_dzl_state_machine_buildable_iface_init; 2272 void function(DzlStateMachine* self, const(char)* state, void* sourceObject, const(char)* sourceProperty, void* targetObject, const(char)* targetProperty, GBindingFlags flags) c_dzl_state_machine_add_binding; 2273 void function(DzlStateMachine* self, const(char)* state, void* object, const(char)* property, ... ) c_dzl_state_machine_add_property; 2274 void function(DzlStateMachine* self, const(char)* state, void* object, const(char)* property, void* varArgs) c_dzl_state_machine_add_property_valist; 2275 void function(DzlStateMachine* self, const(char)* state, void* object, const(char)* property, GValue* value) c_dzl_state_machine_add_propertyv; 2276 void function(DzlStateMachine* self, const(char)* state, GtkWidget* widget, const(char)* style) c_dzl_state_machine_add_style; 2277 void function(DzlStateMachine* self, const(char)* state, void* source, const(char)* detailedSignal, GCallback callback, void* userData, GConnectFlags flags) c_dzl_state_machine_connect_object; 2278 GAction* function(DzlStateMachine* self, const(char)* name) c_dzl_state_machine_create_action; 2279 const(char)* function(DzlStateMachine* self) c_dzl_state_machine_get_state; 2280 int function(DzlStateMachine* self, const(char)* state) c_dzl_state_machine_is_state; 2281 void function(DzlStateMachine* self, const(char)* state) c_dzl_state_machine_set_state; 2282 2283 // dazzle.Suggestion 2284 2285 GType function() c_dzl_suggestion_get_type; 2286 DzlSuggestion* function() c_dzl_suggestion_new; 2287 GIcon* function(DzlSuggestion* self) c_dzl_suggestion_get_icon; 2288 const(char)* function(DzlSuggestion* self) c_dzl_suggestion_get_icon_name; 2289 cairo_surface_t* function(DzlSuggestion* self, GtkWidget* widget) c_dzl_suggestion_get_icon_surface; 2290 const(char)* function(DzlSuggestion* self) c_dzl_suggestion_get_id; 2291 const(char)* function(DzlSuggestion* self) c_dzl_suggestion_get_subtitle; 2292 const(char)* function(DzlSuggestion* self) c_dzl_suggestion_get_title; 2293 char* function(DzlSuggestion* self, const(char)* typedText) c_dzl_suggestion_replace_typed_text; 2294 void function(DzlSuggestion* self, const(char)* iconName) c_dzl_suggestion_set_icon_name; 2295 void function(DzlSuggestion* self, const(char)* id) c_dzl_suggestion_set_id; 2296 void function(DzlSuggestion* self, const(char)* subtitle) c_dzl_suggestion_set_subtitle; 2297 void function(DzlSuggestion* self, const(char)* title) c_dzl_suggestion_set_title; 2298 char* function(DzlSuggestion* self, const(char)* typedText) c_dzl_suggestion_suggest_suffix; 2299 2300 // dazzle.SuggestionButton 2301 2302 GType function() c_dzl_suggestion_button_get_type; 2303 GtkWidget* function() c_dzl_suggestion_button_new; 2304 GtkButton* function(DzlSuggestionButton* self) c_dzl_suggestion_button_get_button; 2305 DzlSuggestionEntry* function(DzlSuggestionButton* self) c_dzl_suggestion_button_get_entry; 2306 2307 // dazzle.SuggestionEntry 2308 2309 GType function() c_dzl_suggestion_entry_get_type; 2310 GtkWidget* function() c_dzl_suggestion_entry_new; 2311 void function(DzlSuggestionEntry* self, GdkRectangle* area, int* isAbsolute, void* userData) c_dzl_suggestion_entry_default_position_func; 2312 int function(DzlSuggestionEntry* self) c_dzl_suggestion_entry_get_activate_on_single_click; 2313 int function(DzlSuggestionEntry* self) c_dzl_suggestion_entry_get_compact; 2314 GListModel* function(DzlSuggestionEntry* self) c_dzl_suggestion_entry_get_model; 2315 GtkWidget* function(DzlSuggestionEntry* self) c_dzl_suggestion_entry_get_popover; 2316 DzlSuggestion* function(DzlSuggestionEntry* self) c_dzl_suggestion_entry_get_suggestion; 2317 const(char)* function(DzlSuggestionEntry* self) c_dzl_suggestion_entry_get_typed_text; 2318 void function(DzlSuggestionEntry* self) c_dzl_suggestion_entry_hide_suggestions; 2319 void function(DzlSuggestionEntry* self, int activateOnSingleClick) c_dzl_suggestion_entry_set_activate_on_single_click; 2320 void function(DzlSuggestionEntry* self, int compact) c_dzl_suggestion_entry_set_compact; 2321 void function(DzlSuggestionEntry* self, GListModel* model) c_dzl_suggestion_entry_set_model; 2322 void function(DzlSuggestionEntry* self, DzlSuggestionPositionFunc func, void* funcData, GDestroyNotify funcDataDestroy) c_dzl_suggestion_entry_set_position_func; 2323 void function(DzlSuggestionEntry* self, DzlSuggestion* suggestion) c_dzl_suggestion_entry_set_suggestion; 2324 void function(DzlSuggestionEntry* self, GdkRectangle* area, int* isAbsolute, void* userData) c_dzl_suggestion_entry_window_position_func; 2325 2326 // dazzle.SuggestionEntryBuffer 2327 2328 GType function() c_dzl_suggestion_entry_buffer_get_type; 2329 DzlSuggestionEntryBuffer* function() c_dzl_suggestion_entry_buffer_new; 2330 void function(DzlSuggestionEntryBuffer* self) c_dzl_suggestion_entry_buffer_clear; 2331 void function(DzlSuggestionEntryBuffer* self) c_dzl_suggestion_entry_buffer_commit; 2332 DzlSuggestion* function(DzlSuggestionEntryBuffer* self) c_dzl_suggestion_entry_buffer_get_suggestion; 2333 uint function(DzlSuggestionEntryBuffer* self) c_dzl_suggestion_entry_buffer_get_typed_length; 2334 const(char)* function(DzlSuggestionEntryBuffer* self) c_dzl_suggestion_entry_buffer_get_typed_text; 2335 void function(DzlSuggestionEntryBuffer* self, DzlSuggestion* suggestion) c_dzl_suggestion_entry_buffer_set_suggestion; 2336 2337 // dazzle.SuggestionPopover 2338 2339 GType function() c_dzl_suggestion_popover_get_type; 2340 GtkWidget* function() c_dzl_suggestion_popover_new; 2341 void function(DzlSuggestionPopover* self) c_dzl_suggestion_popover_activate_selected; 2342 GListModel* function(DzlSuggestionPopover* self) c_dzl_suggestion_popover_get_model; 2343 GtkWidget* function(DzlSuggestionPopover* self) c_dzl_suggestion_popover_get_relative_to; 2344 DzlSuggestion* function(DzlSuggestionPopover* self) c_dzl_suggestion_popover_get_selected; 2345 void function(DzlSuggestionPopover* self, int amount) c_dzl_suggestion_popover_move_by; 2346 void function(DzlSuggestionPopover* self) c_dzl_suggestion_popover_popdown; 2347 void function(DzlSuggestionPopover* self) c_dzl_suggestion_popover_popup; 2348 void function(DzlSuggestionPopover* self, GListModel* model) c_dzl_suggestion_popover_set_model; 2349 void function(DzlSuggestionPopover* self, GtkWidget* widget) c_dzl_suggestion_popover_set_relative_to; 2350 void function(DzlSuggestionPopover* self, DzlSuggestion* suggestion) c_dzl_suggestion_popover_set_selected; 2351 2352 // dazzle.SuggestionRow 2353 2354 GType function() c_dzl_suggestion_row_get_type; 2355 GtkWidget* function() c_dzl_suggestion_row_new; 2356 DzlSuggestion* function(DzlSuggestionRow* self) c_dzl_suggestion_row_get_suggestion; 2357 void function(DzlSuggestionRow* self, DzlSuggestion* suggestion) c_dzl_suggestion_row_set_suggestion; 2358 2359 // dazzle.Tab 2360 2361 GType function() c_dzl_tab_get_type; 2362 int function(DzlTab* self) c_dzl_tab_get_active; 2363 int function(DzlTab* self) c_dzl_tab_get_can_close; 2364 GtkPositionType function(DzlTab* self) c_dzl_tab_get_edge; 2365 const(char)* function(DzlTab* self) c_dzl_tab_get_icon_name; 2366 DzlTabStyle function(DzlTab* self) c_dzl_tab_get_style; 2367 const(char)* function(DzlTab* self) c_dzl_tab_get_title; 2368 GtkWidget* function(DzlTab* self) c_dzl_tab_get_widget; 2369 void function(DzlTab* self, int active) c_dzl_tab_set_active; 2370 void function(DzlTab* self, int canClose) c_dzl_tab_set_can_close; 2371 void function(DzlTab* self, GtkPositionType edge) c_dzl_tab_set_edge; 2372 void function(DzlTab* self, GIcon* gicon) c_dzl_tab_set_gicon; 2373 void function(DzlTab* self, const(char)* iconName) c_dzl_tab_set_icon_name; 2374 void function(DzlTab* self, DzlTabStyle style) c_dzl_tab_set_style; 2375 void function(DzlTab* self, const(char)* title) c_dzl_tab_set_title; 2376 void function(DzlTab* self, GtkWidget* widget) c_dzl_tab_set_widget; 2377 2378 // dazzle.TabStrip 2379 2380 GType function() c_dzl_tab_strip_get_type; 2381 GtkWidget* function() c_dzl_tab_strip_new; 2382 void function(DzlTabStrip* self, GtkWidget* widget) c_dzl_tab_strip_add_control; 2383 GtkPositionType function(DzlTabStrip* self) c_dzl_tab_strip_get_edge; 2384 GtkStack* function(DzlTabStrip* self) c_dzl_tab_strip_get_stack; 2385 DzlTabStyle function(DzlTabStrip* self) c_dzl_tab_strip_get_style; 2386 void function(DzlTabStrip* self, GtkPositionType edge) c_dzl_tab_strip_set_edge; 2387 void function(DzlTabStrip* self, GtkStack* stack) c_dzl_tab_strip_set_stack; 2388 void function(DzlTabStrip* self, DzlTabStyle style) c_dzl_tab_strip_set_style; 2389 2390 // dazzle.TaskCache 2391 2392 GType function() c_dzl_task_cache_get_type; 2393 DzlTaskCache* function(GHashFunc keyHashFunc, GEqualFunc keyEqualFunc, GBoxedCopyFunc keyCopyFunc, GBoxedFreeFunc keyDestroyFunc, GBoxedCopyFunc valueCopyFunc, GBoxedFreeFunc valueFreeFunc, long timeToLiveMsec, DzlTaskCacheCallback populateCallback, void* populateCallbackData, GDestroyNotify populateCallbackDataDestroy) c_dzl_task_cache_new; 2394 int function(DzlTaskCache* self, void* key) c_dzl_task_cache_evict; 2395 void function(DzlTaskCache* self) c_dzl_task_cache_evict_all; 2396 void function(DzlTaskCache* self, void* key, int forceUpdate, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_dzl_task_cache_get_async; 2397 void* function(DzlTaskCache* self, GAsyncResult* result, GError** err) c_dzl_task_cache_get_finish; 2398 GPtrArray* function(DzlTaskCache* self) c_dzl_task_cache_get_values; 2399 void* function(DzlTaskCache* self, void* key) c_dzl_task_cache_peek; 2400 void function(DzlTaskCache* self, const(char)* name) c_dzl_task_cache_set_name; 2401 2402 // dazzle.ThemeManager 2403 2404 GType function() c_dzl_theme_manager_get_type; 2405 DzlThemeManager* function() c_dzl_theme_manager_new; 2406 void function(DzlThemeManager* self, const(char)* resourcePath) c_dzl_theme_manager_add_resources; 2407 void function(DzlThemeManager* self, const(char)* resourcePath) c_dzl_theme_manager_remove_resources; 2408 2409 // dazzle.ThreeGrid 2410 2411 GType function() c_dzl_three_grid_get_type; 2412 GtkWidget* function() c_dzl_three_grid_new; 2413 2414 // dazzle.Tree 2415 2416 GType function() c_dzl_tree_get_type; 2417 void function(DzlTree* self, DzlTreeBuilder* builder) c_dzl_tree_add_builder; 2418 void function(DzlTree* self, DzlTreeNode* node) c_dzl_tree_expand_to_node; 2419 DzlTreeNode* function(DzlTree* self, DzlTreeNode* node, DzlTreeFindFunc findFunc, void* userData) c_dzl_tree_find_child_node; 2420 DzlTreeNode* function(DzlTree* self, GEqualFunc equalFunc, void* key) c_dzl_tree_find_custom; 2421 DzlTreeNode* function(DzlTree* self, GObject* item) c_dzl_tree_find_item; 2422 GMenuModel* function(DzlTree* self) c_dzl_tree_get_context_menu; 2423 DzlTreeNode* function(DzlTree* self) c_dzl_tree_get_root; 2424 DzlTreeNode* function(DzlTree* self) c_dzl_tree_get_selected; 2425 int function(DzlTree* self) c_dzl_tree_get_show_icons; 2426 void function(DzlTree* self) c_dzl_tree_rebuild; 2427 void function(DzlTree* self, DzlTreeBuilder* builder) c_dzl_tree_remove_builder; 2428 void function(DzlTree* self, DzlTreeNode* node) c_dzl_tree_scroll_to_node; 2429 void function(DzlTree* self, GMenuModel* contextMenu) c_dzl_tree_set_context_menu; 2430 void function(DzlTree* self, DzlTreeFilterFunc filterFunc, void* filterData, GDestroyNotify filterDataDestroy) c_dzl_tree_set_filter; 2431 void function(DzlTree* self, DzlTreeNode* node) c_dzl_tree_set_root; 2432 void function(DzlTree* self, int showIcons) c_dzl_tree_set_show_icons; 2433 void function(DzlTree* self) c_dzl_tree_unselect_all; 2434 2435 // dazzle.TreeBuilder 2436 2437 GType function() c_dzl_tree_builder_get_type; 2438 DzlTreeBuilder* function() c_dzl_tree_builder_new; 2439 DzlTree* function(DzlTreeBuilder* builder) c_dzl_tree_builder_get_tree; 2440 2441 // dazzle.TreeNode 2442 2443 GType function() c_dzl_tree_node_get_type; 2444 DzlTreeNode* function() c_dzl_tree_node_new; 2445 void function(DzlTreeNode* self, const(char)* emblemName) c_dzl_tree_node_add_emblem; 2446 void function(DzlTreeNode* node, DzlTreeNode* child) c_dzl_tree_node_append; 2447 void function(DzlTreeNode* self) c_dzl_tree_node_clear_emblems; 2448 void function(DzlTreeNode* node) c_dzl_tree_node_collapse; 2449 int function(DzlTreeNode* node, int expandAncestors) c_dzl_tree_node_expand; 2450 void function(DzlTreeNode* node, GdkRectangle* area) c_dzl_tree_node_get_area; 2451 int function(DzlTreeNode* self) c_dzl_tree_node_get_children_possible; 2452 int function(DzlTreeNode* node) c_dzl_tree_node_get_expanded; 2453 GdkRGBA* function(DzlTreeNode* self) c_dzl_tree_node_get_foreground_rgba; 2454 GIcon* function(DzlTreeNode* self) c_dzl_tree_node_get_gicon; 2455 const(char)* function(DzlTreeNode* node) c_dzl_tree_node_get_icon_name; 2456 GObject* function(DzlTreeNode* node) c_dzl_tree_node_get_item; 2457 int function(DzlTreeNode* node, GtkTreeIter* iter) c_dzl_tree_node_get_iter; 2458 DzlTreeNode* function(DzlTreeNode* node) c_dzl_tree_node_get_parent; 2459 GtkTreePath* function(DzlTreeNode* node) c_dzl_tree_node_get_path; 2460 int function(DzlTreeNode* self) c_dzl_tree_node_get_reset_on_collapse; 2461 const(char)* function(DzlTreeNode* node) c_dzl_tree_node_get_text; 2462 DzlTree* function(DzlTreeNode* node) c_dzl_tree_node_get_tree; 2463 int function(DzlTreeNode* self) c_dzl_tree_node_get_use_dim_label; 2464 int function(DzlTreeNode* self) c_dzl_tree_node_get_use_markup; 2465 int function(DzlTreeNode* self, const(char)* emblemName) c_dzl_tree_node_has_emblem; 2466 void function(DzlTreeNode* self, DzlTreeNode* child, uint position) c_dzl_tree_node_insert; 2467 void function(DzlTreeNode* node, DzlTreeNode* child, DzlTreeNodeCompareFunc compareFunc, void* userData) c_dzl_tree_node_insert_sorted; 2468 void function(DzlTreeNode* node) c_dzl_tree_node_invalidate; 2469 int function(DzlTreeNode* node) c_dzl_tree_node_is_root; 2470 uint function(DzlTreeNode* self) c_dzl_tree_node_n_children; 2471 DzlTreeNode* function(DzlTreeNode* self, uint nth) c_dzl_tree_node_nth_child; 2472 void function(DzlTreeNode* node, DzlTreeNode* child) c_dzl_tree_node_prepend; 2473 void function(DzlTreeNode* self) c_dzl_tree_node_rebuild; 2474 void function(DzlTreeNode* node, DzlTreeNode* child) c_dzl_tree_node_remove; 2475 void function(DzlTreeNode* self, const(char)* emblemName) c_dzl_tree_node_remove_emblem; 2476 void function(DzlTreeNode* node) c_dzl_tree_node_select; 2477 void function(DzlTreeNode* self, int childrenPossible) c_dzl_tree_node_set_children_possible; 2478 void function(DzlTreeNode* self, const(char)* emblems) c_dzl_tree_node_set_emblems; 2479 void function(DzlTreeNode* self, GdkRGBA* foregroundRgba) c_dzl_tree_node_set_foreground_rgba; 2480 void function(DzlTreeNode* self, GIcon* icon) c_dzl_tree_node_set_gicon; 2481 void function(DzlTreeNode* node, const(char)* iconName) c_dzl_tree_node_set_icon_name; 2482 void function(DzlTreeNode* node, GObject* item) c_dzl_tree_node_set_item; 2483 void function(DzlTreeNode* self, int resetOnCollapse) c_dzl_tree_node_set_reset_on_collapse; 2484 void function(DzlTreeNode* node, const(char)* text) c_dzl_tree_node_set_text; 2485 void function(DzlTreeNode* self, int useDimLabel) c_dzl_tree_node_set_use_dim_label; 2486 void function(DzlTreeNode* self, int useMarkup) c_dzl_tree_node_set_use_markup; 2487 void function(DzlTreeNode* node, GtkPopover* popover) c_dzl_tree_node_show_popover; 2488 2489 // dazzle.Trie 2490 2491 GType function() c_dzl_trie_get_type; 2492 DzlTrie* function(GDestroyNotify valueDestroy) c_dzl_trie_new; 2493 void function(DzlTrie* trie) c_dzl_trie_destroy; 2494 void function(DzlTrie* trie, const(char)* key, void* value) c_dzl_trie_insert; 2495 void* function(DzlTrie* trie, const(char)* key) c_dzl_trie_lookup; 2496 DzlTrie* function(DzlTrie* trie) c_dzl_trie_ref; 2497 int function(DzlTrie* trie, const(char)* key) c_dzl_trie_remove; 2498 void function(DzlTrie* trie, const(char)* key, GTraverseType order, GTraverseFlags flags, int maxDepth, DzlTrieTraverseFunc func, void* userData) c_dzl_trie_traverse; 2499 void function(DzlTrie* trie) c_dzl_trie_unref; 2500 2501 // dazzle.WidgetActionGroup 2502 2503 GType function() c_dzl_widget_action_group_get_type; 2504 void function(void* widget, const(char)* groupName) c_dzl_widget_action_group_attach; 2505 GActionGroup* function(GtkWidget* widget) c_dzl_widget_action_group_new; 2506 void function(DzlWidgetActionGroup* self, const(char)* actionName, int enabled) c_dzl_widget_action_group_set_action_enabled; 2507 } 2508 2509 2510 // dazzle.Animation 2511 2512 alias c_dzl_animation_get_type dzl_animation_get_type; 2513 alias c_dzl_animation_calculate_duration dzl_animation_calculate_duration; 2514 alias c_dzl_animation_add_property dzl_animation_add_property; 2515 alias c_dzl_animation_start dzl_animation_start; 2516 alias c_dzl_animation_stop dzl_animation_stop; 2517 2518 // dazzle.Application 2519 2520 alias c_dzl_application_get_type dzl_application_get_type; 2521 alias c_dzl_application_new dzl_application_new; 2522 alias c_dzl_application_add_resources dzl_application_add_resources; 2523 alias c_dzl_application_get_menu_by_id dzl_application_get_menu_by_id; 2524 alias c_dzl_application_get_menu_manager dzl_application_get_menu_manager; 2525 alias c_dzl_application_get_shortcut_manager dzl_application_get_shortcut_manager; 2526 alias c_dzl_application_get_theme_manager dzl_application_get_theme_manager; 2527 alias c_dzl_application_remove_resources dzl_application_remove_resources; 2528 2529 // dazzle.ApplicationWindow 2530 2531 alias c_dzl_application_window_get_type dzl_application_window_get_type; 2532 alias c_dzl_application_window_get_fullscreen dzl_application_window_get_fullscreen; 2533 alias c_dzl_application_window_get_titlebar dzl_application_window_get_titlebar; 2534 alias c_dzl_application_window_set_fullscreen dzl_application_window_set_fullscreen; 2535 alias c_dzl_application_window_set_titlebar dzl_application_window_set_titlebar; 2536 2537 // dazzle.Bin 2538 2539 alias c_dzl_bin_get_type dzl_bin_get_type; 2540 alias c_dzl_bin_new dzl_bin_new; 2541 2542 // dazzle.BindingGroup 2543 2544 alias c_dzl_binding_group_get_type dzl_binding_group_get_type; 2545 alias c_dzl_binding_group_new dzl_binding_group_new; 2546 alias c_dzl_binding_group_bind dzl_binding_group_bind; 2547 alias c_dzl_binding_group_bind_full dzl_binding_group_bind_full; 2548 alias c_dzl_binding_group_bind_with_closures dzl_binding_group_bind_with_closures; 2549 alias c_dzl_binding_group_get_source dzl_binding_group_get_source; 2550 alias c_dzl_binding_group_set_source dzl_binding_group_set_source; 2551 2552 // dazzle.BoldingLabel 2553 2554 alias c_dzl_bolding_label_get_type dzl_bolding_label_get_type; 2555 alias c_dzl_bolding_label_new dzl_bolding_label_new; 2556 alias c_dzl_bolding_label_new_with_mnemonic dzl_bolding_label_new_with_mnemonic; 2557 alias c_dzl_bolding_label_set_bold dzl_bolding_label_set_bold; 2558 alias c_dzl_bolding_label_set_weight dzl_bolding_label_set_weight; 2559 2560 // dazzle.Box 2561 2562 alias c_dzl_box_get_type dzl_box_get_type; 2563 alias c_dzl_box_new dzl_box_new; 2564 alias c_dzl_box_get_max_width_request dzl_box_get_max_width_request; 2565 alias c_dzl_box_get_nth_child dzl_box_get_nth_child; 2566 alias c_dzl_box_set_max_width_request dzl_box_set_max_width_request; 2567 2568 // dazzle.BoxTheatric 2569 2570 alias c_dzl_box_theatric_get_type dzl_box_theatric_get_type; 2571 2572 // dazzle.CenteringBin 2573 2574 alias c_dzl_centering_bin_get_type dzl_centering_bin_get_type; 2575 alias c_dzl_centering_bin_new dzl_centering_bin_new; 2576 2577 // dazzle.ChildPropertyAction 2578 2579 alias c_dzl_child_property_action_get_type dzl_child_property_action_get_type; 2580 alias c_dzl_child_property_action_new dzl_child_property_action_new; 2581 2582 // dazzle.ColumnLayout 2583 2584 alias c_dzl_column_layout_get_type dzl_column_layout_get_type; 2585 alias c_dzl_column_layout_new dzl_column_layout_new; 2586 alias c_dzl_column_layout_get_column_spacing dzl_column_layout_get_column_spacing; 2587 alias c_dzl_column_layout_get_column_width dzl_column_layout_get_column_width; 2588 alias c_dzl_column_layout_get_max_columns dzl_column_layout_get_max_columns; 2589 alias c_dzl_column_layout_get_row_spacing dzl_column_layout_get_row_spacing; 2590 alias c_dzl_column_layout_set_column_spacing dzl_column_layout_set_column_spacing; 2591 alias c_dzl_column_layout_set_column_width dzl_column_layout_set_column_width; 2592 alias c_dzl_column_layout_set_max_columns dzl_column_layout_set_max_columns; 2593 alias c_dzl_column_layout_set_row_spacing dzl_column_layout_set_row_spacing; 2594 2595 // dazzle.Counter 2596 2597 alias c_dzl_counter_get dzl_counter_get; 2598 alias c_dzl_counter_reset dzl_counter_reset; 2599 2600 // dazzle.CounterArena 2601 2602 alias c_dzl_counter_arena_get_type dzl_counter_arena_get_type; 2603 alias c_dzl_counter_arena_new_for_pid dzl_counter_arena_new_for_pid; 2604 alias c_dzl_counter_arena_foreach dzl_counter_arena_foreach; 2605 alias c_dzl_counter_arena_ref dzl_counter_arena_ref; 2606 alias c_dzl_counter_arena_register dzl_counter_arena_register; 2607 alias c_dzl_counter_arena_unref dzl_counter_arena_unref; 2608 alias c_dzl_counter_arena_get_default dzl_counter_arena_get_default; 2609 2610 // dazzle.CountersWindow 2611 2612 alias c_dzl_counters_window_get_type dzl_counters_window_get_type; 2613 alias c_dzl_counters_window_new dzl_counters_window_new; 2614 alias c_dzl_counters_window_get_arena dzl_counters_window_get_arena; 2615 alias c_dzl_counters_window_set_arena dzl_counters_window_set_arena; 2616 2617 // dazzle.CpuGraph 2618 2619 alias c_dzl_cpu_graph_get_type dzl_cpu_graph_get_type; 2620 alias c_dzl_cpu_graph_new_full dzl_cpu_graph_new_full; 2621 2622 // dazzle.CpuModel 2623 2624 alias c_dzl_cpu_model_get_type dzl_cpu_model_get_type; 2625 alias c_dzl_cpu_model_new dzl_cpu_model_new; 2626 2627 // dazzle.CssProvider 2628 2629 alias c_dzl_css_provider_get_type dzl_css_provider_get_type; 2630 alias c_dzl_css_provider_new dzl_css_provider_new; 2631 2632 // dazzle.DirectoryModel 2633 2634 alias c_dzl_directory_model_get_type dzl_directory_model_get_type; 2635 alias c_dzl_directory_model_new dzl_directory_model_new; 2636 alias c_dzl_directory_model_get_directory dzl_directory_model_get_directory; 2637 alias c_dzl_directory_model_set_directory dzl_directory_model_set_directory; 2638 alias c_dzl_directory_model_set_visible_func dzl_directory_model_set_visible_func; 2639 2640 // dazzle.DirectoryReaper 2641 2642 alias c_dzl_directory_reaper_get_type dzl_directory_reaper_get_type; 2643 alias c_dzl_directory_reaper_new dzl_directory_reaper_new; 2644 alias c_dzl_directory_reaper_add_directory dzl_directory_reaper_add_directory; 2645 alias c_dzl_directory_reaper_add_file dzl_directory_reaper_add_file; 2646 alias c_dzl_directory_reaper_add_glob dzl_directory_reaper_add_glob; 2647 alias c_dzl_directory_reaper_execute dzl_directory_reaper_execute; 2648 alias c_dzl_directory_reaper_execute_async dzl_directory_reaper_execute_async; 2649 alias c_dzl_directory_reaper_execute_finish dzl_directory_reaper_execute_finish; 2650 2651 // dazzle.Dock 2652 2653 alias c_dzl_dock_get_type dzl_dock_get_type; 2654 2655 // dazzle.DockBin 2656 2657 alias c_dzl_dock_bin_get_type dzl_dock_bin_get_type; 2658 alias c_dzl_dock_bin_new dzl_dock_bin_new; 2659 alias c_dzl_dock_bin_get_bottom_edge dzl_dock_bin_get_bottom_edge; 2660 alias c_dzl_dock_bin_get_center_widget dzl_dock_bin_get_center_widget; 2661 alias c_dzl_dock_bin_get_left_edge dzl_dock_bin_get_left_edge; 2662 alias c_dzl_dock_bin_get_right_edge dzl_dock_bin_get_right_edge; 2663 alias c_dzl_dock_bin_get_top_edge dzl_dock_bin_get_top_edge; 2664 2665 // dazzle.DockBinEdge 2666 2667 alias c_dzl_dock_bin_edge_get_type dzl_dock_bin_edge_get_type; 2668 alias c_dzl_dock_bin_edge_get_edge dzl_dock_bin_edge_get_edge; 2669 2670 // dazzle.DockItem 2671 2672 alias c_dzl_dock_item_get_type dzl_dock_item_get_type; 2673 alias c_dzl_dock_item_adopt dzl_dock_item_adopt; 2674 alias c_dzl_dock_item_close dzl_dock_item_close; 2675 alias c_dzl_dock_item_emit_presented dzl_dock_item_emit_presented; 2676 alias c_dzl_dock_item_get_can_close dzl_dock_item_get_can_close; 2677 alias c_dzl_dock_item_get_can_minimize dzl_dock_item_get_can_minimize; 2678 alias c_dzl_dock_item_get_child_visible dzl_dock_item_get_child_visible; 2679 alias c_dzl_dock_item_get_icon_name dzl_dock_item_get_icon_name; 2680 alias c_dzl_dock_item_get_manager dzl_dock_item_get_manager; 2681 alias c_dzl_dock_item_get_parent dzl_dock_item_get_parent; 2682 alias c_dzl_dock_item_get_title dzl_dock_item_get_title; 2683 alias c_dzl_dock_item_has_widgets dzl_dock_item_has_widgets; 2684 alias c_dzl_dock_item_minimize dzl_dock_item_minimize; 2685 alias c_dzl_dock_item_needs_attention dzl_dock_item_needs_attention; 2686 alias c_dzl_dock_item_present dzl_dock_item_present; 2687 alias c_dzl_dock_item_present_child dzl_dock_item_present_child; 2688 alias c_dzl_dock_item_ref_gicon dzl_dock_item_ref_gicon; 2689 alias c_dzl_dock_item_release dzl_dock_item_release; 2690 alias c_dzl_dock_item_set_child_visible dzl_dock_item_set_child_visible; 2691 alias c_dzl_dock_item_set_manager dzl_dock_item_set_manager; 2692 alias c_dzl_dock_item_update_visibility dzl_dock_item_update_visibility; 2693 2694 // dazzle.DockManager 2695 2696 alias c_dzl_dock_manager_get_type dzl_dock_manager_get_type; 2697 alias c_dzl_dock_manager_new dzl_dock_manager_new; 2698 alias c_dzl_dock_manager_pause_grabs dzl_dock_manager_pause_grabs; 2699 alias c_dzl_dock_manager_register_dock dzl_dock_manager_register_dock; 2700 alias c_dzl_dock_manager_release_transient_grab dzl_dock_manager_release_transient_grab; 2701 alias c_dzl_dock_manager_unpause_grabs dzl_dock_manager_unpause_grabs; 2702 alias c_dzl_dock_manager_unregister_dock dzl_dock_manager_unregister_dock; 2703 2704 // dazzle.DockOverlay 2705 2706 alias c_dzl_dock_overlay_get_type dzl_dock_overlay_get_type; 2707 alias c_dzl_dock_overlay_new dzl_dock_overlay_new; 2708 alias c_dzl_dock_overlay_get_edge dzl_dock_overlay_get_edge; 2709 alias c_dzl_dock_overlay_get_edge_adjustment dzl_dock_overlay_get_edge_adjustment; 2710 2711 // dazzle.DockOverlayEdge 2712 2713 alias c_dzl_dock_overlay_edge_get_type dzl_dock_overlay_edge_get_type; 2714 alias c_dzl_dock_overlay_edge_get_edge dzl_dock_overlay_edge_get_edge; 2715 alias c_dzl_dock_overlay_edge_get_position dzl_dock_overlay_edge_get_position; 2716 alias c_dzl_dock_overlay_edge_set_edge dzl_dock_overlay_edge_set_edge; 2717 alias c_dzl_dock_overlay_edge_set_position dzl_dock_overlay_edge_set_position; 2718 2719 // dazzle.DockPaned 2720 2721 alias c_dzl_dock_paned_get_type dzl_dock_paned_get_type; 2722 alias c_dzl_dock_paned_new dzl_dock_paned_new; 2723 2724 // dazzle.DockRevealer 2725 2726 alias c_dzl_dock_revealer_get_type dzl_dock_revealer_get_type; 2727 alias c_dzl_dock_revealer_new dzl_dock_revealer_new; 2728 alias c_dzl_dock_revealer_animate_to_position dzl_dock_revealer_animate_to_position; 2729 alias c_dzl_dock_revealer_get_child_revealed dzl_dock_revealer_get_child_revealed; 2730 alias c_dzl_dock_revealer_get_position dzl_dock_revealer_get_position; 2731 alias c_dzl_dock_revealer_get_position_set dzl_dock_revealer_get_position_set; 2732 alias c_dzl_dock_revealer_get_reveal_child dzl_dock_revealer_get_reveal_child; 2733 alias c_dzl_dock_revealer_get_transition_duration dzl_dock_revealer_get_transition_duration; 2734 alias c_dzl_dock_revealer_get_transition_type dzl_dock_revealer_get_transition_type; 2735 alias c_dzl_dock_revealer_is_animating dzl_dock_revealer_is_animating; 2736 alias c_dzl_dock_revealer_set_position dzl_dock_revealer_set_position; 2737 alias c_dzl_dock_revealer_set_position_set dzl_dock_revealer_set_position_set; 2738 alias c_dzl_dock_revealer_set_reveal_child dzl_dock_revealer_set_reveal_child; 2739 alias c_dzl_dock_revealer_set_transition_duration dzl_dock_revealer_set_transition_duration; 2740 alias c_dzl_dock_revealer_set_transition_type dzl_dock_revealer_set_transition_type; 2741 2742 // dazzle.DockStack 2743 2744 alias c_dzl_dock_stack_get_type dzl_dock_stack_get_type; 2745 alias c_dzl_dock_stack_new dzl_dock_stack_new; 2746 alias c_dzl_dock_stack_get_edge dzl_dock_stack_get_edge; 2747 alias c_dzl_dock_stack_get_show_pinned_button dzl_dock_stack_get_show_pinned_button; 2748 alias c_dzl_dock_stack_get_style dzl_dock_stack_get_style; 2749 alias c_dzl_dock_stack_set_edge dzl_dock_stack_set_edge; 2750 alias c_dzl_dock_stack_set_show_pinned_button dzl_dock_stack_set_show_pinned_button; 2751 alias c_dzl_dock_stack_set_style dzl_dock_stack_set_style; 2752 2753 // dazzle.DockTransientGrab 2754 2755 alias c_dzl_dock_transient_grab_get_type dzl_dock_transient_grab_get_type; 2756 alias c_dzl_dock_transient_grab_new dzl_dock_transient_grab_new; 2757 alias c_dzl_dock_transient_grab_acquire dzl_dock_transient_grab_acquire; 2758 alias c_dzl_dock_transient_grab_add_item dzl_dock_transient_grab_add_item; 2759 alias c_dzl_dock_transient_grab_cancel dzl_dock_transient_grab_cancel; 2760 alias c_dzl_dock_transient_grab_contains dzl_dock_transient_grab_contains; 2761 alias c_dzl_dock_transient_grab_get_timeout dzl_dock_transient_grab_get_timeout; 2762 alias c_dzl_dock_transient_grab_is_descendant dzl_dock_transient_grab_is_descendant; 2763 alias c_dzl_dock_transient_grab_release dzl_dock_transient_grab_release; 2764 alias c_dzl_dock_transient_grab_remove_item dzl_dock_transient_grab_remove_item; 2765 alias c_dzl_dock_transient_grab_set_timeout dzl_dock_transient_grab_set_timeout; 2766 alias c_dzl_dock_transient_grab_steal_common_ancestors dzl_dock_transient_grab_steal_common_ancestors; 2767 2768 // dazzle.DockWidget 2769 2770 alias c_dzl_dock_widget_get_type dzl_dock_widget_get_type; 2771 alias c_dzl_dock_widget_new dzl_dock_widget_new; 2772 alias c_dzl_dock_widget_set_gicon dzl_dock_widget_set_gicon; 2773 alias c_dzl_dock_widget_set_icon_name dzl_dock_widget_set_icon_name; 2774 alias c_dzl_dock_widget_set_title dzl_dock_widget_set_title; 2775 2776 // dazzle.DockWindow 2777 2778 alias c_dzl_dock_window_get_type dzl_dock_window_get_type; 2779 alias c_dzl_dock_window_new dzl_dock_window_new; 2780 2781 // dazzle.ElasticBin 2782 2783 alias c_dzl_elastic_bin_get_type dzl_elastic_bin_get_type; 2784 alias c_dzl_elastic_bin_new dzl_elastic_bin_new; 2785 2786 // dazzle.EmptyState 2787 2788 alias c_dzl_empty_state_get_type dzl_empty_state_get_type; 2789 alias c_dzl_empty_state_new dzl_empty_state_new; 2790 alias c_dzl_empty_state_get_icon_name dzl_empty_state_get_icon_name; 2791 alias c_dzl_empty_state_get_subtitle dzl_empty_state_get_subtitle; 2792 alias c_dzl_empty_state_get_title dzl_empty_state_get_title; 2793 alias c_dzl_empty_state_set_icon_name dzl_empty_state_set_icon_name; 2794 alias c_dzl_empty_state_set_resource dzl_empty_state_set_resource; 2795 alias c_dzl_empty_state_set_subtitle dzl_empty_state_set_subtitle; 2796 alias c_dzl_empty_state_set_title dzl_empty_state_set_title; 2797 2798 // dazzle.EntryBox 2799 2800 alias c_dzl_entry_box_get_type dzl_entry_box_get_type; 2801 alias c_dzl_entry_box_new dzl_entry_box_new; 2802 2803 // dazzle.FileChooserEntry 2804 2805 alias c_dzl_file_chooser_entry_get_type dzl_file_chooser_entry_get_type; 2806 alias c_dzl_file_chooser_entry_new dzl_file_chooser_entry_new; 2807 alias c_dzl_file_chooser_entry_get_entry dzl_file_chooser_entry_get_entry; 2808 alias c_dzl_file_chooser_entry_get_file dzl_file_chooser_entry_get_file; 2809 alias c_dzl_file_chooser_entry_set_file dzl_file_chooser_entry_set_file; 2810 2811 // dazzle.FileTransfer 2812 2813 alias c_dzl_file_transfer_get_type dzl_file_transfer_get_type; 2814 alias c_dzl_file_transfer_new dzl_file_transfer_new; 2815 alias c_dzl_file_transfer_add dzl_file_transfer_add; 2816 alias c_dzl_file_transfer_execute dzl_file_transfer_execute; 2817 alias c_dzl_file_transfer_execute_async dzl_file_transfer_execute_async; 2818 alias c_dzl_file_transfer_execute_finish dzl_file_transfer_execute_finish; 2819 alias c_dzl_file_transfer_get_flags dzl_file_transfer_get_flags; 2820 alias c_dzl_file_transfer_get_progress dzl_file_transfer_get_progress; 2821 alias c_dzl_file_transfer_set_flags dzl_file_transfer_set_flags; 2822 alias c_dzl_file_transfer_stat dzl_file_transfer_stat; 2823 2824 // dazzle.FuzzyIndex 2825 2826 alias c_dzl_fuzzy_index_get_type dzl_fuzzy_index_get_type; 2827 alias c_dzl_fuzzy_index_new dzl_fuzzy_index_new; 2828 alias c_dzl_fuzzy_index_get_metadata dzl_fuzzy_index_get_metadata; 2829 alias c_dzl_fuzzy_index_get_metadata_string dzl_fuzzy_index_get_metadata_string; 2830 alias c_dzl_fuzzy_index_get_metadata_uint32 dzl_fuzzy_index_get_metadata_uint32; 2831 alias c_dzl_fuzzy_index_get_metadata_uint64 dzl_fuzzy_index_get_metadata_uint64; 2832 alias c_dzl_fuzzy_index_load_file dzl_fuzzy_index_load_file; 2833 alias c_dzl_fuzzy_index_load_file_async dzl_fuzzy_index_load_file_async; 2834 alias c_dzl_fuzzy_index_load_file_finish dzl_fuzzy_index_load_file_finish; 2835 alias c_dzl_fuzzy_index_query_async dzl_fuzzy_index_query_async; 2836 alias c_dzl_fuzzy_index_query_finish dzl_fuzzy_index_query_finish; 2837 2838 // dazzle.FuzzyIndexBuilder 2839 2840 alias c_dzl_fuzzy_index_builder_get_type dzl_fuzzy_index_builder_get_type; 2841 alias c_dzl_fuzzy_index_builder_new dzl_fuzzy_index_builder_new; 2842 alias c_dzl_fuzzy_index_builder_get_case_sensitive dzl_fuzzy_index_builder_get_case_sensitive; 2843 alias c_dzl_fuzzy_index_builder_get_document dzl_fuzzy_index_builder_get_document; 2844 alias c_dzl_fuzzy_index_builder_insert dzl_fuzzy_index_builder_insert; 2845 alias c_dzl_fuzzy_index_builder_set_case_sensitive dzl_fuzzy_index_builder_set_case_sensitive; 2846 alias c_dzl_fuzzy_index_builder_set_metadata dzl_fuzzy_index_builder_set_metadata; 2847 alias c_dzl_fuzzy_index_builder_set_metadata_string dzl_fuzzy_index_builder_set_metadata_string; 2848 alias c_dzl_fuzzy_index_builder_set_metadata_uint32 dzl_fuzzy_index_builder_set_metadata_uint32; 2849 alias c_dzl_fuzzy_index_builder_set_metadata_uint64 dzl_fuzzy_index_builder_set_metadata_uint64; 2850 alias c_dzl_fuzzy_index_builder_write dzl_fuzzy_index_builder_write; 2851 alias c_dzl_fuzzy_index_builder_write_async dzl_fuzzy_index_builder_write_async; 2852 alias c_dzl_fuzzy_index_builder_write_finish dzl_fuzzy_index_builder_write_finish; 2853 2854 // dazzle.FuzzyIndexCursor 2855 2856 alias c_dzl_fuzzy_index_cursor_get_type dzl_fuzzy_index_cursor_get_type; 2857 alias c_dzl_fuzzy_index_cursor_get_index dzl_fuzzy_index_cursor_get_index; 2858 2859 // dazzle.FuzzyIndexMatch 2860 2861 alias c_dzl_fuzzy_index_match_get_type dzl_fuzzy_index_match_get_type; 2862 alias c_dzl_fuzzy_index_match_get_document dzl_fuzzy_index_match_get_document; 2863 alias c_dzl_fuzzy_index_match_get_key dzl_fuzzy_index_match_get_key; 2864 alias c_dzl_fuzzy_index_match_get_priority dzl_fuzzy_index_match_get_priority; 2865 alias c_dzl_fuzzy_index_match_get_score dzl_fuzzy_index_match_get_score; 2866 2867 // dazzle.FuzzyMutableIndex 2868 2869 alias c_dzl_fuzzy_mutable_index_get_type dzl_fuzzy_mutable_index_get_type; 2870 alias c_dzl_fuzzy_mutable_index_new dzl_fuzzy_mutable_index_new; 2871 alias c_dzl_fuzzy_mutable_index_new_with_free_func dzl_fuzzy_mutable_index_new_with_free_func; 2872 alias c_dzl_fuzzy_mutable_index_begin_bulk_insert dzl_fuzzy_mutable_index_begin_bulk_insert; 2873 alias c_dzl_fuzzy_mutable_index_contains dzl_fuzzy_mutable_index_contains; 2874 alias c_dzl_fuzzy_mutable_index_end_bulk_insert dzl_fuzzy_mutable_index_end_bulk_insert; 2875 alias c_dzl_fuzzy_mutable_index_insert dzl_fuzzy_mutable_index_insert; 2876 alias c_dzl_fuzzy_mutable_index_match dzl_fuzzy_mutable_index_match; 2877 alias c_dzl_fuzzy_mutable_index_ref dzl_fuzzy_mutable_index_ref; 2878 alias c_dzl_fuzzy_mutable_index_remove dzl_fuzzy_mutable_index_remove; 2879 alias c_dzl_fuzzy_mutable_index_set_free_func dzl_fuzzy_mutable_index_set_free_func; 2880 alias c_dzl_fuzzy_mutable_index_unref dzl_fuzzy_mutable_index_unref; 2881 2882 // dazzle.GraphColumn 2883 2884 alias c_dzl_graph_view_column_get_type dzl_graph_view_column_get_type; 2885 alias c_dzl_graph_view_column_new dzl_graph_view_column_new; 2886 alias c_dzl_graph_view_column_get_name dzl_graph_view_column_get_name; 2887 alias c_dzl_graph_view_column_set_name dzl_graph_view_column_set_name; 2888 2889 // dazzle.GraphLineRenderer 2890 2891 alias c_dzl_graph_view_line_renderer_get_type dzl_graph_view_line_renderer_get_type; 2892 alias c_dzl_graph_view_line_renderer_new dzl_graph_view_line_renderer_new; 2893 alias c_dzl_graph_view_line_renderer_get_stroke_color_rgba dzl_graph_view_line_renderer_get_stroke_color_rgba; 2894 alias c_dzl_graph_view_line_renderer_set_stroke_color dzl_graph_view_line_renderer_set_stroke_color; 2895 alias c_dzl_graph_view_line_renderer_set_stroke_color_rgba dzl_graph_view_line_renderer_set_stroke_color_rgba; 2896 2897 // dazzle.GraphModel 2898 2899 alias c_dzl_graph_view_model_get_type dzl_graph_view_model_get_type; 2900 alias c_dzl_graph_view_model_new dzl_graph_view_model_new; 2901 alias c_dzl_graph_view_model_iter_get dzl_graph_view_model_iter_get; 2902 alias c_dzl_graph_view_model_iter_get_timestamp dzl_graph_view_model_iter_get_timestamp; 2903 alias c_dzl_graph_view_model_iter_get_value dzl_graph_view_model_iter_get_value; 2904 alias c_dzl_graph_view_model_iter_next dzl_graph_view_model_iter_next; 2905 alias c_dzl_graph_view_model_iter_set dzl_graph_view_model_iter_set; 2906 alias c_dzl_graph_view_model_iter_set_value dzl_graph_view_model_iter_set_value; 2907 alias c_dzl_graph_view_model_add_column dzl_graph_view_model_add_column; 2908 alias c_dzl_graph_view_model_get_end_time dzl_graph_view_model_get_end_time; 2909 alias c_dzl_graph_view_model_get_iter_first dzl_graph_view_model_get_iter_first; 2910 alias c_dzl_graph_view_model_get_iter_last dzl_graph_view_model_get_iter_last; 2911 alias c_dzl_graph_view_model_get_max_samples dzl_graph_view_model_get_max_samples; 2912 alias c_dzl_graph_view_model_get_n_columns dzl_graph_view_model_get_n_columns; 2913 alias c_dzl_graph_view_model_get_timespan dzl_graph_view_model_get_timespan; 2914 alias c_dzl_graph_view_model_push dzl_graph_view_model_push; 2915 alias c_dzl_graph_view_model_set_max_samples dzl_graph_view_model_set_max_samples; 2916 alias c_dzl_graph_view_model_set_timespan dzl_graph_view_model_set_timespan; 2917 2918 // dazzle.GraphRenderer 2919 2920 alias c_dzl_graph_view_renderer_get_type dzl_graph_view_renderer_get_type; 2921 alias c_dzl_graph_view_renderer_render dzl_graph_view_renderer_render; 2922 2923 // dazzle.GraphView 2924 2925 alias c_dzl_graph_view_get_type dzl_graph_view_get_type; 2926 alias c_dzl_graph_view_new dzl_graph_view_new; 2927 alias c_dzl_graph_view_add_renderer dzl_graph_view_add_renderer; 2928 alias c_dzl_graph_view_get_model dzl_graph_view_get_model; 2929 alias c_dzl_graph_view_set_model dzl_graph_view_set_model; 2930 2931 // dazzle.Heap 2932 2933 alias c_dzl_heap_get_type dzl_heap_get_type; 2934 alias c_dzl_heap_new dzl_heap_new; 2935 alias c_dzl_heap_extract dzl_heap_extract; 2936 alias c_dzl_heap_extract_index dzl_heap_extract_index; 2937 alias c_dzl_heap_insert_vals dzl_heap_insert_vals; 2938 alias c_dzl_heap_ref dzl_heap_ref; 2939 alias c_dzl_heap_unref dzl_heap_unref; 2940 2941 // dazzle.JoinedMenu 2942 2943 alias c_dzl_joined_menu_get_type dzl_joined_menu_get_type; 2944 alias c_dzl_joined_menu_new dzl_joined_menu_new; 2945 alias c_dzl_joined_menu_append_menu dzl_joined_menu_append_menu; 2946 alias c_dzl_joined_menu_get_n_joined dzl_joined_menu_get_n_joined; 2947 alias c_dzl_joined_menu_prepend_menu dzl_joined_menu_prepend_menu; 2948 alias c_dzl_joined_menu_remove_index dzl_joined_menu_remove_index; 2949 alias c_dzl_joined_menu_remove_menu dzl_joined_menu_remove_menu; 2950 2951 // dazzle.ListBox 2952 2953 alias c_dzl_list_box_get_type dzl_list_box_get_type; 2954 alias c_dzl_list_box_new dzl_list_box_new; 2955 alias c_dzl_list_box_get_model dzl_list_box_get_model; 2956 alias c_dzl_list_box_get_property_name dzl_list_box_get_property_name; 2957 alias c_dzl_list_box_get_row_type dzl_list_box_get_row_type; 2958 alias c_dzl_list_box_set_model dzl_list_box_set_model; 2959 alias c_dzl_list_box_set_recycle_max dzl_list_box_set_recycle_max; 2960 2961 // dazzle.ListBoxRow 2962 2963 alias c_dzl_list_box_row_get_type dzl_list_box_row_get_type; 2964 2965 // dazzle.ListModelFilter 2966 2967 alias c_dzl_list_model_filter_get_type dzl_list_model_filter_get_type; 2968 alias c_dzl_list_model_filter_new dzl_list_model_filter_new; 2969 alias c_dzl_list_model_filter_get_child_model dzl_list_model_filter_get_child_model; 2970 alias c_dzl_list_model_filter_invalidate dzl_list_model_filter_invalidate; 2971 alias c_dzl_list_model_filter_set_filter_func dzl_list_model_filter_set_filter_func; 2972 2973 // dazzle.ListStoreAdapter 2974 2975 alias c_dzl_list_store_adapter_get_type dzl_list_store_adapter_get_type; 2976 alias c_dzl_list_store_adapter_new dzl_list_store_adapter_new; 2977 alias c_dzl_list_store_adapter_get_model dzl_list_store_adapter_get_model; 2978 alias c_dzl_list_store_adapter_set_model dzl_list_store_adapter_set_model; 2979 2980 // dazzle.MenuButton 2981 2982 alias c_dzl_menu_button_get_type dzl_menu_button_get_type; 2983 alias c_dzl_menu_button_new_with_model dzl_menu_button_new_with_model; 2984 alias c_dzl_menu_button_get_model dzl_menu_button_get_model; 2985 alias c_dzl_menu_button_get_show_accels dzl_menu_button_get_show_accels; 2986 alias c_dzl_menu_button_get_show_arrow dzl_menu_button_get_show_arrow; 2987 alias c_dzl_menu_button_get_show_icons dzl_menu_button_get_show_icons; 2988 alias c_dzl_menu_button_set_model dzl_menu_button_set_model; 2989 alias c_dzl_menu_button_set_show_accels dzl_menu_button_set_show_accels; 2990 alias c_dzl_menu_button_set_show_arrow dzl_menu_button_set_show_arrow; 2991 alias c_dzl_menu_button_set_show_icons dzl_menu_button_set_show_icons; 2992 2993 // dazzle.MenuManager 2994 2995 alias c_dzl_menu_manager_get_type dzl_menu_manager_get_type; 2996 alias c_dzl_menu_manager_new dzl_menu_manager_new; 2997 alias c_dzl_menu_manager_add_filename dzl_menu_manager_add_filename; 2998 alias c_dzl_menu_manager_add_resource dzl_menu_manager_add_resource; 2999 alias c_dzl_menu_manager_get_menu_by_id dzl_menu_manager_get_menu_by_id; 3000 alias c_dzl_menu_manager_merge dzl_menu_manager_merge; 3001 alias c_dzl_menu_manager_remove dzl_menu_manager_remove; 3002 3003 // dazzle.MultiPaned 3004 3005 alias c_dzl_multi_paned_get_type dzl_multi_paned_get_type; 3006 alias c_dzl_multi_paned_new dzl_multi_paned_new; 3007 alias c_dzl_multi_paned_get_at_point dzl_multi_paned_get_at_point; 3008 alias c_dzl_multi_paned_get_n_children dzl_multi_paned_get_n_children; 3009 alias c_dzl_multi_paned_get_nth_child dzl_multi_paned_get_nth_child; 3010 3011 // dazzle.Path 3012 3013 alias c_dzl_path_get_type dzl_path_get_type; 3014 alias c_dzl_path_new dzl_path_new; 3015 alias c_dzl_path_append dzl_path_append; 3016 alias c_dzl_path_get_element dzl_path_get_element; 3017 alias c_dzl_path_get_elements dzl_path_get_elements; 3018 alias c_dzl_path_get_length dzl_path_get_length; 3019 alias c_dzl_path_has_prefix dzl_path_has_prefix; 3020 alias c_dzl_path_is_empty dzl_path_is_empty; 3021 alias c_dzl_path_prepend dzl_path_prepend; 3022 alias c_dzl_path_printf dzl_path_printf; 3023 3024 // dazzle.PathBar 3025 3026 alias c_dzl_path_bar_get_type dzl_path_bar_get_type; 3027 alias c_dzl_path_bar_new dzl_path_bar_new; 3028 alias c_dzl_path_bar_get_path dzl_path_bar_get_path; 3029 alias c_dzl_path_bar_set_path dzl_path_bar_set_path; 3030 alias c_dzl_path_bar_set_selected_index dzl_path_bar_set_selected_index; 3031 3032 // dazzle.PathElement 3033 3034 alias c_dzl_path_element_get_type dzl_path_element_get_type; 3035 alias c_dzl_path_element_new dzl_path_element_new; 3036 alias c_dzl_path_element_get_icon_name dzl_path_element_get_icon_name; 3037 alias c_dzl_path_element_get_id dzl_path_element_get_id; 3038 alias c_dzl_path_element_get_title dzl_path_element_get_title; 3039 3040 // dazzle.PatternSpec 3041 3042 alias c_dzl_pattern_spec_get_type dzl_pattern_spec_get_type; 3043 alias c_dzl_pattern_spec_new dzl_pattern_spec_new; 3044 alias c_dzl_pattern_spec_get_text dzl_pattern_spec_get_text; 3045 alias c_dzl_pattern_spec_match dzl_pattern_spec_match; 3046 alias c_dzl_pattern_spec_ref dzl_pattern_spec_ref; 3047 alias c_dzl_pattern_spec_unref dzl_pattern_spec_unref; 3048 3049 // dazzle.PillBox 3050 3051 alias c_dzl_pill_box_get_type dzl_pill_box_get_type; 3052 alias c_dzl_pill_box_new dzl_pill_box_new; 3053 alias c_dzl_pill_box_get_label dzl_pill_box_get_label; 3054 alias c_dzl_pill_box_set_label dzl_pill_box_set_label; 3055 3056 // dazzle.Preferences 3057 3058 alias c_dzl_preferences_get_type dzl_preferences_get_type; 3059 alias c_dzl_preferences_add_custom dzl_preferences_add_custom; 3060 alias c_dzl_preferences_add_file_chooser dzl_preferences_add_file_chooser; 3061 alias c_dzl_preferences_add_font_button dzl_preferences_add_font_button; 3062 alias c_dzl_preferences_add_group dzl_preferences_add_group; 3063 alias c_dzl_preferences_add_list_group dzl_preferences_add_list_group; 3064 alias c_dzl_preferences_add_page dzl_preferences_add_page; 3065 alias c_dzl_preferences_add_radio dzl_preferences_add_radio; 3066 alias c_dzl_preferences_add_spin_button dzl_preferences_add_spin_button; 3067 alias c_dzl_preferences_add_switch dzl_preferences_add_switch; 3068 alias c_dzl_preferences_add_table_row dzl_preferences_add_table_row; 3069 alias c_dzl_preferences_get_widget dzl_preferences_get_widget; 3070 alias c_dzl_preferences_remove_id dzl_preferences_remove_id; 3071 alias c_dzl_preferences_set_page dzl_preferences_set_page; 3072 3073 // dazzle.PreferencesBin 3074 3075 alias c_dzl_preferences_bin_get_type dzl_preferences_bin_get_type; 3076 3077 // dazzle.PreferencesEntry 3078 3079 alias c_dzl_preferences_entry_get_type dzl_preferences_entry_get_type; 3080 alias c_dzl_preferences_entry_get_entry_widget dzl_preferences_entry_get_entry_widget; 3081 alias c_dzl_preferences_entry_get_title_widget dzl_preferences_entry_get_title_widget; 3082 3083 // dazzle.PreferencesFileChooserButton 3084 3085 alias c_dzl_preferences_file_chooser_button_get_type dzl_preferences_file_chooser_button_get_type; 3086 3087 // dazzle.PreferencesFlowBox 3088 3089 alias c_dzl_preferences_flow_box_get_type dzl_preferences_flow_box_get_type; 3090 alias c_dzl_preferences_flow_box_new dzl_preferences_flow_box_new; 3091 3092 // dazzle.PreferencesFontButton 3093 3094 alias c_dzl_preferences_font_button_get_type dzl_preferences_font_button_get_type; 3095 3096 // dazzle.PreferencesGroup 3097 3098 alias c_dzl_preferences_group_get_type dzl_preferences_group_get_type; 3099 alias c_dzl_preferences_group_add dzl_preferences_group_add; 3100 alias c_dzl_preferences_group_get_priority dzl_preferences_group_get_priority; 3101 alias c_dzl_preferences_group_get_size_group dzl_preferences_group_get_size_group; 3102 alias c_dzl_preferences_group_get_title dzl_preferences_group_get_title; 3103 alias c_dzl_preferences_group_refilter dzl_preferences_group_refilter; 3104 alias c_dzl_preferences_group_set_map dzl_preferences_group_set_map; 3105 3106 // dazzle.PreferencesPage 3107 3108 alias c_dzl_preferences_page_get_type dzl_preferences_page_get_type; 3109 alias c_dzl_preferences_page_add_group dzl_preferences_page_add_group; 3110 alias c_dzl_preferences_page_get_group dzl_preferences_page_get_group; 3111 alias c_dzl_preferences_page_refilter dzl_preferences_page_refilter; 3112 alias c_dzl_preferences_page_set_map dzl_preferences_page_set_map; 3113 3114 // dazzle.PreferencesSpinButton 3115 3116 alias c_dzl_preferences_spin_button_get_type dzl_preferences_spin_button_get_type; 3117 alias c_dzl_preferences_spin_button_get_spin_button dzl_preferences_spin_button_get_spin_button; 3118 3119 // dazzle.PreferencesSwitch 3120 3121 alias c_dzl_preferences_switch_get_type dzl_preferences_switch_get_type; 3122 3123 // dazzle.PreferencesView 3124 3125 alias c_dzl_preferences_view_get_type dzl_preferences_view_get_type; 3126 alias c_dzl_preferences_view_new dzl_preferences_view_new; 3127 alias c_dzl_preferences_view_get_show_search_entry dzl_preferences_view_get_show_search_entry; 3128 alias c_dzl_preferences_view_get_use_sidebar dzl_preferences_view_get_use_sidebar; 3129 alias c_dzl_preferences_view_reapply_filter dzl_preferences_view_reapply_filter; 3130 alias c_dzl_preferences_view_set_show_search_entry dzl_preferences_view_set_show_search_entry; 3131 alias c_dzl_preferences_view_set_use_sidebar dzl_preferences_view_set_use_sidebar; 3132 3133 // dazzle.PriorityBox 3134 3135 alias c_dzl_priority_box_get_type dzl_priority_box_get_type; 3136 alias c_dzl_priority_box_new dzl_priority_box_new; 3137 3138 // dazzle.ProgressButton 3139 3140 alias c_dzl_progress_button_get_type dzl_progress_button_get_type; 3141 alias c_dzl_progress_button_new dzl_progress_button_new; 3142 alias c_dzl_progress_button_get_progress dzl_progress_button_get_progress; 3143 alias c_dzl_progress_button_get_show_progress dzl_progress_button_get_show_progress; 3144 alias c_dzl_progress_button_set_progress dzl_progress_button_set_progress; 3145 alias c_dzl_progress_button_set_show_progress dzl_progress_button_set_show_progress; 3146 3147 // dazzle.ProgressIcon 3148 3149 alias c_dzl_progress_icon_get_type dzl_progress_icon_get_type; 3150 alias c_dzl_progress_icon_new dzl_progress_icon_new; 3151 alias c_dzl_progress_icon_get_progress dzl_progress_icon_get_progress; 3152 alias c_dzl_progress_icon_set_progress dzl_progress_icon_set_progress; 3153 3154 // dazzle.ProgressMenuButton 3155 3156 alias c_dzl_progress_menu_button_get_type dzl_progress_menu_button_get_type; 3157 alias c_dzl_progress_menu_button_new dzl_progress_menu_button_new; 3158 alias c_dzl_progress_menu_button_get_progress dzl_progress_menu_button_get_progress; 3159 alias c_dzl_progress_menu_button_get_show_progress dzl_progress_menu_button_get_show_progress; 3160 alias c_dzl_progress_menu_button_get_show_theatric dzl_progress_menu_button_get_show_theatric; 3161 alias c_dzl_progress_menu_button_reset_theatrics dzl_progress_menu_button_reset_theatrics; 3162 alias c_dzl_progress_menu_button_set_progress dzl_progress_menu_button_set_progress; 3163 alias c_dzl_progress_menu_button_set_show_progress dzl_progress_menu_button_set_show_progress; 3164 alias c_dzl_progress_menu_button_set_show_theatric dzl_progress_menu_button_set_show_theatric; 3165 3166 // dazzle.PropertiesGroup 3167 3168 alias c_dzl_properties_group_get_type dzl_properties_group_get_type; 3169 alias c_dzl_properties_group_new dzl_properties_group_new; 3170 alias c_dzl_properties_group_new_for_type dzl_properties_group_new_for_type; 3171 alias c_dzl_properties_group_add_all_properties dzl_properties_group_add_all_properties; 3172 alias c_dzl_properties_group_add_property dzl_properties_group_add_property; 3173 alias c_dzl_properties_group_add_property_full dzl_properties_group_add_property_full; 3174 alias c_dzl_properties_group_remove dzl_properties_group_remove; 3175 3176 // dazzle.RadioBox 3177 3178 alias c_dzl_radio_box_get_type dzl_radio_box_get_type; 3179 alias c_dzl_radio_box_new dzl_radio_box_new; 3180 alias c_dzl_radio_box_add_item dzl_radio_box_add_item; 3181 alias c_dzl_radio_box_get_active_id dzl_radio_box_get_active_id; 3182 alias c_dzl_radio_box_remove_item dzl_radio_box_remove_item; 3183 alias c_dzl_radio_box_set_active_id dzl_radio_box_set_active_id; 3184 3185 // dazzle.ReadOnlyListModel 3186 3187 alias c_dzl_read_only_list_model_get_type dzl_read_only_list_model_get_type; 3188 alias c_dzl_read_only_list_model_new dzl_read_only_list_model_new; 3189 3190 // dazzle.RecursiveFileMonitor 3191 3192 alias c_dzl_recursive_file_monitor_get_type dzl_recursive_file_monitor_get_type; 3193 alias c_dzl_recursive_file_monitor_new dzl_recursive_file_monitor_new; 3194 alias c_dzl_recursive_file_monitor_cancel dzl_recursive_file_monitor_cancel; 3195 alias c_dzl_recursive_file_monitor_get_root dzl_recursive_file_monitor_get_root; 3196 alias c_dzl_recursive_file_monitor_set_ignore_func dzl_recursive_file_monitor_set_ignore_func; 3197 alias c_dzl_recursive_file_monitor_start_async dzl_recursive_file_monitor_start_async; 3198 alias c_dzl_recursive_file_monitor_start_finish dzl_recursive_file_monitor_start_finish; 3199 3200 // dazzle.Ring 3201 3202 alias c_dzl_ring_get_type dzl_ring_get_type; 3203 alias c_dzl_ring_sized_new dzl_ring_sized_new; 3204 alias c_dzl_ring_append_vals dzl_ring_append_vals; 3205 alias c_dzl_ring_foreach dzl_ring_foreach; 3206 alias c_dzl_ring_ref dzl_ring_ref; 3207 alias c_dzl_ring_unref dzl_ring_unref; 3208 3209 // dazzle.ScrolledWindow 3210 3211 alias c_dzl_scrolled_window_get_type dzl_scrolled_window_get_type; 3212 3213 // dazzle.SearchBar 3214 3215 alias c_dzl_search_bar_get_type dzl_search_bar_get_type; 3216 alias c_dzl_search_bar_new dzl_search_bar_new; 3217 alias c_dzl_search_bar_get_entry dzl_search_bar_get_entry; 3218 alias c_dzl_search_bar_get_search_mode_enabled dzl_search_bar_get_search_mode_enabled; 3219 alias c_dzl_search_bar_get_show_close_button dzl_search_bar_get_show_close_button; 3220 alias c_dzl_search_bar_set_search_mode_enabled dzl_search_bar_set_search_mode_enabled; 3221 alias c_dzl_search_bar_set_show_close_button dzl_search_bar_set_show_close_button; 3222 3223 // dazzle.SettingsFlagAction 3224 3225 alias c_dzl_settings_flag_action_get_type dzl_settings_flag_action_get_type; 3226 alias c_dzl_settings_flag_action_new dzl_settings_flag_action_new; 3227 3228 // dazzle.SettingsSandwich 3229 3230 alias c_dzl_settings_sandwich_get_type dzl_settings_sandwich_get_type; 3231 alias c_dzl_settings_sandwich_new dzl_settings_sandwich_new; 3232 alias c_dzl_settings_sandwich_append dzl_settings_sandwich_append; 3233 alias c_dzl_settings_sandwich_bind dzl_settings_sandwich_bind; 3234 alias c_dzl_settings_sandwich_bind_with_mapping dzl_settings_sandwich_bind_with_mapping; 3235 alias c_dzl_settings_sandwich_get_boolean dzl_settings_sandwich_get_boolean; 3236 alias c_dzl_settings_sandwich_get_default_value dzl_settings_sandwich_get_default_value; 3237 alias c_dzl_settings_sandwich_get_double dzl_settings_sandwich_get_double; 3238 alias c_dzl_settings_sandwich_get_int dzl_settings_sandwich_get_int; 3239 alias c_dzl_settings_sandwich_get_string dzl_settings_sandwich_get_string; 3240 alias c_dzl_settings_sandwich_get_uint dzl_settings_sandwich_get_uint; 3241 alias c_dzl_settings_sandwich_get_user_value dzl_settings_sandwich_get_user_value; 3242 alias c_dzl_settings_sandwich_get_value dzl_settings_sandwich_get_value; 3243 alias c_dzl_settings_sandwich_set_boolean dzl_settings_sandwich_set_boolean; 3244 alias c_dzl_settings_sandwich_set_double dzl_settings_sandwich_set_double; 3245 alias c_dzl_settings_sandwich_set_int dzl_settings_sandwich_set_int; 3246 alias c_dzl_settings_sandwich_set_string dzl_settings_sandwich_set_string; 3247 alias c_dzl_settings_sandwich_set_uint dzl_settings_sandwich_set_uint; 3248 alias c_dzl_settings_sandwich_set_value dzl_settings_sandwich_set_value; 3249 alias c_dzl_settings_sandwich_unbind dzl_settings_sandwich_unbind; 3250 3251 // dazzle.ShortcutAccelDialog 3252 3253 alias c_dzl_shortcut_accel_dialog_get_type dzl_shortcut_accel_dialog_get_type; 3254 alias c_dzl_shortcut_accel_dialog_new dzl_shortcut_accel_dialog_new; 3255 alias c_dzl_shortcut_accel_dialog_get_accelerator dzl_shortcut_accel_dialog_get_accelerator; 3256 alias c_dzl_shortcut_accel_dialog_get_chord dzl_shortcut_accel_dialog_get_chord; 3257 alias c_dzl_shortcut_accel_dialog_get_shortcut_title dzl_shortcut_accel_dialog_get_shortcut_title; 3258 alias c_dzl_shortcut_accel_dialog_set_accelerator dzl_shortcut_accel_dialog_set_accelerator; 3259 alias c_dzl_shortcut_accel_dialog_set_shortcut_title dzl_shortcut_accel_dialog_set_shortcut_title; 3260 3261 // dazzle.ShortcutChord 3262 3263 alias c_dzl_shortcut_chord_get_type dzl_shortcut_chord_get_type; 3264 alias c_dzl_shortcut_chord_new_from_event dzl_shortcut_chord_new_from_event; 3265 alias c_dzl_shortcut_chord_new_from_string dzl_shortcut_chord_new_from_string; 3266 alias c_dzl_shortcut_chord_append_event dzl_shortcut_chord_append_event; 3267 alias c_dzl_shortcut_chord_copy dzl_shortcut_chord_copy; 3268 alias c_dzl_shortcut_chord_free dzl_shortcut_chord_free; 3269 alias c_dzl_shortcut_chord_get_label dzl_shortcut_chord_get_label; 3270 alias c_dzl_shortcut_chord_get_length dzl_shortcut_chord_get_length; 3271 alias c_dzl_shortcut_chord_get_nth_key dzl_shortcut_chord_get_nth_key; 3272 alias c_dzl_shortcut_chord_has_modifier dzl_shortcut_chord_has_modifier; 3273 alias c_dzl_shortcut_chord_match dzl_shortcut_chord_match; 3274 alias c_dzl_shortcut_chord_to_string dzl_shortcut_chord_to_string; 3275 alias c_dzl_shortcut_chord_equal dzl_shortcut_chord_equal; 3276 alias c_dzl_shortcut_chord_hash dzl_shortcut_chord_hash; 3277 3278 // dazzle.ShortcutChordTable 3279 3280 alias c_dzl_shortcut_chord_table_add dzl_shortcut_chord_table_add; 3281 alias c_dzl_shortcut_chord_table_foreach dzl_shortcut_chord_table_foreach; 3282 alias c_dzl_shortcut_chord_table_free dzl_shortcut_chord_table_free; 3283 alias c_dzl_shortcut_chord_table_lookup dzl_shortcut_chord_table_lookup; 3284 alias c_dzl_shortcut_chord_table_lookup_data dzl_shortcut_chord_table_lookup_data; 3285 alias c_dzl_shortcut_chord_table_printf dzl_shortcut_chord_table_printf; 3286 alias c_dzl_shortcut_chord_table_remove dzl_shortcut_chord_table_remove; 3287 alias c_dzl_shortcut_chord_table_remove_data dzl_shortcut_chord_table_remove_data; 3288 alias c_dzl_shortcut_chord_table_set_free_func dzl_shortcut_chord_table_set_free_func; 3289 alias c_dzl_shortcut_chord_table_size dzl_shortcut_chord_table_size; 3290 alias c_dzl_shortcut_chord_table_new dzl_shortcut_chord_table_new; 3291 3292 // dazzle.ShortcutContext 3293 3294 alias c_dzl_shortcut_context_get_type dzl_shortcut_context_get_type; 3295 alias c_dzl_shortcut_context_new dzl_shortcut_context_new; 3296 alias c_dzl_shortcut_context_activate dzl_shortcut_context_activate; 3297 alias c_dzl_shortcut_context_add_action dzl_shortcut_context_add_action; 3298 alias c_dzl_shortcut_context_add_command dzl_shortcut_context_add_command; 3299 alias c_dzl_shortcut_context_add_signal dzl_shortcut_context_add_signal; 3300 alias c_dzl_shortcut_context_add_signal_va_list dzl_shortcut_context_add_signal_va_list; 3301 alias c_dzl_shortcut_context_add_signalv dzl_shortcut_context_add_signalv; 3302 alias c_dzl_shortcut_context_get_name dzl_shortcut_context_get_name; 3303 alias c_dzl_shortcut_context_load_from_data dzl_shortcut_context_load_from_data; 3304 alias c_dzl_shortcut_context_load_from_resource dzl_shortcut_context_load_from_resource; 3305 alias c_dzl_shortcut_context_remove dzl_shortcut_context_remove; 3306 3307 // dazzle.ShortcutController 3308 3309 alias c_dzl_shortcut_controller_get_type dzl_shortcut_controller_get_type; 3310 alias c_dzl_shortcut_controller_new dzl_shortcut_controller_new; 3311 alias c_dzl_shortcut_controller_find dzl_shortcut_controller_find; 3312 alias c_dzl_shortcut_controller_try_find dzl_shortcut_controller_try_find; 3313 alias c_dzl_shortcut_controller_add_command_action dzl_shortcut_controller_add_command_action; 3314 alias c_dzl_shortcut_controller_add_command_callback dzl_shortcut_controller_add_command_callback; 3315 alias c_dzl_shortcut_controller_add_command_signal dzl_shortcut_controller_add_command_signal; 3316 alias c_dzl_shortcut_controller_execute_command dzl_shortcut_controller_execute_command; 3317 alias c_dzl_shortcut_controller_get_context dzl_shortcut_controller_get_context; 3318 alias c_dzl_shortcut_controller_get_context_for_phase dzl_shortcut_controller_get_context_for_phase; 3319 alias c_dzl_shortcut_controller_get_current_chord dzl_shortcut_controller_get_current_chord; 3320 alias c_dzl_shortcut_controller_get_manager dzl_shortcut_controller_get_manager; 3321 alias c_dzl_shortcut_controller_get_widget dzl_shortcut_controller_get_widget; 3322 alias c_dzl_shortcut_controller_remove_accel dzl_shortcut_controller_remove_accel; 3323 alias c_dzl_shortcut_controller_set_context_by_name dzl_shortcut_controller_set_context_by_name; 3324 alias c_dzl_shortcut_controller_set_manager dzl_shortcut_controller_set_manager; 3325 3326 // dazzle.ShortcutLabel 3327 3328 alias c_dzl_shortcut_label_get_type dzl_shortcut_label_get_type; 3329 alias c_dzl_shortcut_label_new dzl_shortcut_label_new; 3330 alias c_dzl_shortcut_label_get_accelerator dzl_shortcut_label_get_accelerator; 3331 alias c_dzl_shortcut_label_get_chord dzl_shortcut_label_get_chord; 3332 alias c_dzl_shortcut_label_set_accelerator dzl_shortcut_label_set_accelerator; 3333 alias c_dzl_shortcut_label_set_chord dzl_shortcut_label_set_chord; 3334 3335 // dazzle.ShortcutManager 3336 3337 alias c_dzl_shortcut_manager_get_type dzl_shortcut_manager_get_type; 3338 alias c_dzl_shortcut_manager_get_default dzl_shortcut_manager_get_default; 3339 alias c_dzl_shortcut_manager_add_action dzl_shortcut_manager_add_action; 3340 alias c_dzl_shortcut_manager_add_command dzl_shortcut_manager_add_command; 3341 alias c_dzl_shortcut_manager_add_shortcut_entries dzl_shortcut_manager_add_shortcut_entries; 3342 alias c_dzl_shortcut_manager_add_shortcuts_to_window dzl_shortcut_manager_add_shortcuts_to_window; 3343 alias c_dzl_shortcut_manager_append_search_path dzl_shortcut_manager_append_search_path; 3344 alias c_dzl_shortcut_manager_get_theme dzl_shortcut_manager_get_theme; 3345 alias c_dzl_shortcut_manager_get_theme_by_name dzl_shortcut_manager_get_theme_by_name; 3346 alias c_dzl_shortcut_manager_get_theme_name dzl_shortcut_manager_get_theme_name; 3347 alias c_dzl_shortcut_manager_get_user_dir dzl_shortcut_manager_get_user_dir; 3348 alias c_dzl_shortcut_manager_handle_event dzl_shortcut_manager_handle_event; 3349 alias c_dzl_shortcut_manager_prepend_search_path dzl_shortcut_manager_prepend_search_path; 3350 alias c_dzl_shortcut_manager_queue_reload dzl_shortcut_manager_queue_reload; 3351 alias c_dzl_shortcut_manager_reload dzl_shortcut_manager_reload; 3352 alias c_dzl_shortcut_manager_remove_search_path dzl_shortcut_manager_remove_search_path; 3353 alias c_dzl_shortcut_manager_set_theme dzl_shortcut_manager_set_theme; 3354 alias c_dzl_shortcut_manager_set_theme_name dzl_shortcut_manager_set_theme_name; 3355 alias c_dzl_shortcut_manager_set_user_dir dzl_shortcut_manager_set_user_dir; 3356 3357 // dazzle.ShortcutModel 3358 3359 alias c_dzl_shortcut_model_get_type dzl_shortcut_model_get_type; 3360 alias c_dzl_shortcut_model_new dzl_shortcut_model_new; 3361 alias c_dzl_shortcut_model_get_manager dzl_shortcut_model_get_manager; 3362 alias c_dzl_shortcut_model_get_theme dzl_shortcut_model_get_theme; 3363 alias c_dzl_shortcut_model_rebuild dzl_shortcut_model_rebuild; 3364 alias c_dzl_shortcut_model_set_chord dzl_shortcut_model_set_chord; 3365 alias c_dzl_shortcut_model_set_manager dzl_shortcut_model_set_manager; 3366 alias c_dzl_shortcut_model_set_theme dzl_shortcut_model_set_theme; 3367 3368 // dazzle.ShortcutSimpleLabel 3369 3370 alias c_dzl_shortcut_simple_label_get_type dzl_shortcut_simple_label_get_type; 3371 alias c_dzl_shortcut_simple_label_new dzl_shortcut_simple_label_new; 3372 alias c_dzl_shortcut_simple_label_get_accel dzl_shortcut_simple_label_get_accel; 3373 alias c_dzl_shortcut_simple_label_get_action dzl_shortcut_simple_label_get_action; 3374 alias c_dzl_shortcut_simple_label_get_command dzl_shortcut_simple_label_get_command; 3375 alias c_dzl_shortcut_simple_label_get_title dzl_shortcut_simple_label_get_title; 3376 alias c_dzl_shortcut_simple_label_set_accel dzl_shortcut_simple_label_set_accel; 3377 alias c_dzl_shortcut_simple_label_set_action dzl_shortcut_simple_label_set_action; 3378 alias c_dzl_shortcut_simple_label_set_command dzl_shortcut_simple_label_set_command; 3379 alias c_dzl_shortcut_simple_label_set_title dzl_shortcut_simple_label_set_title; 3380 3381 // dazzle.ShortcutTheme 3382 3383 alias c_dzl_shortcut_theme_get_type dzl_shortcut_theme_get_type; 3384 alias c_dzl_shortcut_theme_new dzl_shortcut_theme_new; 3385 alias c_dzl_shortcut_theme_add_command dzl_shortcut_theme_add_command; 3386 alias c_dzl_shortcut_theme_add_context dzl_shortcut_theme_add_context; 3387 alias c_dzl_shortcut_theme_add_css_resource dzl_shortcut_theme_add_css_resource; 3388 alias c_dzl_shortcut_theme_find_context_by_name dzl_shortcut_theme_find_context_by_name; 3389 alias c_dzl_shortcut_theme_find_default_context dzl_shortcut_theme_find_default_context; 3390 alias c_dzl_shortcut_theme_get_chord_for_action dzl_shortcut_theme_get_chord_for_action; 3391 alias c_dzl_shortcut_theme_get_chord_for_command dzl_shortcut_theme_get_chord_for_command; 3392 alias c_dzl_shortcut_theme_get_name dzl_shortcut_theme_get_name; 3393 alias c_dzl_shortcut_theme_get_parent dzl_shortcut_theme_get_parent; 3394 alias c_dzl_shortcut_theme_get_parent_name dzl_shortcut_theme_get_parent_name; 3395 alias c_dzl_shortcut_theme_get_subtitle dzl_shortcut_theme_get_subtitle; 3396 alias c_dzl_shortcut_theme_get_title dzl_shortcut_theme_get_title; 3397 alias c_dzl_shortcut_theme_load_from_data dzl_shortcut_theme_load_from_data; 3398 alias c_dzl_shortcut_theme_load_from_file dzl_shortcut_theme_load_from_file; 3399 alias c_dzl_shortcut_theme_load_from_path dzl_shortcut_theme_load_from_path; 3400 alias c_dzl_shortcut_theme_remove_css_resource dzl_shortcut_theme_remove_css_resource; 3401 alias c_dzl_shortcut_theme_save_to_file dzl_shortcut_theme_save_to_file; 3402 alias c_dzl_shortcut_theme_save_to_path dzl_shortcut_theme_save_to_path; 3403 alias c_dzl_shortcut_theme_save_to_stream dzl_shortcut_theme_save_to_stream; 3404 alias c_dzl_shortcut_theme_set_accel_for_action dzl_shortcut_theme_set_accel_for_action; 3405 alias c_dzl_shortcut_theme_set_accel_for_command dzl_shortcut_theme_set_accel_for_command; 3406 alias c_dzl_shortcut_theme_set_chord_for_action dzl_shortcut_theme_set_chord_for_action; 3407 alias c_dzl_shortcut_theme_set_chord_for_command dzl_shortcut_theme_set_chord_for_command; 3408 alias c_dzl_shortcut_theme_set_parent_name dzl_shortcut_theme_set_parent_name; 3409 3410 // dazzle.ShortcutThemeEditor 3411 3412 alias c_dzl_shortcut_theme_editor_get_type dzl_shortcut_theme_editor_get_type; 3413 alias c_dzl_shortcut_theme_editor_new dzl_shortcut_theme_editor_new; 3414 alias c_dzl_shortcut_theme_editor_get_theme dzl_shortcut_theme_editor_get_theme; 3415 alias c_dzl_shortcut_theme_editor_set_theme dzl_shortcut_theme_editor_set_theme; 3416 3417 // dazzle.ShortcutTooltip 3418 3419 alias c_dzl_shortcut_tooltip_get_type dzl_shortcut_tooltip_get_type; 3420 alias c_dzl_shortcut_tooltip_new dzl_shortcut_tooltip_new; 3421 alias c_dzl_shortcut_tooltip_get_accel dzl_shortcut_tooltip_get_accel; 3422 alias c_dzl_shortcut_tooltip_get_command_id dzl_shortcut_tooltip_get_command_id; 3423 alias c_dzl_shortcut_tooltip_get_title dzl_shortcut_tooltip_get_title; 3424 alias c_dzl_shortcut_tooltip_get_widget dzl_shortcut_tooltip_get_widget; 3425 alias c_dzl_shortcut_tooltip_set_accel dzl_shortcut_tooltip_set_accel; 3426 alias c_dzl_shortcut_tooltip_set_command_id dzl_shortcut_tooltip_set_command_id; 3427 alias c_dzl_shortcut_tooltip_set_title dzl_shortcut_tooltip_set_title; 3428 alias c_dzl_shortcut_tooltip_set_widget dzl_shortcut_tooltip_set_widget; 3429 3430 // dazzle.ShortcutsGroup 3431 3432 alias c_dzl_shortcuts_group_get_type dzl_shortcuts_group_get_type; 3433 3434 // dazzle.ShortcutsSection 3435 3436 alias c_dzl_shortcuts_section_get_type dzl_shortcuts_section_get_type; 3437 3438 // dazzle.ShortcutsShortcut 3439 3440 alias c_dzl_shortcuts_shortcut_get_type dzl_shortcuts_shortcut_get_type; 3441 3442 // dazzle.ShortcutsWindow 3443 3444 alias c_dzl_shortcuts_window_get_type dzl_shortcuts_window_get_type; 3445 3446 // dazzle.SignalGroup 3447 3448 alias c_dzl_signal_group_get_type dzl_signal_group_get_type; 3449 alias c_dzl_signal_group_new dzl_signal_group_new; 3450 alias c_dzl_signal_group_block dzl_signal_group_block; 3451 alias c_dzl_signal_group_connect dzl_signal_group_connect; 3452 alias c_dzl_signal_group_connect_after dzl_signal_group_connect_after; 3453 alias c_dzl_signal_group_connect_data dzl_signal_group_connect_data; 3454 alias c_dzl_signal_group_connect_object dzl_signal_group_connect_object; 3455 alias c_dzl_signal_group_connect_swapped dzl_signal_group_connect_swapped; 3456 alias c_dzl_signal_group_get_target dzl_signal_group_get_target; 3457 alias c_dzl_signal_group_set_target dzl_signal_group_set_target; 3458 alias c_dzl_signal_group_unblock dzl_signal_group_unblock; 3459 3460 // dazzle.SimpleLabel 3461 3462 alias c_dzl_simple_label_get_type dzl_simple_label_get_type; 3463 alias c_dzl_simple_label_new dzl_simple_label_new; 3464 alias c_dzl_simple_label_get_label dzl_simple_label_get_label; 3465 alias c_dzl_simple_label_get_width_chars dzl_simple_label_get_width_chars; 3466 alias c_dzl_simple_label_get_xalign dzl_simple_label_get_xalign; 3467 alias c_dzl_simple_label_set_label dzl_simple_label_set_label; 3468 alias c_dzl_simple_label_set_width_chars dzl_simple_label_set_width_chars; 3469 alias c_dzl_simple_label_set_xalign dzl_simple_label_set_xalign; 3470 3471 // dazzle.SimplePopover 3472 3473 alias c_dzl_simple_popover_get_type dzl_simple_popover_get_type; 3474 alias c_dzl_simple_popover_new dzl_simple_popover_new; 3475 alias c_dzl_simple_popover_get_button_text dzl_simple_popover_get_button_text; 3476 alias c_dzl_simple_popover_get_message dzl_simple_popover_get_message; 3477 alias c_dzl_simple_popover_get_ready dzl_simple_popover_get_ready; 3478 alias c_dzl_simple_popover_get_text dzl_simple_popover_get_text; 3479 alias c_dzl_simple_popover_get_title dzl_simple_popover_get_title; 3480 alias c_dzl_simple_popover_set_button_text dzl_simple_popover_set_button_text; 3481 alias c_dzl_simple_popover_set_message dzl_simple_popover_set_message; 3482 alias c_dzl_simple_popover_set_ready dzl_simple_popover_set_ready; 3483 alias c_dzl_simple_popover_set_text dzl_simple_popover_set_text; 3484 alias c_dzl_simple_popover_set_title dzl_simple_popover_set_title; 3485 3486 // dazzle.Slider 3487 3488 alias c_dzl_slider_get_type dzl_slider_get_type; 3489 alias c_dzl_slider_new dzl_slider_new; 3490 alias c_dzl_slider_add_slider dzl_slider_add_slider; 3491 alias c_dzl_slider_get_position dzl_slider_get_position; 3492 alias c_dzl_slider_set_position dzl_slider_set_position; 3493 3494 // dazzle.StackList 3495 3496 alias c_dzl_stack_list_get_type dzl_stack_list_get_type; 3497 alias c_dzl_stack_list_new dzl_stack_list_new; 3498 alias c_dzl_stack_list_clear dzl_stack_list_clear; 3499 alias c_dzl_stack_list_get_depth dzl_stack_list_get_depth; 3500 alias c_dzl_stack_list_get_model dzl_stack_list_get_model; 3501 alias c_dzl_stack_list_pop dzl_stack_list_pop; 3502 alias c_dzl_stack_list_push dzl_stack_list_push; 3503 3504 // dazzle.StateMachine 3505 3506 alias c_dzl_state_machine_get_type dzl_state_machine_get_type; 3507 alias c_dzl_state_machine_new dzl_state_machine_new; 3508 alias c_dzl_state_machine_buildable_iface_init dzl_state_machine_buildable_iface_init; 3509 alias c_dzl_state_machine_add_binding dzl_state_machine_add_binding; 3510 alias c_dzl_state_machine_add_property dzl_state_machine_add_property; 3511 alias c_dzl_state_machine_add_property_valist dzl_state_machine_add_property_valist; 3512 alias c_dzl_state_machine_add_propertyv dzl_state_machine_add_propertyv; 3513 alias c_dzl_state_machine_add_style dzl_state_machine_add_style; 3514 alias c_dzl_state_machine_connect_object dzl_state_machine_connect_object; 3515 alias c_dzl_state_machine_create_action dzl_state_machine_create_action; 3516 alias c_dzl_state_machine_get_state dzl_state_machine_get_state; 3517 alias c_dzl_state_machine_is_state dzl_state_machine_is_state; 3518 alias c_dzl_state_machine_set_state dzl_state_machine_set_state; 3519 3520 // dazzle.Suggestion 3521 3522 alias c_dzl_suggestion_get_type dzl_suggestion_get_type; 3523 alias c_dzl_suggestion_new dzl_suggestion_new; 3524 alias c_dzl_suggestion_get_icon dzl_suggestion_get_icon; 3525 alias c_dzl_suggestion_get_icon_name dzl_suggestion_get_icon_name; 3526 alias c_dzl_suggestion_get_icon_surface dzl_suggestion_get_icon_surface; 3527 alias c_dzl_suggestion_get_id dzl_suggestion_get_id; 3528 alias c_dzl_suggestion_get_subtitle dzl_suggestion_get_subtitle; 3529 alias c_dzl_suggestion_get_title dzl_suggestion_get_title; 3530 alias c_dzl_suggestion_replace_typed_text dzl_suggestion_replace_typed_text; 3531 alias c_dzl_suggestion_set_icon_name dzl_suggestion_set_icon_name; 3532 alias c_dzl_suggestion_set_id dzl_suggestion_set_id; 3533 alias c_dzl_suggestion_set_subtitle dzl_suggestion_set_subtitle; 3534 alias c_dzl_suggestion_set_title dzl_suggestion_set_title; 3535 alias c_dzl_suggestion_suggest_suffix dzl_suggestion_suggest_suffix; 3536 3537 // dazzle.SuggestionButton 3538 3539 alias c_dzl_suggestion_button_get_type dzl_suggestion_button_get_type; 3540 alias c_dzl_suggestion_button_new dzl_suggestion_button_new; 3541 alias c_dzl_suggestion_button_get_button dzl_suggestion_button_get_button; 3542 alias c_dzl_suggestion_button_get_entry dzl_suggestion_button_get_entry; 3543 3544 // dazzle.SuggestionEntry 3545 3546 alias c_dzl_suggestion_entry_get_type dzl_suggestion_entry_get_type; 3547 alias c_dzl_suggestion_entry_new dzl_suggestion_entry_new; 3548 alias c_dzl_suggestion_entry_default_position_func dzl_suggestion_entry_default_position_func; 3549 alias c_dzl_suggestion_entry_get_activate_on_single_click dzl_suggestion_entry_get_activate_on_single_click; 3550 alias c_dzl_suggestion_entry_get_compact dzl_suggestion_entry_get_compact; 3551 alias c_dzl_suggestion_entry_get_model dzl_suggestion_entry_get_model; 3552 alias c_dzl_suggestion_entry_get_popover dzl_suggestion_entry_get_popover; 3553 alias c_dzl_suggestion_entry_get_suggestion dzl_suggestion_entry_get_suggestion; 3554 alias c_dzl_suggestion_entry_get_typed_text dzl_suggestion_entry_get_typed_text; 3555 alias c_dzl_suggestion_entry_hide_suggestions dzl_suggestion_entry_hide_suggestions; 3556 alias c_dzl_suggestion_entry_set_activate_on_single_click dzl_suggestion_entry_set_activate_on_single_click; 3557 alias c_dzl_suggestion_entry_set_compact dzl_suggestion_entry_set_compact; 3558 alias c_dzl_suggestion_entry_set_model dzl_suggestion_entry_set_model; 3559 alias c_dzl_suggestion_entry_set_position_func dzl_suggestion_entry_set_position_func; 3560 alias c_dzl_suggestion_entry_set_suggestion dzl_suggestion_entry_set_suggestion; 3561 alias c_dzl_suggestion_entry_window_position_func dzl_suggestion_entry_window_position_func; 3562 3563 // dazzle.SuggestionEntryBuffer 3564 3565 alias c_dzl_suggestion_entry_buffer_get_type dzl_suggestion_entry_buffer_get_type; 3566 alias c_dzl_suggestion_entry_buffer_new dzl_suggestion_entry_buffer_new; 3567 alias c_dzl_suggestion_entry_buffer_clear dzl_suggestion_entry_buffer_clear; 3568 alias c_dzl_suggestion_entry_buffer_commit dzl_suggestion_entry_buffer_commit; 3569 alias c_dzl_suggestion_entry_buffer_get_suggestion dzl_suggestion_entry_buffer_get_suggestion; 3570 alias c_dzl_suggestion_entry_buffer_get_typed_length dzl_suggestion_entry_buffer_get_typed_length; 3571 alias c_dzl_suggestion_entry_buffer_get_typed_text dzl_suggestion_entry_buffer_get_typed_text; 3572 alias c_dzl_suggestion_entry_buffer_set_suggestion dzl_suggestion_entry_buffer_set_suggestion; 3573 3574 // dazzle.SuggestionPopover 3575 3576 alias c_dzl_suggestion_popover_get_type dzl_suggestion_popover_get_type; 3577 alias c_dzl_suggestion_popover_new dzl_suggestion_popover_new; 3578 alias c_dzl_suggestion_popover_activate_selected dzl_suggestion_popover_activate_selected; 3579 alias c_dzl_suggestion_popover_get_model dzl_suggestion_popover_get_model; 3580 alias c_dzl_suggestion_popover_get_relative_to dzl_suggestion_popover_get_relative_to; 3581 alias c_dzl_suggestion_popover_get_selected dzl_suggestion_popover_get_selected; 3582 alias c_dzl_suggestion_popover_move_by dzl_suggestion_popover_move_by; 3583 alias c_dzl_suggestion_popover_popdown dzl_suggestion_popover_popdown; 3584 alias c_dzl_suggestion_popover_popup dzl_suggestion_popover_popup; 3585 alias c_dzl_suggestion_popover_set_model dzl_suggestion_popover_set_model; 3586 alias c_dzl_suggestion_popover_set_relative_to dzl_suggestion_popover_set_relative_to; 3587 alias c_dzl_suggestion_popover_set_selected dzl_suggestion_popover_set_selected; 3588 3589 // dazzle.SuggestionRow 3590 3591 alias c_dzl_suggestion_row_get_type dzl_suggestion_row_get_type; 3592 alias c_dzl_suggestion_row_new dzl_suggestion_row_new; 3593 alias c_dzl_suggestion_row_get_suggestion dzl_suggestion_row_get_suggestion; 3594 alias c_dzl_suggestion_row_set_suggestion dzl_suggestion_row_set_suggestion; 3595 3596 // dazzle.Tab 3597 3598 alias c_dzl_tab_get_type dzl_tab_get_type; 3599 alias c_dzl_tab_get_active dzl_tab_get_active; 3600 alias c_dzl_tab_get_can_close dzl_tab_get_can_close; 3601 alias c_dzl_tab_get_edge dzl_tab_get_edge; 3602 alias c_dzl_tab_get_icon_name dzl_tab_get_icon_name; 3603 alias c_dzl_tab_get_style dzl_tab_get_style; 3604 alias c_dzl_tab_get_title dzl_tab_get_title; 3605 alias c_dzl_tab_get_widget dzl_tab_get_widget; 3606 alias c_dzl_tab_set_active dzl_tab_set_active; 3607 alias c_dzl_tab_set_can_close dzl_tab_set_can_close; 3608 alias c_dzl_tab_set_edge dzl_tab_set_edge; 3609 alias c_dzl_tab_set_gicon dzl_tab_set_gicon; 3610 alias c_dzl_tab_set_icon_name dzl_tab_set_icon_name; 3611 alias c_dzl_tab_set_style dzl_tab_set_style; 3612 alias c_dzl_tab_set_title dzl_tab_set_title; 3613 alias c_dzl_tab_set_widget dzl_tab_set_widget; 3614 3615 // dazzle.TabStrip 3616 3617 alias c_dzl_tab_strip_get_type dzl_tab_strip_get_type; 3618 alias c_dzl_tab_strip_new dzl_tab_strip_new; 3619 alias c_dzl_tab_strip_add_control dzl_tab_strip_add_control; 3620 alias c_dzl_tab_strip_get_edge dzl_tab_strip_get_edge; 3621 alias c_dzl_tab_strip_get_stack dzl_tab_strip_get_stack; 3622 alias c_dzl_tab_strip_get_style dzl_tab_strip_get_style; 3623 alias c_dzl_tab_strip_set_edge dzl_tab_strip_set_edge; 3624 alias c_dzl_tab_strip_set_stack dzl_tab_strip_set_stack; 3625 alias c_dzl_tab_strip_set_style dzl_tab_strip_set_style; 3626 3627 // dazzle.TaskCache 3628 3629 alias c_dzl_task_cache_get_type dzl_task_cache_get_type; 3630 alias c_dzl_task_cache_new dzl_task_cache_new; 3631 alias c_dzl_task_cache_evict dzl_task_cache_evict; 3632 alias c_dzl_task_cache_evict_all dzl_task_cache_evict_all; 3633 alias c_dzl_task_cache_get_async dzl_task_cache_get_async; 3634 alias c_dzl_task_cache_get_finish dzl_task_cache_get_finish; 3635 alias c_dzl_task_cache_get_values dzl_task_cache_get_values; 3636 alias c_dzl_task_cache_peek dzl_task_cache_peek; 3637 alias c_dzl_task_cache_set_name dzl_task_cache_set_name; 3638 3639 // dazzle.ThemeManager 3640 3641 alias c_dzl_theme_manager_get_type dzl_theme_manager_get_type; 3642 alias c_dzl_theme_manager_new dzl_theme_manager_new; 3643 alias c_dzl_theme_manager_add_resources dzl_theme_manager_add_resources; 3644 alias c_dzl_theme_manager_remove_resources dzl_theme_manager_remove_resources; 3645 3646 // dazzle.ThreeGrid 3647 3648 alias c_dzl_three_grid_get_type dzl_three_grid_get_type; 3649 alias c_dzl_three_grid_new dzl_three_grid_new; 3650 3651 // dazzle.Tree 3652 3653 alias c_dzl_tree_get_type dzl_tree_get_type; 3654 alias c_dzl_tree_add_builder dzl_tree_add_builder; 3655 alias c_dzl_tree_expand_to_node dzl_tree_expand_to_node; 3656 alias c_dzl_tree_find_child_node dzl_tree_find_child_node; 3657 alias c_dzl_tree_find_custom dzl_tree_find_custom; 3658 alias c_dzl_tree_find_item dzl_tree_find_item; 3659 alias c_dzl_tree_get_context_menu dzl_tree_get_context_menu; 3660 alias c_dzl_tree_get_root dzl_tree_get_root; 3661 alias c_dzl_tree_get_selected dzl_tree_get_selected; 3662 alias c_dzl_tree_get_show_icons dzl_tree_get_show_icons; 3663 alias c_dzl_tree_rebuild dzl_tree_rebuild; 3664 alias c_dzl_tree_remove_builder dzl_tree_remove_builder; 3665 alias c_dzl_tree_scroll_to_node dzl_tree_scroll_to_node; 3666 alias c_dzl_tree_set_context_menu dzl_tree_set_context_menu; 3667 alias c_dzl_tree_set_filter dzl_tree_set_filter; 3668 alias c_dzl_tree_set_root dzl_tree_set_root; 3669 alias c_dzl_tree_set_show_icons dzl_tree_set_show_icons; 3670 alias c_dzl_tree_unselect_all dzl_tree_unselect_all; 3671 3672 // dazzle.TreeBuilder 3673 3674 alias c_dzl_tree_builder_get_type dzl_tree_builder_get_type; 3675 alias c_dzl_tree_builder_new dzl_tree_builder_new; 3676 alias c_dzl_tree_builder_get_tree dzl_tree_builder_get_tree; 3677 3678 // dazzle.TreeNode 3679 3680 alias c_dzl_tree_node_get_type dzl_tree_node_get_type; 3681 alias c_dzl_tree_node_new dzl_tree_node_new; 3682 alias c_dzl_tree_node_add_emblem dzl_tree_node_add_emblem; 3683 alias c_dzl_tree_node_append dzl_tree_node_append; 3684 alias c_dzl_tree_node_clear_emblems dzl_tree_node_clear_emblems; 3685 alias c_dzl_tree_node_collapse dzl_tree_node_collapse; 3686 alias c_dzl_tree_node_expand dzl_tree_node_expand; 3687 alias c_dzl_tree_node_get_area dzl_tree_node_get_area; 3688 alias c_dzl_tree_node_get_children_possible dzl_tree_node_get_children_possible; 3689 alias c_dzl_tree_node_get_expanded dzl_tree_node_get_expanded; 3690 alias c_dzl_tree_node_get_foreground_rgba dzl_tree_node_get_foreground_rgba; 3691 alias c_dzl_tree_node_get_gicon dzl_tree_node_get_gicon; 3692 alias c_dzl_tree_node_get_icon_name dzl_tree_node_get_icon_name; 3693 alias c_dzl_tree_node_get_item dzl_tree_node_get_item; 3694 alias c_dzl_tree_node_get_iter dzl_tree_node_get_iter; 3695 alias c_dzl_tree_node_get_parent dzl_tree_node_get_parent; 3696 alias c_dzl_tree_node_get_path dzl_tree_node_get_path; 3697 alias c_dzl_tree_node_get_reset_on_collapse dzl_tree_node_get_reset_on_collapse; 3698 alias c_dzl_tree_node_get_text dzl_tree_node_get_text; 3699 alias c_dzl_tree_node_get_tree dzl_tree_node_get_tree; 3700 alias c_dzl_tree_node_get_use_dim_label dzl_tree_node_get_use_dim_label; 3701 alias c_dzl_tree_node_get_use_markup dzl_tree_node_get_use_markup; 3702 alias c_dzl_tree_node_has_emblem dzl_tree_node_has_emblem; 3703 alias c_dzl_tree_node_insert dzl_tree_node_insert; 3704 alias c_dzl_tree_node_insert_sorted dzl_tree_node_insert_sorted; 3705 alias c_dzl_tree_node_invalidate dzl_tree_node_invalidate; 3706 alias c_dzl_tree_node_is_root dzl_tree_node_is_root; 3707 alias c_dzl_tree_node_n_children dzl_tree_node_n_children; 3708 alias c_dzl_tree_node_nth_child dzl_tree_node_nth_child; 3709 alias c_dzl_tree_node_prepend dzl_tree_node_prepend; 3710 alias c_dzl_tree_node_rebuild dzl_tree_node_rebuild; 3711 alias c_dzl_tree_node_remove dzl_tree_node_remove; 3712 alias c_dzl_tree_node_remove_emblem dzl_tree_node_remove_emblem; 3713 alias c_dzl_tree_node_select dzl_tree_node_select; 3714 alias c_dzl_tree_node_set_children_possible dzl_tree_node_set_children_possible; 3715 alias c_dzl_tree_node_set_emblems dzl_tree_node_set_emblems; 3716 alias c_dzl_tree_node_set_foreground_rgba dzl_tree_node_set_foreground_rgba; 3717 alias c_dzl_tree_node_set_gicon dzl_tree_node_set_gicon; 3718 alias c_dzl_tree_node_set_icon_name dzl_tree_node_set_icon_name; 3719 alias c_dzl_tree_node_set_item dzl_tree_node_set_item; 3720 alias c_dzl_tree_node_set_reset_on_collapse dzl_tree_node_set_reset_on_collapse; 3721 alias c_dzl_tree_node_set_text dzl_tree_node_set_text; 3722 alias c_dzl_tree_node_set_use_dim_label dzl_tree_node_set_use_dim_label; 3723 alias c_dzl_tree_node_set_use_markup dzl_tree_node_set_use_markup; 3724 alias c_dzl_tree_node_show_popover dzl_tree_node_show_popover; 3725 3726 // dazzle.Trie 3727 3728 alias c_dzl_trie_get_type dzl_trie_get_type; 3729 alias c_dzl_trie_new dzl_trie_new; 3730 alias c_dzl_trie_destroy dzl_trie_destroy; 3731 alias c_dzl_trie_insert dzl_trie_insert; 3732 alias c_dzl_trie_lookup dzl_trie_lookup; 3733 alias c_dzl_trie_ref dzl_trie_ref; 3734 alias c_dzl_trie_remove dzl_trie_remove; 3735 alias c_dzl_trie_traverse dzl_trie_traverse; 3736 alias c_dzl_trie_unref dzl_trie_unref; 3737 3738 // dazzle.WidgetActionGroup 3739 3740 alias c_dzl_widget_action_group_get_type dzl_widget_action_group_get_type; 3741 alias c_dzl_widget_action_group_attach dzl_widget_action_group_attach; 3742 alias c_dzl_widget_action_group_new dzl_widget_action_group_new; 3743 alias c_dzl_widget_action_group_set_action_enabled dzl_widget_action_group_set_action_enabled;