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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use glib::{bitflags::bitflags, prelude::*, translate::*};
use std::fmt;

bitflags! {
    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
    #[doc(alias = "GtkSourceCompletionActivation")]
    pub struct CompletionActivation: u32 {
        /// None.
        #[doc(alias = "GTK_SOURCE_COMPLETION_ACTIVATION_NONE")]
        const NONE = ffi::GTK_SOURCE_COMPLETION_ACTIVATION_NONE as _;
        /// Interactive activation. By
        /// default, it occurs on each insertion in the [`gtk::TextBuffer`][crate::gtk::TextBuffer]. This can be
        /// blocked temporarily with [`CompletionExt::block_interactive()`][crate::prelude::CompletionExt::block_interactive()].
        #[doc(alias = "GTK_SOURCE_COMPLETION_ACTIVATION_INTERACTIVE")]
        const INTERACTIVE = ffi::GTK_SOURCE_COMPLETION_ACTIVATION_INTERACTIVE as _;
        /// User requested activation.
        /// By default, it occurs when the user presses
        /// `<keycombo>``<keycap>`Control`</keycap>``<keycap>`space`</keycap>``</keycombo>`.
        #[doc(alias = "GTK_SOURCE_COMPLETION_ACTIVATION_USER_REQUESTED")]
        const USER_REQUESTED = ffi::GTK_SOURCE_COMPLETION_ACTIVATION_USER_REQUESTED as _;
    }
}

impl fmt::Display for CompletionActivation {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        <Self as fmt::Debug>::fmt(self, f)
    }
}

#[doc(hidden)]
impl IntoGlib for CompletionActivation {
    type GlibType = ffi::GtkSourceCompletionActivation;

    #[inline]
    fn into_glib(self) -> ffi::GtkSourceCompletionActivation {
        self.bits()
    }
}

#[doc(hidden)]
impl FromGlib<ffi::GtkSourceCompletionActivation> for CompletionActivation {
    #[inline]
    unsafe fn from_glib(value: ffi::GtkSourceCompletionActivation) -> Self {
        skip_assert_initialized!();
        Self::from_bits_truncate(value)
    }
}

impl StaticType for CompletionActivation {
    #[inline]
    #[doc(alias = "gtk_source_completion_activation_get_type")]
    fn static_type() -> glib::Type {
        unsafe { from_glib(ffi::gtk_source_completion_activation_get_type()) }
    }
}

impl glib::HasParamSpec for CompletionActivation {
    type ParamSpec = glib::ParamSpecFlags;
    type SetValue = Self;
    type BuilderFn = fn(&str) -> glib::ParamSpecFlagsBuilder<Self>;

    fn param_spec_builder() -> Self::BuilderFn {
        Self::ParamSpec::builder
    }
}

impl glib::value::ValueType for CompletionActivation {
    type Type = Self;
}

unsafe impl<'a> glib::value::FromValue<'a> for CompletionActivation {
    type Checker = glib::value::GenericValueTypeChecker<Self>;

    #[inline]
    unsafe fn from_value(value: &'a glib::Value) -> Self {
        skip_assert_initialized!();
        from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
    }
}

impl ToValue for CompletionActivation {
    #[inline]
    fn to_value(&self) -> glib::Value {
        let mut value = glib::Value::for_value_type::<Self>();
        unsafe {
            glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
        }
        value
    }

    #[inline]
    fn value_type(&self) -> glib::Type {
        Self::static_type()
    }
}

impl From<CompletionActivation> for glib::Value {
    #[inline]
    fn from(v: CompletionActivation) -> Self {
        skip_assert_initialized!();
        ToValue::to_value(&v)
    }
}

bitflags! {
    /// Flags to define the behavior of a [`FileSaver`][crate::FileSaver].
    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
    #[doc(alias = "GtkSourceFileSaverFlags")]
    pub struct FileSaverFlags: u32 {
        /// No flags.
        #[doc(alias = "GTK_SOURCE_FILE_SAVER_FLAGS_NONE")]
        const NONE = ffi::GTK_SOURCE_FILE_SAVER_FLAGS_NONE as _;
        /// Ignore invalid characters.
        #[doc(alias = "GTK_SOURCE_FILE_SAVER_FLAGS_IGNORE_INVALID_CHARS")]
        const IGNORE_INVALID_CHARS = ffi::GTK_SOURCE_FILE_SAVER_FLAGS_IGNORE_INVALID_CHARS as _;
        /// Save file despite external modifications.
        #[doc(alias = "GTK_SOURCE_FILE_SAVER_FLAGS_IGNORE_MODIFICATION_TIME")]
        const IGNORE_MODIFICATION_TIME = ffi::GTK_SOURCE_FILE_SAVER_FLAGS_IGNORE_MODIFICATION_TIME as _;
        /// Create a backup before saving the file.
        #[doc(alias = "GTK_SOURCE_FILE_SAVER_FLAGS_CREATE_BACKUP")]
        const CREATE_BACKUP = ffi::GTK_SOURCE_FILE_SAVER_FLAGS_CREATE_BACKUP as _;
    }
}

