compactrs 2025.12.19

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
//! GUI Components module.
//!
//! Contains modular, reusable UI components following the Component pattern.
//! Each component encapsulates its own creation, layout, and theming logic.

pub mod base;
pub mod file_list;
pub mod status_bar;
pub mod action_panel;
pub mod header_panel;

pub use base::Component;
pub use file_list::FileListView;
pub use status_bar::{StatusBar, StatusBarIds};
pub use action_panel::{ActionPanel, ActionPanelIds};
pub use header_panel::{HeaderPanel, HeaderPanelIds};