]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QSendtoDialog.h
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / qt2 / QSendtoDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QSendtoDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QSENDTODIALOG_H
13 #define QSENDTODIALOG_H
14
15 #include "ui/QSendtoDialogBase.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QSendto;
21
22 class QSendtoDialog : public QSendtoDialogBase {
23         Q_OBJECT
24 public:
25         QSendtoDialog(QSendto * form);
26 protected slots:
27         virtual void changed_adaptor();
28         virtual void slotFormatHighlighted(const QString&) {}
29         virtual void slotFormatSelected(const QString&) {}
30 protected:
31         virtual void closeEvent(QCloseEvent * e);
32 private:
33         QSendto * form_;
34 };
35
36 } // namespace frontend
37 } // namespace lyx
38
39 #endif // QSENDTODIALOG_H