impl fmt::Display for FileSaverFlags {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        <Self as fmt::Debug>::fmt(self, f)
    }
}

#[doc(hidden)]
impl IntoGlib for FileSaverFlags {
    type GlibType = ffi::GtkSourceFileSaverFlags;

    #[inline]
    fn into_glib(self) -> ffi::GtkSourceFileSaverFlags {
        self.bits()
    }
}

#[doc(hidden)]
impl FromGlib<ffi::GtkSourceFileSaverFlags> for FileSaverFlags {
    #[inline]
    unsafe fn from_glib(value: ffi::GtkSourceFileSaverFlags) -> Self {
        skip_assert_initialized!();
        Self::from_bits_truncate(value)
    }
}

impl StaticType for FileSaverFlags {
    #[inline]
    #[doc(alias = "gtk_source_file_saver_flags_get_type")]
    fn static_type() -> glib::Type {
        unsafe { from_glib(ffi::gtk_source_file_saver_flags_get_type()) }
    }
}

impl glib::HasParamSpec for FileSaverFlags {
    type ParamSpec = glib::ParamSpecFlags;
    type SetValue = Self;
    type BuilderFn = fn(&str) -> glib::ParamSpecFlagsBuilder<Self>;

    fn param_spec_builder() -> Self::BuilderFn {
        Self::ParamSpec::builder
    }
}

impl glib::value::ValueType for FileSaverFlags {
    type Type = Self;
}

unsafe impl<'a> glib::value::FromValue<'a> for FileSaverFlags {
    type Checker = glib::value::GenericValueTypeChecker<Self>;

    #[inline]
    unsafe fn from_value(value: &'a glib::Value) -> Self {
        skip_assert_initialized!();
        from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
    }
}

impl ToValue for FileSaverFlags {
    #[inline]
    fn to_value(&self) -> glib::Value {
        let mut value = glib::Value::for_value_type::<Self>();
        unsafe {
            glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
        }
        value
    }

    #[inline]
    fn value_type(&self) -> glib::Type {
        Self::static_type()
    }
}

impl From<FileSaverFlags> for glib::Value {
    #[inline]
    fn from(v: FileSaverFlags) -> Self {
        skip_assert_initialized!();
        ToValue::to_value(&v)
    }
}

bitflags! {
    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
    #[doc(alias = "GtkSourceGutterRendererState")]
    pub struct GutterRendererState: u32 {
        /// normal state
        #[doc(alias = "GTK_SOURCE_GUTTER_RENDERER_STATE_NORMAL")]
        const NORMAL = ffi::GTK_SOURCE_GUTTER_RENDERER_STATE_NORMAL as _;
        /// area in the renderer represents the
        /// line on which the insert cursor is currently positioned
        #[doc(alias = "GTK_SOURCE_GUTTER_RENDERER_STATE_CURSOR")]
        const CURSOR = ffi::GTK_SOURCE_GUTTER_RENDERER_STATE_CURSOR as _;
        /// the mouse pointer is currently
        /// over the activatable area of the renderer
        #[doc(alias = "GTK_SOURCE_GUTTER_RENDERER_STATE_PRELIT")]
        const PRELIT = ffi::GTK_SOURCE_GUTTER_RENDERER_STATE_PRELIT as _;
        /// area in the renderer represents
        /// a line in the buffer which contains part of the selection
        #[doc(alias = "GTK_SOURCE_GUTTER_RENDERER_STATE_SELECTED")]
        const SELECTED = ffi::GTK_SOURCE_GUTTER_RENDERER_STATE_SELECTED as _;
    }
}

impl fmt::Display for GutterRendererState {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        <Self as fmt::Debug>::fmt(self, f)
    }
}

#[doc(hidden)]
impl IntoGlib for GutterRendererState {
    type GlibType = ffi::GtkSourceGutterRendererState;

