diff --git a/logPlus/PropertyWidget.cpp b/logPlus/PropertyWidget.cpp index cdc1507..50f6051 100644 --- a/logPlus/PropertyWidget.cpp +++ b/logPlus/PropertyWidget.cpp @@ -471,6 +471,25 @@ void PropertyWidget::SlotPropertyChanged( QtProperty *pProperty, const QVariant m_tdLayer->setRange(currentRange.lower, currentRange.upper); } } + else if (m_strCurrentProperty == JieshiItem_Property) + { + if (m_tdJieshi) + { + if ("顶深(m)" == m_propertyData[pProperty]) + { + double upper = variant.value(); + m_tdJieshi->setDragRect(2, -upper); + } + else if ("底深(m)" == m_propertyData[pProperty]) + { + double lower = variant.value(); + m_tdJieshi->setDragRect(1, -lower); + } + else if ("油气结论" == m_propertyData[pProperty]) + { + } + } + } else if (m_strCurrentProperty == GujingItem_Property) { //先处理通用属性 @@ -1806,8 +1825,8 @@ void PropertyWidget::initTableProperty(FormInfo *formInfo) _CreateVariantPropertyItem("通常", "选择井曲线", m_strLineName + "@" + m_strSlfName, QVariant::String); _CreateVariantPropertyItem("名称", "显示名称", formInfo->m_strLineName, QVariant::String); - //_CreateVariantPropertyItem("名称", "垂向绘制", formInfo->m_bVerticaDrawing, QVariant::Bool); - //_CreateVariantPropertyItem("名称", "旋转角度(°)", formInfo->m_nRotationAngle, QVariant::Int); + _CreateVariantPropertyItem("名称", "垂向绘制", formInfo->m_bVerticaDrawing, QVariant::Bool); + _CreateVariantPropertyItem("名称", "旋转角度(°)", formInfo->m_nRotationAngle, QVariant::Int); _CreateVariantPropertyItem("名称", "字体", formInfo->m_curveNameFont, QVariant::Font); _CreateVariantPropertyItem("名称", "颜色", formInfo->m_lineColor, QVariant::Color);