2021-02-26 13:35:19 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
|
|
|
#include <imgui.h>
|
2022-02-01 18:09:40 +01:00
|
|
|
#include <hex/ui/view.hpp>
|
2021-02-26 13:35:19 +01:00
|
|
|
|
2022-08-17 16:15:36 +02:00
|
|
|
#include <hex/api/task.hpp>
|
|
|
|
|
2021-12-07 22:47:41 +01:00
|
|
|
namespace hex::plugin::builtin {
|
2021-02-26 13:35:19 +01:00
|
|
|
|
|
|
|
class ViewYara : public View {
|
|
|
|
public:
|
|
|
|
ViewYara();
|
|
|
|
~ViewYara() override;
|
|
|
|
|
|
|
|
void drawContent() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
u32 m_selectedRule = 0;
|
2022-08-17 16:15:36 +02:00
|
|
|
TaskHolder m_matcherTask;
|
2022-03-15 23:48:49 +01:00
|
|
|
|
|
|
|
std::vector<std::string> m_consoleMessages;
|
2021-02-26 13:35:19 +01:00
|
|
|
|
|
|
|
void applyRules();
|
2022-03-15 23:48:49 +01:00
|
|
|
void clearResult();
|
2021-02-26 13:35:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|