X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetFileSelector.cpp;h=259560e382bddebbf27832b31f65cd2a432a1faf;hb=3c5cc0cd68b845cee1d58e61974ae0013b50199c;hp=9f16b74f6b9d20ee8869f8cdbb20146d3259a35b;hpb=12866ad4430e2c7b4fe186d7117291e7aa09a18e;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetFileSelector.cpp b/src/ModuleBase/ModuleBase_WidgetFileSelector.cpp index 9f16b74f6..259560e38 100644 --- a/src/ModuleBase/ModuleBase_WidgetFileSelector.cpp +++ b/src/ModuleBase/ModuleBase_WidgetFileSelector.cpp @@ -8,6 +8,8 @@ #include #include #include +#include +#include #include #include @@ -31,8 +33,6 @@ ModuleBase_WidgetFileSelector::ModuleBase_WidgetFileSelector(QWidget* theParent, : ModuleBase_ModelWidget(theParent, theData, theParentId) { 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); @@ -64,6 +64,9 @@ 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 aWidgetValue = myPathField->text(); @@ -74,6 +77,9 @@ bool ModuleBase_WidgetFileSelector::storeValue() const 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()); @@ -92,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; } @@ -101,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); @@ -122,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; +}