10c513edad
- Adds support for NSSplitViewController. - Reworks NSMenu support to be cleaner with enum variants. - Reworks the Foundation underpinnings to be a bit safer and more clear in how they're used and passed around. - Changes to docs structure for push towards v0.1. - Examples updated to account for changes.
50 lines
1.3 KiB
Rust
50 lines
1.3 KiB
Rust
//! The main Todos window toolbar. Contains a button to enable adding a new task.
|
|
|
|
use cacao::button::Button;
|
|
use cacao::macos::toolbar::{
|
|
Toolbar, ToolbarDelegate, ToolbarItem,
|
|
ToolbarDisplayMode, ItemIdentifier
|
|
};
|
|
|
|
use crate::storage::{dispatch_ui, Message};
|
|
|
|
#[derive(Debug)]
|
|
pub struct TodosToolbar(ToolbarItem);
|
|
|
|
impl Default for TodosToolbar {
|
|
fn default() -> Self {
|
|
TodosToolbar({
|
|
let mut item = ToolbarItem::new("AddTodoButton");
|
|
item.set_title("Add Todo");
|
|
item.set_button(Button::new("+ New"));
|
|
|
|
item.set_action(|| {
|
|
dispatch_ui(Message::OpenNewTodoSheet);
|
|
});
|
|
|
|
item
|
|
})
|
|
}
|
|
}
|
|
|
|
impl ToolbarDelegate for TodosToolbar {
|
|
const NAME: &'static str = "TodosToolbar";
|
|
|
|
fn did_load(&mut self, toolbar: Toolbar) {
|
|
toolbar.set_display_mode(ToolbarDisplayMode::IconOnly);
|
|
}
|
|
|
|
fn allowed_item_identifiers(&self) -> Vec<ItemIdentifier> {
|
|
vec![ItemIdentifier::Custom("AddTodoButton")]
|
|
}
|
|
|
|
fn default_item_identifiers(&self) -> Vec<ItemIdentifier> {
|
|
vec![ItemIdentifier::Custom("AddTodoButton")]
|
|
}
|
|
|
|
// We only have one item, so we don't care about the identifier.
|
|
fn item_for(&self, _identifier: &str) -> &ToolbarItem {
|
|
&self.0
|
|
}
|
|
}
|