2018-12-02 08:12:45 +08:00
|
|
|
#pragma once
|
2018-07-22 06:40:16 +08:00
|
|
|
|
2018-08-23 00:24:55 +08:00
|
|
|
#include "qtcommon.h"
|
2018-10-28 14:27:24 +08:00
|
|
|
#include "host/host.h"
|
2018-11-04 17:00:14 +08:00
|
|
|
#include "defs.h"
|
2018-08-22 10:43:30 +08:00
|
|
|
#include <QPlainTextEdit>
|
|
|
|
#include <QComboBox>
|
2018-09-24 10:29:33 +08:00
|
|
|
#include <QSettings>
|
2018-07-22 06:40:16 +08:00
|
|
|
|
2018-07-24 03:25:02 +08:00
|
|
|
namespace Ui
|
|
|
|
{
|
2018-07-26 01:46:59 +08:00
|
|
|
class MainWindow;
|
2018-07-22 06:40:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
2018-07-26 01:46:59 +08:00
|
|
|
Q_OBJECT
|
2018-07-22 06:40:16 +08:00
|
|
|
|
|
|
|
public:
|
2018-07-26 01:46:59 +08:00
|
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
|
|
|
~MainWindow();
|
2018-07-22 06:40:16 +08:00
|
|
|
|
2018-07-24 03:25:02 +08:00
|
|
|
private slots:
|
2018-07-27 13:42:21 +08:00
|
|
|
void on_attachButton_clicked();
|
|
|
|
void on_detachButton_clicked();
|
2018-07-26 12:48:18 +08:00
|
|
|
void on_hookButton_clicked();
|
2018-07-27 13:42:21 +08:00
|
|
|
void on_saveButton_clicked();
|
2018-11-10 18:13:59 +08:00
|
|
|
void on_setButton_clicked();
|
2018-11-02 05:02:52 +08:00
|
|
|
void on_extenButton_clicked();
|
|
|
|
void on_ttCombo_activated(int index);
|
2018-07-29 03:41:21 +08:00
|
|
|
|
2018-07-22 06:40:16 +08:00
|
|
|
private:
|
2018-11-28 05:57:47 +08:00
|
|
|
void closeEvent(QCloseEvent*);
|
2018-12-02 04:55:32 +08:00
|
|
|
void InvokeOnMainThread(std::function<void()> f);
|
2018-11-28 04:54:04 +08:00
|
|
|
void ProcessConnected(DWORD processId);
|
|
|
|
void ProcessDisconnected(DWORD processId);
|
|
|
|
void ThreadAdded(TextThread* thread);
|
|
|
|
void ThreadRemoved(TextThread* thread);
|
|
|
|
bool SentenceReceived(TextThread* thread, std::wstring& sentence);
|
2018-08-23 03:11:40 +08:00
|
|
|
QString TextThreadString(TextThread* thread);
|
2018-11-28 04:54:04 +08:00
|
|
|
ThreadParam ParseTextThreadString(QString ttString);
|
2018-08-23 03:11:40 +08:00
|
|
|
DWORD GetSelectedProcessId();
|
2018-11-02 02:07:42 +08:00
|
|
|
std::unordered_map<std::string, int64_t> GetMiscInfo(TextThread* thread);
|
2018-07-26 12:48:18 +08:00
|
|
|
|
2018-09-02 01:56:45 +08:00
|
|
|
Ui::MainWindow* ui;
|
2018-11-04 17:00:14 +08:00
|
|
|
QSettings settings = QSettings(CONFIG_FILE, QSettings::IniFormat);
|
2018-08-22 10:43:30 +08:00
|
|
|
QComboBox* processCombo;
|
|
|
|
QComboBox* ttCombo;
|
|
|
|
QPlainTextEdit* textOutput;
|
2018-11-02 02:07:42 +08:00
|
|
|
QWidget* extenWindow;
|
2018-07-22 06:40:16 +08:00
|
|
|
};
|