2001-08-19 13:25:15 +00:00
|
|
|
/**
|
|
|
|
* \file QURLDialog.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QURLDIALOG_H
|
|
|
|
#define QURLDIALOG_H
|
|
|
|
|
|
|
|
#include "ui/QURLDialogBase.h"
|
|
|
|
|
|
|
|
class QURL;
|
|
|
|
|
|
|
|
class QURLDialog : public QURLDialogBase
|
|
|
|
{ Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2001-08-25 20:04:15 +00:00
|
|
|
QURLDialog(QURL * form);
|
2001-08-19 13:25:15 +00:00
|
|
|
~QURLDialog();
|
|
|
|
|
|
|
|
public slots:
|
2001-08-25 20:04:15 +00:00
|
|
|
void changed_adaptor();
|
2001-08-19 13:25:15 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent *);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QURL * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QURLDIALOG_H
|