mod item; mod open_state; use self::item::{Item, ItemButton, Window}; use self::open_state::OpenState; use crate::collection::Collection; use crate::icon::find_desktop_file; use crate::modules::{Module, ModuleInfo, ModuleUpdateEvent, ModuleWidget, WidgetContext}; use crate::wayland; use crate::wayland::ToplevelChange; use color_eyre::{Help, Report}; use glib::Continue; use gtk::prelude::*; use gtk::{Button, IconTheme, Orientation}; use serde::Deserialize; use std::process::{Command, Stdio}; use std::sync::{Arc, Mutex}; use tokio::spawn; use tokio::sync::mpsc; use tokio::sync::mpsc::{Receiver, Sender}; use tracing::{debug, error, trace}; #[derive(Debug, Deserialize, Clone)] pub struct LauncherModule { /// List of app IDs (or classes) to always show regardless of open state, /// in the order specified. favorites: Option>, /// Whether to show application names on the bar. #[serde(default = "crate::config::default_false")] show_names: bool, /// Whether to show application icons on the bar. #[serde(default = "crate::config::default_true")] show_icons: bool, /// Name of the GTK icon theme to use. icon_theme: Option, } #[derive(Debug, Clone)] pub enum LauncherUpdate { /// Adds item AddItem(Item), /// Adds window to item with `app_id` AddWindow(String, Window), /// Removes item with `app_id` RemoveItem(String), /// Removes window from item with `app_id`. RemoveWindow(String, usize), /// Sets title for `app_id` Title(String, usize, String), /// Marks the item with `app_id` as focused or not focused Focus(String, bool), /// Declares the item with `app_id` has been hovered over Hover(String), } #[derive(Debug)] pub enum ItemEvent { FocusItem(String), FocusWindow(usize), OpenItem(String), } enum ItemOrWindow { Item(Item), Window(Window), } enum ItemOrWindowId { Item, Window, } impl Module for LauncherModule { type SendMessage = LauncherUpdate; type ReceiveMessage = ItemEvent; fn spawn_controller( &self, _info: &ModuleInfo, tx: Sender>, mut rx: Receiver, ) -> crate::Result<()> { let items = match &self.favorites { Some(favorites) => favorites .iter() .map(|app_id| { ( app_id.to_string(), Item::new(app_id.to_string(), OpenState::Closed, true), ) }) .collect::>(), None => Collection::new(), }; let items = Arc::new(Mutex::new(items)); { let items = Arc::clone(&items); let tx = tx.clone(); spawn(async move { let wl = wayland::get_client().await; let open_windows = wl .toplevels .read() .expect("Failed to get read lock on toplevels"); let mut items = items.lock().expect("Failed to get lock on items"); for (window, _) in open_windows.clone() { let item = items.get_mut(&window.app_id); match item { Some(item) => { item.merge_toplevel(window); } None => { items.insert(window.app_id.clone(), window.into()); } } } let items = items.iter(); for item in items { tx.try_send(ModuleUpdateEvent::Update(LauncherUpdate::AddItem( item.clone(), )))?; } Ok::<(), Report>(()) }); } let items2 = Arc::clone(&items); spawn(async move { let items = items2; let mut wlrx = { let wl = wayland::get_client().await; wl.subscribe_toplevels() }; let send_update = |update: LauncherUpdate| tx.send(ModuleUpdateEvent::Update(update)); while let Ok(event) = wlrx.recv().await { trace!("event: {:?}", event); let window = event.toplevel; let app_id = window.app_id.clone(); let items = || items.lock().expect("Failed to get lock on items"); match event.change { ToplevelChange::New => { let new_item = { let mut items = items(); let item = items.get_mut(&app_id); match item { None => { let item: Item = window.into(); items.insert(app_id.clone(), item.clone()); ItemOrWindow::Item(item) } Some(item) => { let window = item.merge_toplevel(window); ItemOrWindow::Window(window) } } }; match new_item { ItemOrWindow::Item(item) => { send_update(LauncherUpdate::AddItem(item)).await } ItemOrWindow::Window(window) => { send_update(LauncherUpdate::AddWindow(app_id, window)).await } }?; } ToplevelChange::Close => { let remove_item = { let mut items = items(); let item = items.get_mut(&app_id); match item { Some(item) => { item.unmerge_toplevel(&window); if item.windows.is_empty() { items.remove(&app_id); Some(ItemOrWindowId::Item) } else { Some(ItemOrWindowId::Window) } } None => None, } }; match remove_item { Some(ItemOrWindowId::Item) => { send_update(LauncherUpdate::RemoveItem(app_id)).await?; } Some(ItemOrWindowId::Window) => { send_update(LauncherUpdate::RemoveWindow(app_id, window.id)) .await?; } None => {} }; } ToplevelChange::Focus(focused) => { let update_title = if focused { if let Some(item) = items().get_mut(&app_id) { item.set_window_focused(window.id, true); // might be switching focus between windows of same app if item.windows.len() > 1 { item.set_window_name(window.id, window.title.clone()); true } else { false } } else { false } } else { false }; send_update(LauncherUpdate::Focus(app_id.clone(), focused)).await?; if update_title { send_update(LauncherUpdate::Title(app_id, window.id, window.title)) .await?; } } ToplevelChange::Title(title) => { if let Some(item) = items().get_mut(&app_id) { item.set_window_name(window.id, title.clone()); } send_update(LauncherUpdate::Title(app_id, window.id, title)).await?; } ToplevelChange::Fullscreen(_) => {} } } Ok::<(), mpsc::error::SendError>>(()) }); // listen to ui events spawn(async move { while let Some(event) = rx.recv().await { trace!("{:?}", event); if let ItemEvent::OpenItem(app_id) = event { find_desktop_file(&app_id).map_or_else( || error!("Could not find desktop file for {}", app_id), |file| { if let Err(err) = Command::new("gtk-launch") .arg( file.file_name() .expect("File segment missing from path to desktop file"), ) .stdout(Stdio::null()) .stderr(Stdio::null()) .spawn() { error!( "{:?}", Report::new(err) .wrap_err("Failed to run gtk-launch command.") .suggestion("Perhaps the desktop file is invalid?") ); } }, ); } else { let wl = wayland::get_client().await; let items = items.lock().expect("Failed to get lock on items"); let id = match event { ItemEvent::FocusItem(app_id) => items .get(&app_id) .and_then(|item| item.windows.first().map(|win| win.id)), ItemEvent::FocusWindow(id) => Some(id), ItemEvent::OpenItem(_) => unreachable!(), }; if let Some(id) = id { let toplevels = wl .toplevels .read() .expect("Failed to get read lock on toplevels"); let seat = wl.seats.first().expect("Failed to get Wayland seat"); if let Some((_top, handle)) = toplevels.get(&id) { handle.activate(seat); }; } } } Ok::<(), swayipc_async::Error>(()) }); Ok(()) } fn into_widget( self, context: WidgetContext, _info: &ModuleInfo, ) -> crate::Result> { let icon_theme = IconTheme::new(); if let Some(ref theme) = self.icon_theme { icon_theme.set_custom_theme(Some(theme)); } let container = gtk::Box::new(Orientation::Horizontal, 0); { let container = container.clone(); let show_names = self.show_names; let show_icons = self.show_icons; let mut buttons = Collection::::new(); let controller_tx2 = context.controller_tx.clone(); context.widget_rx.attach(None, move |event| { match event { LauncherUpdate::AddItem(item) => { debug!("Adding item with id {}", item.app_id); if let Some(button) = buttons.get(&item.app_id) { button.set_open(true); } else { let button = ItemButton::new( &item, show_names, show_icons, &icon_theme, &context.tx, &controller_tx2, ); container.add(&button.button); buttons.insert(item.app_id, button); } } LauncherUpdate::AddWindow(app_id, _) => { if let Some(button) = buttons.get(&app_id) { let mut menu_state = button .menu_state .write() .expect("Failed to get write lock on item menu state"); menu_state.num_windows += 1; } } LauncherUpdate::RemoveItem(app_id) => { debug!("Removing item with id {}", app_id); if let Some(button) = buttons.get(&app_id) { if button.persistent { button.set_open(false); if button.show_names { button.button.set_label(&app_id); } } else { container.remove(&button.button); buttons.remove(&app_id); } } } LauncherUpdate::RemoveWindow(app_id, _) => { if let Some(button) = buttons.get(&app_id) { let mut menu_state = button .menu_state .write() .expect("Failed to get write lock on item menu state"); menu_state.num_windows -= 1; } } LauncherUpdate::Focus(app_id, focus) => { debug!("Changing focus to {} on item with id {}", focus, app_id); if let Some(button) = buttons.get(&app_id) { button.set_focused(focus); } } LauncherUpdate::Title(app_id, _, name) => { debug!("Updating title for item with id {}: {:?}", app_id, name); if show_names { if let Some(button) = buttons.get(&app_id) { button.button.set_label(&name); } } } LauncherUpdate::Hover(_) => {} }; Continue(true) }); } let popup = self.into_popup(context.controller_tx, context.popup_rx); Ok(ModuleWidget { widget: container, popup, }) } fn into_popup( self, controller_tx: Sender, rx: glib::Receiver, ) -> Option { const MAX_WIDTH: i32 = 250; let container = gtk::Box::builder() .orientation(Orientation::Vertical) .name("popup-launcher") .build(); let placeholder = Button::with_label("PLACEHOLDER"); placeholder.set_width_request(MAX_WIDTH); container.add(&placeholder); let mut buttons = Collection::>::new(); { let container = container.clone(); rx.attach(None, move |event| { match event { LauncherUpdate::AddItem(item) => { let app_id = item.app_id.clone(); let window_buttons = item .windows .into_iter() .map(|win| { let button = Button::builder() .label(&clamp(&win.name)) .height_request(40) .build(); { let tx = controller_tx.clone(); button.connect_clicked(move |button| { tx.try_send(ItemEvent::FocusWindow(win.id)) .expect("Failed to send window click event"); if let Some(win) = button.window() { win.hide(); } }); } (win.id, button) }) .collect(); buttons.insert(app_id, window_buttons); } LauncherUpdate::AddWindow(app_id, win) => { if let Some(buttons) = buttons.get_mut(&app_id) { let button = Button::builder() .height_request(40) .label(&clamp(&win.name)) .build(); { let tx = controller_tx.clone(); button.connect_clicked(move |button| { tx.try_send(ItemEvent::FocusWindow(win.id)) .expect("Failed to send window click event"); if let Some(win) = button.window() { win.hide(); } }); } buttons.insert(win.id, button); } } LauncherUpdate::RemoveWindow(app_id, win_id) => { if let Some(buttons) = buttons.get_mut(&app_id) { buttons.remove(&win_id); } } LauncherUpdate::Title(app_id, win_id, title) => { if let Some(buttons) = buttons.get_mut(&app_id) { if let Some(button) = buttons.get(&win_id) { button.set_label(&title); } } } LauncherUpdate::Hover(app_id) => { // empty current buttons for child in container.children() { container.remove(&child); } // add app's buttons if let Some(buttons) = buttons.get(&app_id) { for button in buttons { button.style_context().add_class("popup-item"); container.add(button); } container.show_all(); container.set_width_request(MAX_WIDTH); } } _ => {} } Continue(true) }); } Some(container) } } /// Clamps a string at 24 characters. /// /// This is a hacky number derived from /// "what fits inside the 250px popup" /// and probably won't hold up with wide fonts. fn clamp(str: &str) -> String { const MAX_CHARS: usize = 24; if str.len() > MAX_CHARS { str.chars().take(MAX_CHARS - 3).collect::() + "..." } else { str.to_string() } }