2002-09-24 13:57:09 +00:00
|
|
|
// -*- C++ -*-
|
2001-08-27 01:19:32 +00:00
|
|
|
/**
|
|
|
|
* \file QExternalDialog.h
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-27 01:19:32 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2001-08-27 01:19:32 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEXTERNALDIALOG_H
|
|
|
|
#define QEXTERNALDIALOG_H
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
|
|
|
2001-08-27 01:19:32 +00:00
|
|
|
#include "ui/QExternalDialogBase.h"
|
|
|
|
|
|
|
|
class QExternal;
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
class QExternalDialog : public QExternalDialogBase {
|
|
|
|
Q_OBJECT
|
2001-08-27 01:19:32 +00:00
|
|
|
public:
|
|
|
|
QExternalDialog(QExternal * form);
|
|
|
|
|
2002-09-11 17:42:45 +00:00
|
|
|
virtual void show();
|
2001-08-27 01:19:32 +00:00
|
|
|
protected slots:
|
|
|
|
virtual void change_adaptor();
|
|
|
|
virtual void editClicked();
|
|
|
|
virtual void browseClicked();
|
|
|
|
virtual void templateChanged();
|
2003-10-07 22:59:58 +00:00
|
|
|
virtual void formatChanged(const QString&);
|
|
|
|
virtual void extraChanged(const QString&);
|
2001-08-27 01:19:32 +00:00
|
|
|
protected:
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
|
|
QExternal * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QEXTERNALDIALOG_H
|