660694f00f
- Updated styles in `styles.rs` to include new pane and canvas backgrounds, while marking unused functions with `#[allow(dead_code)]`. - Modified `text_editor.rs` to suppress warnings for unused function parameters. - Enhanced `title_bar.rs` to create a unified title/menu bar with improved hover states and draggable functionality. - Simplified `sidebar.rs` to always use a single-column layout and improved tool button styling with hover feedback. - Added a new `viewport.rs` file to implement a custom canvas viewport widget for zoom and pan rendering, replacing the previous layout-based approach. - Updated theme management in `theme.rs` to suppress warnings for unused methods. - Adjusted line count report to reflect recent changes in codebase.
26 lines
584 B
TOML
26 lines
584 B
TOML
[package]
|
|
name = "hcie-iced-gui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["tablet-evdev"]
|
|
tablet-evdev = ["dep:evdev"]
|
|
|
|
[[bin]]
|
|
name = "hcie-iced"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
hcie-engine-api = { path = "../../../hcie-engine-api" }
|
|
iced-panel-adapter = { path = "../iced-panel-adapter" }
|
|
iced = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
log = { workspace = true }
|
|
image = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
rfd = { workspace = true }
|
|
arboard = { workspace = true }
|
|
bytes = "1.12"
|
|
evdev = { version = "0.12", optional = true }
|