lyx_mirror/src/frontends/qt2/QRef.h
Jürgen Spitzmüller 10a5c58dbd restore double clicking in the QRefs dialog (bug 2194), plus some small ui fixes.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10714 a592a061-630c-0410-9148-cb99ea01b6c8
2006-01-08 10:57:31 +00:00

81 lines
1.3 KiB
C++

// -*- 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;
class QRef
: public QController<ControlRef, QView<QRefDialog> >
{
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
std::vector<std::string> refs_;
};
} // namespace frontend
} // namespace lyx
#endif // QREF_H