refactor: Clean Architecture - Separate domain (CropRegion) from UI (crop_model)

- CropRegion moved to domain/document/operations/crop.rs (pure model)
- crop_types.rs renamed to crop_model.rs (honest UI model name)
- DragHandle and CropSelection stay in UI layer (where they belong)
- Clean separation: Domain has no UI concerns, UI imports from Domain
This commit is contained in:
wfx 2026-02-04 16:46:41 +01:00
parent be956f701b
commit 531cfef715
6 changed files with 83 additions and 38 deletions

View file

@ -3,10 +3,14 @@
//
// Document operations: transformations, rendering, and export.
pub mod crop;
pub mod export;
pub mod render;
pub mod transform;
// Re-export CropRegion for convenience
pub use crop::CropRegion;
// Note: Low-level pixel operations (apply_rotation, apply_flip, crop_image)
// are internal helpers (pub(crate)) used only by document type implementations.
// Use high-level operations above for application and UI code.