]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QExternalDialog.h
Martin's changes to the Note inset.
[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 browseClicked();
30         virtual void templateChanged();
31 protected:
32         virtual void closeEvent(QCloseEvent * e);
33 private:
34         QExternal * form_;
35 };
36
37 #endif // QEXTERNALDIALOG_H