mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-24 23:26:41 +00:00
31 lines
561 B
C++
31 lines
561 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
~MainWindow();
|
|
|
|
private slots:
|
|
void on_joinNetworkButton_clicked();
|
|
void on_actionAbout_triggered();
|
|
void on_actionJoin_Network_triggered();
|
|
void on_actionShow_Detailed_Status_triggered();
|
|
void on_networkIdLineEdit_textChanged(const QString &arg1);
|
|
void on_statusAndAddressButton_clicked();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|