mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
c6b932f467
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17994 a592a061-630c-0410-9148-cb99ea01b6c8
69 lines
1.2 KiB
C++
69 lines
1.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file QIndex.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
* \author Kalle Dalheimer
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef QINDEX_H
|
|
#define QINDEX_H
|
|
|
|
#include "QDialogView.h"
|
|
#include "ui/IndexUi.h"
|
|
|
|
#include <QDialog>
|
|
#include <QCloseEvent>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class QIndex;
|
|
|
|
class QIndexDialog : public QDialog, public Ui::QIndexUi {
|
|
Q_OBJECT
|
|
public:
|
|
QIndexDialog(QIndex * form);
|
|
|
|
protected Q_SLOTS:
|
|
virtual void change_adaptor();
|
|
virtual void reject();
|
|
protected:
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
private:
|
|
QIndex * form_;
|
|
};
|
|
|
|
|
|
class ControlCommand;
|
|
|
|
class QIndex :
|
|
public QController<ControlCommand, QView<QIndexDialog> >
|
|
{
|
|
public:
|
|
friend class QIndexDialog;
|
|
|
|
QIndex(Dialog &, docstring const & title, QString const & label);
|
|
protected:
|
|
virtual bool isValid();
|
|
private:
|
|
/// Apply changes
|
|
virtual void apply();
|
|
/// update
|
|
virtual void update_contents();
|
|
/// build the dialog
|
|
virtual void build_dialog();
|
|
|
|
///
|
|
QString const label_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // QINDEX_H
|