use crate::{ffi, 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,
))
}
}
}