cmake/Source/QtDialog/QCMakeWidgets.cxx

121 lines
3.2 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "QCMakeWidgets.h"
2020-02-01 23:06:01 +01:00
#include <utility>
#include <QDirModel>
#include <QFileDialog>
2016-07-09 11:21:54 +02:00
#include <QFileInfo>
#include <QResizeEvent>
2016-07-09 11:21:54 +02:00
#include <QToolButton>
2019-11-11 23:01:05 +01:00
QCMakeFileEditor::QCMakeFileEditor(QWidget* p, QString var)
2016-07-09 11:21:54 +02:00
: QLineEdit(p)
2019-11-11 23:01:05 +01:00
, Variable(std::move(var))
{
this->ToolButton = new QToolButton(this);
this->ToolButton->setText("...");
this->ToolButton->setCursor(QCursor(Qt::ArrowCursor));
2016-07-09 11:21:54 +02:00
QObject::connect(this->ToolButton, SIGNAL(clicked(bool)), this,
SLOT(chooseFile()));
}
QCMakeFilePathEditor::QCMakeFilePathEditor(QWidget* p, const QString& var)
2016-07-09 11:21:54 +02:00
: QCMakeFileEditor(p, var)
{
this->setCompleter(new QCMakeFileCompleter(this, false));
}
QCMakePathEditor::QCMakePathEditor(QWidget* p, const QString& var)
2016-07-09 11:21:54 +02:00
: QCMakeFileEditor(p, var)
{
this->setCompleter(new QCMakeFileCompleter(this, true));
}
void QCMakeFileEditor::resizeEvent(QResizeEvent* e)
{
// make the tool button fit on the right side
int h = e->size().height();
// move the line edit to make room for the tool button
this->setContentsMargins(0, 0, h, 0);
// put the tool button in its place
this->ToolButton->resize(h, h);
this->ToolButton->move(this->width() - h, 0);
}
void QCMakeFilePathEditor::chooseFile()
{
// choose a file and set it
QString path;
QFileInfo info(this->text());
QString title;
2016-07-09 11:21:54 +02:00
if (this->Variable.isEmpty()) {
title = tr("Select File");
2016-07-09 11:21:54 +02:00
} else {
title = tr("Select File for %1");
title = title.arg(this->Variable);
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
emit this->fileDialogExists(true);
2016-07-09 11:21:54 +02:00
path =
QFileDialog::getOpenFileName(this, title, info.absolutePath(), QString(),
2018-01-26 17:06:56 +01:00
nullptr, QFileDialog::DontResolveSymlinks);
2017-07-20 19:35:53 +02:00
emit this->fileDialogExists(false);
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
if (!path.isEmpty()) {
this->setText(QDir::fromNativeSeparators(path));
2016-07-09 11:21:54 +02:00
}
}
void QCMakePathEditor::chooseFile()
{
// choose a file and set it
QString path;
QString title;
2016-07-09 11:21:54 +02:00
if (this->Variable.isEmpty()) {
title = tr("Select Path");
2016-07-09 11:21:54 +02:00
} else {
title = tr("Select Path for %1");
title = title.arg(this->Variable);
2016-07-09 11:21:54 +02:00
}
2017-07-20 19:35:53 +02:00
emit this->fileDialogExists(true);
2015-04-27 22:25:09 +02:00
path = QFileDialog::getExistingDirectory(this, title, this->text(),
2016-07-09 11:21:54 +02:00
QFileDialog::ShowDirsOnly |
QFileDialog::DontResolveSymlinks);
2017-07-20 19:35:53 +02:00
emit this->fileDialogExists(false);
2016-07-09 11:21:54 +02:00
if (!path.isEmpty()) {
this->setText(QDir::fromNativeSeparators(path));
2016-07-09 11:21:54 +02:00
}
}
// use same QDirModel for all completers
static QDirModel* fileDirModel()
{
2018-01-26 17:06:56 +01:00
static QDirModel* m = nullptr;
2016-07-09 11:21:54 +02:00
if (!m) {
m = new QDirModel();
2016-07-09 11:21:54 +02:00
}
return m;
}
static QDirModel* pathDirModel()
{
2018-01-26 17:06:56 +01:00
static QDirModel* m = nullptr;
2016-07-09 11:21:54 +02:00
if (!m) {
m = new QDirModel();
m->setFilter(QDir::AllDirs | QDir::Drives | QDir::NoDotAndDotDot);
2016-07-09 11:21:54 +02:00
}
return m;
}
QCMakeFileCompleter::QCMakeFileCompleter(QObject* o, bool dirs)
: QCompleter(o)
{
QDirModel* m = dirs ? pathDirModel() : fileDirModel();
this->setModel(m);
}
QString QCMakeFileCompleter::pathFromIndex(const QModelIndex& idx) const
{
return QDir::fromNativeSeparators(QCompleter::pathFromIndex(idx));
}