mirror of
https://github.com/reactos/CMake.git
synced 2025-01-07 19:51:29 +00:00
86578eccf2
Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
119 lines
3.2 KiB
C++
119 lines
3.2 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#include "QCMakeWidgets.h"
|
|
|
|
#include <QDirModel>
|
|
#include <QFileDialog>
|
|
#include <QFileInfo>
|
|
#include <QResizeEvent>
|
|
#include <QToolButton>
|
|
|
|
QCMakeFileEditor::QCMakeFileEditor(QWidget* p, const QString& var)
|
|
: QLineEdit(p)
|
|
, Variable(var)
|
|
{
|
|
this->ToolButton = new QToolButton(this);
|
|
this->ToolButton->setText("...");
|
|
this->ToolButton->setCursor(QCursor(Qt::ArrowCursor));
|
|
QObject::connect(this->ToolButton, SIGNAL(clicked(bool)), this,
|
|
SLOT(chooseFile()));
|
|
}
|
|
|
|
QCMakeFilePathEditor::QCMakeFilePathEditor(QWidget* p, const QString& var)
|
|
: QCMakeFileEditor(p, var)
|
|
{
|
|
this->setCompleter(new QCMakeFileCompleter(this, false));
|
|
}
|
|
|
|
QCMakePathEditor::QCMakePathEditor(QWidget* p, const QString& var)
|
|
: 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;
|
|
if (this->Variable.isEmpty()) {
|
|
title = tr("Select File");
|
|
} else {
|
|
title = tr("Select File for %1");
|
|
title = title.arg(this->Variable);
|
|
}
|
|
this->fileDialogExists(true);
|
|
path =
|
|
QFileDialog::getOpenFileName(this, title, info.absolutePath(), QString(),
|
|
CM_NULLPTR, QFileDialog::DontResolveSymlinks);
|
|
this->fileDialogExists(false);
|
|
|
|
if (!path.isEmpty()) {
|
|
this->setText(QDir::fromNativeSeparators(path));
|
|
}
|
|
}
|
|
|
|
void QCMakePathEditor::chooseFile()
|
|
{
|
|
// choose a file and set it
|
|
QString path;
|
|
QString title;
|
|
if (this->Variable.isEmpty()) {
|
|
title = tr("Select Path");
|
|
} else {
|
|
title = tr("Select Path for %1");
|
|
title = title.arg(this->Variable);
|
|
}
|
|
this->fileDialogExists(true);
|
|
path = QFileDialog::getExistingDirectory(this, title, this->text(),
|
|
QFileDialog::ShowDirsOnly |
|
|
QFileDialog::DontResolveSymlinks);
|
|
this->fileDialogExists(false);
|
|
if (!path.isEmpty()) {
|
|
this->setText(QDir::fromNativeSeparators(path));
|
|
}
|
|
}
|
|
|
|
// use same QDirModel for all completers
|
|
static QDirModel* fileDirModel()
|
|
{
|
|
static QDirModel* m = CM_NULLPTR;
|
|
if (!m) {
|
|
m = new QDirModel();
|
|
}
|
|
return m;
|
|
}
|
|
static QDirModel* pathDirModel()
|
|
{
|
|
static QDirModel* m = CM_NULLPTR;
|
|
if (!m) {
|
|
m = new QDirModel();
|
|
m->setFilter(QDir::AllDirs | QDir::Drives | QDir::NoDotAndDotDot);
|
|
}
|
|
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));
|
|
}
|