33 lines
714 B
C++
33 lines
714 B
C++
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
#include <string>
|
|
#include <session.h>
|
|
#include <includes.h>
|
|
#include <httpflow.h>
|
|
#include <editandresend.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui { class MainWindow; }
|
|
QT_END_NAMESPACE
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
Ui::EditAndResend *ui_editandresend;
|
|
QThread* thread;
|
|
Session* current_session;
|
|
HistoryModel history_model;
|
|
HistoryProxyModel history_proxy;
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
public slots:
|
|
void updateHistory();
|
|
private slots:
|
|
void on_selectionChange(const QItemSelection& selection);
|
|
void on_searchEdit_textEdited(const QString &arg1);
|
|
};
|