1 /***************************************************************************** 2 ** QNapi 3 ** Copyright (C) 2008-2017 Piotr Krzemiński <pio.krzeminski@gmail.com> 4 ** 5 ** This program is free software; you can redistribute it and/or modify 6 ** it under the terms of the GNU General Public License as published by 7 ** the Free Software Foundation; either version 2 of the License, or 8 ** (at your option) any later version. 9 ** 10 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12 ** 13 *****************************************************************************/ 14 15 #ifndef __FRMABOUT__H__ 16 #define __FRMABOUT__H__ 17 18 #include <QDesktopServices> 19 #include <QDesktopWidget> 20 #include <QUrl> 21 22 #include "ui_frmabout.h" 23 24 class frmAbout : public QDialog { 25 Q_OBJECT 26 public: 27 frmAbout(QWidget *parent = 0, Qt::WindowFlags f = 0); ~frmAbout()28 ~frmAbout() {} 29 30 private: 31 Ui::frmAbout ui; 32 }; 33 34 #endif 35