lyx_mirror/src/frontends/qt4/QSendtoDialog.h
Lars Gullik Bjønnes 12e5a52b92 Added initial qt4 work by Abdelrazak Younes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13294 a592a061-630c-0410-9148-cb99ea01b6c8
2006-03-05 17:24:44 +00:00

43 lines
849 B
C++

// -*- C++ -*-
/**
* \file QSendtoDialog.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Jürgen Spitzmüller
*
* Full author contact details are available in file CREDITS.
*/
#ifndef QSENDTODIALOG_H
#define QSENDTODIALOG_H
#include "ui/QSendtoUi.h"
#include <QDialog>
#include <QCloseEvent>
namespace lyx {
namespace frontend {
class QSendto;
class QSendtoDialog : public QDialog, public Ui::QSendtoUi {
Q_OBJECT
public:
QSendtoDialog(QSendto * form);
protected slots:
virtual void changed_adaptor();
virtual void slotFormatHighlighted(const QString&) {}
virtual void slotFormatSelected(const QString&) {}
protected:
virtual void closeEvent(QCloseEvent * e);
private:
QSendto * form_;
};
} // namespace frontend
} // namespace lyx
#endif // QSENDTODIALOG_H