1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*
* Copyright (C) 2019 Alexander Mikhaylenko <exalm7659@gmail.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include <gladeui/glade.h>
#include <handy.h>
void glade_hdy_carousel_post_create (GladeWidgetAdaptor *adaptor,
GObject *container,
GladeCreateReason reason);
void glade_hdy_carousel_child_action_activate (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *object,
const gchar *action_path);
void glade_hdy_carousel_set_property (GladeWidgetAdaptor *adaptor,
GObject *object,
const gchar *id,
const GValue *value);
void glade_hdy_carousel_get_property (GladeWidgetAdaptor *adaptor,
GObject *object,
const gchar *id,
GValue *value);
gboolean glade_hdy_carousel_verify_property (GladeWidgetAdaptor *adaptor,
GObject *object,
const gchar *id,
const GValue *value);
void glade_hdy_carousel_add_child (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *child);
void glade_hdy_carousel_remove_child (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *child);
void glade_hdy_carousel_replace_child (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *current,
GObject *new_widget);
void glade_hdy_carousel_get_child_property (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *child,
const gchar *property_name,
GValue *value);
void glade_hdy_carousel_set_child_property (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *child,
const gchar *property_name,
GValue *value);
|