2006-03-05 17:24:44 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QRef.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QREF_H
|
|
|
|
#define QREF_H
|
|
|
|
|
|
|
|
#include "QDialogView.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
class ControlRef;
|
|
|
|
class QRefDialog;
|
|
|
|
|
|
|
|
|
2006-06-06 10:10:11 +00:00
|
|
|
// full qualification because qt4 has also a ControlRef type
|
2006-03-05 17:24:44 +00:00
|
|
|
class QRef
|
2006-06-06 10:10:11 +00:00
|
|
|
: public QController<lyx::frontend::ControlRef, QView<QRefDialog> >
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
friend class QRefDialog;
|
|
|
|
|
|
|
|
QRef(Dialog &);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual bool isValid();
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// apply changes
|
|
|
|
virtual void apply();
|
|
|
|
/// build dialog
|
|
|
|
virtual void build_dialog();
|
|
|
|
/// update dialog
|
|
|
|
virtual void update_contents();
|
|
|
|
|
|
|
|
/// is name allowed for this ?
|
|
|
|
bool nameAllowed();
|
|
|
|
|
|
|
|
/// is type allowed for this ?
|
|
|
|
bool typeAllowed();
|
|
|
|
|
|
|
|
/// go to current reference
|
|
|
|
void gotoRef();
|
|
|
|
|
|
|
|
/// set go back button
|
|
|
|
void setGoBack();
|
|
|
|
|
|
|
|
/// set goto ref button
|
|
|
|
void setGotoRef();
|
|
|
|
|
|
|
|
/// re-enter references
|
|
|
|
void redoRefs();
|
|
|
|
|
|
|
|
/// update references
|
|
|
|
void updateRefs();
|
|
|
|
|
|
|
|
/// sort or not persistent state
|
|
|
|
bool sort_;
|
|
|
|
|
|
|
|
/// at a reference ?
|
|
|
|
bool at_ref_;
|
|
|
|
|
|
|
|
/// store the buffer settings
|
|
|
|
int restored_buffer_;
|
|
|
|
|
|
|
|
/// the references
|
2006-10-12 10:50:45 +00:00
|
|
|
std::vector<lyx::docstring> refs_;
|
2006-03-05 17:24:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // QREF_H
|