azalea_shell/window/taskbar/widget/
mod.rs

1use crate::register_widgets;
2
3pub mod audio;
4pub mod bluetooth;
5pub mod brightness;
6pub mod media;
7pub mod network;
8pub mod notification;
9pub mod search;
10pub mod separator;
11pub mod shortcut;
12pub mod startmenu;
13pub mod time;
14
15register_widgets!(
16    Audio, audio::Model;
17    Brightness, brightness::Model;
18    Bluetooth, bluetooth::Model;
19    Media, media::Model;
20    Network, network::Model;
21    Notification, notification::Model;
22    Search, search::Model;
23    Shortcut, shortcut::Model;
24    Separator, separator::Model;
25    StartMenu, startmenu::Model;
26    Time, time::Model;
27);