]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QAboutDialog.h
enable Font cache only for MacOSX and inline width() for other platform.
[lyx.git] / src / frontends / qt4 / QAboutDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QAboutDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Kalle Dalheimer
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QABOUTDIALOG_H
13 #define QABOUTDIALOG_H
14
15 #include "ui/QAboutUi.h"
16 #include <QDialog>
17
18 namespace lyx {
19 namespace frontend {
20
21 class QAboutDialog : public QDialog, public Ui::QAboutUi {
22         Q_OBJECT
23 public:
24         QAboutDialog(QWidget * parent = 0, const char * name = 0,
25                      bool modal = FALSE, Qt::WFlags fl = 0);
26         ~QAboutDialog();
27 };
28
29 } // namespace frontend
30 } // namespace lyx
31
32 #endif // QABOUTDIALOG_H