当前位置: 首页>>代码示例>>C++>>正文


C++ QComboBox::property方法代码示例

本文整理汇总了C++中QComboBox::property方法的典型用法代码示例。如果您正苦于以下问题:C++ QComboBox::property方法的具体用法?C++ QComboBox::property怎么用?C++ QComboBox::property使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在QComboBox的用法示例。


在下文中一共展示了QComboBox::property方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: slotPropertyComboChanged

void VCMatrixPresetSelection::slotPropertyComboChanged(QString value)
{
    qDebug() << "Property combo changed to" << value;
    QComboBox *combo = (QComboBox *)sender();
    QString pName = combo->property("pName").toString();
    m_properties[pName] = value;
}
开发者ID:Cingulingu,项目名称:qlcplus,代码行数:7,代码来源:vcmatrixpresetselection.cpp

示例2: updateData

void ComboBoxDelegate::updateData()
{
	QComboBox* comboBox = qobject_cast<QComboBox*>(sender());

	QModelIndex index = comboBox->property("combobox-delegate-index").value<QModelIndex>();

	const_cast<QAbstractItemModel*>(index.model())->setData(index, comboBox->currentIndex());
}
开发者ID:AIS-Bonn,项目名称:humanoid_op_ros,代码行数:8,代码来源:combobox_delegate.cpp

示例3: fontWeightChanged

//-------------------------------------------------------------------------
void SetupDialog::fontWeightChanged(int index)
{
	QComboBox * combobox = (QComboBox *)sender();
	int id = combobox->property( SYNTAX_ELT_ID ).toInt();
	
	int weight = combobox->itemData( index ).toInt();
	QColor color = mFontColorMap[id]->property( BUTTON_COLOR ).value<QColor>();
	
	mMainWindow->setHighlighter( id , color , weight );
}
开发者ID:iloveican,项目名称:AscoGraph,代码行数:11,代码来源:SetupDialog.cpp

示例4: updateComboBox

void CameraParamsWidget::updateComboBox()
{
	QComboBox* s = (QComboBox*)sender();

	calibration::SetCameraParamRequest::Ptr req =
		boost::make_shared<calibration::SetCameraParamRequest>();
	req->param.id = s->property("paramID").toInt();
	req->param.value = s->itemData(s->currentIndex()).toInt();

	emit setParam(req);
}
开发者ID:NimbRo-Copter,项目名称:nimbro-op-ros,代码行数:11,代码来源:cameraparamswidget.cpp

示例5: LayerColorOperationChanged

void QMwMaterialLayersWidget::LayerColorOperationChanged(int index)
{
    QComboBox *sender = (QComboBox*)QObject::sender();
    int layerIndex = sender->property("layerIndex").toInt();
    MwColorOperation colorOp = (MwColorOperation)sender->itemData(index).toInt();

    this->material->shaderSlots[layerIndex].colorOp = colorOp;
    this->material->UpdateShader();

    this->SetMessage();
}
开发者ID:PtrickH,项目名称:meshwork,代码行数:11,代码来源:QMwMaterialLayersWidget.cpp

示例6: barSourceChanged

void TelemetryCustomScreen::barSourceChanged(int index)
{
    if (!lock) {
        QComboBox * cb = qobject_cast<QComboBox*>(sender());
        int line = cb->property("index").toInt();
        screen.body.bars[line].source = index;
        screen.body.bars[line].barMin = 0;
        screen.body.bars[line].barMax = 0;
        updateBar(line);
        emit modified();
    }
}
开发者ID:sneheshs,项目名称:opentx,代码行数:12,代码来源:telemetry.cpp

示例7: onScaleComboBoxIndexChanged

