mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-02 03:06:40 +00:00
26 lines
378 B
C++
26 lines
378 B
C++
#include "network.h"
|
|
#include "ui_network.h"
|
|
|
|
#include <QClipboard>
|
|
|
|
Network::Network(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::Network)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
Network::~Network()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void Network::on_leaveNetworkButton_clicked()
|
|
{
|
|
}
|
|
|
|
void Network::on_networkIdPushButton_clicked()
|
|
{
|
|
QApplication::clipboard()->setText(ui->networkIdPushButton->text());
|
|
}
|