2002-10-16 21:26:35 +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 Juergen Spitzmueller
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QSENDTODIALOG_H
|
|
|
|
#define QSENDTODIALOG_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "ui/QSendtoDialogBase.h"
|
|
|
|
|
|
|
|
class QSendto;
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
class QSendtoDialog : public QSendtoDialogBase {
|
2002-10-16 21:26:35 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
QSendtoDialog(QSendto * form);
|
|
|
|
protected slots:
|
|
|
|
virtual void changed_adaptor();
|
2002-10-20 01:48:28 +00:00
|
|
|
virtual void slotFormatHighlighted(const QString&) {}
|
|
|
|
virtual void slotFormatSelected(const QString&) {}
|
2002-10-16 21:26:35 +00:00
|
|
|
protected:
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
|
|
QSendto * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QSENDTODIALOG_H
|