X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetFileSelector.cpp;h=259560e382bddebbf27832b31f65cd2a432a1faf;hb=3c5cc0cd68b845cee1d58e61974ae0013b50199c;hp=7d834cca412be1c0266670bb609ece6bfc20d9a5;hpb=853952fd4ddc93c0cd6a7122d37b618199864396;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetFileSelector.cpp b/src/ModuleBase/ModuleBase_WidgetFileSelector.cpp index 7d834cca4..259560e38 100644 --- a/src/ModuleBase/ModuleBase_WidgetFileSelector.cpp +++ b/src/ModuleBase/ModuleBase_WidgetFileSelector.cpp @@ -8,7 +8,10 @@ #include #include #include +#include +#include #include +#include #include @@ -29,16 +32,12 @@ ModuleBase_WidgetFileSelector::ModuleBase_WidgetFileSelector(QWidget* theParent, const std::string& theParentId) : ModuleBase_ModelWidget(theParent, theData, theParentId) { - myHasDefaultValue = false; - myTitle = QString::fromStdString(theData->getProperty("title")); - //TODO(sbh): Get them from the feature - myFormats = getSupportedFormats(theData); myDefaultPath = QString::fromStdString(theData->getProperty("path")); myMainWidget = new QWidget(theParent); QGridLayout* aMainLay = new QGridLayout(myMainWidget); - aMainLay->setContentsMargins(0, 0, 0, 0); + ModuleBase_Tools::adjustMargins(aMainLay); QLabel* aTitleLabel = new QLabel(myTitle, myMainWidget); aTitleLabel->setIndent(1); aMainLay->addWidget(aTitleLabel, 0, 0); @@ -65,19 +64,22 @@ ModuleBase_WidgetFileSelector::~ModuleBase_WidgetFileSelector() bool ModuleBase_WidgetFileSelector::storeValue() const { + // A rare case when plugin was not loaded. + if(!myFeature) + return false; DataPtr aData = myFeature->data(); AttributeStringPtr aStringAttr = aData->string(attributeID()); - QString aModelValue = QString::fromStdString(aStringAttr->value()); QString aWidgetValue = myPathField->text(); - if(aModelValue != aWidgetValue) { - aStringAttr->setValue(aWidgetValue.toStdString()); - updateObject(myFeature); - } + aStringAttr->setValue(aWidgetValue.toStdString()); + updateObject(myFeature); return true; } bool ModuleBase_WidgetFileSelector::restoreValue() { + // A rare case when plugin was not loaded. + if(!myFeature) + return false; DataPtr aData = myFeature->data(); AttributeStringPtr aStringAttr = aData->string(attributeID()); @@ -96,8 +98,8 @@ QWidget* ModuleBase_WidgetFileSelector::getControl() const QList ModuleBase_WidgetFileSelector::getControls() const { QList result; - QPushButton * aButton = myMainWidget->findChild(); - result << aButton; + //QPushButton * aButton = myMainWidget->findChild(); + //result << aButton; result << myPathField; return result; } @@ -105,13 +107,13 @@ QList ModuleBase_WidgetFileSelector::getControls() const bool ModuleBase_WidgetFileSelector::isCurrentPathValid() { QFileInfo aFile (myPathField->text()); - return aFile.exists() && myFormats.contains(aFile.suffix(), Qt::CaseInsensitive); + return aFile.exists(); } void ModuleBase_WidgetFileSelector::onPathSelectionBtn() { - QString aFilter = formatsString(myFormats); + QString aFilter = formatsString(); QString aFileName = QFileDialog::getOpenFileName(myMainWidget, myTitle, myDefaultPath, aFilter); if (!aFileName.isEmpty()) { myPathField->setText(aFileName); @@ -126,20 +128,40 @@ void ModuleBase_WidgetFileSelector::onPathChanged() emit valuesChanged(); } -QStringList ModuleBase_WidgetFileSelector::getSupportedFormats(const Config_WidgetAPI* theData) const -{ - QString aXMLFormat = QString::fromStdString(theData->getProperty("formats")); - aXMLFormat = aXMLFormat.toUpper(); - const QChar kSep = ','; - return aXMLFormat.split(kSep, QString::SkipEmptyParts); -} - -QString ModuleBase_WidgetFileSelector::formatsString(const QStringList theFormats) const +QString ModuleBase_WidgetFileSelector::formatsString() const { QStringList aResult; - foreach(QString eachFormat, theFormats) { + QStringList aValidatorFormats = getValidatorFormats(); + + foreach(QString eachFormat, aValidatorFormats) { aResult << QString("%1 files (*.%1)").arg(eachFormat); } + aResult << QString("All files (*.*)"); return aResult.join(";;"); } +QStringList ModuleBase_WidgetFileSelector::getValidatorFormats() const +{ + SessionPtr aMgr = ModelAPI_Session::get(); + ModelAPI_ValidatorsFactory* aFactory = aMgr->validators(); + std::list allValidators; + std::list > allArguments; + aFactory->validators(myFeature->getKind(), myAttributeID, allValidators, allArguments); + //TODO(sbh): extract as separate method + if(allArguments.empty()) + return QStringList(); + std::list anArgumentList = allArguments.front(); + std::list::const_iterator it = anArgumentList.begin(); + QStringList aResult; + for (; it != anArgumentList.end(); ++it) { + std::string anArg = *it; + int aSepPos = anArg.find(":"); + if (aSepPos == std::string::npos) { + continue; + } + QString aFormat = QString::fromStdString(anArg.substr(0, aSepPos)); + aFormat = aFormat.toUpper(); + aResult.append(aFormat); + } + return aResult; +}