X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetFileSelector.h;h=5f8aad35803ad1e47ab0b831bca2579897ce3925;hb=63d86e00e1e6a482fcad527ae0b883deccceed11;hp=3b0b0833ff823df2e5b50fbbe8ab80ef3f8e6b18;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetFileSelector.h b/src/ModuleBase/ModuleBase_WidgetFileSelector.h index 3b0b0833f..5f8aad358 100644 --- a/src/ModuleBase/ModuleBase_WidgetFileSelector.h +++ b/src/ModuleBase/ModuleBase_WidgetFileSelector.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2020 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 @@ -12,18 +12,11 @@ // // 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 +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // -/* - * ModuleBase_WidgetFileSelector.h - * - * Created on: Aug 28, 2014 - * Author: sbh - */ - #ifndef MODULEBASE_WIDGETFILESELECTOR_H_ #define MODULEBASE_WIDGETFILESELECTOR_H_ @@ -34,8 +27,9 @@ #include #include -class QWidget; +class QFileDialog; class QLineEdit; +class QWidget; /** * \ingroup GUI @@ -71,7 +65,7 @@ class MODULEBASE_EXPORT ModuleBase_WidgetFileSelector : public ModuleBase_ModelW /// exists and has supported format bool isCurrentPathValid(); - public slots: +public slots: /// Processing of path selection button press void onPathSelectionBtn(); @@ -79,6 +73,9 @@ class MODULEBASE_EXPORT ModuleBase_WidgetFileSelector : public ModuleBase_ModelW void onPathChanged(); 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(); @@ -110,6 +107,7 @@ protected: protected: /// A control for path input QLineEdit* myPathField; + QFileDialog* myFileDialog; ///< started dialog /// A title of open file dialog box QString myTitle; @@ -122,9 +120,6 @@ protected: WFS_OPEN, ///< open file WFS_SAVE ///< save file } myType; ///< type of dialog - - /// Default path - QString myDefaultPath; }; #endif /* MODULEBASE_WIDGETFILESELECTOR_H_ */