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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
// DO NOT EDIT

use crate::Marker;
#[cfg(feature = "v1_20")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_20")))]
use crate::MarkerFlags;
use glib::{
    prelude::*,
    signal::{connect_raw, SignalHandlerId},
    translate::*,
};
use std::boxed::Box as Box_;

glib::wrapper! {
    /// A [`Marker`][crate::Marker] can be colored by setting the `GES_META_MARKER_COLOR` meta.
    ///
    /// ## Properties
    ///
    ///
    /// #### `flags`
    ///  Flags indicating how markers on the list should be treated.
    ///
    /// Readable | Writeable | Construct
    ///
    /// ## Signals
    ///
    ///
    /// #### `marker-added`
    ///  Will be emitted after the marker was added to the marker-list.
    ///
    ///
    ///
    ///
    /// #### `marker-moved`
    ///  Will be emitted after the marker was moved to.
    ///
    ///
    ///
    ///
    /// #### `marker-removed`
    ///  Will be emitted after the marker was removed the marker-list.
    ///
    ///
    ///
    /// # Implements
    ///
    /// [`trait@glib::ObjectExt`]
    #[doc(alias = "GESMarkerList")]
    pub struct MarkerList(Object<ffi::GESMarkerList, ffi::GESMarkerListClass>);

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

impl MarkerList {
    /// Creates a new [`MarkerList`][crate::MarkerList].
    ///
    /// # Returns
    ///
    /// A new [`MarkerList`][crate::MarkerList]
    #[doc(alias = "ges_marker_list_new")]
    pub fn new() -> MarkerList {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::ges_marker_list_new()) }
    }

    /// ## `position`
    /// The position of the new marker
    ///
    /// # Returns
    ///
    /// The newly-added marker, the list keeps ownership
    /// of the marker
    #[doc(alias = "ges_marker_list_add")]
    pub fn add(&self, position: impl Into<Option<gst::ClockTime>>) -> Marker {
        unsafe {
            from_glib_none(ffi::ges_marker_list_add(
                self.to_glib_none().0,
                position.into().into_glib(),
            ))
        }
    }

    ///
    /// # Returns
    ///
    /// a `GList`
    /// of the [`Marker`][crate::Marker] within the GESMarkerList. The user will have
    /// to unref each [`Marker`][crate::Marker] and free the `GList`.
    #[doc(alias = "ges_marker_list_get_markers")]
    #[doc(alias = "get_markers")]
    pub fn markers(&self) -> Vec<Marker> {
        unsafe {
            FromGlibPtrContainer::from_glib_full(ffi::ges_marker_list_get_markers(
                self.to_glib_none().0,
            ))
        }
    }

    #[doc(alias = "ges_marker_list_move")]
    #[doc(alias = "move")]
    pub fn move_(&self, marker: &Marker, position: impl Into<Option<gst::ClockTime>>) -> bool {
        unsafe {
            from_glib(ffi::ges_marker_list_move(
                self.to_glib_none().0,
                marker.to_glib_none().0,
                position.into().into_glib(),
            ))
        }
    }

    /// Removes `marker` from `self`, this decreases the refcount of the
    /// marker by 1.
    ///
    /// # Returns
    ///
    /// [`true`] if the marker could be removed, [`false`] otherwise
    ///  (if the marker was not present in the list for example)
    #[doc(alias = "ges_marker_list_remove")]
    pub fn remove(&self, marker: &Marker) -> bool {
        unsafe {
            from_glib(ffi::ges_marker_list_remove(
                self.to_glib_none().0,
                marker.to_glib_none().0,
            ))
        }
    }

    ///
    /// # Returns
    ///
    /// The number of markers in `self`
    #[doc(alias = "ges_marker_list_size")]
    pub fn size(&self) -> u32 {
        unsafe { ffi::ges_marker_list_size(self.to_glib_none().0) }
    }

    /// Flags indicating how markers on the list should be treated.
    #[cfg(feature = "v1_20")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_20")))]
    pub fn flags(&self) -> MarkerFlags {
        ObjectExt::property(self, "flags")
    }

    /// Flags indicating how markers on the list should be treated.
    #[cfg(feature = "v1_20")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_20")))]
    pub fn set_flags(&self, flags: MarkerFlags) {
        ObjectExt::set_property(self, "flags", flags)
    }

    /// Will be emitted after the marker was added to the marker-list.
    /// ## `position`
    /// the position of the added marker
    /// ## `marker`
    /// the [`Marker`][crate::Marker] that was added.
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    #[doc(alias = "marker-added")]
    pub fn connect_marker_added<F: Fn(&Self, u64, &Marker) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn marker_added_trampoline<F: Fn(&MarkerList, u64, &Marker) + 'static>(
            this: *mut ffi::GESMarkerList,
            position: u64,
            marker: *mut ffi::GESMarker,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this), position, &from_glib_borrow(marker))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"marker-added\0".as_ptr() as *const _,
                Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
                    marker_added_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    /// Will be emitted after the marker was moved to.
    /// ## `previous_position`
    /// the previous position of the marker
    /// ## `new_position`
    /// the new position of the marker
    /// ## `marker`
    /// the [`Marker`][crate::Marker] that was moved.
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    #[doc(alias = "marker-moved")]
    pub fn connect_marker_moved<F: Fn(&Self, u64, u64, &Marker) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn marker_moved_trampoline<
            F: Fn(&MarkerList, u64, u64, &Marker) + 'static,
        >(
            this: *mut ffi::GESMarkerList,
            previous_position: u64,
            new_position: u64,
            marker: *mut ffi::GESMarker,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(
                &from_glib_borrow(this),
                previous_position,
                new_position,
                &from_glib_borrow(marker),
            )
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"marker-moved\0".as_ptr() as *const _,
                Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
                    marker_moved_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    /// Will be emitted after the marker was removed the marker-list.
    /// ## `marker`
    /// the [`Marker`][crate::Marker] that was removed.
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    #[doc(alias = "marker-removed")]
    pub fn connect_marker_removed<F: Fn(&Self, &Marker) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn marker_removed_trampoline<F: Fn(&MarkerList, &Marker) + 'static>(
            this: *mut ffi::GESMarkerList,
            marker: *mut ffi::GESMarker,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this), &from_glib_borrow(marker))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"marker-removed\0".as_ptr() as *const _,
                Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
                    marker_removed_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    #[cfg(feature = "v1_20")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_20")))]
    #[doc(alias = "flags")]
    pub fn connect_flags_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_flags_trampoline<F: Fn(&MarkerList) + 'static>(
            this: *mut ffi::GESMarkerList,
            _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::flags\0".as_ptr() as *const _,
                Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
                    notify_flags_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }
}

#[cfg(feature = "v1_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
impl Default for MarkerList {
    fn default() -> Self {
        Self::new()
    }
}