//################################################################################################## // // Custom Visualization Core library // Copyright (C) 2011-2013 Ceetron AS // // This library may be used under the terms of either the GNU General Public License or // the GNU Lesser General Public License as follows: // // GNU General Public License Usage // This library is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This library is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE. // // See the GNU General Public License at <> // for more details. // // GNU Lesser General Public License Usage // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation; either version 2.1 of the License, or // (at your option) any later version. // // This library is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE. // // See the GNU Lesser General Public License at <> // for more details. // //################################################################################################## #include "cafPdmUiFieldEditorHandle.h" #include "cafPdmObjectHandle.h" #include "cafPdmUiCommandSystemProxy.h" #include "cafPdmUiFieldHandle.h" #include "cafPdmUiObjectHandle.h" #include #include #include #include namespace caf { //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- PdmUiFieldEditorHandle::PdmUiFieldEditorHandle() { m_combinedWidget = QPointer(); m_editorWidget = QPointer(); m_labelWidget = QPointer(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- PdmUiFieldEditorHandle::~PdmUiFieldEditorHandle() { if (!m_combinedWidget.isNull()) m_combinedWidget->deleteLater(); if (!m_editorWidget.isNull()) m_editorWidget->deleteLater(); if (!m_labelWidget.isNull()) m_labelWidget->deleteLater(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void PdmUiFieldEditorHandle::setUiField(PdmUiFieldHandle * field) { this->bindToPdmItem(field); if (m_editorWidget) { if (field && field->isCustomContextMenuEnabled()) { m_editorWidget->setContextMenuPolicy(Qt::CustomContextMenu); } else { m_editorWidget->setContextMenuPolicy(Qt::DefaultContextMenu); } } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- PdmUiFieldHandle* PdmUiFieldEditorHandle::uiField() { return dynamic_cast(pdmItem()); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void PdmUiFieldEditorHandle::createWidgets(QWidget * parent) { if (m_combinedWidget.isNull()) m_combinedWidget = createCombinedWidget(parent); if (m_editorWidget.isNull()) m_editorWidget = createEditorWidget(parent); if (m_labelWidget.isNull()) m_labelWidget = createLabelWidget(parent); if (m_editorWidget) { connect(m_editorWidget, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(customMenuRequested(QPoint))); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void PdmUiFieldEditorHandle::setValueToField(const QVariant& newUiValue) { PdmUiCommandSystemProxy::instance()->setUiValueToField(uiField(), newUiValue); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void PdmUiFieldEditorHandle::updateLabelFromField(QLabel* label, const QString& uiConfigName) const { CAF_ASSERT(label); const PdmUiFieldHandle* fieldHandle = dynamic_cast(pdmItem()); if (fieldHandle) { QIcon ic = fieldHandle->uiIcon(uiConfigName); if (!ic.isNull()) { label->setPixmap(ic.pixmap(ic.actualSize(QSize(64, 64)))); } else { QString uiName = fieldHandle->uiName(uiConfigName); label->setText(uiName); } label->setEnabled(!fieldHandle->isUiReadOnly(uiConfigName)); label->setToolTip(fieldHandle->uiToolTip(uiConfigName)); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void PdmUiFieldEditorHandle::customMenuRequested(QPoint pos) { PdmObjectHandle* objectHandle = nullptr; if (uiField() && uiField()->fieldHandle()) { objectHandle = uiField()->fieldHandle()->ownerObject(); } if (!objectHandle) { return; } auto widget = editorWidget(); if (widget) { QPoint globalPos; auto abstractScrollAreaWidget = dynamic_cast(widget); if (abstractScrollAreaWidget) { // Qt doc: QAbstractScrollArea and its subclasses that map the context menu event to coordinates of the viewport(). globalPos = abstractScrollAreaWidget->viewport()->mapToGlobal(pos); } else { globalPos = widget->mapToGlobal(pos); } QMenu menu; objectHandle->uiCapability()->defineCustomContextMenu(uiField()->fieldHandle(), &menu, widget); if (!menu.actions().empty()) { menu.exec(globalPos); } } } } // End of namespace caf