2002-09-24 13:57:09 +00:00
|
|
|
// -*- C++ -*-
|
2001-08-19 13:25:15 +00:00
|
|
|
/**
|
|
|
|
* \file QRefDialog.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 Kalle Dalheimer
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-19 13:25:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QREFDIALOG_H
|
|
|
|
#define QREFDIALOG_H
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
#include "ui/QRefDialogBase.h"
|
|
|
|
|
|
|
|
class QRef;
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
class QRefDialog : public QRefDialogBase {
|
|
|
|
Q_OBJECT
|
2001-08-19 13:25:15 +00:00
|
|
|
public:
|
2001-08-26 00:29:39 +00:00
|
|
|
QRefDialog(QRef * form);
|
2003-04-03 21:27:12 +00:00
|
|
|
|
|
|
|
virtual void show();
|
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
public slots:
|
2001-08-26 00:29:39 +00:00
|
|
|
void changed_adaptor();
|
|
|
|
void gotoClicked();
|
2003-06-28 01:23:11 +00:00
|
|
|
void refHighlighted(const QString &);
|
|
|
|
void refSelected(const QString &);
|
2001-08-26 00:29:39 +00:00
|
|
|
void sortToggled(bool);
|
|
|
|
void updateClicked();
|
2003-04-03 21:27:12 +00:00
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
|
|
QRef * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QREFDIALOG_H
|