2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2009-05-14 16:37:17 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2009-05-14 16:37:17 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2009-05-14 16:37:17 +02: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
|
2016-01-15 14:58:39 +01:00
|
|
|
** 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.
|
2009-05-14 16:37:17 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** 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.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2009-05-14 16:37:17 +02:00
|
|
|
|
|
|
|
|
#include "uncommentselection.h"
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QPlainTextEdit>
|
|
|
|
|
#include <QTextBlock>
|
2009-05-14 16:37:17 +02:00
|
|
|
|
2010-04-30 13:08:06 +02:00
|
|
|
using namespace Utils;
|
|
|
|
|
|
2017-04-24 16:01:14 +02:00
|
|
|
CommentDefinition CommentDefinition::CppStyle = CommentDefinition("//", "/*", "*/");
|
|
|
|
|
CommentDefinition CommentDefinition::HashStyle = CommentDefinition("#");
|
|
|
|
|
|
2010-04-30 13:08:06 +02:00
|
|
|
CommentDefinition::CommentDefinition() :
|
2014-07-30 16:01:34 +02:00
|
|
|
isAfterWhiteSpaces(false)
|
2010-04-30 13:08:06 +02:00
|
|
|
{}
|
|
|
|
|
|
2017-04-24 16:01:14 +02:00
|
|
|
CommentDefinition::CommentDefinition(const QString &single, const QString &multiStart,
|
|
|
|
|
const QString &multiEnd)
|
|
|
|
|
: isAfterWhiteSpaces(false),
|
|
|
|
|
singleLine(single),
|
|
|
|
|
multiLineStart(multiStart),
|
|
|
|
|
multiLineEnd(multiEnd)
|
2014-07-30 16:01:34 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CommentDefinition::isValid() const
|
|
|
|
|
{
|
|
|
|
|
return hasSingleLineStyle() || hasMultiLineStyle();
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-25 00:42:44 +02:00
|
|
|
bool CommentDefinition::hasSingleLineStyle() const
|
2010-04-30 13:08:06 +02:00
|
|
|
{
|
2013-05-25 00:42:44 +02:00
|
|
|
return !singleLine.isEmpty();
|
2010-04-30 13:08:06 +02:00
|
|
|
}
|
|
|
|
|
|
2013-05-25 00:42:44 +02:00
|
|
|
bool CommentDefinition::hasMultiLineStyle() const
|
2010-04-30 13:08:06 +02:00
|
|
|
{
|
2013-05-25 00:42:44 +02:00
|
|
|
return !multiLineStart.isEmpty() && !multiLineEnd.isEmpty();
|
2010-04-30 13:08:06 +02:00
|
|
|
}
|
|
|
|
|
|
2013-05-25 00:42:44 +02:00
|
|
|
static bool isComment(const QString &text, int index,
|
|
|
|
|
const QString &commentType)
|
2010-04-30 13:08:06 +02:00
|
|
|
{
|
|
|
|
|
const int length = commentType.length();
|
|
|
|
|
|
|
|
|
|
Q_ASSERT(text.length() - index >= length);
|
|
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
while (i < length) {
|
|
|
|
|
if (text.at(index + i) != commentType.at(i))
|
|
|
|
|
return false;
|
|
|
|
|
++i;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Utils::unCommentSelection(QPlainTextEdit *edit, const CommentDefinition &definition)
|
2009-05-14 16:37:17 +02:00
|
|
|
{
|
2014-07-30 16:01:34 +02:00
|
|
|
if (!definition.isValid())
|
2010-04-30 13:08:06 +02:00
|
|
|
return;
|
|
|
|
|
|
2009-05-14 16:37:17 +02:00
|
|
|
QTextCursor cursor = edit->textCursor();
|
|
|
|
|
QTextDocument *doc = cursor.document();
|
|
|
|
|
cursor.beginEditBlock();
|
|
|
|
|
|
|
|
|
|
int pos = cursor.position();
|
|
|
|
|
int anchor = cursor.anchor();
|
|
|
|
|
int start = qMin(anchor, pos);
|
|
|
|
|
int end = qMax(anchor, pos);
|
|
|
|
|
bool anchorIsStart = (anchor == start);
|
|
|
|
|
|
|
|
|
|
QTextBlock startBlock = doc->findBlock(start);
|
|
|
|
|
QTextBlock endBlock = doc->findBlock(end);
|
|
|
|
|
|
|
|
|
|
if (end > start && endBlock.position() == end) {
|
|
|
|
|
--end;
|
|
|
|
|
endBlock = endBlock.previous();
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-30 13:08:06 +02:00
|
|
|
bool doMultiLineStyleUncomment = false;
|
|
|
|
|
bool doMultiLineStyleComment = false;
|
|
|
|
|
bool doSingleLineStyleUncomment = false;
|
2009-05-14 16:37:17 +02:00
|
|
|
|
|
|
|
|
bool hasSelection = cursor.hasSelection();
|
|
|
|
|
|
2010-04-30 13:08:06 +02:00
|
|
|
if (hasSelection && definition.hasMultiLineStyle()) {
|
|
|
|
|
|
2009-05-14 16:37:17 +02:00
|
|
|
QString startText = startBlock.text();
|
|
|
|
|
int startPos = start - startBlock.position();
|
2013-05-25 00:42:44 +02:00
|
|
|
const int multiLineStartLength = definition.multiLineStart.length();
|
2009-05-14 16:37:17 +02:00
|
|
|
bool hasLeadingCharacters = !startText.left(startPos).trimmed().isEmpty();
|
|
|
|
|
|
2010-04-30 13:08:06 +02:00
|
|
|
if (startPos >= multiLineStartLength
|
|
|
|
|
&& isComment(startText,
|
|
|
|
|
startPos - multiLineStartLength,
|
2013-05-25 00:42:44 +02:00
|
|
|
definition.multiLineStart)) {
|
2010-04-30 13:08:06 +02:00
|
|
|
startPos -= multiLineStartLength;
|
|
|
|
|
start -= multiLineStartLength;
|
|
|
|
|
}
|
2009-05-14 16:37:17 +02:00
|
|
|
|
2013-05-25 00:42:44 +02:00
|
|
|
bool hasSelStart = startPos <= startText.length() - multiLineStartLength
|
|
|
|
|
&& isComment(startText, startPos, definition.multiLineStart);
|
2009-05-14 16:37:17 +02:00
|
|
|
|
|
|
|
|
QString endText = endBlock.text();
|
|
|
|
|
int endPos = end - endBlock.position();
|
2013-05-25 00:42:44 +02:00
|
|
|
const int multiLineEndLength = definition.multiLineEnd.length();
|
2010-04-30 13:08:06 +02:00
|
|
|
bool hasTrailingCharacters =
|
2013-05-25 00:42:44 +02:00
|
|
|
!endText.left(endPos).remove(definition.singleLine).trimmed().isEmpty()
|
2010-04-30 13:08:06 +02:00
|
|
|
&& !endText.mid(endPos).trimmed().isEmpty();
|
|
|
|
|
|
|
|
|
|
if (endPos <= endText.length() - multiLineEndLength
|
2013-05-25 00:42:44 +02:00
|
|
|
&& isComment(endText, endPos, definition.multiLineEnd)) {
|
2010-04-30 13:08:06 +02:00
|
|
|
endPos += multiLineEndLength;
|
|
|
|
|
end += multiLineEndLength;
|
2009-05-14 16:37:17 +02:00
|
|
|
}
|
|
|
|
|
|
2013-05-25 00:42:44 +02:00
|
|
|
bool hasSelEnd = endPos >= multiLineEndLength
|
|
|
|
|
&& isComment(endText, endPos - multiLineEndLength, definition.multiLineEnd);
|
2009-05-14 16:37:17 +02:00
|
|
|
|
2010-04-30 13:08:06 +02:00
|
|
|
doMultiLineStyleUncomment = hasSelStart && hasSelEnd;
|
|
|
|
|
doMultiLineStyleComment = !doMultiLineStyleUncomment
|
|
|
|
|
&& (hasLeadingCharacters
|
|
|
|
|
|| hasTrailingCharacters
|
|
|
|
|
|| !definition.hasSingleLineStyle());
|
|
|
|
|
} else if (!hasSelection && !definition.hasSingleLineStyle()) {
|
|
|
|
|
|
|
|
|
|
QString text = startBlock.text().trimmed();
|
2013-05-25 00:42:44 +02:00
|
|
|
doMultiLineStyleUncomment = text.startsWith(definition.multiLineStart)
|
|
|
|
|
&& text.endsWith(definition.multiLineEnd);
|
2010-04-30 13:08:06 +02:00
|
|
|
doMultiLineStyleComment = !doMultiLineStyleUncomment && !text.isEmpty();
|
|
|
|
|
|
|
|
|
|
start = startBlock.position();
|
|
|
|
|
end = endBlock.position() + endBlock.length() - 1;
|
2010-05-07 14:17:48 +02:00
|
|
|
|
|
|
|
|
if (doMultiLineStyleUncomment) {
|
|
|
|
|
int offset = 0;
|
|
|
|
|
text = startBlock.text();
|
|
|
|
|
const int length = text.length();
|
|
|
|
|
while (offset < length && text.at(offset).isSpace())
|
|
|
|
|
++offset;
|
|
|
|
|
start += offset;
|
|
|
|
|
}
|
2009-05-14 16:37:17 +02:00
|
|
|
}
|
|
|
|
|
|
2010-04-30 13:08:06 +02:00
|
|
|
if (doMultiLineStyleUncomment) {
|
2009-05-14 16:37:17 +02:00
|
|
|
cursor.setPosition(end);
|
2010-04-30 13:08:06 +02:00
|
|
|
cursor.movePosition(QTextCursor::PreviousCharacter,
|
|
|
|
|
QTextCursor::KeepAnchor,
|
2013-05-25 00:42:44 +02:00
|
|
|
definition.multiLineEnd.length());
|
2009-05-14 16:37:17 +02:00
|
|
|
cursor.removeSelectedText();
|
|
|
|
|
cursor.setPosition(start);
|
2010-04-30 13:08:06 +02:00
|
|
|
cursor.movePosition(QTextCursor::NextCharacter,
|
|
|
|
|
QTextCursor::KeepAnchor,
|
2013-05-25 00:42:44 +02:00
|
|
|
definition.multiLineStart.length());
|
2009-05-14 16:37:17 +02:00
|
|
|
cursor.removeSelectedText();
|
2010-04-30 13:08:06 +02:00
|
|
|
} else if (doMultiLineStyleComment) {
|
2009-05-14 16:37:17 +02:00
|
|
|
cursor.setPosition(end);
|
2013-05-25 00:42:44 +02:00
|
|
|
cursor.insertText(definition.multiLineEnd);
|
2009-05-14 16:37:17 +02:00
|
|
|
cursor.setPosition(start);
|
2013-05-25 00:42:44 +02:00
|
|
|
cursor.insertText(definition.multiLineStart);
|
2009-05-14 16:37:17 +02:00
|
|
|
} else {
|
|
|
|
|
endBlock = endBlock.next();
|
2010-04-30 13:08:06 +02:00
|
|
|
doSingleLineStyleUncomment = true;
|
2009-05-14 16:37:17 +02:00
|
|
|
for (QTextBlock block = startBlock; block != endBlock; block = block.next()) {
|
2010-03-26 14:28:26 +01:00
|
|
|
QString text = block.text().trimmed();
|
2013-05-25 00:42:44 +02:00
|
|
|
if (!text.isEmpty() && !text.startsWith(definition.singleLine)) {
|
2010-04-30 13:08:06 +02:00
|
|
|
doSingleLineStyleUncomment = false;
|
2009-05-14 16:37:17 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-04-30 13:08:06 +02:00
|
|
|
|
2013-05-25 00:42:44 +02:00
|
|
|
const int singleLineLength = definition.singleLine.length();
|
2009-05-14 16:37:17 +02:00
|
|
|
for (QTextBlock block = startBlock; block != endBlock; block = block.next()) {
|
2010-04-30 13:08:06 +02:00
|
|
|
if (doSingleLineStyleUncomment) {
|
2009-05-14 16:37:17 +02:00
|
|
|
QString text = block.text();
|
|
|
|
|
int i = 0;
|
2010-04-30 13:08:06 +02:00
|
|
|
while (i <= text.size() - singleLineLength) {
|
2013-05-25 00:42:44 +02:00
|
|
|
if (isComment(text, i, definition.singleLine)) {
|
2009-05-14 16:37:17 +02:00
|
|
|
cursor.setPosition(block.position() + i);
|
2010-04-30 13:08:06 +02:00
|
|
|
cursor.movePosition(QTextCursor::NextCharacter,
|
|
|
|
|
QTextCursor::KeepAnchor,
|
|
|
|
|
singleLineLength);
|
2009-05-14 16:37:17 +02:00
|
|
|
cursor.removeSelectedText();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (!text.at(i).isSpace())
|
|
|
|
|
break;
|
|
|
|
|
++i;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2013-05-25 00:42:44 +02:00
|
|
|
const QString text = block.text();
|
2012-11-28 20:44:03 +02:00
|
|
|
foreach (QChar c, text) {
|
2010-03-26 14:28:26 +01:00
|
|
|
if (!c.isSpace()) {
|
2013-05-25 00:42:44 +02:00
|
|
|
if (definition.isAfterWhiteSpaces)
|
2010-04-30 13:08:06 +02:00
|
|
|
cursor.setPosition(block.position() + text.indexOf(c));
|
|
|
|
|
else
|
|
|
|
|
cursor.setPosition(block.position());
|
2013-05-25 00:42:44 +02:00
|
|
|
cursor.insertText(definition.singleLine);
|
2010-03-26 14:28:26 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-05-14 16:37:17 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-11 15:41:05 +02:00
|
|
|
cursor.endEditBlock();
|
|
|
|
|
|
2009-05-14 16:37:17 +02:00
|
|
|
// adjust selection when commenting out
|
2010-04-30 13:08:06 +02:00
|
|
|
if (hasSelection && !doMultiLineStyleUncomment && !doSingleLineStyleUncomment) {
|
2009-05-14 16:37:17 +02:00
|
|
|
cursor = edit->textCursor();
|
2010-04-30 13:08:06 +02:00
|
|
|
if (!doMultiLineStyleComment)
|
|
|
|
|
start = startBlock.position(); // move the comment into the selection
|
2009-05-14 16:37:17 +02:00
|
|
|
int lastSelPos = anchorIsStart ? cursor.position() : cursor.anchor();
|
|
|
|
|
if (anchorIsStart) {
|
|
|
|
|
cursor.setPosition(start);
|
|
|
|
|
cursor.setPosition(lastSelPos, QTextCursor::KeepAnchor);
|
|
|
|
|
} else {
|
|
|
|
|
cursor.setPosition(lastSelPos);
|
|
|
|
|
cursor.setPosition(start, QTextCursor::KeepAnchor);
|
|
|
|
|
}
|
|
|
|
|
edit->setTextCursor(cursor);
|
|
|
|
|
}
|
|
|
|
|
}
|