]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QSendtoDialog.h
Juergen's QSendto.
[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 Juergen Spitzmueller
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QSENDTODIALOG_H
13 #define QSENDTODIALOG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QSendtoDialogBase.h"
20
21 class QSendto;
22
23 class QSendtoDialog : public QSendtoDialogBase
24 {
25         Q_OBJECT
26
27 public:
28         QSendtoDialog(QSendto * form);
29
30 protected slots:
31         virtual void changed_adaptor();
32         virtual void slotFormatHighlighted(const QString&) {};
33         virtual void slotFormatSelected(const QString&) {};
34
35 protected:
36         virtual void closeEvent(QCloseEvent * e);
37
38 private:
39         QSendto * form_;
40 };
41
42 #endif // QSENDTODIALOG_H