]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QWrapDialog.h
partial fonts fix. Like Juergen said we really need our own dialog.
[lyx.git] / src / frontends / qt2 / QWrapDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QWrapDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Juergen Spitzmueller
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QWRAPDIALOG_H
13 #define QWRAPDIALOG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QWrapDialogBase.h"
20
21 class QWrap;
22
23 class QWrapDialog : public QWrapDialogBase {
24         Q_OBJECT
25 public:
26         QWrapDialog(QWrap * form);
27 protected slots:
28         virtual void change_adaptor();
29 protected:
30         virtual void closeEvent(QCloseEvent * e);
31 private:
32         QWrap * form_;
33 };
34
35 #endif // QWRAPDIALOG_H