2002-09-24 13:57:09 +00:00
|
|
|
// -*- C++ -*-
|
2001-08-19 13:25:15 +00:00
|
|
|
/**
|
|
|
|
* \file QIndexDialog.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-19 13:25:15 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-19 13:25:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QINDEXDIALOG_H
|
|
|
|
#define QINDEXDIALOG_H
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
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();
|
2002-09-24 13:57:09 +00:00
|
|
|
|
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
|