7-step wizard flow (Workflow, Images, Resize, Convert, Compress, Metadata, Output) with AdwNavigationView, step indicator dots, Back/Next buttons, keyboard shortcuts (Alt+arrows, Alt+1-9), and hamburger menu with Settings and History placeholders.
11 lines
125 B
Rust
11 lines
125 B
Rust
mod app;
|
|
mod step_indicator;
|
|
mod wizard;
|
|
|
|
use gtk::prelude::*;
|
|
|
|
fn main() {
|
|
let app = app::build_app();
|
|
app.run();
|
|
}
|