1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*
SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "projectvcspage.h"
#include "ui_projectvcspage.h"
#include <QStackedWidget>
#include <KComboBox>
#include <KLocalizedString>
#include <interfaces/iplugincontroller.h>
#include <interfaces/iplugin.h>
#include <vcs/vcslocation.h>
#include <vcs/widgets/vcsimportmetadatawidget.h>
#include <vcs/interfaces/ibasicversioncontrol.h>
using namespace KDevelop;
ProjectVcsPage::ProjectVcsPage( KDevelop::IPluginController* controller, QWidget * parent )
: AppWizardPageWidget(parent)
, m_currentImportWidget(nullptr)
, m_ui(new Ui::ProjectVcsPage)
{
m_ui->setupUi( this );
const QList<KDevelop::IPlugin*> vcsplugins = controller->allPluginsForExtension(QStringLiteral("org.kdevelop.IBasicVersionControl"));
int idx = 1;
m_ui->vcsImportOptions->insertWidget( 0, new QWidget(this) );
m_ui->vcsTypes->insertItem( 0, i18nc("@item:inlistbox No Version Control Support chosen", "None") );
for (KDevelop::IPlugin* plugin : vcsplugins) {
auto* iface = plugin->extension<KDevelop::IBasicVersionControl>();
if( iface )
{
KDevelop::VcsImportMetadataWidget* widget = iface->createImportMetadataWidget(
m_ui->vcsImportOptions );
if( widget )
{
// untranslated on purpose, as English might be lingua franca at most target users
// perhaps make default string configurable if people request it
widget->setMessage(QStringLiteral("Initial import"));
widget->setSourceLocationEditable( false );
widget->setUseSourceDirForDestination( true );
m_ui->vcsTypes->insertItem( idx, iface->name() );
importWidgets.push_back( widget );
vcsPlugins.push_back( qMakePair( controller->pluginInfo( plugin ).pluginId(), iface->name() ) );
m_ui->vcsImportOptions->insertWidget( idx, widget );
idx++;
}
}
}
connect( m_ui->vcsTypes, QOverload<int>::of(&KComboBox::activated),
m_ui->vcsImportOptions, &QStackedWidget::setCurrentIndex );
connect( m_ui->vcsTypes, QOverload<int>::of(&KComboBox::activated),
this, &ProjectVcsPage::vcsTypeChanged );
vcsTypeChanged(m_ui->vcsTypes->currentIndex());
}
void ProjectVcsPage::vcsTypeChanged( int idx )
{
if (m_currentImportWidget) {
disconnect(m_currentImportWidget, &VcsImportMetadataWidget::changed, this, &ProjectVcsPage::validateData);
}
// first type in list is "no vcs", without an import widget
const int widgetIndex = idx - 1;
m_currentImportWidget = importWidgets.value(widgetIndex);
validateData();
if (m_currentImportWidget) {
connect(m_currentImportWidget, &VcsImportMetadataWidget::changed, this, &ProjectVcsPage::validateData);
}
}
void ProjectVcsPage::validateData()
{
if( shouldContinue() ) {
emit valid();
} else {
emit invalid();
}
}
ProjectVcsPage::~ProjectVcsPage( )
{
delete m_ui;
}
void ProjectVcsPage::setSourceLocation( const QUrl& s )
{
for (KDevelop::VcsImportMetadataWidget* widget : std::as_const(importWidgets)) {
widget->setSourceLocation( KDevelop::VcsLocation( s ) );
}
}
QString ProjectVcsPage::pluginName() const
{
int idx = m_ui->vcsTypes->currentIndex() - 1;
if ( idx < 0 || idx >= vcsPlugins.size())
return QString();
// FIXME: Two return statements
return vcsPlugins[idx].first;
}
QString ProjectVcsPage::commitMessage() const
{
if (!m_currentImportWidget) {
return QString();
}
return m_currentImportWidget->message();
}
QUrl ProjectVcsPage::source() const
{
if (!m_currentImportWidget) {
return QUrl();
}
return m_currentImportWidget->source();
}
KDevelop::VcsLocation ProjectVcsPage::destination() const
{
if (!m_currentImportWidget) {
return KDevelop::VcsLocation();
}
return m_currentImportWidget->destination();
}
bool ProjectVcsPage::shouldContinue()
{
if (!m_currentImportWidget) {
return true;
}
return m_currentImportWidget->hasValidData();
}
#include "moc_projectvcspage.cpp"
|