1
0
mirror of synced 2024-11-18 12:57:12 +01:00
ImHex/include/views/view_pattern_editor.hpp

43 lines
1.0 KiB
C++
Raw Normal View History

#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 <string_view>
#include <thread>
#include <vector>
#include <TextEditor.h>
namespace hex {
class ViewPatternEditor : public View {
public:
ViewPatternEditor();
~ViewPatternEditor() override;
void drawMenu() override;
void drawAlwaysVisible() override;
void drawContent() override;
private:
lang::PatternLanguage *m_patternLanguageRuntime;
std::vector<std::string> m_possiblePatternFiles;
int m_selectedPatternFile = 0;
bool m_runAutomatically = false;
2021-02-22 11:56:33 +01:00
bool m_evaluatorRunning = false;
TextEditor m_textEditor;
std::vector<std::pair<lang::LogConsole::Level, std::string>> m_console;
void loadPatternFile(std::string_view path);
void clearPatternData();
2020-11-10 21:31:04 +01:00
void parsePattern(char *buffer);
};
}