2026-01-07 20:42:28 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2026-01-07 20:22:49 +01:00
|
|
|
// src/app/view/mod.rs
|
|
|
|
|
//
|
2026-01-14 17:16:25 +01:00
|
|
|
// View module root, combining all view components.
|
2026-01-07 20:22:49 +01:00
|
|
|
|
2026-01-14 17:16:25 +01:00
|
|
|
mod canvas;
|
|
|
|
|
pub mod footer;
|
2026-01-14 18:53:36 +01:00
|
|
|
pub mod header;
|
2026-01-15 18:10:57 +01:00
|
|
|
mod image_viewer;
|
2026-01-07 20:22:49 +01:00
|
|
|
pub mod panels;
|
|
|
|
|
|
|
|
|
|
use cosmic::Element;
|
|
|
|
|
|
|
|
|
|
use crate::app::{AppMessage, AppModel};
|
|
|
|
|
|
2026-01-14 17:16:25 +01:00
|
|
|
/// Main application view (canvas area).
|
2026-01-07 20:22:49 +01:00
|
|
|
pub fn view(model: &AppModel) -> Element<'_, AppMessage> {
|
2026-01-14 17:16:25 +01:00
|
|
|
canvas::view(model)
|
2026-01-07 20:22:49 +01:00
|
|
|
}
|