some asthetics

This commit is contained in:
Chris Cochrun 2024-12-07 14:48:19 -06:00
parent 039d1043a3
commit 9eb5bec320
2 changed files with 68 additions and 29 deletions

View file

@ -543,7 +543,7 @@ impl cosmic::Application for App {
) )
.clip(true) .clip(true)
.width(Length::Fill) .width(Length::Fill)
.center_y(120) .center_y(130)
]; ];
let element: Element<Message> = column.into(); let element: Element<Message> = column.into();

View file

@ -1,21 +1,22 @@
use std::{path::PathBuf, rc::Rc, time::Duration}; use std::time::Duration;
use cosmic::{ use cosmic::{
dialog::ashpd::url::Url, dialog::ashpd::url::Url,
iced::{ iced::{
font::{Family, Stretch, Style, Weight}, font::{Family, Stretch, Style, Weight},
widget::text, widget::text,
Background, Color, ContentFit, Font, Length, Background, Border, Color, ContentFit, Font, Length, Shadow,
Vector,
}, },
iced_widget::{ iced_widget::{
scrollable::{Direction, Scrollbar}, scrollable::{Direction, Scrollbar},
stack, stack,
}, },
prelude::*, prelude::*,
theme::CosmicTheme,
widget::{ widget::{
canvas::path::lyon_path::geom::euclid::num::Floor, container, container, image, mouse_area, responsive, scrollable,
image, mouse_area, responsive, scrollable, Container, Container, Responsive, Row, Space,
Responsive, Row, Space,
}, },
Task, Task,
}; };
@ -36,6 +37,7 @@ pub(crate) struct Presenter {
pub current_slide_index: u16, pub current_slide_index: u16,
pub video: Option<Video>, pub video: Option<Video>,
pub video_position: f32, pub video_position: f32,
hovered_slide: i32,
} }
#[derive(Debug, Clone, PartialEq)] #[derive(Debug, Clone, PartialEq)]
@ -47,6 +49,7 @@ pub(crate) enum Message {
StartVideo, StartVideo,
VideoPos(f32), VideoPos(f32),
VideoFrame, VideoFrame,
HoverDelegate(i32),
} }
impl Presenter { impl Presenter {
@ -80,6 +83,7 @@ impl Presenter {
} }
}, },
video_position: 0.0, video_position: 0.0,
hovered_slide: -1,
} }
} }
@ -167,6 +171,10 @@ impl Presenter {
} }
Task::none() Task::none()
} }
Message::HoverDelegate(slide) => {
self.hovered_slide = slide;
Task::none()
}
} }
} }
@ -198,26 +206,26 @@ impl Presenter {
Color::BLACK, Color::BLACK,
)) ))
}) })
.width(Length::Fill) .width(size.width)
.height(Length::Fill); .height(size.height);
let container = match self.current_slide.background().kind let container = match self.current_slide.background().kind
{ {
crate::BackgroundKind::Image => { BackgroundKind::Image => {
let path = let path =
self.current_slide.background().path.clone(); self.current_slide.background().path.clone();
Container::new( Container::new(
image(path) image(path)
.content_fit(ContentFit::Cover) .content_fit(ContentFit::Cover)
.width(Length::Fill) .width(size.width)
.height(Length::Fill), .height(size.height),
) )
} }
crate::BackgroundKind::Video => { BackgroundKind::Video => {
if let Some(video) = &self.video { if let Some(video) = &self.video {
Container::new( Container::new(
VideoPlayer::new(video) VideoPlayer::new(video)
.width(Length::Fill) .width(size.width)
.height(Length::Fill) .height(size.height)
.on_end_of_stream(Message::EndVideo) .on_end_of_stream(Message::EndVideo)
.on_new_frame(Message::VideoFrame) .on_new_frame(Message::VideoFrame)
.content_fit(ContentFit::Cover), .content_fit(ContentFit::Cover),
@ -241,7 +249,7 @@ impl Presenter {
items.push(self.slide_delegate(slide)); items.push(self.slide_delegate(slide));
} }
let row = let row =
scrollable(Row::from_vec(items).spacing(10).padding(10)) scrollable(Row::from_vec(items).spacing(10).padding(15))
.direction(Direction::Horizontal(Scrollbar::new())) .direction(Direction::Horizontal(Scrollbar::new()))
.height(Length::Fill) .height(Length::Fill)
.width(Length::Fill); .width(Length::Fill);
@ -262,6 +270,9 @@ impl Presenter {
stretch, stretch,
style, style,
}; };
let slide_id =
self.slides.iter().position(|s| s == slide).unwrap()
as i32;
let text = Responsive::new(move |size| { let text = Responsive::new(move |size| {
let font_size = if slide.font_size() > 0 { let font_size = if slide.font_size() > 0 {
(size.width / slide.font_size() as f32) * 3.0 (size.width / slide.font_size() as f32) * 3.0
@ -273,26 +284,23 @@ impl Presenter {
text.into() text.into()
}); });
let container = match slide.background().kind { let container = match slide.background().kind {
crate::BackgroundKind::Image => { BackgroundKind::Image => {
let path = slide.background().path.clone(); let path = slide.background().path.clone();
Container::new( Container::new(
image(path) image(path)
.content_fit(ContentFit::Contain) .content_fit(ContentFit::Contain)
.width(Length::Fill) .border_radius([10.0; 4]),
.height(Length::Fill),
) )
} }
crate::BackgroundKind::Video => { BackgroundKind::Video => Container::new(Space::new(0, 0))
Container::new(Space::new(0, 0)) .style(|_| {
.style(|_| { container::background(Background::Color(
container::background(Background::Color( Color::BLACK,
Color::BLACK, ))
)) })
}) .width(Length::Fill)
.width(Length::Fill) .height(Length::Fill),
.height(Length::Fill)
}
}; };
let delegate = mouse_area( let delegate = mouse_area(
Container::new( Container::new(
@ -300,10 +308,41 @@ impl Presenter {
.width(Length::Fill) .width(Length::Fill)
.height(Length::Fill), .height(Length::Fill),
) )
.style(move |_| {
let theme = cosmic::iced::Theme::Dark;
let hovered = self.hovered_slide == slide_id;
container::Style {
background: Some(Background::Color(
theme.palette().background,
)),
shadow: Shadow {
color: Color::BLACK,
offset: {
if hovered {
Vector::new(5.0, 5.0)
} else {
Vector::new(0.0, 0.0)
}
},
blur_radius: {
if hovered {
10.0
} else {
0.0
}
},
},
border: Border::default().rounded(10.0),
..Default::default()
}
})
.center_x(100.0 * 16.0 / 9.0)
.height(100) .height(100)
.width(100.0 * 16.0 / 9.0)
.padding(10), .padding(10),
) )
.interaction(cosmic::iced::mouse::Interaction::Pointer)
.on_enter(Message::HoverDelegate(slide_id))
.on_exit(Message::HoverDelegate(-1))
.on_press({ .on_press({
let id = let id =
self.slides.iter().position(|s| s == slide).unwrap(); self.slides.iter().position(|s| s == slide).unwrap();