use adw::subclass::prelude::*;
use gtk::{glib, glib::clone, prelude::*, CompositeTemplate};
use crate::{components::Spinner, utils::bool_to_accessible_tristate};
mod imp {
use std::{cell::Cell, marker::PhantomData};
use glib::subclass::InitializingObject;
use super::*;
#[derive(Debug, Default, CompositeTemplate, glib::Properties)]
#[template(resource = "/org/gnome/Fractal/ui/components/rows/switch_loading_row.ui")]
#[properties(wrapper_type = super::SwitchLoadingRow)]
pub struct SwitchLoadingRow {
#[template_child]
pub spinner: TemplateChild<Spinner>,
#[template_child]
pub switch: TemplateChild<gtk::Switch>,
#[property(get = Self::is_active, set = Self::set_is_active)]
pub is_active: PhantomData<bool>,
#[property(get = Self::is_loading, set = Self::set_is_loading)]
pub is_loading: PhantomData<bool>,
#[property(get, set = Self::set_read_only, explicit_notify)]
pub read_only: Cell<bool>,
}
#[glib::object_subclass]
impl ObjectSubclass for SwitchLoadingRow {
const NAME: &'static str = "SwitchLoadingRow";
type Type = super::SwitchLoadingRow;
type ParentType = adw::ActionRow;
fn class_init(klass: &mut Self::Class) {
Self::bind_template(klass);
klass.set_accessible_role(gtk::AccessibleRole::Switch);
}
fn instance_init(obj: &InitializingObject<Self>) {
obj.init_template();
}
}
#[glib::derived_properties]
impl ObjectImpl for SwitchLoadingRow {
fn constructed(&self) {
self.parent_constructed();
let obj = self.obj();
self.switch.connect_active_notify(clone!(
#[weak]
obj,
move |switch| {
obj.update_state(&[gtk::accessible::State::Checked(
bool_to_accessible_tristate(switch.is_active()),
)]);
obj.notify_is_active();
}
));
obj.update_state(&[gtk::accessible::State::Checked(
bool_to_accessible_tristate(self.switch.is_active()),
)]);
}
}
impl WidgetImpl for SwitchLoadingRow {}
impl ListBoxRowImpl for SwitchLoadingRow {}
impl PreferencesRowImpl for SwitchLoadingRow {}
impl ActionRowImpl for SwitchLoadingRow {}
impl SwitchLoadingRow {
fn is_active(&self) -> bool {
self.switch.is_active()
}
fn set_is_active(&self, active: bool) {
if self.is_active() == active {
return;
}
self.switch.set_active(active);
self.obj().notify_is_active();
}
fn is_loading(&self) -> bool {
self.spinner.is_visible()
}
fn set_is_loading(&self, loading: bool) {
if self.is_loading() == loading {
return;
}
self.spinner.set_visible(loading);
self.obj().notify_is_loading();
}
fn set_read_only(&self, read_only: bool) {
if self.read_only.get() == read_only {
return;
}
let obj = self.obj();
self.read_only.set(read_only);
obj.update_property(&[gtk::accessible::Property::ReadOnly(read_only)]);
obj.notify_read_only();
}
}
}
glib::wrapper! {
pub struct SwitchLoadingRow(ObjectSubclass<imp::SwitchLoadingRow>)
@extends gtk::Widget, gtk::ListBoxRow, adw::PreferencesRow, adw::ActionRow, @implements gtk::Actionable, gtk::Accessible;
}
impl SwitchLoadingRow {
pub fn new() -> Self {
glib::Object::new()
}
}