    #[inline]
    fn into_glib(self) -> ffi::GtkSourceGutterRendererState {
        self.bits()
    }
}

#[doc(hidden)]
impl FromGlib<ffi::GtkSourceGutterRendererState> for GutterRendererState {
    #[inline]
    unsafe fn from_glib(value: ffi::GtkSourceGutterRendererState) -> Self {
        skip_assert_initialized!();
        Self::from_bits_truncate(value)
    }
}

impl StaticType for GutterRendererState {
    #[inline]
    #[doc(alias = "gtk_source_gutter_renderer_state_get_type")]
    fn static_type() -> glib::Type {
        unsafe { from_glib(ffi::gtk_source_gutter_renderer_state_get_type()) }
    }
}

impl glib::HasParamSpec for GutterRendererState {
    type ParamSpec = glib::ParamSpecFlags;
    type SetValue = Self;
    type BuilderFn = fn(&str) -> glib::ParamSpecFlagsBuilder<Self>;

    fn param_spec_builder() -> Self::BuilderFn {
        Self::ParamSpec::builder
    }
}

impl glib::value::ValueType for GutterRendererState {
    type Type = Self;
}

unsafe impl<'a> glib::value::FromValue<'a> for GutterRendererState {
    type Checker = glib::value::GenericValueTypeChecker<Self>;

    #[inline]
    unsafe fn from_value(value: &'a glib::Value) -> Self {
        skip_assert_initialized!();
        from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
    }
}

impl ToValue for GutterRendererState {
    #[inline]
    fn to_value(&self) -> glib::Value {
        let mut value = glib::Value::for_value_type::<Self>();
        unsafe {
            glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
        }
        value
    }

    #[inline]
    fn value_type(&self) -> glib::Type {
        Self::static_type()
    }
}

impl From<GutterRendererState> for glib::Value {
    #[inline]
    fn from(v: GutterRendererState) -> Self {
        skip_assert_initialized!();
        ToValue::to_value(&v)
    }
}

bitflags! {
    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
    #[doc(alias = "GtkSourceSortFlags")]
    pub struct SortFlags: u32 {
        /// no flags specified
        #[doc(alias = "GTK_SOURCE_SORT_FLAGS_NONE")]
        const NONE = ffi::GTK_SOURCE_SORT_FLAGS_NONE as _;
        /// case sensitive sort
        #[doc(alias = "GTK_SOURCE_SORT_FLAGS_CASE_SENSITIVE")]
        const CASE_SENSITIVE = ffi::GTK_SOURCE_SORT_FLAGS_CASE_SENSITIVE as _;
        /// sort in reverse order
        #[doc(alias = "GTK_SOURCE_SORT_FLAGS_REVERSE_ORDER")]
        const REVERSE_ORDER = ffi::GTK_SOURCE_SORT_FLAGS_REVERSE_ORDER as _;
        /// remove duplicates
        #[doc(alias = "GTK_SOURCE_SORT_FLAGS_REMOVE_DUPLICATES")]
        const REMOVE_DUPLICATES = ffi::GTK_SOURCE_SORT_FLAGS_REMOVE_DUPLICATES as _;
    }
}

impl fmt::Display for SortFlags {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        <Self as fmt::Debug>::fmt(self, f)
    }
}

#[doc(hidden)]
impl IntoGlib for SortFlags {
    type GlibType = ffi::GtkSourceSortFlags;

    #[inline]
    fn into_glib(self) -> ffi::GtkSourceSortFlags {
        self.bits()
    }
}

#[doc(hidden)]
impl FromGlib<ffi::GtkSourceSortFlags> for SortFlags {
    #[inline]
    unsafe fn from_glib(value: ffi::GtkSourceSortFlags) -> Self {
        skip_assert_initialized!();
        Self::from_bits_truncate(value)
    }
}

impl StaticType for SortFlags {
    #[inline]
    #[doc(alias = "gtk_source_sort_flags_get_type")]
    fn static_type() -> glib::Type {
        unsafe { from_glib(ffi::gtk_source_sort_flags_get_type()) }
    }
}

impl glib::HasParamSpec for SortFlags {
    type ParamSpec = glib::ParamSpecFlags;
    type SetValue = Self;
    type BuilderFn = fn(&str) -> glib::ParamSpecFlagsBuilder<Self>;

    fn param_spec_builder() -> Self::BuilderFn {
        Self::ParamSpec::builder
    }
}

impl glib::value::ValueType for SortFlags {
    type Type = Self;
}

