/** * \file QIndexDialog.h * Copyright 2001 the LyX Team * Read the file COPYING * * \author John Levon */ #ifndef QINDEXDIALOG_H #define QINDEXDIALOG_H #include #include "ui/QIndexDialogBase.h" class QIndex; class QIndexDialog : public QIndexDialogBase { Q_OBJECT public: QIndexDialog(QIndex * form); protected slots: virtual void change_adaptor(); protected: virtual void closeEvent(QCloseEvent * e); private: QIndex * form_; }; #endif // QINDEXDIALOG_H