X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetFileSelector.h;h=28e31619a6ff321ee4b89bcbf8241d2716d16914;hb=926337616567c4d5525773a9cb31a5afbbf08e15;hp=2133fe786aebda828553e6972886b9be34879b1d;hpb=3874b57fe5aba25ff5aee2a07654fc23c1ee8eb0;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetFileSelector.h b/src/ModuleBase/ModuleBase_WidgetFileSelector.h index 2133fe786..28e31619a 100644 --- a/src/ModuleBase/ModuleBase_WidgetFileSelector.h +++ b/src/ModuleBase/ModuleBase_WidgetFileSelector.h @@ -1,11 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -/* - * ModuleBase_WidgetFileSelector.h - * - * Created on: Aug 28, 2014 - * Author: sbh - */ +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// 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 for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #ifndef MODULEBASE_WIDGETFILESELECTOR_H_ #define MODULEBASE_WIDGETFILESELECTOR_H_ @@ -17,50 +28,99 @@ #include #include -class QWidget; +class QFileDialog; class QLineEdit; +class QWidget; +/** +* \ingroup GUI +* Implementation of model widget for open file widget. +* It can be defined as following: +* \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 { Q_OBJECT public: + /// Constructor + /// \param theParent the parent object + /// \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(); - /// Saves the internal parameters to the given feature - /// \param theObject a model feature to be changed - virtual bool storeValue() const; - - virtual bool restoreValue(); - - /// Returns the internal parent wiget control, that can be shown anywhere - /// \returns the widget - QWidget* getControl() const; - - /// Returns list of widget controls - /// \return a control list virtual QList getControls() const; /// Returns true if a file on the current path in the line edit /// exists and has supported format bool isCurrentPathValid(); - public slots: +public slots: + /// Processing of path selection button press void onPathSelectionBtn(); + + /// Processing of path changing void onPathChanged(); - protected: - QString formatsString() const; +protected: + /// Reject the current editor dialog if it is shown and returns true. + virtual bool processEscape(); + + /// 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); + + /// 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; - QWidget* myMainWidget; + QFileDialog* myFileDialog; ///< started dialog + /// A title of open file dialog box QString myTitle; - QString myDefaultPath; + + /// 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 }; #endif /* MODULEBASE_WIDGETFILESELECTOR_H_ */