UI cleanup and license dialog.

This commit is contained in:
Adam Ierymenko 2014-01-17 10:36:58 -08:00
commit 8be664cca9
12 changed files with 380 additions and 59 deletions

View file

@ -0,0 +1,27 @@
#ifndef LICENSEDIALOG_H
#define LICENSEDIALOG_H
#include <QDialog>
namespace Ui {
class LicenseDialog;
}
class LicenseDialog : public QDialog
{
Q_OBJECT
public:
explicit LicenseDialog(QWidget *parent = 0);
~LicenseDialog();
private slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
private:
Ui::LicenseDialog *ui;
};
#endif // LICENSEDIALOG_H