blob: e3b25b3f47b1cce85f77470ff8373bb5a62fefa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[CCode (cprefix = "Bacon", lower_case_cprefix = "bacon_")]
namespace Bacon {
[CCode (cheader_filename = "bacon-video-widget.h")]
public class VideoWidget : Gtk.Widget {
[CCode (has_construct_function = false)]
public VideoWidget () throws GLib.Error;
public Rotation get_rotation ();
public void set_rotation (Rotation rotation);
}
[CCode (cname="BvwRotation", cprefix = "BVW_ROTATION_", cheader_filename = "bacon-video-widget.h")]
public enum Rotation {
R_ZERO = 0,
R_90R = 1,
R_180 = 2,
R_90L = 3
}
}
|