mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-20 21:33:57 -07:00
More UI work...
This commit is contained in:
parent
10f03d4119
commit
f1b0178a85
7 changed files with 451 additions and 49 deletions
25
ZeroTierUI/aboutwindow.h
Normal file
25
ZeroTierUI/aboutwindow.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#ifndef AboutWindow_H
|
||||
#define AboutWindow_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class AboutWindow;
|
||||
}
|
||||
|
||||
class AboutWindow : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit AboutWindow(QWidget *parent = 0);
|
||||
~AboutWindow();
|
||||
|
||||
private slots:
|
||||
void on_uninstallButton_clicked();
|
||||
|
||||
private:
|
||||
Ui::AboutWindow *ui;
|
||||
};
|
||||
|
||||
#endif // AboutWindow_H
|
Loading…
Add table
Add a link
Reference in a new issue