]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QSendtoDialog.h
Remove quite a few compiler warnings:
[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 class QListWidgetItem;
21
22 namespace lyx {
23 namespace frontend {
24
25 class QSendto;
26
27 class QSendtoDialog : public QDialog, public Ui::QSendtoUi {
28         Q_OBJECT
29 public:
30         QSendtoDialog(QSendto * form);
31 protected Q_SLOTS:
32         virtual void changed_adaptor();
33         virtual void slotFormatHighlighted(QListWidgetItem *) {}
34         virtual void slotFormatSelected(QListWidgetItem *) {}
35 protected:
36         virtual void closeEvent(QCloseEvent * e);
37 private:
38         QSendto * form_;
39 };
40
41 } // namespace frontend
42 } // namespace lyx
43
44 #endif // QSENDTODIALOG_H