2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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 Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "profileeditor.h"
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2014-08-20 14:43:06 +02:00
|
|
|
#include "profilecompletionassist.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "profilehighlighter.h"
|
2014-08-20 14:43:06 +02:00
|
|
|
#include "qmakeprojectmanager.h"
|
|
|
|
|
#include "qmakeprojectmanagerconstants.h"
|
2013-10-16 12:10:22 +02:00
|
|
|
#include "qmakeprojectmanagerconstants.h"
|
2013-08-30 12:55:06 +02:00
|
|
|
|
2014-08-20 14:43:06 +02:00
|
|
|
#include <coreplugin/fileiconprovider.h>
|
2013-08-30 12:55:06 +02:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2014-08-20 14:43:06 +02:00
|
|
|
#include <qtsupport/qtsupportconstants.h>
|
|
|
|
|
#include <texteditor/texteditoractionhandler.h>
|
2014-08-20 15:14:35 +02:00
|
|
|
#include <utils/qtcassert.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-08-20 14:43:06 +02:00
|
|
|
#include <QCoreApplication>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QDir>
|
2013-03-28 09:01:07 +01:00
|
|
|
#include <QTextBlock>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-08-22 17:40:24 +02:00
|
|
|
using namespace TextEditor;
|
|
|
|
|
|
2013-10-16 11:02:37 +02:00
|
|
|
namespace QmakeProjectManager {
|
2012-12-30 15:40:50 +01:00
|
|
|
namespace Internal {
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-03-16 16:14:34 +01:00
|
|
|
//
|
2012-12-30 15:40:50 +01:00
|
|
|
// ProFileEditor
|
2009-03-16 16:14:34 +01:00
|
|
|
//
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-08-22 17:40:24 +02:00
|
|
|
class ProFileEditor : public TextEditor::BaseTextEditor
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2014-08-22 17:40:24 +02:00
|
|
|
public:
|
|
|
|
|
ProFileEditor()
|
|
|
|
|
{
|
|
|
|
|
addContext(Constants::C_PROFILEEDITOR);
|
|
|
|
|
setDuplicateSupported(true);
|
|
|
|
|
setCompletionAssistProvider(ExtensionSystem::PluginManager::getObject<ProFileCompletionAssistProvider>());
|
|
|
|
|
}
|
|
|
|
|
};
|
2009-03-16 16:14:34 +01:00
|
|
|
|
|
|
|
|
//
|
2012-12-30 15:40:50 +01:00
|
|
|
// ProFileEditorWidget
|
2009-03-16 16:14:34 +01:00
|
|
|
//
|
|
|
|
|
|
2014-08-22 17:40:24 +02:00
|
|
|
class ProFileEditorWidget : public BaseTextEditorWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ProFileEditorWidget() {}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual Link findLinkAt(const QTextCursor &, bool resolveTarget = true,
|
|
|
|
|
bool inNextSplit = false);
|
|
|
|
|
void contextMenuEvent(QContextMenuEvent *);
|
|
|
|
|
};
|
2010-05-25 16:16:04 +02:00
|
|
|
|
2010-10-14 11:54:29 +02:00
|
|
|
static bool isValidFileNameChar(const QChar &c)
|
|
|
|
|
{
|
2012-12-30 15:40:50 +01:00
|
|
|
return c.isLetterOrNumber()
|
2010-10-14 11:54:29 +02:00
|
|
|
|| c == QLatin1Char('.')
|
|
|
|
|
|| c == QLatin1Char('_')
|
|
|
|
|
|| c == QLatin1Char('-')
|
|
|
|
|
|| c == QLatin1Char('/')
|
2012-12-30 15:40:50 +01:00
|
|
|
|| c == QLatin1Char('\\');
|
2010-10-14 11:54:29 +02:00
|
|
|
}
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
ProFileEditorWidget::Link ProFileEditorWidget::findLinkAt(const QTextCursor &cursor,
|
2013-07-04 20:11:10 +02:00
|
|
|
bool /*resolveTarget*/,
|
|
|
|
|
bool /*inNextSplit*/)
|
2010-10-14 11:54:29 +02:00
|
|
|
{
|
|
|
|
|
Link link;
|
|
|
|
|
|
|
|
|
|
int lineNumber = 0, positionInBlock = 0;
|
|
|
|
|
convertPosition(cursor.position(), &lineNumber, &positionInBlock);
|
|
|
|
|
|
|
|
|
|
const QString block = cursor.block().text();
|
|
|
|
|
|
|
|
|
|
// check if the current position is commented out
|
|
|
|
|
const int hashPos = block.indexOf(QLatin1Char('#'));
|
|
|
|
|
if (hashPos >= 0 && hashPos < positionInBlock)
|
|
|
|
|
return link;
|
|
|
|
|
|
|
|
|
|
// find the beginning of a filename
|
|
|
|
|
QString buffer;
|
|
|
|
|
int beginPos = positionInBlock - 1;
|
|
|
|
|
while (beginPos >= 0) {
|
|
|
|
|
QChar c = block.at(beginPos);
|
|
|
|
|
if (isValidFileNameChar(c)) {
|
|
|
|
|
buffer.prepend(c);
|
|
|
|
|
beginPos--;
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// find the end of a filename
|
|
|
|
|
int endPos = positionInBlock;
|
|
|
|
|
while (endPos < block.count()) {
|
|
|
|
|
QChar c = block.at(endPos);
|
|
|
|
|
if (isValidFileNameChar(c)) {
|
|
|
|
|
buffer.append(c);
|
|
|
|
|
endPos++;
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (buffer.isEmpty())
|
|
|
|
|
return link;
|
|
|
|
|
|
|
|
|
|
// remove trailing '\' since it can be line continuation char
|
|
|
|
|
if (buffer.at(buffer.size() - 1) == QLatin1Char('\\')) {
|
|
|
|
|
buffer.chop(1);
|
|
|
|
|
endPos--;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if the buffer starts with $$PWD accept it
|
|
|
|
|
if (buffer.startsWith(QLatin1String("PWD/")) ||
|
|
|
|
|
buffer.startsWith(QLatin1String("PWD\\"))) {
|
|
|
|
|
if (beginPos > 0 && block.mid(beginPos - 1, 2) == QLatin1String("$$")) {
|
|
|
|
|
beginPos -=2;
|
|
|
|
|
buffer = buffer.mid(4);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-01 23:31:56 +02:00
|
|
|
QDir dir(QFileInfo(textDocument()->filePath()).absolutePath());
|
2010-10-14 11:54:29 +02:00
|
|
|
QString fileName = dir.filePath(buffer);
|
|
|
|
|
QFileInfo fi(fileName);
|
|
|
|
|
if (fi.exists()) {
|
|
|
|
|
if (fi.isDir()) {
|
|
|
|
|
QDir subDir(fi.absoluteFilePath());
|
|
|
|
|
QString subProject = subDir.filePath(subDir.dirName() + QLatin1String(".pro"));
|
|
|
|
|
if (QFileInfo(subProject).exists())
|
|
|
|
|
fileName = subProject;
|
|
|
|
|
else
|
|
|
|
|
return link;
|
|
|
|
|
}
|
2013-02-06 14:23:18 +01:00
|
|
|
link.targetFileName = QDir::cleanPath(fileName);
|
|
|
|
|
link.linkTextStart = cursor.position() - positionInBlock + beginPos + 1;
|
|
|
|
|
link.linkTextEnd = cursor.position() - positionInBlock + endPos;
|
2010-10-14 11:54:29 +02:00
|
|
|
}
|
|
|
|
|
return link;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
void ProFileEditorWidget::contextMenuEvent(QContextMenuEvent *e)
|
2010-05-25 16:16:04 +02:00
|
|
|
{
|
2012-07-24 23:30:32 +04:00
|
|
|
showDefaultContextMenu(e, Constants::M_CONTEXT);
|
2010-05-25 16:16:04 +02:00
|
|
|
}
|
|
|
|
|
|
2009-03-16 16:14:34 +01:00
|
|
|
//
|
|
|
|
|
// ProFileDocument
|
|
|
|
|
//
|
|
|
|
|
|
2014-08-22 17:40:24 +02:00
|
|
|
class ProFileDocument : public BaseTextDocument
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ProFileDocument();
|
|
|
|
|
QString defaultPath() const;
|
|
|
|
|
QString suggestedFileName() const;
|
|
|
|
|
|
|
|
|
|
// qmake project files doesn't support UTF8-BOM
|
|
|
|
|
// If the BOM would be added qmake would fail and QtCreator couldn't parse the project file
|
|
|
|
|
bool supportsUtf8Bom() { return false; }
|
|
|
|
|
};
|
|
|
|
|
|
2010-01-22 16:49:57 +01:00
|
|
|
ProFileDocument::ProFileDocument()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2014-03-05 15:58:12 +01:00
|
|
|
setId(Constants::PROFILE_EDITOR_ID);
|
2014-01-08 14:03:40 +01:00
|
|
|
setMimeType(QLatin1String(Constants::PROFILE_MIMETYPE));
|
2014-01-23 12:36:42 +01:00
|
|
|
setSyntaxHighlighter(new ProFileHighlighter);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProFileDocument::defaultPath() const
|
|
|
|
|
{
|
2013-07-04 13:30:26 +02:00
|
|
|
QFileInfo fi(filePath());
|
2008-12-02 12:01:29 +01:00
|
|
|
return fi.absolutePath();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProFileDocument::suggestedFileName() const
|
|
|
|
|
{
|
2013-07-04 13:30:26 +02:00
|
|
|
QFileInfo fi(filePath());
|
2008-12-02 12:01:29 +01:00
|
|
|
return fi.fileName();
|
|
|
|
|
}
|
2012-12-30 15:40:50 +01:00
|
|
|
|
2014-08-20 14:43:06 +02:00
|
|
|
//
|
|
|
|
|
// ProFileEditorFactory
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
ProFileEditorFactory::ProFileEditorFactory()
|
|
|
|
|
{
|
2014-08-22 17:40:24 +02:00
|
|
|
setId(Constants::PROFILE_EDITOR_ID);
|
|
|
|
|
setDisplayName(qApp->translate("OpenWith::Editors", Constants::PROFILE_EDITOR_DISPLAY_NAME));
|
|
|
|
|
addMimeType(Constants::PROFILE_MIMETYPE);
|
|
|
|
|
addMimeType(Constants::PROINCLUDEFILE_MIMETYPE);
|
|
|
|
|
addMimeType(Constants::PROFEATUREFILE_MIMETYPE);
|
|
|
|
|
addMimeType(Constants::PROCONFIGURATIONFILE_MIMETYPE);
|
|
|
|
|
addMimeType(Constants::PROCACHEFILE_MIMETYPE);
|
|
|
|
|
addMimeType(Constants::PROSTASHFILE_MIMETYPE);
|
|
|
|
|
|
|
|
|
|
setDocumentCreator([]() { return new ProFileDocument; });
|
|
|
|
|
setEditorWidgetCreator([]() { return new ProFileEditorWidget; });
|
|
|
|
|
setEditorCreator([]() { return new ProFileEditor; });
|
|
|
|
|
|
2014-09-01 16:16:44 +02:00
|
|
|
setCommentStyle(Utils::CommentDefinition::HashStyle);
|
2014-08-22 17:40:24 +02:00
|
|
|
setEditorActionHandlers(Constants::C_PROFILEEDITOR,
|
|
|
|
|
TextEditorActionHandler::UnCommentSelection
|
|
|
|
|
| TextEditorActionHandler::JumpToFileUnderCursor);
|
2014-08-20 14:43:06 +02:00
|
|
|
|
|
|
|
|
Core::FileIconProvider::registerIconOverlayForSuffix(QtSupport::Constants::ICON_QT_PROJECT, "pro");
|
|
|
|
|
Core::FileIconProvider::registerIconOverlayForSuffix(QtSupport::Constants::ICON_QT_PROJECT, "pri");
|
|
|
|
|
Core::FileIconProvider::registerIconOverlayForSuffix(QtSupport::Constants::ICON_QT_PROJECT, "prf");
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-30 15:40:50 +01:00
|
|
|
} // namespace Internal
|
2013-10-16 11:02:37 +02:00
|
|
|
} // namespace QmakeProjectManager
|