Vidalia  0.3.1
AboutDialog.h
Go to the documentation of this file.
1 /*
2 ** This file is part of Vidalia, and is subject to the license terms in the
3 ** LICENSE file, found in the top level directory of this distribution. If you
4 ** did not receive the LICENSE file with this file, you may obtain it from the
5 ** Vidalia source package distributed by the Vidalia Project at
6 ** http://www.torproject.org/projects/vidalia.html. No part of Vidalia,
7 ** including this file, may be copied, modified, propagated, or distributed
8 ** except according to the terms described in the LICENSE file.
9 */
10 
11 /*
12 ** \file AboutDialog.h
13 ** \brief Displays information about Vidalia, Tor, and Qt
14 */
15 
16 #ifndef _ABOUTDIALOG_H
17 #define _ABOUTDIALOG_H
18 
19 #include "ui_AboutDialog.h"
20 #include "LicenseDialog.h"
21 
22 
23 class AboutDialog : public QDialog
24 {
25  Q_OBJECT
26 
27 public:
28  /** Default constructor */
29  AboutDialog(QWidget *parent = 0, Qt::WindowFlags flags = 0);
30 
31 private:
32  Ui::AboutDialog ui; /**< Qt Designer generated QObject **/
33 };
34 
35 #endif
36