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
// 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::{Extractable, Formatter, Timeline};
use glib::{prelude::*, translate::*};
glib::wrapper! {
#[doc(alias = "GESCommandLineFormatter")]
pub struct CommandLineFormatter(Object<ffi::GESCommandLineFormatter, ffi::GESCommandLineFormatterClass>) @extends Formatter, @implements Extractable;
match fn {
type_ => || ffi::ges_command_line_formatter_get_type(),
}
}
impl CommandLineFormatter {
pub const NONE: Option<&'static CommandLineFormatter> = None;
#[doc(alias = "ges_command_line_formatter_get_help")]
#[doc(alias = "get_help")]
pub fn help(commands: &[&str]) -> glib::GString {
assert_initialized_main_thread!();
let nargs = commands.len() as _;
unsafe {
from_glib_full(ffi::ges_command_line_formatter_get_help(
nargs,
commands.to_glib_none().0,
))
}
}
#[doc(alias = "ges_command_line_formatter_get_timeline_uri")]
#[doc(alias = "get_timeline_uri")]
pub fn timeline_uri(timeline: &impl IsA<Timeline>) -> glib::GString {
skip_assert_initialized!();
unsafe {
from_glib_full(ffi::ges_command_line_formatter_get_timeline_uri(
timeline.as_ref().to_glib_none().0,
))
}
}
}