unsafe impl<'a> glib::value::FromValue<'a> for SortFlags {
    type Checker = glib::value::GenericValueTypeChecker<Self>;

    #[inline]
    unsafe fn from_value(value: &'a glib::Value) -> Self {
        skip_assert_initialized!();
        from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
    }
}

impl ToValue for SortFlags {
    #[inline]
    fn to_value(&self) -> glib::Value {
        let mut value = glib::Value::for_value_type::<Self>();
        unsafe {
            glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
        }
        value
    }

    #[inline]
    fn value_type(&self) -> glib::Type {
        Self::static_type()
    }
}

impl From<SortFlags> for glib::Value {
    #[inline]
    fn from(v: SortFlags) -> Self {
        skip_assert_initialized!();
        ToValue::to_value(&v)
    }
}

bitflags! {
    /// [`SpaceLocationFlags`][crate::SpaceLocationFlags] contains flags for white space locations.
    ///
    /// If a line contains only white spaces (no text), the white spaces match both
    /// [`LEADING`][Self::LEADING] and [`TRAILING`][Self::TRAILING].
    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
    #[doc(alias = "GtkSourceSpaceLocationFlags")]
    pub struct SpaceLocationFlags: u32 {
        /// No flags.
        #[doc(alias = "GTK_SOURCE_SPACE_LOCATION_NONE")]
        const NONE = ffi::GTK_SOURCE_SPACE_LOCATION_NONE as _;
        /// Leading white spaces on a line, i.e. the
        ///  indentation.
        #[doc(alias = "GTK_SOURCE_SPACE_LOCATION_LEADING")]
        const LEADING = ffi::GTK_SOURCE_SPACE_LOCATION_LEADING as _;
        /// White spaces inside a line of text.
        #[doc(alias = "GTK_SOURCE_SPACE_LOCATION_INSIDE_TEXT")]
        const INSIDE_TEXT = ffi::GTK_SOURCE_SPACE_LOCATION_INSIDE_TEXT as _;
        /// Trailing white spaces on a line.
        #[doc(alias = "GTK_SOURCE_SPACE_LOCATION_TRAILING")]
        const TRAILING = ffi::GTK_SOURCE_SPACE_LOCATION_TRAILING as _;
        /// White spaces anywhere.
        #[doc(alias = "GTK_SOURCE_SPACE_LOCATION_ALL")]
        const ALL = ffi::GTK_SOURCE_SPACE_LOCATION_ALL as _;
    }
}

impl fmt::Display for SpaceLocationFlags {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        <Self as fmt::Debug>::fmt(self, f)
    }
}

#[doc(hidden)]
impl IntoGlib for SpaceLocationFlags {
    type GlibType = ffi::GtkSourceSpaceLocationFlags;

    #[inline]
    fn into_glib(self) -> ffi::GtkSourceSpaceLocationFlags {
        self.bits()
    }
}

#[doc(hidden)]
impl FromGlib<ffi::GtkSourceSpaceLocationFlags> for SpaceLocationFlags {
    #[inline]
    unsafe fn from_glib(value: ffi::GtkSourceSpaceLocationFlags) -> Self {
        skip_assert_initialized!();
        Self::from_bits_truncate(value)
    }
}

impl StaticType for SpaceLocationFlags {
    #[inline]
    #[doc(alias = "gtk_source_space_location_flags_get_type")]
    fn static_type() -> glib::Type {
        unsafe { from_glib(ffi::gtk_source_space_location_flags_get_type()) }
    }
}

impl glib::HasParamSpec for SpaceLocationFlags {
    type ParamSpec = glib::ParamSpecFlags;
    type SetValue = Self;
    type BuilderFn = fn(&str) -> glib::ParamSpecFlagsBuilder<Self>;

    fn param_spec_builder() -> Self::BuilderFn {
        Self::ParamSpec::builder
    }
}

impl glib::value::ValueType for SpaceLocationFlags {
    type Type = Self;
}

unsafe impl<'a> glib::value::FromValue<'a> for SpaceLocationFlags {
    type Checker = glib::value::GenericValueTypeChecker<Self>;

    #[inline]
    unsafe fn from_value(value: &'a glib::Value) -> Self {
        skip_assert_initialized!();
        from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
    }
}

impl ToValue for SpaceLocationFlags {
    #[inline]
    fn to_value(&self) -> glib::Value {
        let mut value = glib::Value::for_value_type::<Self>();
        unsafe {
            glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
        }
        value
    }

