1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
use glib::translate::*;
use std::fmt;
// use crate::Scriptable;

// TODO:  @implements Scriptable
glib_wrapper! {
    pub struct Behaviour(Object<ffi::ClutterBehaviour, ffi::ClutterBehaviourClass, BehaviourClass>);

    match fn {
        get_type => || ffi::clutter_behaviour_get_type(),
    }
}

impl Behaviour {}

pub const NONE_BEHAVIOUR: Option<&Behaviour> = None;

impl fmt::Display for Behaviour {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Behaviour")
    }
}