2012-10-25 10:45:13 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2014-07-14 08:11:39 +00:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-25 10:45:13 +00:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
**
|
2013-05-24 13:49:24 +00:00
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
2012-10-25 10:45:13 +00:00
|
|
|
**
|
2014-08-21 13:51:22 +00:00
|
|
|
** $QT_BEGIN_LICENSE:LGPL21$
|
2012-10-25 10:45:13 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2014-08-21 13:51:22 +00:00
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
2012-10-25 10:45:13 +00:00
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-08-21 13:51:22 +00:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-25 10:45:13 +00:00
|
|
|
**
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
2014-08-21 13:51:22 +00:00
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2012-10-25 10:45:13 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef FILEDIALOGPANEL_H
|
|
|
|
#define FILEDIALOGPANEL_H
|
|
|
|
|
|
|
|
#include <QGroupBox>
|
|
|
|
#include <QFileDialog>
|
2013-01-16 14:12:29 +00:00
|
|
|
#include <QPointer>
|
2012-10-25 10:45:13 +00:00
|
|
|
|
2013-06-13 17:13:49 +00:00
|
|
|
QT_BEGIN_NAMESPACE
|
2013-01-16 14:12:29 +00:00
|
|
|
class QPushButton;
|
2012-10-25 10:45:13 +00:00
|
|
|
class QCheckBox;
|
|
|
|
class QComboBox;
|
|
|
|
class QLineEdit;
|
|
|
|
class QPlainTextEdit;
|
2013-08-27 12:10:45 +00:00
|
|
|
class QFormLayout;
|
2013-06-13 17:13:49 +00:00
|
|
|
QT_END_NAMESPACE
|
2012-10-25 10:45:13 +00:00
|
|
|
class LabelLineEdit;
|
|
|
|
|
|
|
|
class FileDialogPanel : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit FileDialogPanel(QWidget *parent = 0);
|
|
|
|
|
|
|
|
public slots:
|
2013-01-17 14:49:42 +00:00
|
|
|
void execModal();
|
2012-10-25 10:45:13 +00:00
|
|
|
void showModal();
|
|
|
|
void showNonModal();
|
2013-01-16 14:12:29 +00:00
|
|
|
void deleteNonModalDialog();
|
2013-01-17 14:49:42 +00:00
|
|
|
void deleteModalDialog();
|
2012-10-25 10:45:13 +00:00
|
|
|
void getOpenFileNames();
|
2013-03-14 13:41:47 +00:00
|
|
|
void getOpenFileUrls();
|
2012-10-25 10:45:13 +00:00
|
|
|
void getOpenFileName();
|
2013-03-14 13:41:47 +00:00
|
|
|
void getOpenFileUrl();
|
2012-10-25 10:45:13 +00:00
|
|
|
void getSaveFileName();
|
2013-03-14 13:41:47 +00:00
|
|
|
void getSaveFileUrl();
|
2012-10-25 10:45:13 +00:00
|
|
|
void getExistingDirectory();
|
2013-03-14 13:41:47 +00:00
|
|
|
void getExistingDirectoryUrl();
|
2012-10-25 10:45:13 +00:00
|
|
|
void accepted();
|
|
|
|
void showAcceptedResult();
|
|
|
|
void restoreDefaults();
|
|
|
|
|
2013-01-16 14:12:29 +00:00
|
|
|
private slots:
|
|
|
|
void enableDeleteNonModalDialogButton();
|
2013-01-17 14:49:42 +00:00
|
|
|
void enableDeleteModalDialogButton();
|
2013-08-27 12:10:45 +00:00
|
|
|
void useMimeTypeFilters(bool);
|
2013-01-16 14:12:29 +00:00
|
|
|
|
2012-10-25 10:45:13 +00:00
|
|
|
private:
|
2014-07-14 08:11:39 +00:00
|
|
|
QUrl currentDirectoryUrl() const;
|
2012-10-25 10:45:13 +00:00
|
|
|
QString filterString() const;
|
|
|
|
QFileDialog::Options options() const;
|
2013-03-14 13:41:47 +00:00
|
|
|
QStringList allowedSchemes() const;
|
2012-10-25 10:45:13 +00:00
|
|
|
void applySettings(QFileDialog *d) const;
|
|
|
|
|
2013-08-27 12:10:45 +00:00
|
|
|
QFormLayout *filesLayout;
|
2013-12-10 10:19:16 +00:00
|
|
|
QCheckBox *m_showDirsOnly;
|
2012-10-25 10:45:13 +00:00
|
|
|
QCheckBox *m_readOnly;
|
|
|
|
QCheckBox *m_confirmOverWrite;
|
|
|
|
QCheckBox *m_nameFilterDetailsVisible;
|
|
|
|
QCheckBox *m_resolveSymLinks;
|
|
|
|
QCheckBox *m_native;
|
2013-04-29 11:58:23 +00:00
|
|
|
QCheckBox *m_customDirIcons;
|
2012-10-25 10:45:13 +00:00
|
|
|
QComboBox *m_acceptMode;
|
|
|
|
QComboBox *m_fileMode;
|
|
|
|
QComboBox *m_viewMode;
|
2013-03-14 13:41:47 +00:00
|
|
|
QLineEdit *m_allowedSchemes;
|
2012-10-25 10:45:13 +00:00
|
|
|
QLineEdit *m_defaultSuffix;
|
|
|
|
QLineEdit *m_directory;
|
|
|
|
QLineEdit *m_selectedFileName;
|
|
|
|
QList<LabelLineEdit *> m_labelLineEdits;
|
2013-08-27 12:10:45 +00:00
|
|
|
QCheckBox *m_useMimeTypeFilters;
|
2012-10-25 10:45:13 +00:00
|
|
|
QPlainTextEdit *m_nameFilters;
|
|
|
|
QLineEdit *m_selectedNameFilter;
|
2013-01-16 14:12:29 +00:00
|
|
|
QPushButton *m_deleteNonModalDialogButton;
|
2013-01-17 14:49:42 +00:00
|
|
|
QPushButton *m_deleteModalDialogButton;
|
2012-10-25 10:45:13 +00:00
|
|
|
QString m_result;
|
2013-01-17 14:49:42 +00:00
|
|
|
QPointer<QFileDialog> m_modalDialog;
|
2013-01-16 14:12:29 +00:00
|
|
|
QPointer<QFileDialog> m_nonModalDialog;
|
2012-10-25 10:45:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FILEDIALOGPANEL_H
|