Indicate which window is focused
This commit is contained in:
parent
8a6ee91647
commit
84de42fc65
1 changed files with 7 additions and 13 deletions
20
src/main.rs
20
src/main.rs
|
|
@ -100,18 +100,6 @@ impl App {
|
||||||
) -> Option<&mut Toplevel> {
|
) -> Option<&mut Toplevel> {
|
||||||
self.toplevels.iter_mut().find(|i| &i.handle == handle)
|
self.toplevels.iter_mut().find(|i| &i.handle == handle)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn layer_surface_for_output_name(
|
|
||||||
&mut self,
|
|
||||||
output_name: Option<&str>,
|
|
||||||
) -> Option<&mut LayerSurface> {
|
|
||||||
for surface in self.layer_surfaces.values_mut() {
|
|
||||||
if surface.output_name.as_deref() == output_name {
|
|
||||||
return Some(surface);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Application for App {
|
impl Application for App {
|
||||||
|
|
@ -313,12 +301,18 @@ fn layer_surface<'a>(app: &'a App, surface: &'a LayerSurface) -> cosmic::Element
|
||||||
}
|
}
|
||||||
|
|
||||||
fn workspace_sidebar_entry(workspace: &Workspace) -> cosmic::Element<Msg> {
|
fn workspace_sidebar_entry(workspace: &Workspace) -> cosmic::Element<Msg> {
|
||||||
// Indicate active workspace?
|
// TODO style
|
||||||
|
let theme = if workspace.is_active {
|
||||||
|
cosmic::theme::Button::Primary
|
||||||
|
} else {
|
||||||
|
cosmic::theme::Button::Secondary
|
||||||
|
};
|
||||||
widget::column![
|
widget::column![
|
||||||
widget::button(widget::text("X")), // TODO close button
|
widget::button(widget::text("X")), // TODO close button
|
||||||
widget::button(widget::Image::new(workspace.img.clone().unwrap_or_else(
|
widget::button(widget::Image::new(workspace.img.clone().unwrap_or_else(
|
||||||
|| widget::image::Handle::from_pixels(0, 0, vec![0, 0, 0, 255])
|
|| widget::image::Handle::from_pixels(0, 0, vec![0, 0, 0, 255])
|
||||||
)))
|
)))
|
||||||
|
.style(theme)
|
||||||
.on_press(Msg::ActivateWorkspace(workspace.handle.clone())),
|
.on_press(Msg::ActivateWorkspace(workspace.handle.clone())),
|
||||||
widget::text(&workspace.name)
|
widget::text(&workspace.name)
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue