2001-08-19 13:25:15 +00:00
|
|
|
/**
|
|
|
|
* \file QIndexDialog.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QINDEXDIALOG_H
|
|
|
|
#define QINDEXDIALOG_H
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
#include <config.h>
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
#include "ui/QIndexDialogBase.h"
|
|
|
|
|
|
|
|
class QIndex;
|
|
|
|
|
|
|
|
class QIndexDialog : public QIndexDialogBase
|
|
|
|
{ Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2001-08-21 01:14:54 +00:00
|
|
|
QIndexDialog(QIndex * form);
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2002-09-11 17:42:45 +00:00
|
|
|
virtual void show();
|
|
|
|
|
2001-08-25 03:00:19 +00:00
|
|
|
protected slots:
|
2001-08-23 21:21:50 +00:00
|
|
|
virtual void change_adaptor();
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
protected:
|
2001-08-23 21:21:50 +00:00
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
2001-08-19 13:25:15 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QIndex * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QINDEXDIALOG_H
|