]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QSendtoDialog.h
Joao latest bits
[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
16 #include "ui/QSendtoDialogBase.h"
17
18 class QSendto;
19
20 class QSendtoDialog : public QSendtoDialogBase {
21         Q_OBJECT
22 public:
23         QSendtoDialog(QSendto * form);
24 protected slots:
25         virtual void changed_adaptor();
26         virtual void slotFormatHighlighted(const QString&) {}
27         virtual void slotFormatSelected(const QString&) {}
28 protected:
29         virtual void closeEvent(QCloseEvent * e);
30 private:
31         QSendto * form_;
32 };
33
34 #endif // QSENDTODIALOG_H