lyx_mirror/src/frontends/qt2/QIndexDialog.h
John Levon a63c7ca207 some more random changes, added Timeout (make clean if LyX crashes !!)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2584 a592a061-630c-0410-9148-cb99ea01b6c8
2001-08-25 03:00:19 +00:00

36 lines
532 B
C++

/**
* \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
#include <config.h>
#include "ui/QIndexDialogBase.h"
class QIndex;
class QIndexDialog : public QIndexDialogBase
{ Q_OBJECT
public:
QIndexDialog(QIndex * form);
~QIndexDialog();
protected slots:
virtual void change_adaptor();
protected:
virtual void closeEvent(QCloseEvent * e);
private:
QIndex * form_;
};
#endif // QINDEXDIALOG_H