    #[inline]
    fn value_type(&self) -> glib::Type {
        Self::static_type()
    }
}

impl From<SpaceLocationFlags> for glib::Value {
    #[inline]
    fn from(v: SpaceLocationFlags) -> Self {
        skip_assert_initialized!();
        ToValue::to_value(&v)
    }
}

bitflags! {
    /// [`SpaceTypeFlags`][crate::SpaceTypeFlags] contains flags for white space types.
    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
    #[doc(alias = "GtkSourceSpaceTypeFlags")]
    pub struct SpaceTypeFlags: u32 {
        /// No flags.
        #[doc(alias = "GTK_SOURCE_SPACE_TYPE_NONE")]
        const NONE = ffi::GTK_SOURCE_SPACE_TYPE_NONE as _;
        /// Space character.
        #[doc(alias = "GTK_SOURCE_SPACE_TYPE_SPACE")]
        const SPACE = ffi::GTK_SOURCE_SPACE_TYPE_SPACE as _;
        /// Tab character.
        #[doc(alias = "GTK_SOURCE_SPACE_TYPE_TAB")]
        const TAB = ffi::GTK_SOURCE_SPACE_TYPE_TAB as _;
        /// Line break character. If the
        ///  [`implicit-trailing-newline`][struct@crate::Buffer#implicit-trailing-newline] property is [`true`],
        ///  [`SpaceDrawer`][crate::SpaceDrawer] also draws a line break at the end of the buffer.
        #[doc(alias = "GTK_SOURCE_SPACE_TYPE_NEWLINE")]
        const NEWLINE = ffi::GTK_SOURCE_SPACE_TYPE_NEWLINE as _;
        /// Non-breaking space character.
        #[doc(alias = "GTK_SOURCE_SPACE_TYPE_NBSP")]
        const NBSP = ffi::GTK_SOURCE_SPACE_TYPE_NBSP as _;
        /// All white spaces.
        #[doc(alias = "GTK_SOURCE_SPACE_TYPE_ALL")]
        const ALL = ffi::GTK_SOURCE_SPACE_TYPE_ALL as _;
    }
}

impl fmt::Display for SpaceTypeFlags {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        <Self as fmt::Debug>::fmt(self, f)
    }
}

#[doc(hidden)]
impl IntoGlib for SpaceTypeFlags {
    type GlibType = ffi::GtkSourceSpaceTypeFlags;

    #[inline]
    fn into_glib(self) -> ffi::GtkSourceSpaceTypeFlags {
        self.bits()
    }
}

#[doc(hidden)]
impl FromGlib<ffi::GtkSourceSpaceTypeFlags> for SpaceTypeFlags {
    #[inline]
    unsafe fn from_glib(value: ffi::GtkSourceSpaceTypeFlags) -> Self {
        skip_assert_initialized!();
        Self::from_bits_truncate(value)
    }
}

impl StaticType for SpaceTypeFlags {
    #[inline]
    #[doc(alias = "gtk_source_space_type_flags_get_type")]
    fn static_type() -> glib::Type {
        unsafe { from_glib(ffi::gtk_source_space_type_flags_get_type()) }
    }
}

impl glib::HasParamSpec for SpaceTypeFlags {
    type ParamSpec = glib::ParamSpecFlags;
    type SetValue = Self;
    type BuilderFn = fn(&str) -> glib::ParamSpecFlagsBuilder<Self>;

    fn param_spec_builder() -> Self::BuilderFn {
        Self::ParamSpec::builder
    }
}

impl glib::value::ValueType for SpaceTypeFlags {
    type Type = Self;
}

unsafe impl<'a> glib::value::FromValue<'a> for SpaceTypeFlags {
    type Checker = glib::value::GenericValueTypeChecker<Self>;

    #[inline]
    unsafe fn from_value(value: &'a glib::Value) -> Self {
        skip_assert_initialized!();
        from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
    }
}

impl ToValue for SpaceTypeFlags {
    #[inline]
    fn to_value(&self) -> glib::Value {
        let mut value = glib::Value::for_value_type::<Self>();
        unsafe {
            glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
        }
        value
    }

    #[inline]
    fn value_type(&self) -> glib::Type {
        Self::static_type()
    }
}

impl From<SpaceTypeFlags> for glib::Value {
    #[inline]
    fn from(v: SpaceTypeFlags) -> Self {
        skip_assert_initialized!();
        ToValue::to_value(&v)
    }
}