]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QSendtoDialog.h
Added initial qt4 work by Abdelrazak Younes
[lyx.git] / src / frontends / qt4 / 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/QSendtoUi.h"
16
17 #include <QDialog>
18 #include <QCloseEvent>
19
20 namespace lyx {
21 namespace frontend {
22
23 class QSendto;
24
25 class QSendtoDialog : public QDialog, public Ui::QSendtoUi {
26         Q_OBJECT
27 public:
28         QSendtoDialog(QSendto * form);
29 protected slots:
30         virtual void changed_adaptor();
31         virtual void slotFormatHighlighted(const QString&) {}
32         virtual void slotFormatSelected(const QString&) {}
33 protected:
34         virtual void closeEvent(QCloseEvent * e);
35 private:
36         QSendto * form_;
37 };
38
39 } // namespace frontend
40 } // namespace lyx
41
42 #endif // QSENDTODIALOG_H