2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-10-27 17:38:22 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-10-27 17:38:22 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-10-27 17:38:22 +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
|
|
|
|
|
** 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.
|
2010-10-27 17:38:22 +02: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 17:14:20 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-10-27 17:38:22 +02:00
|
|
|
|
|
|
|
|
#include "snippet.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QLatin1Char>
|
|
|
|
|
#include <QLatin1String>
|
|
|
|
|
#include <QTextDocument>
|
2010-10-27 17:38:22 +02:00
|
|
|
|
|
|
|
|
using namespace TextEditor;
|
|
|
|
|
|
|
|
|
|
const QChar Snippet::kVariableDelimiter(QLatin1Char('$'));
|
|
|
|
|
|
2010-12-02 17:02:23 +01:00
|
|
|
Snippet::Snippet(const QString &groupId, const QString &id) :
|
|
|
|
|
m_isRemoved(false), m_isModified(false), m_groupId(groupId), m_id(id)
|
2010-10-27 17:38:22 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
Snippet::~Snippet()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
const QString &Snippet::id() const
|
|
|
|
|
{
|
|
|
|
|
return m_id;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-02 17:02:23 +01:00
|
|
|
const QString &Snippet::groupId() const
|
|
|
|
|
{
|
|
|
|
|
return m_groupId;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-27 17:38:22 +02:00
|
|
|
bool Snippet::isBuiltIn() const
|
|
|
|
|
{
|
|
|
|
|
return !m_id.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Snippet::setTrigger(const QString &trigger)
|
|
|
|
|
{
|
|
|
|
|
m_trigger = trigger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString &Snippet::trigger() const
|
|
|
|
|
{
|
|
|
|
|
return m_trigger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Snippet::setContent(const QString &content)
|
|
|
|
|
{
|
|
|
|
|
m_content = content;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString &Snippet::content() const
|
|
|
|
|
{
|
|
|
|
|
return m_content;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Snippet::setComplement(const QString &complement)
|
|
|
|
|
{
|
|
|
|
|
m_complement = complement;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString &Snippet::complement() const
|
|
|
|
|
{
|
|
|
|
|
return m_complement;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Snippet::setIsRemoved(bool removed)
|
|
|
|
|
{
|
|
|
|
|
m_isRemoved = removed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Snippet::isRemoved() const
|
|
|
|
|
{
|
|
|
|
|
return m_isRemoved;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Snippet::setIsModified(bool modified)
|
|
|
|
|
{
|
|
|
|
|
m_isModified = modified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Snippet::isModified() const
|
|
|
|
|
{
|
|
|
|
|
return m_isModified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString Snippet::generateTip() const
|
|
|
|
|
{
|
|
|
|
|
static const QLatin1Char kNewLine('\n');
|
|
|
|
|
static const QLatin1Char kSpace(' ');
|
|
|
|
|
static const QLatin1String kBr("<br>");
|
|
|
|
|
static const QLatin1String kNbsp(" ");
|
|
|
|
|
static const QLatin1String kNoBr("<nobr>");
|
|
|
|
|
static const QLatin1String kOpenBold("<b>");
|
|
|
|
|
static const QLatin1String kCloseBold("</b>");
|
|
|
|
|
static const QLatin1String kEllipsis("...");
|
|
|
|
|
|
|
|
|
|
QString escapedContent(Qt::escape(m_content));
|
|
|
|
|
escapedContent.replace(kNewLine, kBr);
|
|
|
|
|
escapedContent.replace(kSpace, kNbsp);
|
|
|
|
|
|
|
|
|
|
QString tip(kNoBr);
|
|
|
|
|
int count = 0;
|
|
|
|
|
for (int i = 0; i < escapedContent.count(); ++i) {
|
|
|
|
|
if (escapedContent.at(i) != kVariableDelimiter) {
|
|
|
|
|
tip += escapedContent.at(i);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (++count % 2) {
|
|
|
|
|
tip += kOpenBold;
|
|
|
|
|
} else {
|
|
|
|
|
if (escapedContent.at(i-1) == kVariableDelimiter)
|
|
|
|
|
tip += kEllipsis;
|
|
|
|
|
tip += kCloseBold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tip;
|
|
|
|
|
}
|