summaryrefslogtreecommitdiff
path: root/view/sharedcache/ui/SharedCacheUINotifications.h
diff options
context:
space:
mode:
authorkat <kat@vector35.com>2024-10-23 21:56:29 -0400
committerkat <kat@vector35.com>2024-10-23 21:58:47 -0400
commit3006c68e108a18f9b8782bc937dc9ec7e2cb3b54 (patch)
treef589bb38909349142c09b6215244205aef0a57ac /view/sharedcache/ui/SharedCacheUINotifications.h
parent80fcccec8f686e0e5c89626b60af121a97baf856 (diff)
Initial commit of the alpha dyld_shared_cache view API Plugin.
This is an early release of our DSC processing plugin. We're still hard at work improving this feature. You should be able to just drop in a dyld_shared_cache and use the 'Shared Cache Triage' view to load and analyze images.
Diffstat (limited to 'view/sharedcache/ui/SharedCacheUINotifications.h')
-rw-r--r--view/sharedcache/ui/SharedCacheUINotifications.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/view/sharedcache/ui/SharedCacheUINotifications.h b/view/sharedcache/ui/SharedCacheUINotifications.h
new file mode 100644
index 00000000..9ea4b50d
--- /dev/null
+++ b/view/sharedcache/ui/SharedCacheUINotifications.h
@@ -0,0 +1,23 @@
+//
+// Created by kat on 5/8/23.
+//
+#include "ui/uicontext.h"
+
+#ifndef SHAREDCACHE_NOTIFICATIONS_H
+#define SHAREDCACHE_NOTIFICATIONS_H
+
+class UINotifications : public UIContextNotification {
+ static UINotifications* m_instance;
+
+ std::vector<size_t> m_sessionsAlreadyDisplayedPickerFor;
+
+public:
+ virtual void OnViewChange(UIContext *context, ViewFrame *frame, const QString &type) override;
+ // bool OnAfterOpenDatabase(UIContext* context, FileMetadataRef metadata, BinaryViewRef data) override;
+ void OnAfterOpenFile(UIContext* context, FileContext* file, ViewFrame* frame) override;
+
+ static void init();
+};
+
+
+#endif //SHAREDCACHE_NOTIFICATIONS_H