X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetFileSelector.h;h=2f6612413951aabad827ffcb0c8e4be4c285c170;hb=e32f95642855a63da2727cb324ce2a75632a712f;hp=3b183d7031a83f71c86059d3143d45d99fd09382;hpb=83b022b15cfd77512967f4328484371e46c525ae;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetFileSelector.h b/src/ModuleBase/ModuleBase_WidgetFileSelector.h index 3b183d703..2f6612413 100644 --- a/src/ModuleBase/ModuleBase_WidgetFileSelector.h +++ b/src/ModuleBase/ModuleBase_WidgetFileSelector.h @@ -27,11 +27,15 @@ class QLineEdit; * \code * * * * \endcode +* It can use following parameters: +* - id - name of object attribute +* - type - type of dialog. Possible values: open, save. */ class MODULEBASE_EXPORT ModuleBase_WidgetFileSelector : public ModuleBase_ModelWidget { @@ -39,19 +43,11 @@ class MODULEBASE_EXPORT ModuleBase_WidgetFileSelector : public ModuleBase_ModelW public: /// Constructor /// \param theParent the parent object - /// \param theData the widget configuation. The attribute of the model widget is obtained from - /// \param theParentId is Id of a parent of the current attribute + /// \param theData the widget configuration. The attribute of the model widget is obtained from ModuleBase_WidgetFileSelector(QWidget* theParent, - const Config_WidgetAPI* theData, - const std::string& theParentId); + const Config_WidgetAPI* theData); virtual ~ModuleBase_WidgetFileSelector(); - virtual bool storeValue() const; - - virtual bool restoreValue(); - - QWidget* getControl() const; - virtual QList getControls() const; /// Returns true if a file on the current path in the line edit @@ -65,23 +61,51 @@ class MODULEBASE_EXPORT ModuleBase_WidgetFileSelector : public ModuleBase_ModelW /// Processing of path changing void onPathChanged(); - protected: - /// Returns string containing formats - QString formatsString() const; +protected: + /// Saves the internal parameters to the given feature + /// \return True in success + virtual bool storeValueCustom(); + + virtual bool restoreValueCustom(); + +protected: + /// Converts format to filter string + static QString formatToFilter(const QString & theFormat); + + /// Returns a short format string of theFilter string + static QString filterToShortFormat(const QString & theFilter); + + /// Returns a list of extensions from theFilter + static QStringList filterToExtensions(const QString & theFilter); - /// Return list of validator formats + /// Returns list of validator formats QStringList getValidatorFormats() const; - private: + /// Returns string containing formats + QString filterString() const; + + /// Add an extension to file name if the extension is not defined + /// \param theFileName a file name + /// \param theFilter a file filter + /// \return the file name with extension + static QString applyExtension(const QString& theFileName, const QString& theFilter); + +protected: /// A control for path input QLineEdit* myPathField; - /// Container - QWidget* myMainWidget; - /// A title of open file dialog box QString myTitle; + /// A current format + QString mySelectedFilter; + + /// A title of open file dialog box + enum { + WFS_OPEN, ///< open file + WFS_SAVE ///< save file + } myType; ///< type of dialog + /// Default path QString myDefaultPath; };