mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
814b819451
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5447 a592a061-630c-0410-9148-cb99ea01b6c8
94 lines
1.4 KiB
C
94 lines
1.4 KiB
C
/**
|
|
* \file QRefDialog.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Kalle Dalheimer
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "ControlRef.h"
|
|
#include "debug.h"
|
|
|
|
#include "QRef.h"
|
|
#include "QRefDialog.h"
|
|
|
|
#include <qpushbutton.h>
|
|
#include <qlineedit.h>
|
|
#include <qcombobox.h>
|
|
#include <qlistbox.h>
|
|
|
|
|
|
QRefDialog::QRefDialog(QRef * form)
|
|
: QRefDialogBase(0, 0, false, 0),
|
|
form_(form)
|
|
{
|
|
connect(okPB, SIGNAL(clicked()),
|
|
form_, SLOT(slotOK()));
|
|
connect(closePB, SIGNAL(clicked()),
|
|
form_, SLOT(slotClose()));
|
|
}
|
|
|
|
|
|
void QRefDialog::changed_adaptor()
|
|
{
|
|
form_->changed();
|
|
}
|
|
|
|
|
|
void QRefDialog::gotoClicked()
|
|
{
|
|
form_->gotoRef();
|
|
}
|
|
|
|
|
|
void QRefDialog::refHighlighted(const QString & sel)
|
|
{
|
|
if (form_->readOnly())
|
|
return;
|
|
|
|
referenceED->setText(sel);
|
|
if (form_->at_ref_)
|
|
form_->gotoRef();
|
|
gotoPB->setEnabled(true);
|
|
if (form_->typeAllowed())
|
|
typeCO->setEnabled(true);
|
|
if (form_->nameAllowed())
|
|
nameED->setEnabled(true);
|
|
}
|
|
|
|
|
|
void QRefDialog::refSelected(const QString &)
|
|
{
|
|
form_->gotoRef();
|
|
}
|
|
|
|
|
|
void QRefDialog::sortToggled(bool on)
|
|
{
|
|
form_->sort_ = on;
|
|
refsLB->clear();
|
|
form_->redoRefs();
|
|
}
|
|
|
|
|
|
void QRefDialog::updateClicked()
|
|
{
|
|
form_->updateRefs();
|
|
}
|
|
|
|
|
|
void QRefDialog::closeEvent(QCloseEvent * e)
|
|
{
|
|
form_->slotWMHide();
|
|
e->accept();
|
|
}
|