mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-16 10:03:14 -07:00
More UI work, reorg Windows stuff...
This commit is contained in:
parent
f1b0178a85
commit
77bab13546
35 changed files with 301 additions and 23 deletions
|
@ -1,8 +1,10 @@
|
|||
#include "network.h"
|
||||
#include "ui_network.h"
|
||||
|
||||
#include <QClipboard>
|
||||
|
||||
Network::Network(QWidget *parent) :
|
||||
QScrollArea(parent),
|
||||
QWidget(parent),
|
||||
ui(new Ui::Network)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
|
@ -12,3 +14,12 @@ Network::~Network()
|
|||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void Network::on_leaveNetworkButton_clicked()
|
||||
{
|
||||
}
|
||||
|
||||
void Network::on_networkIdPushButton_clicked()
|
||||
{
|
||||
QApplication::clipboard()->setText(ui->networkIdPushButton->text());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue