40 lines
1002 B
C++
40 lines
1002 B
C++
#pragma once
|
|
|
|
#include <hex/views/view.hpp>
|
|
#include <hex/lang/evaluator.hpp>
|
|
#include <hex/lang/pattern_language.hpp>
|
|
|
|
#include <hex/providers/provider.hpp>
|
|
|
|
#include <cstring>
|
|
#include <filesystem>
|
|
#include <thread>
|
|
|
|
#include <ImGuiFileBrowser.h>
|
|
#include <TextEditor.h>
|
|
|
|
namespace hex {
|
|
|
|
class ViewPattern : public View {
|
|
public:
|
|
explicit ViewPattern(std::vector<lang::PatternData*> &patternData);
|
|
~ViewPattern() override;
|
|
|
|
void drawMenu() override;
|
|
void drawContent() override;
|
|
|
|
private:
|
|
lang::PatternLanguage *m_patternLanguageRuntime;
|
|
std::vector<lang::PatternData*> &m_patternData;
|
|
std::filesystem::path m_possiblePatternFile;
|
|
|
|
TextEditor m_textEditor;
|
|
std::vector<std::pair<lang::LogConsole::Level, std::string>> m_console;
|
|
imgui_addons::ImGuiFileBrowser m_fileBrowser;
|
|
|
|
void loadPatternFile(std::string path);
|
|
void clearPatternData();
|
|
void parsePattern(char *buffer);
|
|
};
|
|
|
|
} |