adding justfile

This commit is contained in:
Chris Cochrun 2024-12-27 17:16:53 -06:00
parent d92bd4acfb
commit 76396a6b6c
4 changed files with 7496 additions and 2 deletions

View file

@ -1,3 +1,70 @@
fn main() -> cosmic::iced::Result {
println!("hello")
mod applications;
use applications::{all_apps, App};
use iced::widget::{container, row};
use iced::{Color, Element, Task};
use iced_layershell::build_pattern::application;
use iced_layershell::reexport::Anchor;
use iced_layershell::settings::LayerShellSettings;
use iced_layershell::to_layer_message;
fn main() -> iced_layershell::Result {
application(Panel::namespace, Panel::update, Panel::view)
.layer_settings(LayerShellSettings {
size: Some((600, 50)),
anchor: Anchor::Bottom,
margin: (0, 0, 10, 0),
..Default::default()
})
.style(Panel::style)
.run_with(Panel::new)
}
struct Panel {
apps: Vec<App>,
}
#[to_layer_message]
#[derive(Debug, Clone)]
enum Message {
Launch(usize),
}
impl Panel {
fn new() -> (Self, Task<Message>) {
(Self { apps: all_apps() }, Task::none())
}
fn namespace(&self) -> String {
String::from("bottom panel")
}
fn update(&mut self, message: Message) -> Task<Message> {
match message {
Message::Launch(index) => {
self.apps[index].launch();
Task::none()
}
_ => unreachable!(),
}
}
fn view(&self) -> Element<Message> {
let bottom_vec: Vec<Element<Message>> = self
.apps
.iter()
.enumerate()
.map(|(index, app)| app.view(index, false))
.collect();
let row = row(bottom_vec);
container(row).into()
}
fn style(&self, theme: &iced::Theme) -> iced_layershell::Appearance {
use iced_layershell::Appearance;
Appearance {
background_color: Color::TRANSPARENT,
text_color: theme.palette().text,
}
}
}