X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=about.h;fp=about.h;h=8e95af950e4811b8de7a4e2cae0de65bfde9acf9;hb=40eb2ff4f27ae8209271f3d6992ebdcb5de60d76;hp=0000000000000000000000000000000000000000;hpb=30236a549137e5f183e19fb696c50d7150fc1124;p=pulseview.git diff --git a/about.h b/about.h new file mode 100644 index 00000000..8e95af95 --- /dev/null +++ b/about.h @@ -0,0 +1,47 @@ +/* + * This file is part of the sigrok project. + * + * Copyright (C) 2012 Joel Holdsworth + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef ABOUT_H +#define ABOUT_H + +#include + +#include + +class QTextDocument; + +namespace Ui { +class About; +} + +class About : public QDialog +{ + Q_OBJECT + +public: + explicit About(QWidget *parent = 0); + ~About(); + +private: + Ui::About *ui; + std::auto_ptr supportedDoc; +}; + +#endif // ABOUT_H