]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QExternalDialog.h
Some string(widget->text()) fixes. Weirdness
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QExternalDialogBase.h"
20
21 class QExternal;
22
23 class QExternalDialog : public QExternalDialogBase {
24         Q_OBJECT
25 public:
26         QExternalDialog(QExternal * form);
27
28         virtual void show();
29 protected slots:
30         virtual void change_adaptor();
31         virtual void editClicked();
32         virtual void viewClicked();
33         virtual void updateClicked();
34         virtual void browseClicked();
35         virtual void templateChanged();
36 protected:
37         virtual void closeEvent(QCloseEvent * e);
38 private:
39         QExternal * form_;
40 };
41
42 #endif // QEXTERNALDIALOG_H