/src/gui/qgsfilewidget.h

https://gitlab.com/lbartoletti/QGIS · C Header · 276 lines · 118 code · 54 blank · 104 comment · 1 complexity · d12626494d3ab5f45926c4656dd1f2f6 MD5 · raw file

  1. /***************************************************************************
  2. qgsfilewidget.h
  3. ---------------------
  4. begin : 17.12.2015
  5. copyright : (C) 2015 by Denis Rouzaud
  6. email : denis.rouzaud@gmail.com
  7. ***************************************************************************
  8. * *
  9. * This program is free software; you can redistribute it and/or modify *
  10. * it under the terms of the GNU General Public License as published by *
  11. * the Free Software Foundation; either version 2 of the License, or *
  12. * (at your option) any later version. *
  13. * *
  14. ***************************************************************************/
  15. #ifndef QGSFILEWIDGET_H
  16. #define QGSFILEWIDGET_H
  17. class QLabel;
  18. class QToolButton;
  19. class QVariant;
  20. class QgsFileDropEdit;
  21. class QHBoxLayout;
  22. #include <QWidget>
  23. #include "qgis_gui.h"
  24. #include "qgis_sip.h"
  25. #include "qgshighlightablelineedit.h"
  26. /**
  27. * \ingroup gui
  28. * \brief The QgsFileWidget class creates a widget for selecting a file or a folder.
  29. */
  30. class GUI_EXPORT QgsFileWidget : public QWidget
  31. {
  32. #ifdef SIP_RUN
  33. SIP_CONVERT_TO_SUBCLASS_CODE
  34. if ( qobject_cast<QgsFileWidget *>( sipCpp ) )
  35. sipType = sipType_QgsFileWidget;
  36. else
  37. sipType = NULL;
  38. SIP_END
  39. #endif
  40. Q_OBJECT
  41. Q_PROPERTY( bool fileWidgetButtonVisible READ fileWidgetButtonVisible WRITE setFileWidgetButtonVisible )
  42. Q_PROPERTY( bool useLink READ useLink WRITE setUseLink )
  43. Q_PROPERTY( bool fullUrl READ fullUrl WRITE setFullUrl )
  44. Q_PROPERTY( QString dialogTitle READ dialogTitle WRITE setDialogTitle )
  45. Q_PROPERTY( QString filter READ filter WRITE setFilter )
  46. Q_PROPERTY( QString defaultRoot READ defaultRoot WRITE setDefaultRoot )
  47. Q_PROPERTY( StorageMode storageMode READ storageMode WRITE setStorageMode )
  48. Q_PROPERTY( RelativeStorage relativeStorage READ relativeStorage WRITE setRelativeStorage )
  49. public:
  50. /**
  51. * \brief The StorageMode enum determines if the file picker should pick files or directories
  52. */
  53. enum StorageMode
  54. {
  55. GetFile, //!< Select a single file
  56. GetDirectory, //!< Select a directory
  57. GetMultipleFiles, //!< Select multiple files
  58. SaveFile, //!< Select a single new or pre-existing file
  59. };
  60. Q_ENUM( StorageMode )
  61. /**
  62. * \brief The RelativeStorage enum determines if path is absolute, relative to the current project path or relative to a defined default path.
  63. */
  64. enum RelativeStorage
  65. {
  66. Absolute,
  67. RelativeProject,
  68. RelativeDefaultPath
  69. };
  70. Q_ENUM( RelativeStorage )
  71. /**
  72. * \brief QgsFileWidget creates a widget for selecting a file or a folder.
  73. */
  74. explicit QgsFileWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr );
  75. /**
  76. * \brief Returns the current file path(s)
  77. * when multiple files are selected, they are quoted and separated
  78. * by a single space (for example: '"/path/foo" "path/bar"')
  79. * \see splitFilePaths()
  80. */
  81. QString filePath();
  82. /**
  83. * \brief Split the the quoted and space separated \a path and returns a QString list
  84. * \see filePath
  85. */
  86. static QStringList splitFilePaths( const QString &path );
  87. //! Sets the file path
  88. void setFilePath( QString path );
  89. //! defines if the widget is readonly
  90. void setReadOnly( bool readOnly );
  91. //! returns the open file dialog title
  92. QString dialogTitle() const;
  93. /**
  94. * \brief setDialogTitle defines the open file dialog title
  95. * \note if not defined, the title is "Select a file" or "Select a directory" or "Select one or more files" depending on the configuration.
  96. */
  97. void setDialogTitle( const QString &title );
  98. //! returns the filters used for QDialog::getOpenFileName
  99. QString filter() const;
  100. /**
  101. * \brief setFilter sets the filter used by the model to filters. The filter is used to specify the kind of files that should be shown.
  102. * \param filter Only files that match the given filter are shown, it may be an empty string. If you want multiple filters, separate them with ';;',
  103. */
  104. void setFilter( const QString &filter );
  105. /**
  106. * Sets the selected filter when the file dialog opens.
  107. */
  108. void setSelectedFilter( const QString &selectedFilter ) { mSelectedFilter = selectedFilter; }
  109. /**
  110. * Returns the selected filter from the last opened file dialog.
  111. */
  112. QString selectedFilter() const { return mSelectedFilter; }
  113. /**
  114. * Sets whether a confirmation to overwrite an existing file will appear.
  115. * By default, a confirmation will appear.
  116. * \param confirmOverwrite If set to TRUE, an overwrite confirmation will be shown
  117. */
  118. void setConfirmOverwrite( bool confirmOverwrite ) { mConfirmOverwrite = confirmOverwrite; }
  119. /**
  120. * Returns whether a confirmation will be shown when overwriting an existing file
  121. */
  122. bool confirmOverwrite() const { return mConfirmOverwrite; }
  123. //! determines if the tool button is shown
  124. bool fileWidgetButtonVisible() const;
  125. //! determines if the tool button is shown
  126. void setFileWidgetButtonVisible( bool visible );
  127. //! determines if the file path will be shown as a link
  128. bool useLink() const;
  129. //! determines if the file path will be shown as a link
  130. void setUseLink( bool useLink );
  131. //! returns if the links shows the full path or not
  132. bool fullUrl() const;
  133. //! determines if the links shows the full path or not
  134. void setFullUrl( bool fullUrl );
  135. //! returns the default root path
  136. QString defaultRoot() const;
  137. //! determines the default root path used as the first shown location when picking a file and used if the RelativeStorage is RelativeDefaultPath
  138. void setDefaultRoot( const QString &defaultRoot );
  139. //! returns the storage mode (i.e. file or directory)
  140. QgsFileWidget::StorageMode storageMode() const;
  141. //! determines the storage mode (i.e. file or directory)
  142. void setStorageMode( QgsFileWidget::StorageMode storageMode );
  143. //! returns if the relative path is with respect to the project path or the default path
  144. QgsFileWidget::RelativeStorage relativeStorage() const;
  145. //! determines if the relative path is with respect to the project path or the default path
  146. void setRelativeStorage( QgsFileWidget::RelativeStorage relativeStorage );
  147. /**
  148. * Returns a pointer to the widget's line edit, which can be used to customize
  149. * the appearance and behavior of the line edit portion of the widget.
  150. * \since QGIS 3.0
  151. */
  152. QgsFilterLineEdit *lineEdit();
  153. signals:
  154. /**
  155. * Emitted whenever the current file or directory \a path is changed.
  156. */
  157. void fileChanged( const QString &path );
  158. /**
  159. * Emitted before and after showing the file dialog.
  160. *
  161. * \note not available in Python bindings
  162. * \since QGIS 3.10
  163. */
  164. void blockEvents( bool ) SIP_SKIP;
  165. private slots:
  166. void openFileDialog();
  167. void textEdited( const QString &path );
  168. private:
  169. QString mFilePath;
  170. bool mButtonVisible = true;
  171. bool mUseLink = false;
  172. bool mFullUrl = false;
  173. QString mDialogTitle;
  174. QString mFilter;
  175. QString mSelectedFilter;
  176. QString mDefaultRoot;
  177. bool mConfirmOverwrite = true;
  178. StorageMode mStorageMode = GetFile;
  179. RelativeStorage mRelativeStorage = Absolute;
  180. QLabel *mLinkLabel = nullptr;
  181. QgsFileDropEdit *mLineEdit = nullptr;
  182. QToolButton *mFileWidgetButton = nullptr;
  183. QHBoxLayout *mLayout = nullptr;
  184. //! returns a HTML code with a link to the given file path
  185. QString toUrl( const QString &path ) const;
  186. //! Returns a filePath with relative path options applied (or not) !
  187. QString relativePath( const QString &filePath, bool removeRelative ) const;
  188. friend class TestQgsFileWidget;
  189. };
  190. ///@cond PRIVATE
  191. #ifndef SIP_RUN
  192. /**
  193. * \ingroup gui
  194. * A line edit for capturing file names that can have files dropped onto
  195. * it via drag & drop.
  196. *
  197. * Dropping can be limited to files only, files with a specific extension
  198. * or directories only. By default, dropping is limited to files only.
  199. * \note not available in Python bindings
  200. */
  201. class GUI_EXPORT QgsFileDropEdit: public QgsHighlightableLineEdit
  202. {
  203. Q_OBJECT
  204. public:
  205. QgsFileDropEdit( QWidget *parent SIP_TRANSFERTHIS = nullptr );
  206. void setStorageMode( QgsFileWidget::StorageMode storageMode ) { mStorageMode = storageMode; }
  207. void setFilters( const QString &filters );
  208. protected:
  209. void dragEnterEvent( QDragEnterEvent *event ) override;
  210. void dragLeaveEvent( QDragLeaveEvent *event ) override;
  211. void dropEvent( QDropEvent *event ) override;
  212. private:
  213. //! Returns file name if object meets drop criteria.
  214. QString acceptableFilePath( QDropEvent *event ) const;
  215. QStringList mAcceptableExtensions;
  216. QgsFileWidget::StorageMode mStorageMode = QgsFileWidget::GetFile;
  217. friend class TestQgsFileWidget;
  218. };
  219. #endif
  220. ///@endcond
  221. #endif // QGSFILEWIDGET_H