X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLabel.cpp;h=baadf603782534c947b2116abd54f3cd5b808057;hb=06e7f5859095193fc7f498bd89a7d28009794f53;hp=af8063f6abc936d0487bb6d8f7d77ff040556f33;hpb=97917d3698f5a2f7fc9596e7c755ff8f6751e373;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.cpp b/src/ModuleBase/ModuleBase_WidgetLabel.cpp index af8063f6a..baadf6037 100644 --- a/src/ModuleBase/ModuleBase_WidgetLabel.cpp +++ b/src/ModuleBase/ModuleBase_WidgetLabel.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// Copyright (C) 2014-2023 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -25,7 +25,9 @@ #include #include +#include +#include #include #include @@ -35,6 +37,11 @@ ModuleBase_WidgetLabel::ModuleBase_WidgetLabel(QWidget* theParent, : ModuleBase_ModelWidget(theParent, theData) { QString aText = translate(theData->getProperty("title")); + + myPrefix = theData->getProperty(ATTR_LABEL); + + bool aIsHtml = theData->getBooleanAttribute(ATTR_HTML_STYLE, false); + QString aLabelIcon = QString::fromStdString(theData->getProperty("icon")); myLabel = new QLabel(aText, theParent); if (!aLabelIcon.isEmpty()) { @@ -46,15 +53,21 @@ ModuleBase_WidgetLabel::ModuleBase_WidgetLabel(QWidget* theParent, myLabel->setWordWrap(true); myLabel->setIndent(5); myLabel->setContentsMargins(0,0,0,4); + if (aIsHtml) + myLabel->setTextFormat(Qt::RichText); QVBoxLayout* aLayout = new QVBoxLayout(this); ModuleBase_Tools::zeroMargins(aLayout); aLayout->addWidget(myLabel); setLayout(aLayout); - std::string aStyleSheet = theData->getProperty(ATTR_STYLE_SHEET).c_str(); + std::string aStyleSheet = theData->getProperty(ATTR_STYLE_SHEET); if (!aStyleSheet.empty()) myLabel->setStyleSheet(QString("QLabel {%1}").arg(aStyleSheet.c_str())); + + aStyleSheet = theData->getProperty(ATTR_IS_SELECTABLE); + if ( aStyleSheet == "true") + myLabel->setTextInteractionFlags(Qt::TextSelectableByMouse); } ModuleBase_WidgetLabel::~ModuleBase_WidgetLabel() @@ -71,12 +84,26 @@ bool ModuleBase_WidgetLabel::restoreValueCustom() DataPtr aData = myFeature->data(); AttributeStringPtr aStrAttr = aData->string(attributeID()); if (aStrAttr.get()) { - std::string aMsg; + QString aText; if (aStrAttr.get()) { - aMsg = aStrAttr->value(); + if (aStrAttr->isUValue()) { // already translated text + char16_t* aStr = aStrAttr->valueU(); + std::wstring aWStr((wchar_t*)aStr); + static const int aBufSize = 1000; + static char aMBStr[aBufSize]; + wcstombs(aMBStr, aWStr.c_str(), aBufSize); + std::string aCodec = Config_Translator::codec(""); + aText = QTextCodec::codecForName(aCodec.c_str())->toUnicode(aMBStr); + } else { + std::string aMsg = aStrAttr->value(); + aText = ModuleBase_Tools::translate(myFeature->getKind(), aMsg); + } + } + if (myPrefix == "") { + myLabel->setText(aText); + } else { + myLabel->setText(ModuleBase_Tools::translate(myFeature->getKind(), myPrefix) + aText); } - QString aText = ModuleBase_Tools::translate(myFeature->getKind(), aMsg); - myLabel->setText(aText); } return true; }