2002-10-07 16:41:10 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file QWrapDialog.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
2003-09-07 01:45:40 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
|
2002-10-07 16:41:10 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-10-07 16:41:10 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef QWRAPDIALOG_H
|
|
|
|
|
#define QWRAPDIALOG_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "ui/QWrapDialogBase.h"
|
|
|
|
|
|
|
|
|
|
class QWrap;
|
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
class QWrapDialog : public QWrapDialogBase {
|
|
|
|
|
Q_OBJECT
|
2002-10-07 16:41:10 +00:00
|
|
|
|
public:
|
|
|
|
|
QWrapDialog(QWrap * form);
|
|
|
|
|
protected slots:
|
|
|
|
|
virtual void change_adaptor();
|
|
|
|
|
protected:
|
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
|
private:
|
|
|
|
|
QWrap * form_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // QWRAPDIALOG_H
|