2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** No Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** This file contains pre-release code and may not be distributed.
|
|
|
|
|
** You may use this file in accordance with the terms and conditions
|
|
|
|
|
** contained in the Technology Preview License Agreement accompanying
|
|
|
|
|
** this package.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at qt-info@nokia.com.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-05 12:21:18 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifndef PATHCHOOSER_H
|
|
|
|
|
#define PATHCHOOSER_H
|
|
|
|
|
|
|
|
|
|
#include "utils_global.h"
|
|
|
|
|
|
|
|
|
|
#include <QtGui/QWidget>
|
2010-07-02 16:42:34 +02:00
|
|
|
|
2010-09-16 12:50:18 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QAbstractButton;
|
|
|
|
|
class QLineEdit;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
2010-09-23 11:06:12 +02:00
|
|
|
class Environment;
|
|
|
|
|
class PathChooserPrivate;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-03-19 16:33:44 +01:00
|
|
|
/**
|
|
|
|
|
* A control that let's the user choose a path, consisting of a QLineEdit and
|
|
|
|
|
* a "Browse" button. Has some validation logic for embedding into QWizardPage.
|
|
|
|
|
*/
|
2009-05-08 12:09:21 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT PathChooser : public QWidget
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
Q_DISABLE_COPY(PathChooser)
|
|
|
|
|
Q_OBJECT
|
2009-06-29 14:47:04 +02:00
|
|
|
Q_ENUMS(Kind)
|
2008-12-02 12:01:29 +01:00
|
|
|
Q_PROPERTY(QString path READ path WRITE setPath DESIGNABLE true)
|
2009-06-29 14:47:04 +02:00
|
|
|
Q_PROPERTY(QString promptDialogTitle READ promptDialogTitle WRITE setPromptDialogTitle DESIGNABLE true)
|
|
|
|
|
Q_PROPERTY(Kind expectedKind READ expectedKind WRITE setExpectedKind DESIGNABLE true)
|
2010-09-17 13:59:59 +02:00
|
|
|
Q_PROPERTY(QString baseDirectory READ baseDirectory WRITE setBaseDirectory DESIGNABLE true)
|
2011-02-22 12:25:19 +01:00
|
|
|
Q_PROPERTY(QStringList commandVersionArguments READ commandVersionArguments WRITE setCommandVersionArguments)
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
public:
|
2008-12-05 18:51:07 +01:00
|
|
|
static const char * const browseButtonLabel;
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
explicit PathChooser(QWidget *parent = 0);
|
|
|
|
|
virtual ~PathChooser();
|
|
|
|
|
|
2008-12-05 18:51:07 +01:00
|
|
|
enum Kind {
|
2011-02-21 12:42:20 +01:00
|
|
|
ExistingDirectory,
|
|
|
|
|
Directory, // A directory, doesn't need to exist
|
2008-12-05 18:51:07 +01:00
|
|
|
File,
|
2010-09-23 11:06:12 +02:00
|
|
|
ExistingCommand, // A command that must exist at the time of selection
|
|
|
|
|
Command, // A command that may or may not exist at the time of selection (e.g. result of a build)
|
2010-08-16 18:23:30 +02:00
|
|
|
Any
|
2008-12-05 18:51:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Default is <Directory>
|
|
|
|
|
void setExpectedKind(Kind expected);
|
2009-06-29 14:47:04 +02:00
|
|
|
Kind expectedKind() const;
|
2008-12-05 18:51:07 +01:00
|
|
|
|
|
|
|
|
void setPromptDialogTitle(const QString &title);
|
2009-06-29 14:47:04 +02:00
|
|
|
QString promptDialogTitle() const;
|
|
|
|
|
|
|
|
|
|
void setPromptDialogFilter(const QString &filter);
|
|
|
|
|
QString promptDialogFilter() const;
|
2008-12-05 18:51:07 +01:00
|
|
|
|
2008-12-19 18:25:20 +01:00
|
|
|
void setInitialBrowsePathBackup(const QString &path);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
bool isValid() const;
|
|
|
|
|
QString errorMessage() const;
|
|
|
|
|
|
|
|
|
|
QString path() const;
|
2010-09-23 11:06:12 +02:00
|
|
|
QString rawPath() const; // The raw unexpanded input.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-09-17 13:59:59 +02:00
|
|
|
QString baseDirectory() const;
|
|
|
|
|
void setBaseDirectory(const QString &directory);
|
|
|
|
|
|
2010-09-23 11:06:12 +02:00
|
|
|
void setEnvironment(const Utils::Environment &env);
|
|
|
|
|
|
2009-03-19 16:33:44 +01:00
|
|
|
/** Returns the suggested label title when used in a form layout. */
|
2008-12-02 12:01:29 +01:00
|
|
|
static QString label();
|
|
|
|
|
|
2009-03-17 16:06:19 +01:00
|
|
|
virtual bool validatePath(const QString &path, QString *errorMessage = 0);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-03-19 16:33:44 +01:00
|
|
|
/** Return the home directory, which needs some fixing under Windows. */
|
2008-12-02 12:01:29 +01:00
|
|
|
static QString homePath();
|
|
|
|
|
|
2009-04-17 09:03:32 +02:00
|
|
|
void addButton(const QString &text, QObject *receiver, const char *slotFunc);
|
2009-07-22 15:18:42 +02:00
|
|
|
QAbstractButton *buttonAtIndex(int index) const;
|
2009-04-17 09:03:32 +02:00
|
|
|
|
2010-09-16 12:50:18 +02:00
|
|
|
QLineEdit *lineEdit() const;
|
|
|
|
|
|
2011-02-22 12:25:19 +01:00
|
|
|
// For PathChoosers of 'Command' type, this property specifies the arguments
|
|
|
|
|
// required to obtain the tool version (commonly, '--version'). Setting them
|
|
|
|
|
// causes the version to be displayed as a tooltip.
|
|
|
|
|
QStringList commandVersionArguments() const;
|
|
|
|
|
void setCommandVersionArguments(const QStringList &arguments);
|
|
|
|
|
|
|
|
|
|
// Utility to run a tool and return its stdout.
|
|
|
|
|
static QString toolVersion(const QString &binary, const QStringList &arguments);
|
|
|
|
|
// Install a tooltip on lineedits used for binaries showing the version.
|
|
|
|
|
static void installLineEditVersionToolTip(QLineEdit *le, const QStringList &arguments);
|
|
|
|
|
|
2008-12-05 18:51:07 +01:00
|
|
|
private:
|
|
|
|
|
// Returns overridden title or the one from <title>
|
|
|
|
|
QString makeDialogTitle(const QString &title);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
signals:
|
|
|
|
|
void validChanged();
|
2009-10-22 17:57:16 +02:00
|
|
|
void validChanged(bool validState);
|
2009-06-19 17:55:47 +02:00
|
|
|
void changed(const QString &text);
|
2009-03-19 09:32:09 +01:00
|
|
|
void editingFinished();
|
2008-12-19 18:25:20 +01:00
|
|
|
void beforeBrowsing();
|
2008-12-19 15:32:21 +01:00
|
|
|
void browsingFinished();
|
2008-12-02 12:01:29 +01:00
|
|
|
void returnPressed();
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void setPath(const QString &);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void slotBrowse();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
PathChooserPrivate *m_d;
|
|
|
|
|
};
|
|
|
|
|
|
2008-12-02 14:09:21 +01:00
|
|
|
} // namespace Utils
|
2009-10-05 11:06:05 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#endif // PATHCHOOSER_H
|