2026-02-04 16:00:26 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
// src/ui/widgets/mod.rs
|
|
|
|
|
//
|
|
|
|
|
// Custom widgets module.
|
|
|
|
|
|
|
|
|
|
pub mod crop_types;
|
2026-02-04 16:33:52 +01:00
|
|
|
pub mod image_viewer;
|
2026-02-04 16:00:26 +01:00
|
|
|
|
|
|
|
|
pub use crop_types::{CropRegion, CropSelection, DragHandle};
|
2026-02-04 16:33:52 +01:00
|
|
|
pub use image_viewer::Viewer;
|