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

39 lines
745 B
C++
Raw Normal View History

2020-11-15 01:42:43 +01:00
#pragma once
#include <hex/views/view.hpp>
2020-11-15 01:42:43 +01:00
#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();
2020-11-15 01:42:43 +01:00
~ViewStrings() override;
void drawContent() override;
void drawMenu() override;
2020-11-15 01:42:43 +01:00
private:
bool m_shouldInvalidate = false;
std::vector<FoundString> m_foundStrings;
int m_minimumLength = 5;
char *m_filter;
std::string m_selectedString;
std::string m_demangledName;
void createStringContextMenu(const FoundString &foundString);
2020-11-15 01:42:43 +01:00
};
}