rpcsx/rpcs3/rpcs3qt/memory_string_searcher.h
Eladash b0a0533a4f Memory string searcher improvements
* Search the entire PS3 4GB address space instead of a small area of memory which is meant mostly for PRX/SELF memory aka vm::main segment. This limitation rendered string searcher nearly useless.
* Implement hexadecimal byte-string, hexadecimal integer, float and double value search formats.
* Multi-thread searching.
* Optimize searching algorithm vastly.
* Fix crash on empty string, report an error.
* Implement case-insensitive string search.
2021-03-22 18:37:26 +03:00

23 lines
350 B
C++

#pragma once
#include <QDialog>
class QLineEdit;
class QCheckBox;
class QComboBox;
class memory_string_searcher : public QDialog
{
Q_OBJECT
QLineEdit* m_addr_line;
QCheckBox* m_chkbox_case_insensitive = nullptr;
QComboBox* m_cbox_input_mode = nullptr;
public:
memory_string_searcher(QWidget* parent);
private Q_SLOTS:
void OnSearch();
};