mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 23:30:02 +01:00
23 lines
369 B
C++
23 lines
369 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
class QLineEdit;
|
|
class QCheckBox;
|
|
class QComboBox;
|
|
|
|
class memory_string_searcher : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
QLineEdit* m_addr_line = nullptr;
|
|
QCheckBox* m_chkbox_case_insensitive = nullptr;
|
|
QComboBox* m_cbox_input_mode = nullptr;
|
|
|
|
public:
|
|
explicit memory_string_searcher(QWidget* parent);
|
|
|
|
private Q_SLOTS:
|
|
void OnSearch();
|
|
};
|