2020-05-01 18:20:56 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2020 Alexis Jeandet.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** 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
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "tooltreeitem.h"
|
|
|
|
|
#include <utils/utilsicons.h>
|
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QUuid>
|
|
|
|
|
|
|
|
|
|
namespace MesonProjectManager {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
ToolTreeItem::ToolTreeItem(const QString &name)
|
|
|
|
|
: m_name{name}
|
|
|
|
|
, m_autoDetected{false}
|
2020-06-26 13:59:38 +02:00
|
|
|
, m_id(Utils::Id::fromString(QUuid::createUuid().toString()))
|
2020-05-01 18:20:56 +02:00
|
|
|
, m_unsavedChanges{true}
|
|
|
|
|
{
|
|
|
|
|
self_check();
|
|
|
|
|
update_tooltip();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ToolTreeItem::ToolTreeItem(const MesonTools::Tool_t &tool)
|
|
|
|
|
: m_name{tool->name()}
|
|
|
|
|
, m_executable{tool->exe()}
|
|
|
|
|
, m_autoDetected{tool->autoDetected()}
|
|
|
|
|
, m_id{tool->id()}
|
|
|
|
|
{
|
|
|
|
|
m_tooltip = tr("Version: %1").arg(tool->version().toQString());
|
|
|
|
|
self_check();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ToolTreeItem::ToolTreeItem(const ToolTreeItem &other)
|
|
|
|
|
: m_name{tr("Clone of %1").arg(other.m_name)}
|
|
|
|
|
, m_executable{other.m_executable}
|
|
|
|
|
, m_autoDetected{false}
|
2020-06-26 13:59:38 +02:00
|
|
|
, m_id{Utils::Id::fromString(QUuid::createUuid().toString())}
|
2020-05-01 18:20:56 +02:00
|
|
|
, m_unsavedChanges{true}
|
|
|
|
|
{
|
|
|
|
|
self_check();
|
|
|
|
|
update_tooltip();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant ToolTreeItem::data(int column, int role) const
|
|
|
|
|
{
|
|
|
|
|
switch (role) {
|
|
|
|
|
case Qt::DisplayRole: {
|
|
|
|
|
switch (column) {
|
|
|
|
|
case 0: {
|
|
|
|
|
return m_name;
|
|
|
|
|
}
|
|
|
|
|
case 1: {
|
|
|
|
|
return m_executable.toUserOutput();
|
|
|
|
|
}
|
|
|
|
|
} // switch (column)
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
case Qt::FontRole: {
|
|
|
|
|
QFont font;
|
|
|
|
|
font.setBold(m_unsavedChanges);
|
|
|
|
|
return font;
|
|
|
|
|
}
|
|
|
|
|
case Qt::ToolTipRole: {
|
|
|
|
|
if (!m_pathExists)
|
|
|
|
|
return QCoreApplication::translate("MesonProjectManager::Internal::ToolTreeItem",
|
|
|
|
|
"Meson executable path does not exist.");
|
|
|
|
|
if (!m_pathIsFile)
|
|
|
|
|
return QCoreApplication::translate("MesonProjectManager::Internal::ToolTreeItem",
|
|
|
|
|
"Meson executable path is not a file.");
|
|
|
|
|
if (!m_pathIsExecutable)
|
|
|
|
|
return QCoreApplication::translate("MesonProjectManager::Internal::ToolTreeItem",
|
|
|
|
|
"Meson executable path is not executable.");
|
|
|
|
|
return m_tooltip;
|
|
|
|
|
}
|
|
|
|
|
case Qt::DecorationRole: {
|
|
|
|
|
if (column == 0 && (!m_pathExists || !m_pathIsFile || !m_pathIsExecutable))
|
|
|
|
|
return Utils::Icons::CRITICAL.icon();
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ToolTreeItem::update(const QString &name, const Utils::FilePath &exe)
|
|
|
|
|
{
|
|
|
|
|
m_unsavedChanges = true;
|
|
|
|
|
m_name = name;
|
|
|
|
|
if (exe != m_executable) {
|
|
|
|
|
m_executable = exe;
|
|
|
|
|
self_check();
|
|
|
|
|
update_tooltip();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ToolTreeItem::self_check()
|
|
|
|
|
{
|
|
|
|
|
m_pathExists = m_executable.exists();
|
|
|
|
|
m_pathIsFile = m_executable.toFileInfo().isFile();
|
|
|
|
|
m_pathIsExecutable = m_executable.toFileInfo().isExecutable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ToolTreeItem::update_tooltip(const Version &version)
|
|
|
|
|
{
|
|
|
|
|
if (version.isValid)
|
|
|
|
|
m_tooltip = tr("Version: %1").arg(version.toQString());
|
|
|
|
|
else
|
|
|
|
|
m_tooltip = tr("Cannot get tool version.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ToolTreeItem::update_tooltip()
|
|
|
|
|
{
|
|
|
|
|
update_tooltip(MesonWrapper::read_version(m_executable));
|
|
|
|
|
}
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace MesonProjectManager
|