mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
7222ce9e31
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36379 a592a061-630c-0410-9148-cb99ea01b6c8
65 lines
1.1 KiB
C++
65 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetParamsWidget.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "InsetParamsWidget.h"
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
#include <QLineEdit>
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
CheckedWidget::CheckedWidget(QLineEdit * input, QWidget * label)
|
|
: input_(input), label_(label)
|
|
{
|
|
}
|
|
|
|
|
|
bool CheckedWidget::check() const
|
|
{
|
|
bool const valid = input_->hasAcceptableInput();
|
|
// Visual feedback.
|
|
setValid(input_, valid);
|
|
if (label_)
|
|
setValid(label_, valid);
|
|
return valid;
|
|
}
|
|
|
|
|
|
|
|
InsetParamsWidget::InsetParamsWidget(QWidget * parent) : QWidget(parent)
|
|
{
|
|
}
|
|
|
|
|
|
void InsetParamsWidget::addCheckedWidget(QLineEdit * input, QWidget * label)
|
|
{
|
|
checked_widgets_.append(CheckedWidget(input, label));
|
|
}
|
|
|
|
|
|
bool InsetParamsWidget::checkWidgets() const
|
|
{
|
|
bool valid = true;
|
|
Q_FOREACH(CheckedWidget const & le, checked_widgets_)
|
|
valid &= le.check();
|
|
return valid;
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "moc_InsetParamsWidget.cpp"
|