lyx_mirror/src/frontends/qt2/QVSpaceDialog.C
Angus Leeming 68b0cca2e7 Whitespace, only whitespace.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9314 a592a061-630c-0410-9148-cb99ea01b6c8
2004-11-26 14:52:54 +00:00

81 lines
1.4 KiB
C

/**
* \file QVSpaceDialog.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
* \author Edwin Leuven
* \author Jürgen Spitzmüller
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "QVSpaceDialog.h"
#include "QVSpace.h"
#include "lengthcombo.h"
#include "lengthvalidator.h"
#include "qt_helpers.h"
#include <qcombobox.h>
#include <qlineedit.h>
#include <qpushbutton.h>
#include <qvalidator.h>
namespace lyx {
namespace frontend {
namespace {
LengthValidator * unsignedLengthValidator(QLineEdit * ed)
{
LengthValidator * v = new LengthValidator(ed);
v->setBottom(LyXGlueLength());
return v;
}
} // namespace anon
QVSpaceDialog::QVSpaceDialog(QVSpace * form)
: QVSpaceDialogBase(0, 0, false, 0),
form_(form)
{
connect(okPB, SIGNAL(clicked()),
form_, SLOT(slotOK()));
connect(applyPB, SIGNAL(clicked()),
form_, SLOT(slotApply()));
connect(closePB, SIGNAL(clicked()),
form_, SLOT(slotClose()));
valueLE->setValidator(unsignedLengthValidator(valueLE));
}
void QVSpaceDialog::closeEvent(QCloseEvent * e)
{
form_->slotWMHide();
e->accept();
}
void QVSpaceDialog::change_adaptor()
{
form_->changed();
}
void QVSpaceDialog::enableCustom(int)
{
bool const enable = spacingCO->currentItem() == 5;
valueLE->setEnabled(enable);
unitCO->setEnabled(enable);
}
} // namespace frontend
} // namespace lyx