bigsnitch/mainwindow.h

34 lines
714 B
C
Raw Normal View History

2020-08-05 00:08:41 +00:00
#pragma once
#include <QMainWindow>
#include <string>
2020-08-09 12:07:14 +00:00
#include <session.h>
#include <includes.h>
2020-08-13 03:35:22 +00:00
#include <httpflow.h>
2020-09-10 19:26:41 +00:00
#include <editandresend.h>
2020-08-05 00:08:41 +00:00
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
private:
Ui::MainWindow *ui;
2020-09-10 19:26:41 +00:00
Ui::EditAndResend *ui_editandresend;
2020-08-05 00:08:41 +00:00
QThread* thread;
2020-08-09 12:07:14 +00:00
Session* current_session;
2020-08-26 18:58:36 +00:00
HistoryModel history_model;
2020-08-28 23:09:41 +00:00
HistoryProxyModel history_proxy;
2020-08-05 00:08:41 +00:00
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
2020-08-09 12:07:14 +00:00
public slots:
2020-08-14 01:37:33 +00:00
void updateHistory();
private slots:
2020-09-01 20:14:49 +00:00
void on_selectionChange(const QItemSelection& selection);
2020-08-14 01:37:33 +00:00
void on_searchEdit_textEdited(const QString &arg1);
2020-08-05 00:08:41 +00:00
};