Something working I guess?

This commit is contained in:
2024-05-17 15:33:31 -07:00
parent b1ea3f88c2
commit 801693867a
5 changed files with 57 additions and 2 deletions

View File

@@ -2,7 +2,9 @@
#include <solanaceae/message3/registry_message_model.hpp>
class MessageN10n : public RegistryMessageModelEventI {
#include <wintoastlib.h>
class MessageN10n : public RegistryMessageModelEventI, public WinToastLib::IWinToastHandler {
RegistryMessageModel& _rmm;
public:
@@ -11,5 +13,10 @@ class MessageN10n : public RegistryMessageModelEventI {
protected: // rmm
bool onEvent(const Message::Events::MessageConstruct& e) override;
};
protected: // wintoast
void toastActivated(void) const override;
void toastActivated(int actionIndex) const override;
void toastDismissed(WinToastDismissalReason state) const override;
void toastFailed(void) const override;
};