本文整理汇总了C++中QDoubleValidator::setTop方法的典型用法代码示例。如果您正苦于以下问题:C++ QDoubleValidator::setTop方法的具体用法?C++ QDoubleValidator::setTop怎么用?C++ QDoubleValidator::setTop使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QDoubleValidator
的用法示例。
在下文中一共展示了QDoubleValidator::setTop方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: if
QWidget * ExtArgNumber::createEditor(QWidget * parent)
{
textBox = (QLineEdit *)ExtArgText::createEditor(parent);
textBox->disconnect(SIGNAL(textChanged(QString)));
if ( _argument->arg_type == EXTCAP_ARG_INTEGER || _argument->arg_type == EXTCAP_ARG_UNSIGNED )
{
QIntValidator * textValidator = new QIntValidator(parent);
if ( _argument->range_start != NULL )
textValidator->setBottom(extcap_complex_get_int(_argument->range_start));
if ( _argument->arg_type == EXTCAP_ARG_UNSIGNED && textValidator->bottom() < 0 )
textValidator->setBottom(0);
if ( _argument->range_end != NULL )
textValidator->setTop(extcap_complex_get_int(_argument->range_end));
textBox->setValidator(textValidator);
}
else if ( _argument->arg_type == EXTCAP_ARG_DOUBLE )
{
QDoubleValidator * textValidator = new QDoubleValidator(parent);
if ( _argument->range_start != NULL )
textValidator->setBottom(extcap_complex_get_double(_argument->range_start));
if ( _argument->range_end != NULL )
textValidator->setTop(extcap_complex_get_double(_argument->range_end));
textBox->setValidator(textValidator);
}
textBox->setText(defaultValue());
connect(textBox, SIGNAL(textChanged(QString)), SLOT(onStringChanged(QString)));
return textBox;
}
示例2: validate
QValidator::State cwClinoValidator::validate ( QString & input, int & pos ) const {
if(input.isEmpty()) {
return QValidator::Acceptable;
}
QDoubleValidator doubleValidator;
doubleValidator.setTop(90);
doubleValidator.setBottom(-90);
doubleValidator.setNotation(QDoubleValidator::StandardNotation);
QValidator::State state = doubleValidator.validate(input, pos);
switch(state) {
case QValidator::Invalid: {
QRegExpValidator upDownValidator;
QRegExp regexp("up|down", Qt::CaseInsensitive);
upDownValidator.setRegExp(regexp);
return upDownValidator.validate(input, pos);
}
case QValidator::Acceptable: {
//Just make sure we can convert the input
bool okay;
double value = input.toDouble(&okay);
if(!okay || !check(value)) {
//The validator is dump ... this handle use case input="5,5"
return QValidator::Invalid;
}
break;
}
default:
break;
}
return state;
}
示例3: QDialog
transmitterPayloadDialog::transmitterPayloadDialog( QWidget * parent, Qt::WindowFlags f) : QDialog(parent,f)
{
setupUi(this);
QDoubleValidator* positiveDoubleValidator = new QDoubleValidator(this);
positiveDoubleValidator->setBottom(0.0);
QDoubleValidator* efficiencyValidator = new QDoubleValidator(this);
efficiencyValidator->setBottom(0.0);
efficiencyValidator->setTop(100.0);
// changed this to range -90, 90 to turn antennas also in direction of space (need it for ground stations with antennas)
QDoubleValidator* elevationValidator = new QDoubleValidator(this);
elevationValidator->setRange(-90, 90, 2);
ElLineEdit->setValidator(elevationValidator);
//ElLineEdit->setValidator(positiveDoubleValidator);
TxFeederLossLineEdit->setValidator(positiveDoubleValidator);
TxDepointingLossLineEdit->setValidator(positiveDoubleValidator);
GainLineEdit->setValidator(positiveDoubleValidator);
DiameterLineEdit->setValidator(positiveDoubleValidator);
BeamLineEdit->setValidator(positiveDoubleValidator);
TiltLineEdit->setValidator(positiveDoubleValidator);
EfficiencyLineEdit->setValidator(efficiencyValidator);
FrequencyLineEdit->setValidator(positiveDoubleValidator);
PowerLineEdit->setValidator(positiveDoubleValidator);
DataRateLineEdit->setValidator(positiveDoubleValidator);
ConeAngleLineEdit->setValidator(positiveDoubleValidator);
HorAngleLineEdit->setValidator(positiveDoubleValidator);
VertAngleLineEdit->setValidator(positiveDoubleValidator);
}
示例4: QDialog
/* Dialog box for editing initial state parameters. The dialog
* has a separate page for each method of entering the initial
* state. Currently just two methods are supported: state vector
* and Keplerian elements.
*/
InitialStateThreebodyEditorDialog::InitialStateThreebodyEditorDialog(QWidget* parent) :
QDialog(parent)
{
setupUi(this);
// Set up the coordinate system combo box
//coordinateSystemCombo->addItem(tr("Planet fixed"), (int) sta::COORDSYS_BODYFIXED);
coordinateSystemCombo->addItem(tr("Co-Rotating normalized"), (int) sta::COORDSYS_ROT_NORM);
coordinateSystemCombo->addItem(tr("Co-Rotating"), (int) sta::COORDSYS_ROT);
coordinateSystemCombo->addItem(tr("Inertial body-centred"), (int) sta::COORDSYS_BODYFIXED);
//coordinateSystemCombo->addItem(tr("Ecliptic (J2000)"), (int) sta::COORDSYS_ECLIPTIC_J2000);
// Set up the input validators
QDoubleValidator* doubleValidator = new QDoubleValidator(this);
QDoubleValidator* angleValidator = new QDoubleValidator(this);
angleValidator->setBottom(-360.0);
angleValidator->setTop(360.0);
QDoubleValidator* positiveAngleValidator = new QDoubleValidator(this);
positiveAngleValidator->setBottom(0.0);
positiveAngleValidator->setTop(360.0);
QDoubleValidator* positiveDoubleValidator = new QDoubleValidator(this);
positiveDoubleValidator->setBottom(0.0);
QDoubleValidator* zeroToOneValidator = new QDoubleValidator(this);
zeroToOneValidator->setBottom(0.0);
zeroToOneValidator->setTop(0.9999);
positionXEdit->setValidator(doubleValidator);
positionYEdit->setValidator(doubleValidator);
positionZEdit->setValidator(doubleValidator);
velocityXEdit->setValidator(doubleValidator);
velocityYEdit->setValidator(doubleValidator);
velocityZEdit->setValidator(doubleValidator);
semimajorAxisEdit->setValidator(positiveDoubleValidator);
eccentricityEdit->setValidator(zeroToOneValidator);
inclinationEdit->setValidator(angleValidator);
raanEdit->setValidator(positiveAngleValidator);
argOfPeriapsisEdit->setValidator(positiveAngleValidator);
trueAnomalyEdit->setValidator(positiveAngleValidator);
}
示例5: QDialog
/* Dialog box for editing location parameters: central body,
* latitude, longitude, and altitude.
*/
LocationEditorDialog::LocationEditorDialog(QWidget* parent) :
QDialog(parent)
{
setupUi(this);
// Set up the input validators
QDoubleValidator* doubleValidator = new QDoubleValidator(this);
QDoubleValidator* angleValidator = new QDoubleValidator(this);
angleValidator->setBottom(-360.0);
angleValidator->setTop(360.0);
latitudeEdit->setValidator(angleValidator);
longitudeEdit->setValidator(angleValidator);
altitudeEdit->setValidator(doubleValidator);
}
示例6: QGAbstractAppParamInput
// Default constructor
QGAppParamInputReal::QGAppParamInputReal(qgar::QgarAppParamDescr * descr,
QGAppDialogMediator * med,
QWidget * parent,
QGridLayout * layout)
: QGAbstractAppParamInput(descr, med, parent, layout)
{
//-- create value box and validator
_value = new QLineEdit(this);
QDoubleValidator * valid = new QDoubleValidator(_value);
_value->setValidator(valid);
_value->setAlignment(Qt::AlignRight);
_value->setSizePolicy(QSizePolicy(QSizePolicy::Maximum,
QSizePolicy::Maximum));
//-- Set value bounds and default value
if (_descr->defaultValue() != "")
_value->setText(_descr->defaultValue().c_str());
double val;
bool ok;
val = QString(_descr->minValue().c_str()).toDouble(&ok);
if (ok)
valid->setBottom(val);
val = QString(_descr->maxValue().c_str()).toDouble(&ok);
if (ok)
valid->setTop(val);
this->setEnabled(enabled());
_layout->addWidget(_value);
// Connect line edit to the slot that fwds notification to the
// mediator
connect(_value,
SIGNAL(textChanged(const QString&)),
SLOT(valueChanged()));
}
示例7: UpdateConfigRangeValidator
void ICParameterRange::UpdateConfigRangeValidator(uint type, double min, double max)
{
if(!configsRangeCache_.contains(type)) return;
QDoubleValidator* dv = static_cast<QDoubleValidator*>(configsRangeCache_.value(type));
if(dv != NULL)
{
dv->setBottom(min);
dv->setTop(max);
return;
}
QIntValidator* iv = static_cast<QIntValidator*>(configsRangeCache_.value(type));
if(iv != NULL)
{
iv->setBottom(min);
iv->setTop(max);
}
}
示例8: if
QWidget * ExtArgNumber::createEditor(QWidget * parent)
{
QString storeValue;
QString text = defaultValue();
if ( _argument->storeval )
{
QString storeValue = _argument->storeval;
if ( storeValue.length() > 0 && storeValue.compare(text) != 0 )
text = storeValue;
}
textBox = (QLineEdit *)ExtArgText::createEditor(parent);
textBox->disconnect(SIGNAL(textChanged(QString)));
if ( _argument->arg_type == EXTCAP_ARG_INTEGER || _argument->arg_type == EXTCAP_ARG_UNSIGNED )
{
QIntValidator * textValidator = new QIntValidator(parent);
if ( _argument->range_start != NULL )
{
int val = 0;
if ( _argument->arg_type == EXTCAP_ARG_INTEGER )
val = extcap_complex_get_int(_argument->range_start);
else if ( _argument->arg_type == EXTCAP_ARG_UNSIGNED )
{
guint tmp = extcap_complex_get_uint(_argument->range_start);
if ( tmp > G_MAXINT )
{
g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "Defined value for range_start of %s exceeds valid integer range", _argument->call );
val = G_MAXINT;
}
else
val = (gint)tmp;
}
textValidator->setBottom(val);
}
if ( _argument->arg_type == EXTCAP_ARG_UNSIGNED && textValidator->bottom() < 0 )
{
g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "%s sets negative bottom range for unsigned value, setting to 0", _argument->call );
textValidator->setBottom(0);
}
if ( _argument->range_end != NULL )
{
int val = 0;
if ( _argument->arg_type == EXTCAP_ARG_INTEGER )
val = extcap_complex_get_int(_argument->range_end);
else if ( _argument->arg_type == EXTCAP_ARG_UNSIGNED )
{
guint tmp = extcap_complex_get_uint(_argument->range_end);
if ( tmp > G_MAXINT )
{
g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "Defined value for range_end of %s exceeds valid integer range", _argument->call );
val = G_MAXINT;
}
else
val = (gint)tmp;
}
textValidator->setTop(val);
}
textBox->setValidator(textValidator);
}
else if ( _argument->arg_type == EXTCAP_ARG_DOUBLE )
{
QDoubleValidator * textValidator = new QDoubleValidator(parent);
if ( _argument->range_start != NULL )
textValidator->setBottom(extcap_complex_get_double(_argument->range_start));
if ( _argument->range_end != NULL )
textValidator->setTop(extcap_complex_get_double(_argument->range_end));
textBox->setValidator(textValidator);
}
textBox->setText(text.trimmed());
connect(textBox, SIGNAL(textChanged(QString)), SLOT(onStringChanged(QString)));
return textBox;
}