]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QViewSourceDialog.h
renaming in frontends/qt4/ui: s/Q//g
[lyx.git] / src / frontends / qt4 / QViewSourceDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QViewSourceDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Bo Peng
9  * \author Abdelrazak Younes
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef QVIEWSOURCEDIALOG_H
15 #define QVIEWSOURCEDIALOG_H
16
17 #include "ui/ViewSourceUi.h"
18
19 #include "frontends/Application.h"
20
21 #include <QWidget>
22
23 namespace lyx {
24 namespace frontend {
25
26 class QViewSource;
27
28 class QViewSourceDialog : public QWidget, public Ui::QViewSourceUi {
29         Q_OBJECT
30 public:
31         QViewSourceDialog(QViewSource * form);
32
33 public Q_SLOTS:
34         // update content
35         void update();
36
37 private:
38         QViewSource * form_;
39 };
40
41 } // namespace frontend
42 } // namespace lyx
43
44 #endif // QVIEWSOURCEDIALOG_H