mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-10 09:44:33 +01:00
* 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.
23 lines
350 B
C++
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();
|
|
};
|