feat(ui): add header toolbar with navigation and transform buttons
- Add header bar with nav toggle, prev/next, rotate and flip buttons - Extract header rendering to view/header.rs (MVU architecture) - Add RotateCW, RotateCCW, FlipHorizontal, FlipVertical messages - Add PrevDocument, NextDocument navigation messages - Persist nav_bar_visible and context_drawer_visible in config - Update properties panel with document info display"
This commit is contained in:
parent
b1b0999ebe
commit
7b36ff143c
8 changed files with 232 additions and 90 deletions
|
|
@ -111,6 +111,10 @@ pub fn update(model: &mut AppModel, msg: AppMessage) {
|
|||
// Handled in Noctua::update() directly.
|
||||
}
|
||||
|
||||
AppMessage::ToggleNavBar => {
|
||||
// Handled in Noctua::update() directly.
|
||||
}
|
||||
|
||||
AppMessage::NoOp => {
|
||||
// Intentionally do nothing.
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue