Textractor_test/GUI/mainwindow.h

39 lines
847 B
C
Raw Normal View History

2018-07-22 06:40:16 +08:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
2018-07-24 13:57:54 +08:00
#include <Windows.h>
#include "../texthook/textthread.h"
#include "hostsignaller.h"
2018-07-22 06:40:16 +08:00
2018-07-24 03:25:02 +08:00
namespace Ui
{
class MainWindow;
2018-07-22 06:40:16 +08:00
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
QString ProcessOutput(TextThread *thread, QString output);
2018-07-24 03:25:02 +08:00
private slots:
void on_attachButton_clicked();
2018-07-24 13:57:54 +08:00
void on_detachButton_clicked();
void on_ttCombo_activated(int index);
void AddProcess(unsigned int processId);
void RemoveProcess(unsigned int processId);
void AddThread(TextThread* thread);
void RemoveThread(TextThread* thread);
void ThreadOutput(TextThread* thread, QString output);
2018-07-24 03:25:02 +08:00
2018-07-22 06:40:16 +08:00
private:
Ui::MainWindow *ui;
HostSignaller* hostSignaller;
2018-07-22 06:40:16 +08:00
};
#endif // MAINWINDOW_H