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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// DO NOT EDIT

use glib::{
    prelude::*,
    signal::{connect_raw, SignalHandlerId},
    translate::*,
};
use std::{boxed::Box as Box_, fmt, mem::transmute};

glib::wrapper! {
    /// [`SignalGroup`][crate::SignalGroup] manages to simplify the process of connecting
    /// many signals to a [`glib::Object`][crate::glib::Object] as a group. As such there is no API
    /// to disconnect a signal from the group.
    ///
    /// In particular, this allows you to:
    ///
    ///  - Change the target instance, which automatically causes disconnection
    ///  of the signals from the old instance and connecting to the new instance.
    ///  - Block and unblock signals as a group
    ///  - Ensuring that blocked state transfers across target instances.
    ///
    /// One place you might want to use such a structure is with `GtkTextView` and
    /// `GtkTextBuffer`. Often times, you'll need to connect to many signals on
    /// `GtkTextBuffer` from a `GtkTextView` subclass. This allows you to create a
    /// signal group during instance construction, simply bind the
    /// `GtkTextView:buffer` property to [`target`][struct@crate::SignalGroup#target] and connect
    /// all the signals you need. When the `GtkTextView:buffer` property changes
    /// all of the signals will be transitioned correctly.
    ///
    /// ## Properties
    ///
    ///
    /// #### `target`
    ///  The target instance used when connecting signals.
    ///
    /// Readable | Writeable
    ///
    ///
    /// #### `target-type`
    ///  The GType of the target property.
    ///
    /// Readable | Writeable | Construct Only
    ///
    /// ## Signals
    ///
    ///
    /// #### `bind`
    ///  This signal is emitted when the target instance of `self_`
    /// is set to a new [`glib::Object`][crate::glib::Object].
    ///
    /// This signal will only be emitted if the target of `self_` is non-[`None`].
    ///
    ///
    ///
    ///
    /// #### `unbind`
    ///  This signal is emitted when the target instance of `self_`
    /// is set to a new [`glib::Object`][crate::glib::Object].
    ///
    /// This signal will only be emitted if the previous target
    /// of `self_` is non-[`None`].
    ///
    ///
    ///
    /// # Implements
    ///
    /// [`trait@glib::ObjectExt`]
    #[doc(alias = "DzlSignalGroup")]
    pub struct SignalGroup(Object<ffi::DzlSignalGroup, ffi::DzlSignalGroupClass>);

    match fn {
        type_ => || ffi::dzl_signal_group_get_type(),
    }
}

