]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QExternalDialog.h
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / qt2 / QExternalDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QExternalDialog.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  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QEXTERNALDIALOG_H
13 #define QEXTERNALDIALOG_H
14
15
16 #include "ui/QExternalDialogBase.h"
17
18 class QExternal;
19
20 class QExternalDialog : public QExternalDialogBase {
21         Q_OBJECT
22 public:
23         QExternalDialog(QExternal * form);
24
25         virtual void show();
26 protected slots:
27         virtual void change_adaptor();
28         virtual void editClicked();
29         virtual void viewClicked();
30         virtual void updateClicked();
31         virtual void browseClicked();
32         virtual void templateChanged();
33 protected:
34         virtual void closeEvent(QCloseEvent * e);
35 private:
36         QExternal * form_;
37 };
38
39 #endif // QEXTERNALDIALOG_H