void ShaderParamsDialog::onScaleComboBoxIndexChanged(int)
{
   QComboBox *comboBox = qobject_cast<QComboBox*>(sender());
   QVariant passVariant;
   int pass = 0;
   bool ok = false;
   struct video_shader *menu_shader = NULL;
   struct video_shader *video_shader = NULL;

   getShaders(&menu_shader, &video_shader);

   if (!comboBox)
      return;

   passVariant = comboBox->property("pass");

   if (!passVariant.isValid())
      return;

   pass = passVariant.toInt(&ok);

   if (!ok)
      return;

   if (menu_shader && pass >= 0 && pass < static_cast<int>(menu_shader->passes))
   {
      QVariant data = comboBox->currentData();

      if (data.isValid())
      {
         unsigned scale = data.toUInt(&ok);

         if (ok)
         {
            if (menu_shader)
            {
               menu_shader->pass[pass].fbo.scale_x = scale;
               menu_shader->pass[pass].fbo.scale_y = scale;
               menu_shader->pass[pass].fbo.valid = scale;
            }

            if (video_shader)
            {
               video_shader->pass[pass].fbo.scale_x = scale;
               video_shader->pass[pass].fbo.scale_y = scale;
               video_shader->pass[pass].fbo.valid = scale;
            }

            command_event(CMD_EVENT_SHADERS_APPLY_CHANGES, NULL);
         }
      }
   }
}
开发者ID:DSkywalk,项目名称:RetroArch,代码行数:53,代码来源:shaderparamsdialog.cpp

示例8: LayerShaderOperationChanged

void QMwMaterialLayersWidget::LayerShaderOperationChanged(int index)
{
    QComboBox *sender = (QComboBox*)QObject::sender();
    int layerIndex = sender->property("layerIndex").toInt();
    MwShaderOperation shaderOp = (MwShaderOperation)sender->itemData(index).toInt();
    MwColorOperation colorOp = this->material->shaderSlots[layerIndex].colorOp;

    this->material->RemoveShaderSlot(layerIndex);
    this->material->InsertShaderSlot(shaderOp, colorOp, layerIndex);
    this->material->UpdateShader();

    this->SetMessage();

    this->editor->UpdateResourceProperties(this->material);
}
开发者ID:PtrickH,项目名称:meshwork,代码行数:15,代码来源:QMwMaterialLayersWidget.cpp

示例9: on_comboBox_currentIndexChanged

void MTPageNym_AltLocation::on_comboBox_currentIndexChanged(int nIndex)
{
    QComboBox * pComboBox = qobject_cast<QComboBox*>(sender());

    if (nullptr != pComboBox)
    {
        // Note: the internal data representation is updated at the
        // bottom, in the call to moveSingleContactItem, which calls
        // deleteSingleContractItem, which updates the data. (So no
        // need to do it in here.)
        // -------------------------------------------------------------
        // ALSO: MOVE the contact data item widget from the current group box,
        // to a different group box, since after all, its type has just changed.
        // (We have a different group box for each type.)

        uint32_t newSectionType = 0;

        QWidget              * pItemWidget  = VPtr<QWidget>::asPtr(pComboBox->property("contactitemwidget"));
        QLineEdit            * pLineEdit    = nullptr;
        GroupBoxContactItems * pGroupBoxOld = nullptr;
        GroupBoxContactItems * pGroupBoxNew = nullptr;

        if (nullptr == pItemWidget)
        {
            return;
        }
        // ----------------------------------------------------------
        pLineEdit = VPtr<QLineEdit>::asPtr(pItemWidget->property("lineedit"));

        if (nullptr == pLineEdit)
        {
            return;
        }
        // ----------------------------------------------------------
        pGroupBoxOld = VPtr<GroupBoxContactItems>::asPtr(pItemWidget->property("groupbox"));

        if (nullptr == pGroupBoxOld)
        {
            return;
        }
        // ----------------------------------------------------------
        // Let's get the section type of the NEW group box
        // (the one that was just selected in the combo box.)
        //
        QVariant qvarSectionType = pComboBox->itemData(nIndex);

        if (qvarSectionType.isValid()) // Always should be valid. We could assert here.
        {
            newSectionType = qvarSectionType.toUInt();
        }
        // -------------------------------------
        if (0 == newSectionType)
        {
            return;
        }
        // -------------------------------------
        // Both the old AND the new groupbox are both found on this list.
        QList<GroupBoxContactItems *> * pListGroupBoxes = pGroupBoxOld->pListGroupBoxes_;

        if (nullptr == pListGroupBoxes) // should never be null. Could assert here.
        {
            return;
        }
        // -------------------------------------
        // Iterate the list and find the groupbox that contains the new section type
        // we're looking for.
        //
        for (QList<GroupBoxContactItems *>::iterator it_boxes = pListGroupBoxes->begin();
             it_boxes != pListGroupBoxes->end();
             ++it_boxes)
        {
            GroupBoxContactItems * pGroupBox = *it_boxes;

            if (nullptr != pGroupBox) // should never be null.
            {
                if (pGroupBox->indexSectionType_ == newSectionType) // Found it!
                {
                    pGroupBoxNew = pGroupBox;
                    break;
                }
            }
        }
        // -------------------------------------
        if (nullptr == pGroupBoxNew)
        {
            return;
        }
        // -------------------------------------
        // By this point we know for sure that both group boxes, as well as the
        // contact data item widget, are all NOT null.
        // So now we can perform the move:
        //
        if (!moveSingleContactItem(pGroupBoxOld, pGroupBoxNew, pItemWidget, nIndex, pLineEdit->text()))
        {
            // qDebug() << "Failure...";
            return;
        }
    }
}
开发者ID:bitcredit-currency,项目名称:Moneychanger,代码行数:99,代码来源:pagenym_altlocation.cpp

