├── .github └── workflows │ └── publish.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── ahq.png ├── bind.rs ├── downloading.rs ├── expires.rs ├── input.rs ├── lunch.rs ├── readme.rs ├── select.rs ├── simple.rs └── strawberry.jpg ├── r.rs ├── rustfmt.toml └── src ├── lib.rs └── structs ├── data.rs ├── handler ├── activated.rs ├── dismissed.rs ├── failed.rs └── mod.rs ├── mod.rs ├── notification ├── mod.rs └── widgets │ ├── actions │ ├── action.rs │ ├── input.rs │ └── mod.rs │ ├── audio.rs │ ├── commands.rs │ ├── group │ ├── group.rs │ ├── mod.rs │ └── subgroup.rs │ ├── header.rs │ ├── mod.rs │ ├── raw_xml.rs │ └── visual │ ├── image.rs │ ├── mod.rs │ ├── progress.rs │ └── text.rs └── notifier ├── activator.rs └── mod.rs /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/README.md -------------------------------------------------------------------------------- /examples/ahq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/examples/ahq.png -------------------------------------------------------------------------------- /examples/bind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/examples/bind.rs -------------------------------------------------------------------------------- /examples/downloading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/examples/downloading.rs -------------------------------------------------------------------------------- /examples/expires.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/examples/expires.rs -------------------------------------------------------------------------------- /examples/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/examples/input.rs -------------------------------------------------------------------------------- /examples/lunch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/examples/lunch.rs -------------------------------------------------------------------------------- /examples/readme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/examples/readme.rs -------------------------------------------------------------------------------- /examples/select.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/examples/select.rs -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /examples/strawberry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/examples/strawberry.jpg -------------------------------------------------------------------------------- /r.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/r.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 2 2 | edition = "2021" 3 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/structs/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/data.rs -------------------------------------------------------------------------------- /src/structs/handler/activated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/handler/activated.rs -------------------------------------------------------------------------------- /src/structs/handler/dismissed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/handler/dismissed.rs -------------------------------------------------------------------------------- /src/structs/handler/failed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/handler/failed.rs -------------------------------------------------------------------------------- /src/structs/handler/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/handler/mod.rs -------------------------------------------------------------------------------- /src/structs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/mod.rs -------------------------------------------------------------------------------- /src/structs/notification/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/mod.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/actions/action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/actions/action.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/actions/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/actions/input.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/actions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/actions/mod.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/audio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/audio.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/commands.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/group/group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/group/group.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/group/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/group/mod.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/group/subgroup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/group/subgroup.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/header.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/mod.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/raw_xml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/raw_xml.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/visual/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/visual/image.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/visual/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/visual/mod.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/visual/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/visual/progress.rs -------------------------------------------------------------------------------- /src/structs/notification/widgets/visual/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notification/widgets/visual/text.rs -------------------------------------------------------------------------------- /src/structs/notifier/activator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notifier/activator.rs -------------------------------------------------------------------------------- /src/structs/notifier/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahq-softwares/win32_notif/HEAD/src/structs/notifier/mod.rs --------------------------------------------------------------------------------