impl SignalGroup {
    /// Creates a new [`SignalGroup`][crate::SignalGroup] for target instances of `target_type`.
    /// ## `target_type`
    /// the `GType` of the target instance.
    ///
    /// # Returns
    ///
    /// a new [`SignalGroup`][crate::SignalGroup]
    #[doc(alias = "dzl_signal_group_new")]
    pub fn new(target_type: glib::types::Type) -> SignalGroup {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::dzl_signal_group_new(target_type.into_glib())) }
    }

    /// Blocks all signal handlers managed by `self` so they will not
    /// be called during any signal emissions. Must be unblocked exactly
    /// the same number of times it has been blocked to become active again.
    ///
    /// This blocked state will be kept across changes of the target instance.
    ///
    /// See: `g_signal_handler_block()`.
    #[doc(alias = "dzl_signal_group_block")]
    pub fn block(&self) {
        unsafe {
            ffi::dzl_signal_group_block(self.to_glib_none().0);
        }
    }

    //#[doc(alias = "dzl_signal_group_connect")]
    //pub fn connect<P: Fn() + 'static>(&self, detailed_signal: &str, c_handler: P, data: /*Unimplemented*/Option<Basic: Pointer>) {
    //    unsafe { TODO: call ffi:dzl_signal_group_connect() }
    //}

    //#[doc(alias = "dzl_signal_group_connect_after")]
    //pub fn connect_after<P: Fn() + 'static>(&self, detailed_signal: &str, c_handler: P, data: /*Unimplemented*/Option<Basic: Pointer>) {
    //    unsafe { TODO: call ffi:dzl_signal_group_connect_after() }
    //}

    //#[doc(alias = "dzl_signal_group_connect_data")]
    //pub fn connect_data<P: Fn() + 'static>(&self, detailed_signal: &str, c_handler: P, data: /*Unimplemented*/Option<Basic: Pointer>, notify: /*Unimplemented*/Fn(/*Unimplemented*/Option<Basic: Pointer>), flags: glib::ConnectFlags) {
    //    unsafe { TODO: call ffi:dzl_signal_group_connect_data() }
    //}

    //#[doc(alias = "dzl_signal_group_connect_object")]
    //pub fn connect_object<P: Fn() + 'static>(&self, detailed_signal: &str, c_handler: P, object: /*Unimplemented*/Option<Basic: Pointer>, flags: glib::ConnectFlags) {
    //    unsafe { TODO: call ffi:dzl_signal_group_connect_object() }
    //}

    //#[doc(alias = "dzl_signal_group_connect_swapped")]
    //pub fn connect_swapped<P: FnOnce() + 'static>(&self, detailed_signal: &str, c_handler: P, data: /*Unimplemented*/Option<Basic: Pointer>) {
    //    unsafe { TODO: call ffi:dzl_signal_group_connect_swapped() }
    //}

    /// Gets the target instance used when connecting signals.
    ///
    /// # Returns
    ///
    /// The target instance.
    #[doc(alias = "dzl_signal_group_get_target")]
    #[doc(alias = "get_target")]
    pub fn target(&self) -> Option<glib::Object> {
        unsafe { from_glib_none(ffi::dzl_signal_group_get_target(self.to_glib_none().0)) }
    }

    /// Sets the target instance used when connecting signals. Any signal
    /// that has been registered with `dzl_signal_group_connect_object()` or
    /// similar functions will be connected to this object.
    ///
    /// If the target instance was previously set, signals will be
    /// disconnected from that object prior to connecting to `target`.
    /// ## `target`
    /// The target instance used
    ///  when connecting signals.
    #[doc(alias = "dzl_signal_group_set_target")]
    pub fn set_target(&self, target: Option<&impl IsA<glib::Object>>) {
        unsafe {
            ffi::dzl_signal_group_set_target(
                self.to_glib_none().0,
                target.map(|p| p.as_ref()).to_glib_none().0,
            );
        }
    }

    /// Unblocks all signal handlers managed by `self` so they will be
    /// called again during any signal emissions unless it is blocked
    /// again. Must be unblocked exactly the same number of times it
    /// has been blocked to become active again.
    ///
    /// See: `g_signal_handler_unblock()`.
    #[doc(alias = "dzl_signal_group_unblock")]
    pub fn unblock(&self) {
        unsafe {
            ffi::dzl_signal_group_unblock(self.to_glib_none().0);
        }
    }

    /// The GType of the target property.
    #[doc(alias = "target-type")]
    pub fn target_type(&self) -> glib::types::Type {
        ObjectExt::property(self, "target-type")
    }

    /// This signal is emitted when the target instance of `self_`
    /// is set to a new [`glib::Object`][crate::glib::Object].
    ///
    /// This signal will only be emitted if the target of `self_` is non-[`None`].
    /// ## `instance`
    /// a [`glib::Object`][crate::glib::Object]
    #[doc(alias = "bind")]
    pub fn connect_bind<F: Fn(&Self, &glib::Object) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn bind_trampoline<F: Fn(&SignalGroup, &glib::Object) + 'static>(
            this: *mut ffi::DzlSignalGroup,
            instance: *mut glib::gobject_ffi::GObject,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this), &from_glib_borrow(instance))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"bind\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    bind_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    /// This signal is emitted when the target instance of `self_`
    /// is set to a new [`glib::Object`][crate::glib::Object].
    ///
    /// This signal will only be emitted if the previous target
    /// of `self_` is non-[`None`].
    #[doc(alias = "unbind")]
    pub fn connect_unbind<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn unbind_trampoline<F: Fn(&SignalGroup) + 'static>(
            this: *mut ffi::DzlSignalGroup,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"unbind\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    unbind_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    #[doc(alias = "target")]
    pub fn connect_target_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_target_trampoline<F: Fn(&SignalGroup) + 'static>(
            this: *mut ffi::DzlSignalGroup,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::target\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_target_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }
}

impl fmt::Display for SignalGroup {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("SignalGroup")
    }
}