fractal/src/session/view/content/room_history/message_row/file.rs

91 lines
2.5 KiB
Rust

use adw::subclass::prelude::*;
use gtk::{glib, prelude::*, CompositeTemplate};
use super::ContentFormat;
mod imp {
use std::cell::{Cell, RefCell};
use glib::subclass::InitializingObject;
use super::*;
#[derive(Debug, Default, CompositeTemplate, glib::Properties)]
#[template(
resource = "/org/gnome/Fractal/ui/session/view/content/room_history/message_row/file.ui"
)]
#[properties(wrapper_type = super::MessageFile)]
pub struct MessageFile {
/// The filename of the file.
#[property(get, set = Self::set_filename, explicit_notify, nullable)]
pub filename: RefCell<Option<String>>,
/// Whether this file should be displayed in a compact format.
#[property(get, set = Self::set_compact, explicit_notify)]
pub compact: Cell<bool>,
}
#[glib::object_subclass]
impl ObjectSubclass for MessageFile {
const NAME: &'static str = "ContentMessageFile";
type Type = super::MessageFile;
type ParentType = adw::Bin;
fn class_init(klass: &mut Self::Class) {
Self::bind_template(klass);
}
fn instance_init(obj: &InitializingObject<Self>) {
obj.init_template();
}
}
#[glib::derived_properties]
impl ObjectImpl for MessageFile {}
impl WidgetImpl for MessageFile {}
impl BinImpl for MessageFile {}
impl MessageFile {
/// Set the filename of the file.
fn set_filename(&self, filename: Option<String>) {
let filename = filename.filter(|s| !s.is_empty());
if filename == *self.filename.borrow() {
return;
}
self.filename.replace(filename);
self.obj().notify_filename();
}
/// Set whether this file should be displayed in a compact format.
fn set_compact(&self, compact: bool) {
if self.compact.get() == compact {
return;
}
self.compact.set(compact);
self.obj().notify_compact();
}
}
}
glib::wrapper! {
/// A widget displaying an interface to download the content of a file message.
pub struct MessageFile(ObjectSubclass<imp::MessageFile>)
@extends gtk::Widget, adw::Bin, @implements gtk::Accessible;
}
impl MessageFile {
pub fn new() -> Self {
glib::Object::new()
}
pub fn set_format(&self, format: ContentFormat) {
self.set_compact(matches!(
format,
ContentFormat::Compact | ContentFormat::Ellipsized
));
}
}