Vidalia 0.2.15
|
00001 /* 00002 ** This file is part of Vidalia, and is subject to the license terms in the 00003 ** LICENSE file, found in the top level directory of this distribution. If you 00004 ** did not receive the LICENSE file with this file, you may obtain it from the 00005 ** Vidalia source package distributed by the Vidalia Project at 00006 ** http://www.torproject.org/projects/vidalia.html. No part of Vidalia, 00007 ** including this file, may be copied, modified, propagated, or distributed 00008 ** except according to the terms described in the LICENSE file. 00009 */ 00010 00011 /* 00012 ** \file AboutDialog.h 00013 ** \brief Displays information about Vidalia, Tor, and Qt 00014 */ 00015 00016 #ifndef _ABOUTDIALOG_H 00017 #define _ABOUTDIALOG_H 00018 00019 #include "ui_AboutDialog.h" 00020 #include "LicenseDialog.h" 00021 00022 00023 class AboutDialog : public QDialog 00024 { 00025 Q_OBJECT 00026 00027 public: 00028 /** Default constructor */ 00029 AboutDialog(QWidget *parent = 0, Qt::WindowFlags flags = 0); 00030 00031 private: 00032 Ui::AboutDialog ui; /**< Qt Designer generated QObject **/ 00033 }; 00034 00035 #endif 00036