diff --git a/util/shellutils.cpp b/util/shellutils.cpp index 2863dc27a3..bad302514a 100644 --- a/util/shellutils.cpp +++ b/util/shellutils.cpp @@ -1,109 +1,109 @@ /* * This file is part of KDevelop * * Copyright 2012 Ivan Shapovalov * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "shellutils.h" #include #include #include #include #include #include #include #include #include #include namespace KDevelop { bool askUser( const QString& mainText, const QString& ttyPrompt, const QString& mboxTitle, const QString& mboxAdditionalText, bool ttyDefaultToYes ) { if( !qobject_cast(qApp) ) { // no ui-mode e.g. for duchainify and other tools QTextStream out( stdout ); out << mainText << endl; QTextStream in( stdin ); QString input; forever { if( ttyDefaultToYes ) { out << QStringLiteral( "%1: [Y/n] " ).arg( ttyPrompt ) << flush; } else { out << QStringLiteral( "%1: [y/N] ").arg( ttyPrompt ) << flush; } input = in.readLine().trimmed(); if( input.isEmpty() ) { return ttyDefaultToYes; } else if( input.toLower() == QLatin1String("y") ) { return true; } else if( input.toLower() == QLatin1String("n") ) { return false; } } } else { int userAnswer = KMessageBox::questionYesNo( ICore::self()->uiController()->activeMainWindow(), mainText + "\n\n" + mboxAdditionalText, mboxTitle, KStandardGuiItem::ok(), KStandardGuiItem::cancel() ); return userAnswer == KMessageBox::Yes; } } bool ensureWritable( const QList &urls ) { - QList notWritable; + QStringList notWritable; foreach (QUrl url, urls) { if (url.isLocalFile()) { QFile file(url.toLocalFile()); if (file.exists() && !(file.permissions() & QFileDevice::WriteOwner) && !(file.permissions() & QFileDevice::WriteGroup)) { notWritable << url.toLocalFile(); } } } if (!notWritable.isEmpty()) { int answer = KMessageBox::questionYesNoCancel(ICore::self()->uiController()->activeMainWindow(), i18n("You don't have write permissions for the following files; add write permissions for owner before saving?")+"\n\n"+notWritable.join("\n"), i18n("Some files are write-protected"), KStandardGuiItem::yes(), KStandardGuiItem::no(), KStandardGuiItem::cancel()); if (answer == KMessageBox::Yes) { bool success = true; foreach (QString filename, notWritable) { QFile file(filename); QFileDevice::Permissions permissions = file.permissions(); permissions |= QFileDevice::WriteOwner; success &= file.setPermissions(permissions); } if (!success) { KMessageBox::error(ICore::self()->uiController()->activeMainWindow(), i18n("Failed adding write permissions for some files."), i18n("Failed setting permissions")); return false; } } return answer != KMessageBox::Cancel; } return true; } }