compactrs 2025.12.22

High-performance native Windows file compressor using WOF (Windows Overlay Filter)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Dialog/modal window modules for CompactRS UI.
//!
//! This module groups all auxiliary window logic (modals/dialogs) into a dedicated namespace.

pub mod settings;
pub mod about;
pub mod shortcuts;
pub mod console;
pub mod force_stop;
pub mod base;

// Flatten the API for consumers
pub use settings::show_settings_modal;
pub use about::show_about_modal;
pub use shortcuts::show_shortcuts_modal;
pub use console::{show_console_window, append_log_entry, close_console};
pub use force_stop::show_force_stop_dialog;