2002-09-24 13:57:09 +00:00
|
|
|
// -*- C++ -*-
|
2001-08-19 13:25:15 +00:00
|
|
|
/**
|
|
|
|
* \file QAboutDialog.h
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-19 13:25:15 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author Kalle Dalheimer
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2001-08-19 13:25:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QABOUTDIALOG_H
|
|
|
|
#define QABOUTDIALOG_H
|
2002-09-24 13:57:09 +00:00
|
|
|
|
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
#include "ui/QAboutDialogBase.h"
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
class QAboutDialog : public QAboutDialogBase {
|
|
|
|
Q_OBJECT
|
2001-08-19 13:25:15 +00:00
|
|
|
public:
|
2002-10-20 01:48:28 +00:00
|
|
|
QAboutDialog(QWidget * parent = 0, const char * name = 0,
|
|
|
|
bool modal = FALSE, WFlags fl = 0);
|
2001-08-19 13:25:15 +00:00
|
|
|
~QAboutDialog();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QABOUTDIALOG_H
|