2018-07-21 15:40:16 -07:00
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
2018-08-22 12:24:55 -04:00
|
|
|
#include "qtcommon.h"
|
2018-10-28 02:27:24 -04:00
|
|
|
#include "host/host.h"
|
2018-11-04 04:00:14 -05:00
|
|
|
#include "defs.h"
|
2018-08-21 22:43:30 -04:00
|
|
|
#include <QPlainTextEdit>
|
|
|
|
#include <QComboBox>
|
2018-09-23 22:29:33 -04:00
|
|
|
#include <QSettings>
|
2018-07-21 15:40:16 -07:00
|
|
|
|
2018-07-23 12:25:02 -07:00
|
|
|
namespace Ui
|
|
|
|
{
|
2018-07-25 10:46:59 -07:00
|
|
|
class MainWindow;
|
2018-07-21 15:40:16 -07:00
|
|
|
}
|
|
|
|
|
2018-10-31 01:20:44 -04:00
|
|
|
Q_DECLARE_METATYPE(std::shared_ptr<TextThread>);
|
|
|
|
|
2018-07-21 15:40:16 -07:00
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
2018-07-25 10:46:59 -07:00
|
|
|
Q_OBJECT
|
2018-07-21 15:40:16 -07:00
|
|
|
|
|
|
|
public:
|
2018-07-25 10:46:59 -07:00
|
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
|
|
|
~MainWindow();
|
2018-07-21 15:40:16 -07:00
|
|
|
|
2018-08-03 00:07:25 -04:00
|
|
|
signals:
|
2018-10-08 00:26:43 -04:00
|
|
|
void SigAddProcess(unsigned processId);
|
|
|
|
void SigRemoveProcess(unsigned processId);
|
2018-10-31 01:20:44 -04:00
|
|
|
void SigAddThread(std::shared_ptr<TextThread>);
|
|
|
|
void SigRemoveThread(std::shared_ptr<TextThread>);
|
|
|
|
void SigThreadOutput(QString threadString, QString output);
|
2018-08-03 00:07:25 -04:00
|
|
|
|
2018-07-23 12:25:02 -07:00
|
|
|
private slots:
|
2018-10-08 00:26:43 -04:00
|
|
|
void AddProcess(unsigned processId);
|
|
|
|
void RemoveProcess(unsigned processId);
|
2018-10-31 01:20:44 -04:00
|
|
|
void AddThread(std::shared_ptr<TextThread> thread);
|
|
|
|
void RemoveThread(std::shared_ptr<TextThread> thread);
|
|
|
|
void ThreadOutput(QString threadString, QString output); // this function doesn't take TextThread* because it might be destroyed on pipe thread
|
2018-07-26 22:42:21 -07:00
|
|
|
void on_attachButton_clicked();
|
|
|
|
void on_detachButton_clicked();
|
|
|
|
void on_unhookButton_clicked();
|
2018-07-25 21:48:18 -07:00
|
|
|
void on_hookButton_clicked();
|
2018-07-26 22:42:21 -07:00
|
|
|
void on_saveButton_clicked();
|
2018-11-01 17:02:52 -04:00
|
|
|
void on_extenButton_clicked();
|
|
|
|
void on_ttCombo_activated(int index);
|
2018-07-28 12:41:21 -07:00
|
|
|
|
2018-07-21 15:40:16 -07:00
|
|
|
private:
|
2018-10-08 00:26:43 -04:00
|
|
|
bool ProcessThreadOutput(TextThread* thread, std::wstring& output);
|
2018-08-22 15:11:40 -04:00
|
|
|
QString TextThreadString(TextThread* thread);
|
2018-08-23 11:53:23 -04:00
|
|
|
ThreadParam ParseTextThreadString(QString textThreadString);
|
2018-08-22 15:11:40 -04:00
|
|
|
DWORD GetSelectedProcessId();
|
2018-11-01 14:07:42 -04:00
|
|
|
std::unordered_map<std::string, int64_t> GetMiscInfo(TextThread* thread);
|
2018-07-25 21:48:18 -07:00
|
|
|
QVector<HookParam> GetAllHooks(DWORD processId);
|
2018-11-01 18:47:46 -04:00
|
|
|
void closeEvent(QCloseEvent*);
|
2018-07-25 21:48:18 -07:00
|
|
|
|
2018-09-01 13:56:45 -04:00
|
|
|
Ui::MainWindow* ui;
|
2018-11-04 04:00:14 -05:00
|
|
|
QSettings settings = QSettings(CONFIG_FILE, QSettings::IniFormat);
|
2018-08-21 22:43:30 -04:00
|
|
|
QComboBox* processCombo;
|
|
|
|
QComboBox* ttCombo;
|
|
|
|
QPlainTextEdit* textOutput;
|
2018-11-01 14:07:42 -04:00
|
|
|
QWidget* extenWindow;
|
2018-07-21 15:40:16 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINWINDOW_H
|