annotate: add module entry point
Authored by
mfwolffe <wolffemf@dukes.jmu.edu>
- SHA
df3ab36c69261e94e0fff5f2815cd7a41892732c- Parents
-
5a045e6 - Tree
d3ee00a
df3ab36
df3ab36c69261e94e0fff5f2815cd7a41892732c5a045e6
d3ee00a| Status | File | + | - |
|---|---|---|---|
| A |
garshot/src/annotate/mod.rs
|
16 | 0 |
garshot/src/annotate/mod.rsadded@@ -0,0 +1,16 @@ | ||
| 1 | +//! Annotation mode for screenshot editing. | |
| 2 | +//! | |
| 3 | +//! This module provides an interactive annotation editor that can be used | |
| 4 | +//! after capturing a screenshot or for editing existing images. | |
| 5 | + | |
| 6 | +mod canvas; | |
| 7 | +mod history; | |
| 8 | +mod overlay; | |
| 9 | +mod state; | |
| 10 | +pub mod tools; | |
| 11 | +pub mod ui; | |
| 12 | + | |
| 13 | +pub use canvas::AnnotationCanvas; | |
| 14 | +pub use history::History; | |
| 15 | +pub use overlay::AnnotationOverlay; | |
| 16 | +pub use state::{AnnotationResult, AnnotationState, ToolProperties, ToolType}; | |