// Take a look at the license at the top of the repository in the LICENSE file.
use crate::{prelude::*, Actionable};
use glib::{translate::*, Variant};
// rustdoc-stripper-ignore-next
/// Trait containing manually implemented methods of [`Actionable`](crate::Actionable).
pub trait ActionableExtManual: 'static {
/// Sets the target of an actionable widget.
///
/// This is a convenience function that calls `GLib::Variant::new()` for
/// @format_string and uses the result to call
/// [`ActionableExt::set_action_target_value()`][crate::prelude::ActionableExt::set_action_target_value()].
///
/// If you are setting a string-valued target and want to set
/// the action name at the same time, you can use
/// [`ActionableExt::set_detailed_action_name()`][crate::prelude::ActionableExt::set_detailed_action_name()].
/// ## `format_string`
/// a [`glib::Variant`][struct@crate::glib::Variant] format string
#[doc(alias = "gtk_actionable_set_action_target")]
#[doc(alias = "gtk_actionable_set_action_target_value")]
fn set_action_target(&self, target: Option<impl Into<Variant>>);
}
impl<O: IsA<Actionable>> ActionableExtManual for O {
fn set_action_target(&self, target: Option<impl Into<Variant>>) {
unsafe {
ffi::gtk_actionable_set_action_target_value(
self.as_ref().to_glib_none().0,
target.map(|v| v.into()).to_glib_none().0,
);
}
}
}