Mercurial > retraceit
view src/folderselectdialog.h @ 97:4c97abde1c3e
Added tag 1.2 for changeset a9e72af2e6fa
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 29 Jun 2015 15:41:00 +0200 |
parents | c3000fa6ca56 |
children | 0ad468912ff3 |
line wrap: on
line source
#ifndef FOLDERSELECTDIALOG_H #define FOLDERSELECTDIALOG_H /* Copyright (C) 2015 by ETH Zürich * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=2) * and comes with ABSOLUTELY NO WARRANTY! * See LICENSE.txt for details. */ #include <QWidget> #include <QDialog> #include <QItemSelection> #include "filterwidget.h" class QTableView; class IPAwareSortModel; class FilterWidget; class QStandardItemModel; class QLabel; class QPushButton; class QLineEdit; /** * @class FolderSelectDialog * @brief Dialog for Folder configurable folder selection. */ class FolderSelectDialog : public QDialog { Q_OBJECT public: /** @brief initialize a folder select dialog with a start folder and * for a specific folder name pattern. * * If the parameter pathLabel is not empty it includes a path selection * area. * */ FolderSelectDialog(const QString& startFolder, const QString& folderPattern, const QString& pathLabel = QString(), QWidget * parent = 0, Qt::WindowFlags f = 0); void setFolder(const QString& folder); protected: void setupGUI(); protected slots: /** @brief The user wants to accept the selection */ void wantToAccept(); /** @brief Open the folder selection dialog for the output folder */ void changeFolderClicked(); /** @brief try to load the folder line into the model */ void goClicked(); /** @brief enable or disable the go button depending on the path. */ void pathLineChanged(); /** @brief enable or disable the ok button depending on the selection. */ void selectionChanged (const QItemSelection& selected, const QItemSelection& deselected); Q_SIGNALS: /** @brief emited before the dialog is closed when a folder is selected */ void folderSelected(const QString& folder); /** @brief Back button was clicked */ void backClicked(); private: QTableView *mView; FilterWidget *mFilterWidget; IPAwareSortModel *mSortModel; QString mCurFolder, mFolderPattern; QString mPathLabelString; QStandardItemModel *mModel; QLabel *mPathLabel; QLineEdit *mPathLineEdit; QPushButton *mGoButton, *mOkButton; bool mShowPathSelection; }; #endif // FOLDERSELECTDIALOG_H