mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-07-01 10:41:03 +02:00
feat(workspaces): better ordering
Includes option to revert to previous (lack of) ordering method if preferred.
This commit is contained in:
parent
0d7ab54160
commit
9ba28fe7fa
1 changed files with 59 additions and 2 deletions
|
@ -6,11 +6,28 @@ use color_eyre::{Report, Result};
|
||||||
use gtk::prelude::*;
|
use gtk::prelude::*;
|
||||||
use gtk::Button;
|
use gtk::Button;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
|
use std::cmp::Ordering;
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use tokio::spawn;
|
use tokio::spawn;
|
||||||
use tokio::sync::mpsc::{Receiver, Sender};
|
use tokio::sync::mpsc::{Receiver, Sender};
|
||||||
use tracing::trace;
|
use tracing::trace;
|
||||||
|
|
||||||
|
#[derive(Debug, Deserialize, Clone, Copy, Eq, PartialEq)]
|
||||||
|
#[serde(rename_all = "snake_case")]
|
||||||
|
pub enum SortOrder {
|
||||||
|
/// Shows workspaces in the order they're added
|
||||||
|
Added,
|
||||||
|
/// Shows workspaces in numeric order.
|
||||||
|
/// Named workspaces are added to the end in alphabetical order.
|
||||||
|
Alphanumeric,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for SortOrder {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::Alphanumeric
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Deserialize, Clone)]
|
#[derive(Debug, Deserialize, Clone)]
|
||||||
pub struct WorkspacesModule {
|
pub struct WorkspacesModule {
|
||||||
/// Map of actual workspace names to custom names.
|
/// Map of actual workspace names to custom names.
|
||||||
|
@ -20,6 +37,9 @@ pub struct WorkspacesModule {
|
||||||
#[serde(default = "crate::config::default_false")]
|
#[serde(default = "crate::config::default_false")]
|
||||||
all_monitors: bool,
|
all_monitors: bool,
|
||||||
|
|
||||||
|
#[serde(default)]
|
||||||
|
sort: SortOrder,
|
||||||
|
|
||||||
#[serde(flatten)]
|
#[serde(flatten)]
|
||||||
pub common: Option<CommonConfig>,
|
pub common: Option<CommonConfig>,
|
||||||
}
|
}
|
||||||
|
@ -33,6 +53,7 @@ fn create_button(
|
||||||
) -> Button {
|
) -> Button {
|
||||||
let button = Button::builder()
|
let button = Button::builder()
|
||||||
.label(name_map.get(name).map_or(name, String::as_str))
|
.label(name_map.get(name).map_or(name, String::as_str))
|
||||||
|
.name(name)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
let style_context = button.style_context();
|
let style_context = button.style_context();
|
||||||
|
@ -53,6 +74,27 @@ fn create_button(
|
||||||
button
|
button
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn reorder_workspaces(container: >k::Box) {
|
||||||
|
let mut buttons = container
|
||||||
|
.children()
|
||||||
|
.into_iter()
|
||||||
|
.map(|child| (child.widget_name().to_string(), child))
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
buttons.sort_by(|(label_a, _), (label_b, _a)| {
|
||||||
|
match (label_a.parse::<i32>(), label_b.parse::<i32>()) {
|
||||||
|
(Ok(a), Ok(b)) => a.cmp(&b),
|
||||||
|
(Ok(_), Err(_)) => Ordering::Less,
|
||||||
|
(Err(_), Ok(_)) => Ordering::Greater,
|
||||||
|
(Err(_), Err(_)) => label_a.cmp(label_b),
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
for (i, (_, button)) in buttons.into_iter().enumerate() {
|
||||||
|
container.reorder_child(&button, i as i32);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl Module<gtk::Box> for WorkspacesModule {
|
impl Module<gtk::Box> for WorkspacesModule {
|
||||||
type SendMessage = WorkspaceUpdate;
|
type SendMessage = WorkspaceUpdate;
|
||||||
type ReceiveMessage = String;
|
type ReceiveMessage = String;
|
||||||
|
@ -131,9 +173,15 @@ impl Module<gtk::Box> for WorkspacesModule {
|
||||||
&context.controller_tx,
|
&context.controller_tx,
|
||||||
);
|
);
|
||||||
container.add(&item);
|
container.add(&item);
|
||||||
|
|
||||||
button_map.insert(workspace.name, item);
|
button_map.insert(workspace.name, item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if self.sort == SortOrder::Alphanumeric {
|
||||||
|
reorder_workspaces(&container);
|
||||||
|
}
|
||||||
|
|
||||||
container.show_all();
|
container.show_all();
|
||||||
has_initialized = true;
|
has_initialized = true;
|
||||||
}
|
}
|
||||||
|
@ -159,8 +207,12 @@ impl Module<gtk::Box> for WorkspacesModule {
|
||||||
&context.controller_tx,
|
&context.controller_tx,
|
||||||
);
|
);
|
||||||
|
|
||||||
item.show();
|
|
||||||
container.add(&item);
|
container.add(&item);
|
||||||
|
if self.sort == SortOrder::Alphanumeric {
|
||||||
|
reorder_workspaces(&container);
|
||||||
|
}
|
||||||
|
|
||||||
|
item.show();
|
||||||
|
|
||||||
if !name.is_empty() {
|
if !name.is_empty() {
|
||||||
button_map.insert(name, item);
|
button_map.insert(name, item);
|
||||||
|
@ -178,9 +230,14 @@ impl Module<gtk::Box> for WorkspacesModule {
|
||||||
&context.controller_tx,
|
&context.controller_tx,
|
||||||
);
|
);
|
||||||
|
|
||||||
item.show();
|
|
||||||
container.add(&item);
|
container.add(&item);
|
||||||
|
|
||||||
|
if self.sort == SortOrder::Alphanumeric {
|
||||||
|
reorder_workspaces(&container);
|
||||||
|
}
|
||||||
|
|
||||||
|
item.show();
|
||||||
|
|
||||||
if !name.is_empty() {
|
if !name.is_empty() {
|
||||||
button_map.insert(name, item);
|
button_map.insert(name, item);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue