use std::{
char::CharTryFromError,
ffi::CStr,
num::{NonZeroI32, NonZeroI64, NonZeroI8, NonZeroU32, NonZeroU64, NonZeroU8},
path::{Path, PathBuf},
};
use crate::{
ffi, gobject_ffi,
object::{Interface, InterfaceRef, IsClass, IsInterface, ObjectClass},
prelude::*,
translate::*,
utils::is_canonical_pspec_name,
Object, ParamFlags, Type, Value,
};
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpec")]
pub struct ParamSpec(Shared<gobject_ffi::GParamSpec>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr),
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr),
}
}
impl StaticType for ParamSpec {
#[inline]
fn static_type() -> Type {
unsafe { from_glib(gobject_ffi::G_TYPE_PARAM) }
}
}
#[doc(hidden)]
impl crate::value::ValueType for ParamSpec {
type Type = ParamSpec;
}
#[doc(hidden)]
impl crate::value::ValueTypeOptional for ParamSpec {}
#[doc(hidden)]
unsafe impl<'a> crate::value::FromValue<'a> for ParamSpec {
type Checker = crate::value::GenericValueTypeOrNoneChecker<Self>;
unsafe fn from_value(value: &'a crate::Value) -> Self {
let ptr = gobject_ffi::g_value_dup_param(value.to_glib_none().0);
debug_assert!(!ptr.is_null());
from_glib_full(ptr)
}
}
#[doc(hidden)]
unsafe impl<'a> crate::value::FromValue<'a> for &'a ParamSpec {
type Checker = crate::value::GenericValueTypeOrNoneChecker<Self>;
unsafe fn from_value(value: &'a crate::Value) -> Self {
debug_assert_eq!(
std::mem::size_of::<Self>(),
std::mem::size_of::<crate::ffi::gpointer>()
);
let value = &*(value as *const crate::Value as *const crate::gobject_ffi::GValue);
let ptr = &value.data[0].v_pointer as *const crate::ffi::gpointer
as *const *const gobject_ffi::GParamSpec;
debug_assert!(!(*ptr).is_null());
&*(ptr as *const ParamSpec)
}
}
#[doc(hidden)]
impl crate::value::ToValue for ParamSpec {
fn to_value(&self) -> crate::Value {
unsafe {
let mut value = crate::Value::from_type_unchecked(ParamSpec::static_type());
gobject_ffi::g_value_take_param(value.to_glib_none_mut().0, self.to_glib_full());
value
}
}
fn value_type(&self) -> crate::Type {
ParamSpec::static_type()
}
}
#[doc(hidden)]
impl From<ParamSpec> for crate::Value {
#[inline]
fn from(s: ParamSpec) -> Self {
unsafe {
let mut value = crate::Value::from_type_unchecked(ParamSpec::static_type());
gobject_ffi::g_value_take_param(value.to_glib_none_mut().0, s.into_glib_ptr());
value
}
}
}
#[doc(hidden)]
impl crate::value::ToValueOptional for ParamSpec {
fn to_value_optional(s: Option<&Self>) -> crate::Value {
let mut value = crate::Value::for_value_type::<Self>();
unsafe {
gobject_ffi::g_value_take_param(value.to_glib_none_mut().0, s.to_glib_full());
}
value
}
}
impl AsRef<ParamSpec> for ParamSpec {
#[inline]
fn as_ref(&self) -> &ParamSpec {
self
}
}
unsafe impl Send for ParamSpec {}
unsafe impl Sync for ParamSpec {}
impl ParamSpec {
pub fn downcast<T: ParamSpecType>(self) -> Result<T, ParamSpec> {
unsafe {
if self.type_() == T::static_type() {
Ok(from_glib_full(self.into_glib_ptr()))
} else {
Err(self)
}
}
}
pub fn downcast_ref<T: ParamSpecType>(&self) -> Option<&T> {
unsafe {
if self.type_() == T::static_type() {
Some(&*(self as *const ParamSpec as *const T))
} else {
None
}
}
}
#[doc(alias = "get_type")]
#[inline]
pub fn type_(&self) -> Type {
unsafe {
from_glib(
(*(*(<Self as ToGlibPtr<*const _>>::to_glib_none(self).0))
.g_type_instance
.g_class)
.g_type,
)
}
}
#[inline]
pub fn is<T: StaticType>(&self) -> bool {
self.type_().is_a(T::static_type())
}
#[doc(alias = "get_value_type")]
#[inline]
pub fn value_type(&self) -> crate::Type {
unsafe { from_glib((*(<Self as ToGlibPtr<*const _>>::to_glib_none(self).0)).value_type) }
}
#[cfg(feature = "v2_74")]
#[cfg_attr(docsrs, doc(cfg(feature = "v2_74")))]
#[doc(alias = "g_param_value_is_valid")]
#[inline]
pub fn value_is_valid(&self, value: &Value) -> bool {
unsafe {
from_glib(gobject_ffi::g_param_value_is_valid(
self.to_glib_none().0,
value.to_glib_none().0,
))
}
}
#[doc(alias = "get_owner_type")]
#[inline]
pub fn owner_type(&self) -> crate::Type {
unsafe { from_glib((*(<Self as ToGlibPtr<*const _>>::to_glib_none(self).0)).owner_type) }
}
#[doc(alias = "get_flags")]
#[inline]
pub fn flags(&self) -> ParamFlags {
unsafe { from_glib((*(<Self as ToGlibPtr<*const _>>::to_glib_none(self).0)).flags) }
}
#[doc(alias = "g_param_spec_get_blurb")]
#[doc(alias = "get_blurb")]
#[inline]
pub fn blurb(&self) -> Option<&str> {
unsafe {
let ptr = gobject_ffi::g_param_spec_get_blurb(self.to_glib_none().0);
if ptr.is_null() {
None
} else {
CStr::from_ptr(ptr).to_str().ok()
}
}
}
#[doc(alias = "g_param_spec_get_default_value")]
#[doc(alias = "get_default_value")]
#[inline]
pub fn default_value(&self) -> &Value {
unsafe {
&*(gobject_ffi::g_param_spec_get_default_value(self.to_glib_none().0)
as *const crate::Value)
}
}
#[doc(alias = "g_param_spec_get_name")]
#[doc(alias = "get_name")]
#[inline]
pub fn name<'a>(&self) -> &'a str {
unsafe {
CStr::from_ptr(gobject_ffi::g_param_spec_get_name(self.to_glib_none().0))
.to_str()
.unwrap()
}
}
#[doc(alias = "g_param_spec_get_name_quark")]
#[doc(alias = "get_name_quark")]
#[inline]
pub fn name_quark(&self) -> crate::Quark {
unsafe {
from_glib(gobject_ffi::g_param_spec_get_name_quark(
self.to_glib_none().0,
))
}
}
#[doc(alias = "g_param_spec_get_nick")]
#[doc(alias = "get_nick")]
#[inline]
pub fn nick(&self) -> &str {
unsafe {
CStr::from_ptr(gobject_ffi::g_param_spec_get_nick(self.to_glib_none().0))
.to_str()
.unwrap()
}
}
#[doc(alias = "g_param_spec_get_redirect_target")]
#[doc(alias = "get_redirect_target")]
#[inline]
pub fn redirect_target(&self) -> Option<ParamSpec> {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_get_redirect_target(
self.to_glib_none().0,
))
}
}
#[cfg(feature = "v2_66")]
#[cfg_attr(docsrs, doc(cfg(feature = "v2_66")))]
#[doc(alias = "g_param_spec_is_valid_name")]
#[inline]
pub fn is_valid_name(name: &str) -> bool {
unsafe {
from_glib(gobject_ffi::g_param_spec_is_valid_name(
name.to_glib_none().0,
))
}
}
}
pub unsafe trait ParamSpecType:
StaticType + FromGlibPtrFull<*mut gobject_ffi::GParamSpec> + 'static
{
}
macro_rules! define_param_spec {
($rust_type:ident, $ffi_type:path, $type_name:literal) => {
impl StaticType for $rust_type {
#[inline]
fn static_type() -> Type {
unsafe { from_glib(gobject_ffi::g_type_from_name(concat!($type_name, "\0").as_ptr() as *const _)) }
}
}
#[doc(hidden)]
impl crate::value::ValueType for $rust_type {
type Type = $rust_type;
}
#[doc(hidden)]
impl crate::value::ValueTypeOptional for $rust_type {}
#[doc(hidden)]
unsafe impl<'a> crate::value::FromValue<'a> for $rust_type {
type Checker = $crate::value::GenericValueTypeOrNoneChecker<Self>;
unsafe fn from_value(value: &'a crate::Value) -> Self {
let ptr = gobject_ffi::g_value_dup_param(value.to_glib_none().0);
debug_assert!(!ptr.is_null());
from_glib_full(ptr as *mut $ffi_type)
}
}
#[doc(hidden)]
unsafe impl<'a> crate::value::FromValue<'a> for &'a $rust_type {
type Checker = crate::value::GenericValueTypeOrNoneChecker<Self>;
unsafe fn from_value(value: &'a crate::Value) -> Self {
debug_assert_eq!(std::mem::size_of::<Self>(), std::mem::size_of::<crate::ffi::gpointer>());
let value = &*(value as *const crate::Value as *const crate::gobject_ffi::GValue);
let ptr = &value.data[0].v_pointer as *const crate::ffi::gpointer as *const *const gobject_ffi::GParamSpec;
debug_assert!(!(*ptr).is_null());
&*(ptr as *const $rust_type)
}
}
#[doc(hidden)]
impl crate::value::ToValue for $rust_type {
fn to_value(&self) -> crate::Value {
unsafe {
let mut value = crate::Value::from_type_unchecked($rust_type::static_type());
gobject_ffi::g_value_take_param(value.to_glib_none_mut().0, $crate::translate::ToGlibPtr::<*const $ffi_type>::to_glib_full(self) as *mut _);
value
}
}
fn value_type(&self) -> crate::Type {
$rust_type::static_type()
}
}
#[doc(hidden)]
impl From<$rust_type> for crate::Value {
#[inline]
fn from(s: $rust_type) -> Self {
unsafe {
let mut value = crate::Value::from_type_unchecked($rust_type::static_type());
gobject_ffi::g_value_take_param(
value.to_glib_none_mut().0,
$crate::translate::IntoGlibPtr::<*mut gobject_ffi::GParamSpec>::into_glib_ptr(s),
);
value
}
}
}
#[doc(hidden)]
impl crate::value::ToValueOptional for $rust_type {
fn to_value_optional(s: Option<&Self>) -> crate::Value {
let mut value = crate::Value::for_value_type::<Self>();
unsafe {
gobject_ffi::g_value_take_param(value.to_glib_none_mut().0, $crate::translate::ToGlibPtr::<*const $ffi_type>::to_glib_full(&s) as *mut _);
}
value
}
}
unsafe impl Send for $rust_type {}
unsafe impl Sync for $rust_type {}
impl std::ops::Deref for $rust_type {
type Target = ParamSpec;
#[inline]
fn deref(&self) -> &Self::Target {
unsafe {
&*(self as *const $rust_type as *const ParamSpec)
}
}
}
unsafe impl ParamSpecType for $rust_type {}
#[doc(hidden)]
impl<'a> ToGlibPtr<'a, *const gobject_ffi::GParamSpec> for $rust_type {
type Storage = std::marker::PhantomData<&'a $crate::shared::Shared<$ffi_type, $rust_type>>;
#[inline]
fn to_glib_none(&'a self) -> $crate::translate::Stash<'a, *const gobject_ffi::GParamSpec, Self> {
let stash = $crate::translate::ToGlibPtr::<*const $ffi_type>::to_glib_none(self);
$crate::translate::Stash(stash.0 as *const _, stash.1)
}
#[inline]
fn to_glib_full(&self) -> *const gobject_ffi::GParamSpec {
$crate::translate::ToGlibPtr::<*const $ffi_type>::to_glib_full(self) as *const _
}
}
#[doc(hidden)]
impl<'a> ToGlibPtr<'a, *mut gobject_ffi::GParamSpec> for $rust_type {
type Storage = std::marker::PhantomData<&'a $crate::shared::Shared<$ffi_type, $rust_type>>;
#[inline]
fn to_glib_none(&'a self) -> $crate::translate::Stash<'a, *mut gobject_ffi::GParamSpec, Self> {
let stash = $crate::translate::ToGlibPtr::<*mut $ffi_type>::to_glib_none(self);
$crate::translate::Stash(stash.0 as *mut _, stash.1)
}
#[inline]
fn to_glib_full(&self) -> *mut gobject_ffi::GParamSpec {
$crate::translate::ToGlibPtr::<*mut $ffi_type>::to_glib_full(self) as *mut _
}
}
#[doc(hidden)]
impl IntoGlibPtr<*mut gobject_ffi::GParamSpec> for $rust_type {
#[inline]
unsafe fn into_glib_ptr(self) -> *mut gobject_ffi::GParamSpec {
let s = std::mem::ManuallyDrop::new(self);
s.to_glib_none().0
}
}
#[doc(hidden)]
impl IntoGlibPtr<*const gobject_ffi::GParamSpec> for $rust_type {
#[inline]
unsafe fn into_glib_ptr(self) -> *const gobject_ffi::GParamSpec {
let s = std::mem::ManuallyDrop::new(self);
s.to_glib_none().0
}
}
#[doc(hidden)]
impl FromGlibPtrNone<*const gobject_ffi::GParamSpec> for $rust_type {
#[inline]
unsafe fn from_glib_none(ptr: *const gobject_ffi::GParamSpec) -> Self {
from_glib_none(ptr as *const $ffi_type)
}
}
#[doc(hidden)]
impl FromGlibPtrNone<*mut gobject_ffi::GParamSpec> for $rust_type {
#[inline]
unsafe fn from_glib_none(ptr: *mut gobject_ffi::GParamSpec) -> Self {
from_glib_none(ptr as *mut $ffi_type)
}
}
#[doc(hidden)]
impl FromGlibPtrBorrow<*const gobject_ffi::GParamSpec> for $rust_type {
#[inline]
unsafe fn from_glib_borrow(ptr: *const gobject_ffi::GParamSpec) -> Borrowed<Self> {
from_glib_borrow(ptr as *const $ffi_type)
}
}
#[doc(hidden)]
impl FromGlibPtrBorrow<*mut gobject_ffi::GParamSpec> for $rust_type {
#[inline]
unsafe fn from_glib_borrow(ptr: *mut gobject_ffi::GParamSpec) -> Borrowed<Self> {
from_glib_borrow(ptr as *mut $ffi_type)
}
}
#[doc(hidden)]
impl FromGlibPtrFull<*mut gobject_ffi::GParamSpec> for $rust_type {
#[inline]
unsafe fn from_glib_full(ptr: *mut gobject_ffi::GParamSpec) -> Self {
from_glib_full(ptr as *mut $ffi_type)
}
}
impl $rust_type {
#[inline]
pub fn upcast(self) -> ParamSpec {
unsafe {
from_glib_full(IntoGlibPtr::<*mut $ffi_type>::into_glib_ptr(self) as *mut gobject_ffi::GParamSpec)
}
}
#[inline]
pub fn upcast_ref(&self) -> &ParamSpec {
&*self
}
}
impl AsRef<ParamSpec> for $rust_type {
#[inline]
fn as_ref(&self) -> &ParamSpec {
&self
}
}
};
}
macro_rules! define_param_spec_default {
($rust_type:ident, $ffi_type:path, $value_type:ty, $from_glib:expr) => {
impl $rust_type {
#[inline]
#[allow(clippy::redundant_closure_call)]
pub fn default_value(&self) -> $value_type {
unsafe {
let ptr =
$crate::translate::ToGlibPtr::<*const $ffi_type>::to_glib_none(self).0;
$from_glib((*ptr).default_value)
}
}
}
};
}
macro_rules! define_param_spec_min_max {
($rust_type:ident, $ffi_type:path, $value_type:ty) => {
impl $rust_type {
#[inline]
pub fn minimum(&self) -> $value_type {
unsafe {
let ptr =
$crate::translate::ToGlibPtr::<*const $ffi_type>::to_glib_none(self).0;
(*ptr).minimum
}
}
#[inline]
pub fn maximum(&self) -> $value_type {
unsafe {
let ptr =
$crate::translate::ToGlibPtr::<*const $ffi_type>::to_glib_none(self).0;
(*ptr).maximum
}
}
}
};
}
macro_rules! define_param_spec_numeric {
($rust_type:ident, $ffi_type:path, $value_type:ty, $type_name:literal, $ffi_fun:ident) => {
define_param_spec!($rust_type, $ffi_type, $type_name);
define_param_spec_default!($rust_type, $ffi_type, $value_type, |x| x);
define_param_spec_min_max!($rust_type, $ffi_type, $value_type);
impl $rust_type {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
minimum: $value_type,
maximum: $value_type,
default_value: $value_type,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::$ffi_fun(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
minimum,
maximum,
default_value,
flags.into_glib(),
))
}
}
}
};
}
pub trait ParamSpecBuilderExt<'a>: Sized {
fn set_nick(&mut self, nick: Option<&'a str>);
fn set_blurb(&mut self, blurb: Option<&'a str>);
fn set_flags(&mut self, flags: crate::ParamFlags);
fn current_flags(&self) -> crate::ParamFlags;
fn nick(mut self, nick: &'a str) -> Self {
self.set_nick(Some(nick));
self
}
fn blurb(mut self, blurb: &'a str) -> Self {
self.set_blurb(Some(blurb));
self
}
fn flags(mut self, flags: crate::ParamFlags) -> Self {
self.set_flags(flags);
self
}
fn read_only(self) -> Self {
let flags =
(self.current_flags() - crate::ParamFlags::WRITABLE) | crate::ParamFlags::READABLE;
self.flags(flags)
}
fn write_only(self) -> Self {
let flags =
(self.current_flags() - crate::ParamFlags::READABLE) | crate::ParamFlags::WRITABLE;
self.flags(flags)
}
fn readwrite(self) -> Self {
let flags = self.current_flags() | crate::ParamFlags::READWRITE;
self.flags(flags)
}
fn construct(self) -> Self {
let flags = self.current_flags() | crate::ParamFlags::CONSTRUCT;
self.flags(flags)
}
fn construct_only(self) -> Self {
let flags = self.current_flags() | crate::ParamFlags::CONSTRUCT_ONLY;
self.flags(flags)
}
fn lax_validation(self) -> Self {
let flags = self.current_flags() | crate::ParamFlags::LAX_VALIDATION;
self.flags(flags)
}
fn explicit_notify(self) -> Self {
let flags = self.current_flags() | crate::ParamFlags::EXPLICIT_NOTIFY;
self.flags(flags)
}
fn deprecated(self) -> Self {
let flags = self.current_flags() | crate::ParamFlags::DEPRECATED;
self.flags(flags)
}
}
macro_rules! define_builder {
(@constructors $rust_type:ident, $alias:literal, $builder_type:ident $(($($req_ident:ident: $req_ty:ty,)*))?) => {
impl<'a> $builder_type<'a> {
fn new(name: &'a str, $($($req_ident: $req_ty)*)?) -> Self {
assert_param_name(name);
Self {
name,
$($($req_ident: Some($req_ident),)*)?
..Default::default()
}
}
}
impl $rust_type {
#[doc(alias = $alias)]
pub fn builder(name: &str, $($($req_ident: $req_ty),*)?) -> $builder_type<'_> {
$builder_type::new(name, $($($req_ident),*)?)
}
}
impl<'a> crate::prelude::ParamSpecBuilderExt<'a> for $builder_type<'a> {
fn set_nick(&mut self, nick: Option<&'a str>) {
self.nick = nick;
}
fn set_blurb(&mut self, blurb: Option<&'a str>) {
self.blurb = blurb;
}
fn set_flags(&mut self, flags: crate::ParamFlags) {
self.flags = flags;
}
fn current_flags(&self) -> crate::ParamFlags {
self.flags
}
}
};
(
$rust_type:ident, $alias:literal, $builder_type:ident {
$($field_id:ident: $field_ty:ty $(= $field_expr:expr)?,)*
}
$(requires $required_tt:tt)?
) => {
#[derive(Default)]
#[must_use]
pub struct $builder_type<'a> {
name: &'a str,
nick: Option<&'a str>,
blurb: Option<&'a str>,
flags: crate::ParamFlags,
$($field_id: Option<$field_ty>),*
}
impl<'a> $builder_type<'a> {
$(
$(#[doc = concat!("Default: `", stringify!($field_expr), "`")])?
pub fn $field_id(mut self, value: $field_ty) -> Self {
self.$field_id = Some(value);
self
}
)*
#[must_use]
pub fn build(self) -> ParamSpec {
unsafe {
$rust_type::new_unchecked(
self.name,
self.nick,
self.blurb,
$(self
.$field_id
$(.or(Some($field_expr)))?
.expect("impossible: missing parameter in ParamSpec*Builder")
,)*
self.flags
)
}
}
}
define_builder!(@constructors $rust_type, $alias, $builder_type $($required_tt)?);
}
}
macro_rules! define_builder_numeric {
($rust_type:ident, $alias:literal, $builder_type:ident, $n_ty:ty) => {
define_builder!(
$rust_type,
$alias,
$builder_type {
minimum: $n_ty = <$n_ty>::MIN,
maximum: $n_ty = <$n_ty>::MAX,
default_value: $n_ty = <$n_ty as Default>::default(),
}
);
};
}
#[track_caller]
fn assert_param_name(name: &str) {
assert!(
is_canonical_pspec_name(name),
"{name} is not a valid canonical parameter name",
);
}
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecChar")]
pub struct ParamSpecChar(Shared<gobject_ffi::GParamSpecChar>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecChar,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec_numeric!(
ParamSpecChar,
gobject_ffi::GParamSpecChar,
i8,
"GParamChar",
g_param_spec_char
);
define_builder_numeric!(ParamSpecChar, "g_param_spec_char", ParamSpecCharBuilder, i8);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecUChar")]
pub struct ParamSpecUChar(Shared<gobject_ffi::GParamSpecUChar>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecUChar,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec_numeric!(
ParamSpecUChar,
gobject_ffi::GParamSpecUChar,
u8,
"GParamUChar",
g_param_spec_uchar
);
define_builder_numeric!(
ParamSpecUChar,
"g_param_spec_uchar",
ParamSpecUCharBuilder,
u8
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecBoolean")]
pub struct ParamSpecBoolean(Shared<gobject_ffi::GParamSpecBoolean>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecBoolean,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(
ParamSpecBoolean,
gobject_ffi::GParamSpecBoolean,
"GParamBoolean"
);
define_param_spec_default!(
ParamSpecBoolean,
gobject_ffi::GParamSpecBoolean,
bool,
|x| from_glib(x)
);
impl ParamSpecBoolean {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
default_value: bool,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_boolean(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
default_value.into_glib(),
flags.into_glib(),
))
}
}
}
define_builder!(
ParamSpecBoolean,
"g_param_spec_builder",
ParamSpecBooleanBuilder {
default_value: bool = false,
}
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecInt")]
pub struct ParamSpecInt(Shared<gobject_ffi::GParamSpecInt>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecInt,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec_numeric!(
ParamSpecInt,
gobject_ffi::GParamSpecInt,
i32,
"GParamInt",
g_param_spec_int
);
define_builder_numeric!(ParamSpecInt, "g_param_spec_int", ParamSpecIntBuilder, i32);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecUInt")]
pub struct ParamSpecUInt(Shared<gobject_ffi::GParamSpecUInt>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecUInt,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec_numeric!(
ParamSpecUInt,
gobject_ffi::GParamSpecUInt,
u32,
"GParamUInt",
g_param_spec_uint
);
define_builder_numeric!(
ParamSpecUInt,
"g_param_spec_uint",
ParamSpecUIntBuilder,
u32
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecLong")]
pub struct ParamSpecLong(Shared<gobject_ffi::GParamSpecLong>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecLong,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec_numeric!(
ParamSpecLong,
gobject_ffi::GParamSpecLong,
libc::c_long,
"GParamLong",
g_param_spec_long
);
define_builder_numeric!(
ParamSpecLong,
"g_param_spec_long",
ParamSpecLongBuilder,
libc::c_long
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecULong")]
pub struct ParamSpecULong(Shared<gobject_ffi::GParamSpecULong>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecULong,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec_numeric!(
ParamSpecULong,
gobject_ffi::GParamSpecULong,
libc::c_ulong,
"GParamULong",
g_param_spec_ulong
);
define_builder_numeric!(
ParamSpecULong,
"g_param_spec_ulong",
ParamSpecULongBuilder,
libc::c_ulong
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecInt64")]
pub struct ParamSpecInt64(Shared<gobject_ffi::GParamSpecInt64>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecInt64,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec_numeric!(
ParamSpecInt64,
gobject_ffi::GParamSpecInt64,
i64,
"GParamInt64",
g_param_spec_int64
);
define_builder_numeric!(
ParamSpecInt64,
"g_param_spec_int64",
ParamSpecInt64Builder,
i64
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecUInt64")]
pub struct ParamSpecUInt64(Shared<gobject_ffi::GParamSpecUInt64>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecUInt64,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec_numeric!(
ParamSpecUInt64,
gobject_ffi::GParamSpecUInt64,
u64,
"GParamUInt64",
g_param_spec_uint64
);
define_builder_numeric!(
ParamSpecUInt64,
"g_param_spec_uint64",
ParamSpecUInt64Builder,
u64
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecUnichar")]
pub struct ParamSpecUnichar(Shared<gobject_ffi::GParamSpecUnichar>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecUnichar,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(
ParamSpecUnichar,
gobject_ffi::GParamSpecUnichar,
"GParamUnichar"
);
define_param_spec_default!(ParamSpecUnichar, gobject_ffi::GParamSpecUnichar, Result<char, CharTryFromError>, TryFrom::try_from);
impl ParamSpecUnichar {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
default_value: char,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_unichar(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
default_value.into_glib(),
flags.into_glib(),
))
}
}
}
define_builder!(
ParamSpecUnichar,
"g_param_spec_unichar",
ParamSpecUnicharBuilder {
default_value: char,
}
requires (default_value: char,)
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecEnum")]
pub struct ParamSpecEnum(Shared<gobject_ffi::GParamSpecEnum>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecEnum,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(ParamSpecEnum, gobject_ffi::GParamSpecEnum, "GParamEnum");
impl ParamSpecEnum {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
enum_type: crate::Type,
default_value: i32,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_enum(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
enum_type.into_glib(),
default_value,
flags.into_glib(),
))
}
}
#[doc(alias = "get_enum_class")]
#[inline]
pub fn enum_class(&self) -> crate::EnumClass {
unsafe {
let ptr = ToGlibPtr::<*const gobject_ffi::GParamSpecEnum>::to_glib_none(self).0;
debug_assert!(!(*ptr).enum_class.is_null());
crate::EnumClass::with_type(from_glib((*(*ptr).enum_class).g_type_class.g_type))
.expect("Invalid enum class")
}
}
#[inline]
pub fn default_value<T: StaticType + FromGlib<i32>>(&self) -> Result<T, crate::BoolError> {
unsafe {
if !self.enum_class().type_().is_a(T::static_type()) {
return Err(bool_error!(
"Wrong type -- expected {} got {}",
self.enum_class().type_(),
T::static_type()
));
}
Ok(from_glib(self.default_value_as_i32()))
}
}
#[inline]
pub fn default_value_as_i32(&self) -> i32 {
unsafe {
let ptr = ToGlibPtr::<*const gobject_ffi::GParamSpecEnum>::to_glib_none(self).0;
(*ptr).default_value
}
}
#[doc(alias = "g_param_spec_enum")]
pub fn builder_with_default<T: StaticType + FromGlib<i32> + IntoGlib<GlibType = i32>>(
name: &str,
default_value: T,
) -> ParamSpecEnumBuilder<T> {
ParamSpecEnumBuilder::new(name, default_value)
}
#[doc(alias = "g_param_spec_enum")]
pub fn builder<T: StaticType + FromGlib<i32> + IntoGlib<GlibType = i32> + Default>(
name: &str,
) -> ParamSpecEnumBuilder<T> {
ParamSpecEnumBuilder::new(name, T::default())
}
}
#[must_use]
pub struct ParamSpecEnumBuilder<'a, T: StaticType + FromGlib<i32> + IntoGlib<GlibType = i32>> {
name: &'a str,
nick: Option<&'a str>,
blurb: Option<&'a str>,
flags: crate::ParamFlags,
default_value: T,
}
impl<'a, T: StaticType + FromGlib<i32> + IntoGlib<GlibType = i32>> ParamSpecEnumBuilder<'a, T> {
fn new(name: &'a str, default_value: T) -> Self {
assert_param_name(name);
assert!(T::static_type().is_a(Type::ENUM));
Self {
name,
nick: None,
blurb: None,
flags: crate::ParamFlags::default(),
default_value,
}
}
pub fn default_value(mut self, default: T) -> Self {
self.default_value = default;
self
}
#[must_use]
pub fn build(self) -> ParamSpec {
unsafe {
ParamSpecEnum::new_unchecked(
self.name,
self.nick,
self.blurb,
T::static_type(),
self.default_value.into_glib(),
self.flags,
)
}
}
}
impl<'a, T: StaticType + FromGlib<i32> + IntoGlib<GlibType = i32>>
crate::prelude::ParamSpecBuilderExt<'a> for ParamSpecEnumBuilder<'a, T>
{
fn set_nick(&mut self, nick: Option<&'a str>) {
self.nick = nick;
}
fn set_blurb(&mut self, blurb: Option<&'a str>) {
self.blurb = blurb;
}
fn set_flags(&mut self, flags: crate::ParamFlags) {
self.flags = flags;
}
fn current_flags(&self) -> crate::ParamFlags {
self.flags
}
}
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecFlags")]
pub struct ParamSpecFlags(Shared<gobject_ffi::GParamSpecFlags>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecFlags,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(ParamSpecFlags, gobject_ffi::GParamSpecFlags, "GParamFlags");
impl ParamSpecFlags {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
flags_type: crate::Type,
default_value: u32,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_flags(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
flags_type.into_glib(),
default_value,
flags.into_glib(),
))
}
}
#[doc(alias = "get_flags_class")]
#[inline]
pub fn flags_class(&self) -> crate::FlagsClass {
unsafe {
let ptr = ToGlibPtr::<*const gobject_ffi::GParamSpecFlags>::to_glib_none(self).0;
debug_assert!(!(*ptr).flags_class.is_null());
crate::FlagsClass::with_type(from_glib((*(*ptr).flags_class).g_type_class.g_type))
.expect("Invalid flags class")
}
}
#[inline]
pub fn default_value<T: StaticType + FromGlib<u32>>(&self) -> Result<T, crate::BoolError> {
unsafe {
if !self.flags_class().type_().is_a(T::static_type()) {
return Err(bool_error!(
"Wrong type -- expected {} got {}",
self.flags_class().type_(),
T::static_type()
));
}
Ok(from_glib(self.default_value_as_u32()))
}
}
#[inline]
pub fn default_value_as_u32(&self) -> u32 {
unsafe {
let ptr = ToGlibPtr::<*const gobject_ffi::GParamSpecFlags>::to_glib_none(self).0;
(*ptr).default_value
}
}
#[doc(alias = "g_param_spec_flags")]
pub fn builder<T: StaticType + FromGlib<u32> + IntoGlib<GlibType = u32>>(
name: &str,
) -> ParamSpecFlagsBuilder<T> {
ParamSpecFlagsBuilder::new(name)
}
}
#[must_use]
pub struct ParamSpecFlagsBuilder<'a, T: StaticType + FromGlib<u32> + IntoGlib<GlibType = u32>> {
name: &'a str,
nick: Option<&'a str>,
blurb: Option<&'a str>,
flags: crate::ParamFlags,
default_value: T,
}
impl<'a, T: StaticType + FromGlib<u32> + IntoGlib<GlibType = u32>> ParamSpecFlagsBuilder<'a, T> {
fn new(name: &'a str) -> Self {
assert_param_name(name);
assert!(T::static_type().is_a(Type::FLAGS));
unsafe {
Self {
name,
nick: None,
blurb: None,
flags: crate::ParamFlags::default(),
default_value: from_glib(0),
}
}
}
#[doc = "Default: 0`"]
pub fn default_value(mut self, value: T) -> Self {
self.default_value = value;
self
}
#[must_use]
pub fn build(self) -> ParamSpec {
unsafe {
ParamSpecFlags::new_unchecked(
self.name,
self.nick,
self.blurb,
T::static_type(),
self.default_value.into_glib(),
self.flags,
)
}
}
}
impl<'a, T: StaticType + FromGlib<u32> + IntoGlib<GlibType = u32>>
crate::prelude::ParamSpecBuilderExt<'a> for ParamSpecFlagsBuilder<'a, T>
{
fn set_nick(&mut self, nick: Option<&'a str>) {
self.nick = nick;
}
fn set_blurb(&mut self, blurb: Option<&'a str>) {
self.blurb = blurb;
}
fn set_flags(&mut self, flags: crate::ParamFlags) {
self.flags = flags;
}
fn current_flags(&self) -> crate::ParamFlags {
self.flags
}
}
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecFloat")]
pub struct ParamSpecFloat(Shared<gobject_ffi::GParamSpecFloat>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecFloat,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec_numeric!(
ParamSpecFloat,
gobject_ffi::GParamSpecFloat,
f32,
"GParamFloat",
g_param_spec_float
);
define_builder_numeric!(
ParamSpecFloat,
"g_param_spec_float",
ParamSpecFloatBuilder,
f32
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecDouble")]
pub struct ParamSpecDouble(Shared<gobject_ffi::GParamSpecDouble>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecDouble,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec_numeric!(
ParamSpecDouble,
gobject_ffi::GParamSpecDouble,
f64,
"GParamDouble",
g_param_spec_double
);
define_builder_numeric!(
ParamSpecDouble,
"g_param_spec_double",
ParamSpecDoubleBuilder,
f64
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecString")]
pub struct ParamSpecString(Shared<gobject_ffi::GParamSpecString>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecString,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(
ParamSpecString,
gobject_ffi::GParamSpecString,
"GParamString"
);
define_param_spec_default!(
ParamSpecString,
gobject_ffi::GParamSpecString,
Option<&str>,
|x: *mut libc::c_char| {
use std::ffi::CStr;
if x.is_null() {
None
} else {
Some(CStr::from_ptr(x).to_str().unwrap())
}
}
);
impl ParamSpecString {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
default_value: Option<&str>,
flags: ParamFlags,
) -> ParamSpec {
let default_value = default_value.to_glib_none();
unsafe {
from_glib_none(gobject_ffi::g_param_spec_string(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
default_value.0,
flags.into_glib(),
))
}
}
#[doc(alias = "g_param_spec_string")]
pub fn builder(name: &str) -> ParamSpecStringBuilder {
ParamSpecStringBuilder::new(name)
}
}
#[must_use]
pub struct ParamSpecStringBuilder<'a> {
name: &'a str,
nick: Option<&'a str>,
blurb: Option<&'a str>,
flags: crate::ParamFlags,
default_value: Option<&'a str>,
}
impl<'a> ParamSpecStringBuilder<'a> {
fn new(name: &'a str) -> Self {
assert_param_name(name);
Self {
name,
nick: None,
blurb: None,
flags: crate::ParamFlags::default(),
default_value: None,
}
}
#[doc = "Default: None`"]
pub fn default_value(mut self, value: impl Into<Option<&'a str>>) -> Self {
self.default_value = value.into();
self
}
#[must_use]
pub fn build(self) -> ParamSpec {
unsafe {
ParamSpecString::new_unchecked(
self.name,
self.nick,
self.blurb,
self.default_value,
self.flags,
)
}
}
}
impl<'a> crate::prelude::ParamSpecBuilderExt<'a> for ParamSpecStringBuilder<'a> {
fn set_nick(&mut self, nick: Option<&'a str>) {
self.nick = nick;
}
fn set_blurb(&mut self, blurb: Option<&'a str>) {
self.blurb = blurb;
}
fn set_flags(&mut self, flags: crate::ParamFlags) {
self.flags = flags;
}
fn current_flags(&self) -> crate::ParamFlags {
self.flags
}
}
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecParam")]
pub struct ParamSpecParam(Shared<gobject_ffi::GParamSpecParam>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecParam,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(ParamSpecParam, gobject_ffi::GParamSpecParam, "GParamParam");
impl ParamSpecParam {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
param_type: crate::Type,
flags: ParamFlags,
) -> ParamSpec {
assert!(param_type.is_a(crate::Type::PARAM_SPEC));
unsafe {
from_glib_none(gobject_ffi::g_param_spec_param(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
param_type.into_glib(),
flags.into_glib(),
))
}
}
}
define_builder!(
ParamSpecParam,
"g_param_spec_param",
ParamSpecParamBuilder {
param_type: crate::Type,
}
requires (param_type: crate::Type,)
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecBoxed")]
pub struct ParamSpecBoxed(Shared<gobject_ffi::GParamSpecBoxed>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecBoxed,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(ParamSpecBoxed, gobject_ffi::GParamSpecBoxed, "GParamBoxed");
impl ParamSpecBoxed {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
boxed_type: crate::Type,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_boxed(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
boxed_type.into_glib(),
flags.into_glib(),
))
}
}
#[doc(alias = "g_param_spec_boxed")]
pub fn builder<T: StaticType>(name: &str) -> ParamSpecBoxedBuilder<T> {
ParamSpecBoxedBuilder::new(name)
}
}
#[must_use]
pub struct ParamSpecBoxedBuilder<'a, T: StaticType> {
name: &'a str,
nick: Option<&'a str>,
blurb: Option<&'a str>,
flags: crate::ParamFlags,
phantom: std::marker::PhantomData<T>,
}
impl<'a, T: StaticType> ParamSpecBoxedBuilder<'a, T> {
fn new(name: &'a str) -> Self {
assert_param_name(name);
assert!(T::static_type().is_a(Type::BOXED));
Self {
name,
nick: None,
blurb: None,
flags: crate::ParamFlags::default(),
phantom: Default::default(),
}
}
#[must_use]
pub fn build(self) -> ParamSpec {
unsafe {
ParamSpecBoxed::new_unchecked(
self.name,
self.nick,
self.blurb,
T::static_type(),
self.flags,
)
}
}
}
impl<'a, T: StaticType> crate::prelude::ParamSpecBuilderExt<'a> for ParamSpecBoxedBuilder<'a, T> {
fn set_nick(&mut self, nick: Option<&'a str>) {
self.nick = nick;
}
fn set_blurb(&mut self, blurb: Option<&'a str>) {
self.blurb = blurb;
}
fn set_flags(&mut self, flags: crate::ParamFlags) {
self.flags = flags;
}
fn current_flags(&self) -> crate::ParamFlags {
self.flags
}
}
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecPointer")]
pub struct ParamSpecPointer(Shared<gobject_ffi::GParamSpecPointer>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecPointer,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(
ParamSpecPointer,
gobject_ffi::GParamSpecPointer,
"GParamPointer"
);
impl ParamSpecPointer {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_pointer(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
flags.into_glib(),
))
}
}
}
define_builder!(
ParamSpecPointer,
"g_param_spec_pointer",
ParamSpecPointerBuilder {}
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecValueArray")]
pub struct ParamSpecValueArray(Shared<gobject_ffi::GParamSpecValueArray>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecValueArray,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(
ParamSpecValueArray,
gobject_ffi::GParamSpecValueArray,
"GParamValueArray"
);
impl ParamSpecValueArray {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
element_spec: Option<impl AsRef<ParamSpec>>,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_value_array(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
element_spec.as_ref().map(|p| p.as_ref()).to_glib_none().0,
flags.into_glib(),
))
}
}
#[doc(alias = "get_element_spec")]
#[inline]
pub fn element_spec(&self) -> Option<&ParamSpec> {
unsafe {
let ptr = ToGlibPtr::<*const gobject_ffi::GParamSpecValueArray>::to_glib_none(self).0;
if (*ptr).element_spec.is_null() {
None
} else {
Some(
&*(&(*ptr).element_spec as *const *mut gobject_ffi::GParamSpec
as *const ParamSpec),
)
}
}
}
#[doc(alias = "get_fixed_n_elements")]
#[inline]
pub fn fixed_n_elements(&self) -> u32 {
unsafe {
let ptr = ToGlibPtr::<*const gobject_ffi::GParamSpecValueArray>::to_glib_none(self).0;
(*ptr).fixed_n_elements
}
}
#[doc(alias = "g_param_spec_value_array")]
pub fn builder(name: &str) -> ParamSpecValueArrayBuilder {
ParamSpecValueArrayBuilder::new(name)
}
}
#[must_use]
pub struct ParamSpecValueArrayBuilder<'a> {
name: &'a str,
nick: Option<&'a str>,
blurb: Option<&'a str>,
flags: crate::ParamFlags,
element_spec: Option<&'a ParamSpec>,
}
impl<'a> ParamSpecValueArrayBuilder<'a> {
fn new(name: &'a str) -> Self {
assert_param_name(name);
Self {
name,
nick: None,
blurb: None,
flags: crate::ParamFlags::default(),
element_spec: None,
}
}
#[doc = "Default: None`"]
pub fn element_spec(mut self, value: impl Into<Option<&'a ParamSpec>>) -> Self {
self.element_spec = value.into();
self
}
#[must_use]
pub fn build(self) -> ParamSpec {
unsafe {
ParamSpecValueArray::new_unchecked(
self.name,
self.nick,
self.blurb,
self.element_spec,
self.flags,
)
}
}
}
impl<'a> crate::prelude::ParamSpecBuilderExt<'a> for ParamSpecValueArrayBuilder<'a> {
fn set_nick(&mut self, nick: Option<&'a str>) {
self.nick = nick;
}
fn set_blurb(&mut self, blurb: Option<&'a str>) {
self.blurb = blurb;
}
fn set_flags(&mut self, flags: crate::ParamFlags) {
self.flags = flags;
}
fn current_flags(&self) -> crate::ParamFlags {
self.flags
}
}
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecObject")]
pub struct ParamSpecObject(Shared<gobject_ffi::GParamSpecObject>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecObject,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(
ParamSpecObject,
gobject_ffi::GParamSpecObject,
"GParamObject"
);
impl ParamSpecObject {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
object_type: crate::Type,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_object(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
object_type.into_glib(),
flags.into_glib(),
))
}
}
#[doc(alias = "g_param_spec_object")]
pub fn builder<T: StaticType + IsA<Object>>(name: &str) -> ParamSpecObjectBuilder<T> {
ParamSpecObjectBuilder::new(name)
}
}
#[must_use]
pub struct ParamSpecObjectBuilder<'a, T: StaticType> {
name: &'a str,
nick: Option<&'a str>,
blurb: Option<&'a str>,
flags: crate::ParamFlags,
phantom: std::marker::PhantomData<T>,
}
impl<'a, T: StaticType> ParamSpecObjectBuilder<'a, T> {
fn new(name: &'a str) -> Self {
assert_param_name(name);
Self {
name,
nick: None,
blurb: None,
flags: crate::ParamFlags::default(),
phantom: Default::default(),
}
}
#[must_use]
pub fn build(self) -> ParamSpec {
unsafe {
ParamSpecObject::new_unchecked(
self.name,
self.nick,
self.blurb,
T::static_type(),
self.flags,
)
}
}
}
impl<'a, T: StaticType> crate::prelude::ParamSpecBuilderExt<'a> for ParamSpecObjectBuilder<'a, T> {
fn set_nick(&mut self, nick: Option<&'a str>) {
self.nick = nick;
}
fn set_blurb(&mut self, blurb: Option<&'a str>) {
self.blurb = blurb;
}
fn set_flags(&mut self, flags: crate::ParamFlags) {
self.flags = flags;
}
fn current_flags(&self) -> crate::ParamFlags {
self.flags
}
}
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecOverride")]
pub struct ParamSpecOverride(Shared<gobject_ffi::GParamSpecOverride>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecOverride,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(
ParamSpecOverride,
gobject_ffi::GParamSpecOverride,
"GParamOverride"
);
impl ParamSpecOverride {
unsafe fn new_unchecked(name: &str, overridden: impl AsRef<ParamSpec>) -> ParamSpec {
from_glib_none(gobject_ffi::g_param_spec_override(
name.to_glib_none().0,
overridden.as_ref().to_glib_none().0,
))
}
#[allow(clippy::new_ret_no_self)]
#[doc(alias = "g_param_spec_override")]
pub fn for_interface<T: IsA<Object> + IsInterface>(name: &str) -> ParamSpec {
assert_param_name(name);
let interface_ref: InterfaceRef<T> = Interface::from_type(T::static_type()).unwrap();
let pspec = interface_ref
.find_property(name)
.unwrap_or_else(|| panic!("Couldn't find a property named `{name}` to override"));
unsafe { Self::new_unchecked(name, &pspec) }
}
#[allow(clippy::new_ret_no_self)]
#[doc(alias = "g_param_spec_override")]
pub fn for_class<T: IsA<Object> + IsClass>(name: &str) -> ParamSpec {
assert_param_name(name);
let pspec = ObjectClass::from_type(T::static_type())
.unwrap()
.find_property(name)
.unwrap_or_else(|| panic!("Couldn't find a property named `{name}` to override"));
unsafe { Self::new_unchecked(name, &pspec) }
}
#[doc(alias = "get_overridden")]
#[inline]
pub fn overridden(&self) -> ParamSpec {
unsafe {
let ptr = ToGlibPtr::<*const gobject_ffi::GParamSpecOverride>::to_glib_none(self).0;
from_glib_none((*ptr).overridden)
}
}
#[doc(alias = "g_param_spec_override")]
pub fn builder<'a>(name: &'a str, overridden: &'a ParamSpec) -> ParamSpecOverrideBuilder<'a> {
ParamSpecOverrideBuilder::new(name, overridden)
}
}
#[must_use]
pub struct ParamSpecOverrideBuilder<'a> {
name: &'a str,
overridden: &'a ParamSpec,
}
impl<'a> ParamSpecOverrideBuilder<'a> {
fn new(name: &'a str, overridden: &'a ParamSpec) -> Self {
assert_param_name(name);
Self { name, overridden }
}
pub fn overridden(mut self, spec: &'a ParamSpec) -> Self {
self.overridden = spec;
self
}
#[must_use]
pub fn build(self) -> ParamSpec {
unsafe { ParamSpecOverride::new_unchecked(self.name, self.overridden) }
}
}
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecGType")]
pub struct ParamSpecGType(Shared<gobject_ffi::GParamSpecGType>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecGType,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(ParamSpecGType, gobject_ffi::GParamSpecGType, "GParamGType");
impl ParamSpecGType {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
is_a_type: crate::Type,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_gtype(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
is_a_type.into_glib(),
flags.into_glib(),
))
}
}
}
define_builder!(
ParamSpecGType,
"g_param_spec_gtype",
ParamSpecGTypeBuilder {
is_a_type: crate::Type = crate::Type::UNIT,
}
);
wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GParamSpecVariant")]
pub struct ParamSpecVariant(Shared<gobject_ffi::GParamSpecVariant>);
match fn {
ref => |ptr| gobject_ffi::g_param_spec_ref_sink(ptr as *mut gobject_ffi::GParamSpec) as *mut gobject_ffi::GParamSpecVariant,
unref => |ptr| gobject_ffi::g_param_spec_unref(ptr as *mut gobject_ffi::GParamSpec),
}
}
define_param_spec!(
ParamSpecVariant,
gobject_ffi::GParamSpecVariant,
"GParamVariant"
);
define_param_spec_default!(
ParamSpecVariant,
gobject_ffi::GParamSpecVariant,
Option<crate::Variant>,
|x: *mut ffi::GVariant| from_glib_none(x)
);
impl ParamSpecVariant {
unsafe fn new_unchecked<'a>(
name: &str,
nick: impl Into<Option<&'a str>>,
blurb: impl Into<Option<&'a str>>,
type_: &crate::VariantTy,
default_value: Option<&crate::Variant>,
flags: ParamFlags,
) -> ParamSpec {
unsafe {
from_glib_none(gobject_ffi::g_param_spec_variant(
name.to_glib_none().0,
nick.into().to_glib_none().0,
blurb.into().to_glib_none().0,
type_.to_glib_none().0,
default_value.to_glib_none().0,
flags.into_glib(),
))
}
}
#[doc(alias = "get_type")]
#[inline]
pub fn type_(&self) -> Option<&crate::VariantTy> {
unsafe {
let ptr = ToGlibPtr::<*const gobject_ffi::GParamSpecVariant>::to_glib_none(self).0;
if (*ptr).type_.is_null() {
None
} else {
Some(crate::VariantTy::from_ptr((*ptr).type_))
}
}
}
#[doc(alias = "g_param_spec_variant")]
pub fn builder<'a>(name: &'a str, type_: &'a crate::VariantTy) -> ParamSpecVariantBuilder<'a> {
ParamSpecVariantBuilder::new(name, type_)
}
}
#[must_use]
pub struct ParamSpecVariantBuilder<'a> {
name: &'a str,
nick: Option<&'a str>,
blurb: Option<&'a str>,
flags: crate::ParamFlags,
type_: &'a crate::VariantTy,
default_value: Option<&'a crate::Variant>,
}
impl<'a> ParamSpecVariantBuilder<'a> {
fn new(name: &'a str, type_: &'a crate::VariantTy) -> Self {
assert_param_name(name);
Self {
name,
nick: None,
blurb: None,
flags: crate::ParamFlags::default(),
type_,
default_value: None,
}
}
#[doc = "Default: None`"]
pub fn default_value(mut self, value: impl Into<Option<&'a crate::Variant>>) -> Self {
self.default_value = value.into();
self
}
#[must_use]
pub fn build(self) -> ParamSpec {
unsafe {
ParamSpecVariant::new_unchecked(
self.name,
self.nick,
self.blurb,
self.type_,
self.default_value,
self.flags,
)
}
}
}
impl<'a> crate::prelude::ParamSpecBuilderExt<'a> for ParamSpecVariantBuilder<'a> {
fn set_nick(&mut self, nick: Option<&'a str>) {
self.nick = nick;
}
fn set_blurb(&mut self, blurb: Option<&'a str>) {
self.blurb = blurb;
}
fn set_flags(&mut self, flags: crate::ParamFlags) {
self.flags = flags;
}
fn current_flags(&self) -> crate::ParamFlags {
self.flags
}
}
pub trait HasParamSpec {
type ParamSpec;
type SetValue: ?Sized;
type BuilderFn;
fn param_spec_builder() -> Self::BuilderFn;
}
impl<T: crate::value::ToValueOptional + HasParamSpec> HasParamSpec for Option<T> {
type ParamSpec = T::ParamSpec;
type SetValue = T::SetValue;
type BuilderFn = T::BuilderFn;
fn param_spec_builder() -> Self::BuilderFn {
T::param_spec_builder()
}
}
impl<T: HasParamSpec + ?Sized> HasParamSpec for &T {
type ParamSpec = T::ParamSpec;
type SetValue = T::SetValue;
type BuilderFn = T::BuilderFn;
fn param_spec_builder() -> Self::BuilderFn {
T::param_spec_builder()
}
}
impl HasParamSpec for crate::GString {
type ParamSpec = ParamSpecString;
type SetValue = str;
type BuilderFn = fn(&str) -> ParamSpecStringBuilder;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
impl HasParamSpec for str {
type ParamSpec = ParamSpecString;
type SetValue = str;
type BuilderFn = fn(&str) -> ParamSpecStringBuilder;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
impl HasParamSpec for String {
type ParamSpec = ParamSpecString;
type SetValue = str;
type BuilderFn = fn(&str) -> ParamSpecStringBuilder;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
impl HasParamSpec for Box<str> {
type ParamSpec = ParamSpecString;
type SetValue = str;
type BuilderFn = fn(&str) -> ParamSpecStringBuilder;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
impl HasParamSpec for crate::StrV {
type ParamSpec = ParamSpecBoxed;
type SetValue = Self;
type BuilderFn = fn(&str) -> ParamSpecBoxedBuilder<Self>;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
impl HasParamSpec for Vec<String> {
type ParamSpec = ParamSpecBoxed;
type SetValue = Self;
type BuilderFn = fn(&str) -> ParamSpecBoxedBuilder<Self>;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
impl HasParamSpec for Path {
type ParamSpec = ParamSpecString;
type SetValue = Path;
type BuilderFn = fn(&str) -> ParamSpecStringBuilder;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
impl HasParamSpec for PathBuf {
type ParamSpec = ParamSpecString;
type SetValue = Path;
type BuilderFn = fn(&str) -> ParamSpecStringBuilder;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
impl HasParamSpec for char {
type ParamSpec = ParamSpecUnichar;
type SetValue = Self;
type BuilderFn = fn(&str, char) -> ParamSpecUnicharBuilder;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
macro_rules! has_simple_spec {
($t:ty, $s:ty, $b:ty) => {
impl HasParamSpec for $t {
type ParamSpec = $s;
type SetValue = Self;
type BuilderFn = fn(&str) -> $b;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
};
}
has_simple_spec!(f64, ParamSpecDouble, ParamSpecDoubleBuilder);
has_simple_spec!(f32, ParamSpecFloat, ParamSpecFloatBuilder);
has_simple_spec!(i64, ParamSpecInt64, ParamSpecInt64Builder);
has_simple_spec!(NonZeroI64, ParamSpecInt64, ParamSpecInt64Builder);
has_simple_spec!(i32, ParamSpecInt, ParamSpecIntBuilder);
has_simple_spec!(NonZeroI32, ParamSpecInt, ParamSpecIntBuilder);
has_simple_spec!(i8, ParamSpecChar, ParamSpecCharBuilder);
has_simple_spec!(NonZeroI8, ParamSpecChar, ParamSpecCharBuilder);
has_simple_spec!(u64, ParamSpecUInt64, ParamSpecUInt64Builder);
has_simple_spec!(NonZeroU64, ParamSpecUInt64, ParamSpecUInt64Builder);
has_simple_spec!(u32, ParamSpecUInt, ParamSpecUIntBuilder);
has_simple_spec!(NonZeroU32, ParamSpecUInt, ParamSpecUIntBuilder);
has_simple_spec!(u8, ParamSpecUChar, ParamSpecUCharBuilder);
has_simple_spec!(NonZeroU8, ParamSpecUChar, ParamSpecUCharBuilder);
has_simple_spec!(bool, ParamSpecBoolean, ParamSpecBooleanBuilder);
impl HasParamSpec for crate::Variant {
type ParamSpec = ParamSpecVariant;
type SetValue = Self;
type BuilderFn = for<'a> fn(&'a str, ty: &'a crate::VariantTy) -> ParamSpecVariantBuilder<'a>;
fn param_spec_builder() -> Self::BuilderFn {
Self::ParamSpec::builder
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_param_spec_string() {
let pspec = ParamSpecString::builder("name")
.default_value(Some("default"))
.build();
assert_eq!(pspec.name(), "name");
assert_eq!(pspec.nick(), "name");
assert_eq!(pspec.blurb(), None);
let default_value = pspec.default_value();
assert_eq!(default_value.get::<&str>().unwrap(), "default");
assert_eq!(pspec.flags(), ParamFlags::READWRITE);
assert_eq!(pspec.value_type(), Type::STRING);
assert_eq!(pspec.type_(), ParamSpecString::static_type());
let pspec_ref = pspec
.downcast_ref::<ParamSpecString>()
.expect("Not a string param spec");
assert_eq!(pspec_ref.default_value(), Some("default"));
let pspec = pspec
.downcast::<ParamSpecString>()
.expect("Not a string param spec");
assert_eq!(pspec.default_value(), Some("default"));
}
#[test]
fn test_param_spec_int_builder() {
let pspec = ParamSpecInt::builder("name")
.blurb("Simple int parameter")
.minimum(-2)
.explicit_notify()
.build();
assert_eq!(pspec.name(), "name");
assert_eq!(pspec.nick(), "name");
assert_eq!(pspec.blurb(), Some("Simple int parameter"));
assert_eq!(
pspec.flags(),
ParamFlags::READWRITE | ParamFlags::EXPLICIT_NOTIFY
);
}
#[test]
fn test_param_spec_builder_flags() {
let pspec = ParamSpecInt::builder("name")
.minimum(-2)
.read_only()
.build()
.downcast::<ParamSpecInt>()
.unwrap();
assert_eq!(pspec.minimum(), -2);
assert_eq!(pspec.flags(), ParamFlags::READABLE);
let pspec = ParamSpecInt::builder("name")
.read_only()
.write_only()
.minimum(-2)
.build()
.downcast::<ParamSpecInt>()
.unwrap();
assert_eq!(pspec.minimum(), -2);
assert_eq!(pspec.flags(), ParamFlags::WRITABLE);
let pspec = ParamSpecInt::builder("name")
.read_only()
.write_only()
.readwrite()
.minimum(-2)
.build()
.downcast::<ParamSpecInt>()
.unwrap();
assert_eq!(pspec.minimum(), -2);
assert_eq!(pspec.flags(), ParamFlags::READWRITE);
}
#[test]
fn test_has_param_spec() {
let pspec = <i32 as HasParamSpec>::param_spec_builder()("name")
.blurb("Simple int parameter")
.minimum(-2)
.explicit_notify()
.build();
assert_eq!(pspec.name(), "name");
assert_eq!(pspec.blurb(), Some("Simple int parameter"));
assert_eq!(
pspec.flags(),
ParamFlags::READWRITE | ParamFlags::EXPLICIT_NOTIFY
);
}
}