示例10: filterChanged

void QgsRelationReferenceWidget::filterChanged()
{
  QVariant nullValue = QgsApplication::nullRepresentation();

  QMap<QString, QString> filters;
  QgsAttributeList attrs;

  QComboBox *scb = qobject_cast<QComboBox *>( sender() );

  Q_ASSERT( scb );

  QgsFeature f;
  QgsFeatureIds featureIds;
  QString filterExpression;

  // comboboxes have to be disabled before building filters
  if ( mChainFilters )
    disableChainedComboBoxes( scb );

  // build filters
  const auto constMFilterComboBoxes = mFilterComboBoxes;
  for ( QComboBox *cb : constMFilterComboBoxes )
  {
    if ( cb->currentIndex() != 0 )
    {
      const QString fieldName = cb->property( "Field" ).toString();

      if ( cb->currentText() == nullValue.toString() )
      {
        filters[fieldName] = QStringLiteral( "\"%1\" IS NULL" ).arg( fieldName );
      }
      else
      {
        filters[fieldName] = QgsExpression::createFieldEqualityExpression( fieldName, cb->currentText() );
      }
      attrs << mReferencedLayer->fields().lookupField( fieldName );
    }
  }

  if ( mChainFilters )
  {
    QComboBox *ccb = nullptr;
    const auto constMFilterComboBoxes = mFilterComboBoxes;
    for ( QComboBox *cb : constMFilterComboBoxes )
    {
      if ( !ccb )
      {
        if ( cb == scb )
          ccb = cb;

        continue;
      }

      if ( ccb->currentIndex() != 0 )
      {
        const QString fieldName = cb->property( "Field" ).toString();

        cb->blockSignals( true );
        cb->clear();
        cb->addItem( cb->property( "FieldAlias" ).toString() );

        // ccb = scb
        // cb = scb + 1
        QStringList texts;
        const auto txts { mFilterCache[ccb->property( "Field" ).toString()][ccb->currentText()] };
        for ( const QString &txt : txts )
        {
          QMap<QString, QString> filtersAttrs = filters;
          filtersAttrs[fieldName] = QgsExpression::createFieldEqualityExpression( fieldName, txt );
          QString expression = filtersAttrs.values().join( QStringLiteral( " AND " ) );

          QgsAttributeList subset = attrs;
          subset << mReferencedLayer->fields().lookupField( fieldName );

          QgsFeatureIterator it( mReferencedLayer->getFeatures( QgsFeatureRequest().setFilterExpression( expression ).setSubsetOfAttributes( subset ) ) );

          bool found = false;
          while ( it.nextFeature( f ) )
          {
            if ( !featureIds.contains( f.id() ) )
              featureIds << f.id();

            found = true;
          }

          // item is only provided if at least 1 feature exists
          if ( found )
            texts << txt;
        }

        texts.sort();
        cb->addItems( texts );

        cb->setEnabled( true );
        cb->blockSignals( false );

        ccb = cb;
      }
    }
  }
//.........这里部分代码省略.........
开发者ID:alexbruy,项目名称:QGIS,代码行数:101,代码来源:qgsrelationreferencewidget.cpp


注:本文中的QComboBox::property方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。