Log Viewer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
887 B

6 months ago
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
6 months ago
#include <QAbstractTableModel>
#include <data/DataManager.h>
#include "provider/IProvider.h"
6 months ago
QT_BEGIN_NAMESPACE
6 months ago
namespace Ui { class MainWindow;
}
6 months ago
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
6 months ago
MainWindow(QWidget* parent = nullptr);
6 months ago
~MainWindow();
void setTable(QAbstractItemModel* model);
//uncrustify off
private slots:
void onTableRowClicked(const QModelIndex &current, const QModelIndex &previous);
void onTableDeselected();
void onActionStartCapture(bool trigered);
//uncrustify on
6 months ago
private:
6 months ago
void prepareTableView();
void prepareTreeView();
void createConnections();
void useNetworkProvider(QString address, quint16 port);
DataManager _dataManager;
DataProvider_ptr _dataProvider;
6 months ago
Ui::MainWindow* ui;
6 months ago
};
6 months ago
#endif //MAINWINDOW_H