2006-03-05 17:24:44 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file QSendtoDialog.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef QSENDTODIALOG_H
|
|
|
|
|
#define QSENDTODIALOG_H
|
|
|
|
|
|
|
|
|
|
#include "ui/QSendtoUi.h"
|
|
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
#include <QCloseEvent>
|
|
|
|
|
|
2006-05-03 19:51:15 +00:00
|
|
|
|
class QListWidgetItem;
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
|
|
class QSendto;
|
|
|
|
|
|
|
|
|
|
class QSendtoDialog : public QDialog, public Ui::QSendtoUi {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
QSendtoDialog(QSendto * form);
|
2006-06-30 14:37:33 +00:00
|
|
|
|
protected Q_SLOTS:
|
2006-03-05 17:24:44 +00:00
|
|
|
|
virtual void changed_adaptor();
|
2006-05-03 19:51:15 +00:00
|
|
|
|
virtual void slotFormatHighlighted(QListWidgetItem *) {}
|
|
|
|
|
virtual void slotFormatSelected(QListWidgetItem *) {}
|
2006-03-05 17:24:44 +00:00
|
|
|
|
protected:
|
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
|
private:
|
|
|
|
|
QSendto * form_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
|
|
#endif // QSENDTODIALOG_H
|