More UI work...

This commit is contained in:
Adam Ierymenko 2013-11-15 17:04:32 -05:00
commit f1b0178a85
7 changed files with 451 additions and 49 deletions

25
ZeroTierUI/aboutwindow.h Normal file
View 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