2024-12-23 01:54:51 +01:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
2023-11-17 15:12:35 -08:00
|
|
|
use cctk::{
|
2024-04-23 13:44:59 -07:00
|
|
|
cosmic_protocols::toplevel_info::v1::client::zcosmic_toplevel_handle_v1,
|
2023-11-17 15:12:35 -08:00
|
|
|
wayland_client::protocol::wl_output,
|
|
|
|
|
};
|
2023-11-16 20:09:10 -08:00
|
|
|
use cosmic::{
|
2023-11-21 16:15:02 -05:00
|
|
|
cctk,
|
2023-11-16 20:09:10 -08:00
|
|
|
iced::{
|
|
|
|
|
self,
|
2023-12-13 15:54:33 -08:00
|
|
|
advanced::layout::flex::Axis,
|
2023-11-16 20:09:10 -08:00
|
|
|
widget::{column, row},
|
2024-10-18 13:13:53 -07:00
|
|
|
Border,
|
2023-11-16 20:09:10 -08:00
|
|
|
},
|
2024-12-23 01:54:51 +01:00
|
|
|
iced_core::{text::Wrapping, Shadow},
|
2024-10-18 13:13:53 -07:00
|
|
|
iced_winit::platform_specific::wayland::subsurface_widget::Subsurface,
|
2024-12-23 01:54:51 +01:00
|
|
|
widget, Apply,
|
2023-11-16 20:09:10 -08:00
|
|
|
};
|
2024-04-30 12:49:08 -07:00
|
|
|
use cosmic_bg_config::Source;
|
2024-02-07 19:52:33 -08:00
|
|
|
use cosmic_comp_config::workspace::WorkspaceLayout;
|
2023-11-16 19:25:28 -08:00
|
|
|
|
2024-04-23 13:44:59 -07:00
|
|
|
use crate::{
|
|
|
|
|
backend::{self, CaptureImage},
|
2024-10-18 13:13:53 -07:00
|
|
|
App, DragSurface, DragToplevel, LayerSurface, Msg, Toplevel, Workspace,
|
2024-04-23 13:44:59 -07:00
|
|
|
};
|
2023-11-16 19:25:28 -08:00
|
|
|
|
2025-01-24 13:24:13 -08:00
|
|
|
// Used in iced/smithay_sctk to associate drag destination area with widget
|
|
|
|
|
#[repr(u8)]
|
|
|
|
|
enum DragId {
|
|
|
|
|
WorkspaceEntry(usize),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Encode as a u64 for iced/smithay_sctk
|
|
|
|
|
impl From<DragId> for u64 {
|
|
|
|
|
fn from(id: DragId) -> u64 {
|
|
|
|
|
// https://doc.rust-lang.org/std/mem/fn.discriminant.html#accessing-the-numeric-value-of-the-discriminant
|
|
|
|
|
let discriminant = unsafe { *<*const _>::from(&id).cast::<u8>() };
|
|
|
|
|
match id {
|
|
|
|
|
DragId::WorkspaceEntry(idx) => {
|
|
|
|
|
// Index should not exceed 32 bits
|
|
|
|
|
let idx = u32::try_from(idx).unwrap();
|
|
|
|
|
((discriminant as u64) << 32) | (idx as u64)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-16 19:25:28 -08:00
|
|
|
pub(crate) fn layer_surface<'a>(
|
|
|
|
|
app: &'a App,
|
|
|
|
|
surface: &'a LayerSurface,
|
|
|
|
|
) -> cosmic::Element<'a, Msg> {
|
2023-12-15 15:46:41 -08:00
|
|
|
let mut drop_target = None;
|
|
|
|
|
if let Some((workspace, output)) = &app.drop_target {
|
|
|
|
|
if output == &surface.output {
|
|
|
|
|
drop_target = Some(workspace);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-19 12:05:35 -07:00
|
|
|
let mut drag_toplevel = None;
|
2024-10-18 13:13:53 -07:00
|
|
|
if let Some((DragSurface::Toplevel { handle, .. }, _)) = &app.drag_surface {
|
2024-04-24 12:46:57 -07:00
|
|
|
drag_toplevel = Some(handle);
|
2024-04-19 12:05:35 -07:00
|
|
|
}
|
2023-11-17 14:56:37 -08:00
|
|
|
let layout = app.conf.workspace_config.workspace_layout;
|
|
|
|
|
let sidebar = workspaces_sidebar(
|
|
|
|
|
app.workspaces
|
|
|
|
|
.iter()
|
|
|
|
|
.filter(|i| i.outputs.contains(&surface.output)),
|
|
|
|
|
&surface.output,
|
|
|
|
|
layout,
|
2023-12-15 15:46:41 -08:00
|
|
|
drop_target,
|
2023-11-17 14:56:37 -08:00
|
|
|
);
|
2023-12-06 10:03:39 -08:00
|
|
|
let toplevels = toplevel_previews(
|
|
|
|
|
app.toplevels.iter().filter(|i| {
|
|
|
|
|
if !i.info.output.contains(&surface.output) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-11-16 19:25:28 -08:00
|
|
|
|
2023-12-06 10:03:39 -08:00
|
|
|
i.info.workspace.iter().any(|workspace| {
|
|
|
|
|
app.workspace_for_handle(workspace)
|
|
|
|
|
.map_or(false, |x| x.is_active)
|
|
|
|
|
})
|
|
|
|
|
}),
|
|
|
|
|
&surface.output,
|
2023-12-18 19:59:09 -08:00
|
|
|
layout,
|
2024-04-19 12:05:35 -07:00
|
|
|
drag_toplevel,
|
2023-12-06 10:03:39 -08:00
|
|
|
);
|
2023-12-13 17:58:38 -08:00
|
|
|
let container = match layout {
|
2024-03-18 17:57:18 -07:00
|
|
|
WorkspaceLayout::Vertical => widget::layer_container(
|
2023-11-21 16:15:02 -05:00
|
|
|
row![sidebar, toplevels]
|
|
|
|
|
.spacing(12)
|
|
|
|
|
.height(iced::Length::Fill)
|
|
|
|
|
.width(iced::Length::Fill),
|
|
|
|
|
),
|
2024-03-18 17:57:18 -07:00
|
|
|
WorkspaceLayout::Horizontal => widget::layer_container(
|
2023-11-21 16:15:02 -05:00
|
|
|
column![sidebar, toplevels]
|
|
|
|
|
.spacing(12)
|
2023-12-18 19:59:09 -08:00
|
|
|
.height(iced::Length::Fill)
|
|
|
|
|
.width(iced::Length::Fill),
|
2023-11-21 16:15:02 -05:00
|
|
|
),
|
2023-12-13 17:58:38 -08:00
|
|
|
};
|
2024-07-15 11:34:54 -07:00
|
|
|
container.into()
|
2023-11-16 19:25:28 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn close_button(on_press: Msg) -> cosmic::Element<'static, Msg> {
|
2024-12-23 01:54:51 +01:00
|
|
|
widget::button::custom(widget::icon::from_name("window-close-symbolic").size(16))
|
|
|
|
|
.class(cosmic::theme::Button::Destructive)
|
|
|
|
|
.on_press(on_press)
|
|
|
|
|
.into()
|
2023-11-16 19:25:28 -08:00
|
|
|
}
|
|
|
|
|
|
2024-04-25 14:10:09 -07:00
|
|
|
fn workspace_item_appearance(
|
|
|
|
|
theme: &cosmic::Theme,
|
|
|
|
|
is_active: bool,
|
|
|
|
|
hovered: bool,
|
2024-10-18 13:13:53 -07:00
|
|
|
) -> cosmic::widget::button::Style {
|
2024-04-25 14:10:09 -07:00
|
|
|
let cosmic = theme.cosmic();
|
2024-10-18 13:13:53 -07:00
|
|
|
let mut appearance = cosmic::widget::button::Style::new();
|
2024-12-23 01:54:51 +01:00
|
|
|
appearance.border_radius = cosmic
|
|
|
|
|
.corner_radii
|
|
|
|
|
.radius_s
|
|
|
|
|
.map(|x| if x < 4.0 { x } else { x + 4.0 })
|
|
|
|
|
.into();
|
2024-04-25 14:10:09 -07:00
|
|
|
if is_active {
|
2024-12-23 01:54:51 +01:00
|
|
|
appearance.border_width = 4.0;
|
2024-04-25 14:10:09 -07:00
|
|
|
appearance.border_color = cosmic.accent.base.into();
|
|
|
|
|
}
|
|
|
|
|
if hovered {
|
|
|
|
|
appearance.background = Some(iced::Background::Color(cosmic.button.base.into()));
|
|
|
|
|
}
|
|
|
|
|
appearance
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-10 18:41:34 -07:00
|
|
|
fn workspace_item<'a>(
|
2023-11-16 19:25:28 -08:00
|
|
|
workspace: &'a Workspace,
|
|
|
|
|
output: &wl_output::WlOutput,
|
2024-05-01 12:14:46 -07:00
|
|
|
is_drop_target: bool,
|
2023-11-16 19:25:28 -08:00
|
|
|
) -> cosmic::Element<'a, Msg> {
|
2024-06-12 09:40:13 -07:00
|
|
|
let image = capture_image(workspace.img_for_output.get(output), 1.0);
|
2024-04-25 14:10:09 -07:00
|
|
|
let is_active = workspace.is_active;
|
2024-12-23 01:54:51 +01:00
|
|
|
// TODO editable name?
|
|
|
|
|
widget::button::custom(
|
|
|
|
|
column![
|
|
|
|
|
image,
|
|
|
|
|
widget::text::body(fl!(
|
|
|
|
|
"workspace",
|
|
|
|
|
HashMap::from([("number", &workspace.name)])
|
|
|
|
|
))
|
|
|
|
|
]
|
|
|
|
|
.align_x(iced::Alignment::Center)
|
|
|
|
|
.spacing(4),
|
|
|
|
|
)
|
|
|
|
|
.selected(workspace.is_active)
|
|
|
|
|
.class(cosmic::theme::Button::Custom {
|
|
|
|
|
active: Box::new(move |_focused, theme| {
|
|
|
|
|
workspace_item_appearance(theme, is_active, is_drop_target)
|
|
|
|
|
}),
|
|
|
|
|
disabled: Box::new(|_theme| unreachable!()),
|
|
|
|
|
hovered: Box::new(move |_focused, theme| workspace_item_appearance(theme, is_active, true)),
|
|
|
|
|
pressed: Box::new(move |_focused, theme| workspace_item_appearance(theme, is_active, true)),
|
|
|
|
|
})
|
|
|
|
|
.on_press(Msg::ActivateWorkspace(workspace.handle.clone()))
|
|
|
|
|
.padding(8)
|
|
|
|
|
.width(iced::Length::Fixed(240.0))
|
2023-11-16 19:25:28 -08:00
|
|
|
.into()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn workspace_sidebar_entry<'a>(
|
|
|
|
|
workspace: &'a Workspace,
|
|
|
|
|
output: &'a wl_output::WlOutput,
|
2024-05-01 12:14:46 -07:00
|
|
|
is_drop_target: bool,
|
2025-01-24 13:24:13 -08:00
|
|
|
idx: usize,
|
2023-11-16 19:25:28 -08:00
|
|
|
) -> cosmic::Element<'a, Msg> {
|
2023-12-15 15:46:41 -08:00
|
|
|
/* XXX
|
|
|
|
|
let mouse_interaction = if is_drop_target {
|
|
|
|
|
iced::mouse::Interaction::Crosshair
|
|
|
|
|
} else {
|
|
|
|
|
iced::mouse::Interaction::Idle
|
|
|
|
|
};
|
|
|
|
|
*/
|
2023-12-06 10:51:55 -08:00
|
|
|
/* TODO allow moving workspaces (needs compositor support)
|
2023-11-16 20:09:10 -08:00
|
|
|
iced::widget::dnd_source(workspace_item(workspace, output))
|
2023-11-16 19:25:28 -08:00
|
|
|
.on_drag(|size| {
|
|
|
|
|
Msg::StartDrag(
|
|
|
|
|
size,
|
|
|
|
|
DragSurface::Workspace {
|
2023-12-06 10:51:55 -08:00
|
|
|
handle: workspace.handle.clone(),
|
2023-11-16 19:25:28 -08:00
|
|
|
output: output.clone(),
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
.on_finished(Msg::SourceFinished)
|
|
|
|
|
.on_cancelled(Msg::SourceFinished)
|
|
|
|
|
.into()
|
2023-12-06 10:51:55 -08:00
|
|
|
*/
|
2023-12-15 15:46:41 -08:00
|
|
|
//crate::widgets::mouse_interaction_wrapper(
|
|
|
|
|
// mouse_interaction,
|
2024-10-18 13:13:53 -07:00
|
|
|
let workspace_handle = workspace.handle.clone();
|
|
|
|
|
let workspace_handle2 = workspace_handle.clone();
|
|
|
|
|
let output_clone = output.clone();
|
|
|
|
|
let output_clone2 = output.clone();
|
|
|
|
|
cosmic::widget::dnd_destination::dnd_destination_for_data(
|
|
|
|
|
workspace_item(workspace, output, is_drop_target),
|
|
|
|
|
|data: Option<DragToplevel>, _action| match data {
|
|
|
|
|
Some(toplevel) => Msg::DndWorkspaceDrop(toplevel),
|
|
|
|
|
None => Msg::Ignore,
|
|
|
|
|
},
|
|
|
|
|
)
|
2025-01-24 13:24:13 -08:00
|
|
|
.drag_id(DragId::WorkspaceEntry(idx).into())
|
2024-10-18 13:13:53 -07:00
|
|
|
.on_enter(move |actions, mime, pos| {
|
|
|
|
|
Msg::DndWorkspaceEnter(
|
|
|
|
|
workspace_handle.clone(),
|
|
|
|
|
output_clone.clone(),
|
|
|
|
|
actions,
|
|
|
|
|
mime,
|
|
|
|
|
pos,
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
.on_leave(move || Msg::DndWorkspaceLeave(workspace_handle2.clone(), output_clone2.clone()))
|
|
|
|
|
//)
|
|
|
|
|
.into()
|
2023-11-16 19:25:28 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn workspaces_sidebar<'a>(
|
|
|
|
|
workspaces: impl Iterator<Item = &'a Workspace>,
|
|
|
|
|
output: &'a wl_output::WlOutput,
|
2023-11-17 14:56:37 -08:00
|
|
|
layout: WorkspaceLayout,
|
2024-04-23 13:44:59 -07:00
|
|
|
drop_target: Option<&backend::ZcosmicWorkspaceHandleV1>,
|
2023-11-16 19:25:28 -08:00
|
|
|
) -> cosmic::Element<'a, Msg> {
|
2023-12-14 16:29:45 -08:00
|
|
|
let sidebar_entries = workspaces
|
2024-10-18 13:13:53 -07:00
|
|
|
.enumerate()
|
2025-01-24 13:24:13 -08:00
|
|
|
.map(|(i, w)| workspace_sidebar_entry(w, output, drop_target == Some(&w.handle), i))
|
2023-11-17 14:56:37 -08:00
|
|
|
.collect();
|
2023-12-13 15:54:33 -08:00
|
|
|
let axis = match layout {
|
|
|
|
|
WorkspaceLayout::Vertical => Axis::Vertical,
|
|
|
|
|
WorkspaceLayout::Horizontal => Axis::Horizontal,
|
2023-11-17 14:56:37 -08:00
|
|
|
};
|
2023-12-14 16:46:49 -08:00
|
|
|
let sidebar_entries_container =
|
2024-12-23 01:54:51 +01:00
|
|
|
widget::container(crate::widgets::workspace_bar(sidebar_entries, axis)).padding(8.0);
|
|
|
|
|
|
2023-12-18 19:59:09 -08:00
|
|
|
let (width, height) = match layout {
|
2024-12-23 01:54:51 +01:00
|
|
|
WorkspaceLayout::Vertical => (iced::Length::Fixed(256.0), iced::Length::Shrink),
|
2023-12-18 19:59:09 -08:00
|
|
|
WorkspaceLayout::Horizontal => (iced::Length::Shrink, iced::Length::Fill),
|
|
|
|
|
};
|
2024-02-07 19:52:33 -08:00
|
|
|
widget::container(
|
|
|
|
|
widget::container(sidebar_entries_container)
|
|
|
|
|
.width(width)
|
|
|
|
|
.height(height)
|
2024-10-18 13:13:53 -07:00
|
|
|
.class(cosmic::theme::Container::custom(|theme| {
|
|
|
|
|
cosmic::iced::widget::container::Style {
|
2024-02-07 19:52:33 -08:00
|
|
|
text_color: Some(theme.cosmic().on_bg_color().into()),
|
|
|
|
|
icon_color: Some(theme.cosmic().on_bg_color().into()),
|
|
|
|
|
background: Some(iced::Color::from(theme.cosmic().background.base).into()),
|
|
|
|
|
border: Border {
|
2024-12-23 01:54:51 +01:00
|
|
|
radius: theme
|
|
|
|
|
.cosmic()
|
|
|
|
|
.radius_s()
|
|
|
|
|
.map(|x| if x < 4.0 { x } else { x + 8.0 })
|
|
|
|
|
.into(),
|
|
|
|
|
..Default::default()
|
2024-02-07 19:52:33 -08:00
|
|
|
},
|
|
|
|
|
shadow: Shadow::default(),
|
|
|
|
|
}
|
|
|
|
|
})),
|
|
|
|
|
)
|
2024-12-23 01:54:51 +01:00
|
|
|
.padding(8)
|
2023-12-14 16:46:49 -08:00
|
|
|
.into()
|
2023-11-16 19:25:28 -08:00
|
|
|
}
|
|
|
|
|
|
2024-10-18 13:13:53 -07:00
|
|
|
fn toplevel_preview(toplevel: &Toplevel, is_being_dragged: bool) -> cosmic::Element<'static, Msg> {
|
2024-12-23 01:54:51 +01:00
|
|
|
let cosmic::cosmic_theme::Spacing {
|
|
|
|
|
space_xxs, space_s, ..
|
|
|
|
|
} = cosmic::theme::active().cosmic().spacing;
|
|
|
|
|
|
|
|
|
|
let label = widget::text::body(toplevel.info.title.clone()).wrapping(Wrapping::None);
|
2023-12-18 19:41:30 -08:00
|
|
|
let label = if let Some(icon) = &toplevel.icon {
|
2024-12-23 01:54:51 +01:00
|
|
|
row![
|
|
|
|
|
widget::icon(widget::icon::from_path(icon.clone())).size(24),
|
|
|
|
|
label
|
|
|
|
|
]
|
|
|
|
|
.spacing(4)
|
2023-12-18 19:41:30 -08:00
|
|
|
} else {
|
|
|
|
|
row![label]
|
|
|
|
|
}
|
2024-12-23 01:54:51 +01:00
|
|
|
.align_y(iced::Alignment::Center);
|
2024-06-12 09:40:13 -07:00
|
|
|
let alpha = if is_being_dragged { 0.5 } else { 1.0 };
|
2024-04-25 14:17:43 -07:00
|
|
|
crate::widgets::toplevel_item(
|
2024-01-19 14:42:06 -08:00
|
|
|
vec![
|
2024-12-23 01:54:51 +01:00
|
|
|
row![
|
|
|
|
|
widget::button::custom(label)
|
|
|
|
|
.on_press(Msg::ActivateToplevel(toplevel.handle.clone()))
|
|
|
|
|
.class(cosmic::theme::Button::Icon)
|
|
|
|
|
.padding([space_xxs, space_s])
|
|
|
|
|
.apply(widget::container)
|
|
|
|
|
.class(cosmic::theme::Container::custom(|theme| {
|
|
|
|
|
cosmic::iced::widget::container::Style {
|
|
|
|
|
background: Some(
|
|
|
|
|
iced::Color::from(theme.cosmic().background.component.base).into(),
|
|
|
|
|
),
|
|
|
|
|
border: Border {
|
|
|
|
|
color: theme.cosmic().bg_divider().into(),
|
|
|
|
|
width: 1.0,
|
|
|
|
|
radius: theme.cosmic().radius_xl().into(),
|
|
|
|
|
},
|
|
|
|
|
..Default::default()
|
|
|
|
|
}
|
|
|
|
|
}))
|
|
|
|
|
.apply(widget::container)
|
|
|
|
|
.width(iced::Length::FillPortion(5)),
|
|
|
|
|
widget::horizontal_space().width(iced::Length::Fixed(8.0)),
|
|
|
|
|
close_button(Msg::CloseToplevel(toplevel.handle.clone()))
|
|
|
|
|
]
|
|
|
|
|
.padding([0, 0, 4, 0])
|
|
|
|
|
.align_y(iced::Alignment::Center)
|
|
|
|
|
.into(),
|
2024-10-18 13:13:53 -07:00
|
|
|
widget::button::custom(capture_image(toplevel.img.as_ref(), alpha))
|
2024-01-19 14:42:06 -08:00
|
|
|
.selected(
|
|
|
|
|
toplevel
|
|
|
|
|
.info
|
|
|
|
|
.state
|
|
|
|
|
.contains(&zcosmic_toplevel_handle_v1::State::Activated),
|
|
|
|
|
)
|
2024-10-18 13:13:53 -07:00
|
|
|
.class(cosmic::theme::Button::Image)
|
2024-01-19 14:42:06 -08:00
|
|
|
.on_press(Msg::ActivateToplevel(toplevel.handle.clone()))
|
|
|
|
|
.into(),
|
|
|
|
|
],
|
|
|
|
|
Axis::Vertical,
|
|
|
|
|
)
|
|
|
|
|
//.spacing(4)
|
|
|
|
|
//.align_items(iced::Alignment::Center)
|
|
|
|
|
//.width(iced::Length::Fill)
|
2023-11-16 19:25:28 -08:00
|
|
|
.into()
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 10:03:39 -08:00
|
|
|
fn toplevel_previews_entry<'a>(
|
|
|
|
|
toplevel: &'a Toplevel,
|
|
|
|
|
output: &'a wl_output::WlOutput,
|
2024-04-19 12:05:35 -07:00
|
|
|
is_being_dragged: bool,
|
2023-12-06 10:03:39 -08:00
|
|
|
) -> cosmic::Element<'a, Msg> {
|
2024-04-19 12:05:35 -07:00
|
|
|
// Dragged window still takes up space until moved, but isn't rendered while drag surface is
|
|
|
|
|
// shown.
|
2024-06-12 09:40:13 -07:00
|
|
|
let preview = crate::widgets::visibility_wrapper(
|
|
|
|
|
toplevel_preview(toplevel, is_being_dragged),
|
|
|
|
|
!is_being_dragged,
|
|
|
|
|
);
|
2024-10-18 13:13:53 -07:00
|
|
|
let toplevel2 = toplevel.clone();
|
|
|
|
|
cosmic::widget::dnd_source::<_, DragToplevel>(preview)
|
|
|
|
|
.drag_threshold(5.)
|
|
|
|
|
.drag_content(|| DragToplevel {})
|
|
|
|
|
// XXX State?
|
|
|
|
|
.drag_icon(move |offset| {
|
|
|
|
|
(
|
|
|
|
|
toplevel_preview(&toplevel2, true).map(|_| ()),
|
|
|
|
|
cosmic::iced_core::widget::tree::State::None,
|
|
|
|
|
-offset,
|
2023-12-06 10:03:39 -08:00
|
|
|
)
|
|
|
|
|
})
|
2024-10-18 13:13:53 -07:00
|
|
|
.on_start(Some(Msg::StartDrag(
|
|
|
|
|
//size,
|
|
|
|
|
//offset,
|
|
|
|
|
DragSurface::Toplevel {
|
|
|
|
|
handle: toplevel.handle.clone(),
|
|
|
|
|
output: output.clone(),
|
|
|
|
|
},
|
|
|
|
|
)))
|
|
|
|
|
.on_finish(Some(Msg::SourceFinished))
|
|
|
|
|
.on_cancel(Some(Msg::SourceFinished))
|
2023-12-06 10:03:39 -08:00
|
|
|
.into()
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-16 19:25:28 -08:00
|
|
|
fn toplevel_previews<'a>(
|
|
|
|
|
toplevels: impl Iterator<Item = &'a Toplevel>,
|
2023-12-06 10:03:39 -08:00
|
|
|
output: &'a wl_output::WlOutput,
|
2023-12-18 19:59:09 -08:00
|
|
|
layout: WorkspaceLayout,
|
2024-04-23 13:44:59 -07:00
|
|
|
drag_toplevel: Option<&'a backend::ZcosmicToplevelHandleV1>,
|
2023-11-16 19:25:28 -08:00
|
|
|
) -> cosmic::Element<'a, Msg> {
|
2023-12-18 19:59:09 -08:00
|
|
|
let (width, height) = match layout {
|
|
|
|
|
WorkspaceLayout::Vertical => (iced::Length::FillPortion(4), iced::Length::Fill),
|
|
|
|
|
WorkspaceLayout::Horizontal => (iced::Length::Fill, iced::Length::FillPortion(4)),
|
|
|
|
|
};
|
2024-01-19 14:42:06 -08:00
|
|
|
let entries = toplevels
|
2024-04-19 12:05:35 -07:00
|
|
|
.map(|t| toplevel_previews_entry(t, output, drag_toplevel == Some(&t.handle)))
|
2024-01-19 14:42:06 -08:00
|
|
|
.collect();
|
2024-01-19 15:32:54 -08:00
|
|
|
//row(entries)
|
2025-01-23 20:02:16 -08:00
|
|
|
widget::mouse_area(
|
|
|
|
|
widget::container(crate::widgets::toplevels(entries))
|
|
|
|
|
.align_x(iced::alignment::Horizontal::Center)
|
|
|
|
|
.width(width)
|
|
|
|
|
.height(height)
|
|
|
|
|
//.spacing(16)
|
|
|
|
|
.padding(12),
|
|
|
|
|
)
|
|
|
|
|
.on_press(Msg::Close)
|
|
|
|
|
//.align_items(iced::Alignment::Center)
|
|
|
|
|
.into()
|
2023-11-16 19:25:28 -08:00
|
|
|
}
|
2023-11-16 19:38:42 -08:00
|
|
|
|
2024-04-30 12:49:08 -07:00
|
|
|
fn bg_element<'a>(
|
2024-05-01 13:32:36 -07:00
|
|
|
bg_state: &'a cosmic_bg_config::state::State,
|
2024-04-30 12:49:08 -07:00
|
|
|
output_name: &'a str,
|
|
|
|
|
) -> cosmic::Element<'a, Msg> {
|
|
|
|
|
let bg_source = bg_state
|
2024-05-01 13:32:36 -07:00
|
|
|
.wallpapers
|
|
|
|
|
.iter()
|
2024-04-30 12:49:08 -07:00
|
|
|
.find(|(n, _)| n == output_name)
|
|
|
|
|
.map(|(_, v)| v.clone());
|
|
|
|
|
match bg_source {
|
|
|
|
|
Some(Source::Path(path)) => widget::image::Image::<widget::image::Handle>::new(
|
|
|
|
|
widget::image::Handle::from_path(path),
|
|
|
|
|
)
|
|
|
|
|
.content_fit(iced::ContentFit::Cover)
|
|
|
|
|
.width(iced::Length::Fill)
|
|
|
|
|
.height(iced::Length::Fill)
|
|
|
|
|
.into(),
|
2024-10-18 13:13:53 -07:00
|
|
|
Some(Source::Color(color)) => widget::layer_container(widget::horizontal_space())
|
|
|
|
|
.width(iced::Length::Fill)
|
|
|
|
|
.height(iced::Length::Fill)
|
|
|
|
|
.class(cosmic::theme::Container::Custom(Box::new(move |_| {
|
|
|
|
|
let color = color.clone();
|
|
|
|
|
cosmic::iced::widget::container::Style {
|
|
|
|
|
background: Some(match color {
|
|
|
|
|
cosmic_bg_config::Color::Single(c) => {
|
|
|
|
|
iced::Background::Color(cosmic::iced::Color::new(c[0], c[1], c[2], 1.0))
|
|
|
|
|
}
|
|
|
|
|
cosmic_bg_config::Color::Gradient(cosmic_bg_config::Gradient {
|
|
|
|
|
colors,
|
|
|
|
|
radius,
|
|
|
|
|
}) => {
|
|
|
|
|
let stop_increment = 1.0 / (colors.len() - 1) as f32;
|
|
|
|
|
let mut stop = 0.0;
|
2024-04-30 12:49:08 -07:00
|
|
|
|
2024-10-18 13:13:53 -07:00
|
|
|
let mut linear = iced::gradient::Linear::new(iced::Degrees(radius));
|
2024-04-30 12:49:08 -07:00
|
|
|
|
2024-10-18 13:13:53 -07:00
|
|
|
for &[r, g, b] in colors.iter() {
|
|
|
|
|
linear =
|
|
|
|
|
linear.add_stop(stop, cosmic::iced::Color::from_rgb(r, g, b));
|
|
|
|
|
stop += stop_increment;
|
2024-04-30 12:49:08 -07:00
|
|
|
}
|
2024-10-18 13:13:53 -07:00
|
|
|
|
|
|
|
|
iced::Background::Gradient(cosmic::iced_core::Gradient::Linear(linear))
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
..Default::default()
|
|
|
|
|
}
|
|
|
|
|
})))
|
|
|
|
|
.into(),
|
2024-04-30 12:49:08 -07:00
|
|
|
None => {
|
|
|
|
|
widget::image::Image::<widget::image::Handle>::new(widget::image::Handle::from_path(
|
|
|
|
|
"/usr/share/backgrounds/pop/kate-hazen-COSMIC-desktop-wallpaper.png",
|
|
|
|
|
))
|
|
|
|
|
.content_fit(iced::ContentFit::Cover)
|
|
|
|
|
.width(iced::Length::Fill)
|
|
|
|
|
.height(iced::Length::Fill)
|
|
|
|
|
.into()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-18 13:13:53 -07:00
|
|
|
fn capture_image(image: Option<&CaptureImage>, alpha: f32) -> cosmic::Element<'static, Msg> {
|
2023-11-16 19:38:42 -08:00
|
|
|
if let Some(image) = image {
|
2024-04-01 15:13:51 -07:00
|
|
|
#[cfg(feature = "no-subsurfaces")]
|
|
|
|
|
{
|
2025-01-15 10:18:50 -08:00
|
|
|
// TODO alpha, transform
|
2024-04-01 15:13:51 -07:00
|
|
|
widget::Image::new(image.image.clone()).into()
|
|
|
|
|
}
|
|
|
|
|
#[cfg(not(feature = "no-subsurfaces"))]
|
|
|
|
|
{
|
2025-01-15 10:18:50 -08:00
|
|
|
Subsurface::new(image.wl_buffer.clone())
|
|
|
|
|
.alpha(alpha)
|
|
|
|
|
.transform(image.transform)
|
|
|
|
|
.into()
|
2024-04-01 15:13:51 -07:00
|
|
|
}
|
2023-11-16 19:38:42 -08:00
|
|
|
} else {
|
2024-10-18 13:13:53 -07:00
|
|
|
widget::Image::new(widget::image::Handle::from_rgba(1, 1, vec![0, 0, 0, 255])).into()
|
2023-11-16 19:38:42 -08:00
|
|
|
}
|
|
|
|
|
}
|