Added strings finder

This commit is contained in:
WerWolv
2020-11-15 01:42:43 +01:00
parent 2526eda0db
commit a955f522bd
4 changed files with 179 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
#pragma once
#include "views/view.hpp"
#include <cstdio>
#include <string>
namespace hex {
namespace prv { class Provider; }
struct FoundString {
std::string string;
u64 offset;
size_t size;
};
class ViewStrings : public View {
public:
explicit ViewStrings(prv::Provider* &dataProvider);
~ViewStrings() override;
void createView() override;
void createMenu() override;
private:
prv::Provider* &m_dataProvider;
bool m_windowOpen = true;
bool m_shouldInvalidate = false;
std::vector<FoundString> m_foundStrings;
int m_minimumLength = 5;
char *m_filter;
};
}