You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.1 KiB
102 lines
2.1 KiB
/* |
|
SPDX-FileCopyrightText: 2007, 2008 Pino Toscano <pino@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#include "sourcereference.h" |
|
#include "sourcereference_p.h" |
|
|
|
#include <KLocalizedString> |
|
#include <QString> |
|
#include <QUrl> |
|
|
|
using namespace Okular; |
|
|
|
class SourceReference::Private |
|
{ |
|
public: |
|
Private() |
|
: row(0) |
|
, column(0) |
|
{ |
|
} |
|
|
|
QString filename; |
|
int row; |
|
int column; |
|
}; |
|
|
|
SourceReference::SourceReference(const QString &fileName, int row, int column) |
|
: d(new Private) |
|
{ |
|
d->filename = fileName; |
|
d->row = row; |
|
d->column = column; |
|
} |
|
|
|
SourceReference::~SourceReference() |
|
{ |
|
delete d; |
|
} |
|
|
|
QString SourceReference::fileName() const |
|
{ |
|
return d->filename; |
|
} |
|
|
|
int SourceReference::row() const |
|
{ |
|
return d->row; |
|
} |
|
|
|
int SourceReference::column() const |
|
{ |
|
return d->column; |
|
} |
|
|
|
bool Okular::extractLilyPondSourceReference(const QUrl &url, QString *file, int *row, int *col) |
|
{ |
|
// Example URL is: textedit:///home/foo/bar.ly:42:42:42 |
|
// The three numbers are apparently: line:beginning of column:end of column |
|
|
|
if (url.scheme() != QStringLiteral("textedit")) { |
|
return false; |
|
} |
|
|
|
// There can be more, in case the filename contains : |
|
if (url.fileName().count(QLatin1Char(':')) < 3) { |
|
return false; |
|
} |
|
|
|
QStringList parts(url.path().split(QLatin1Char(':'))); |
|
|
|
bool ok; |
|
// Take out the things we need |
|
int columnEnd = parts.takeLast().toInt(&ok); // apparently we don't use this |
|
Q_UNUSED(columnEnd); |
|
if (!ok) { |
|
return false; |
|
} |
|
|
|
*col = parts.takeLast().toInt(&ok); |
|
if (!ok) { |
|
return false; |
|
} |
|
|
|
*row = parts.takeLast().toInt(&ok); |
|
if (!ok) { |
|
return false; |
|
} |
|
|
|
// In case the path itself contains :, we need to reconstruct it after removing all the numbers |
|
*file = parts.join(QLatin1Char(':')); |
|
return (!file->isEmpty()); |
|
} |
|
|
|
QString Okular::sourceReferenceToolTip(const QString &source, int row, int col) |
|
{ |
|
Q_UNUSED(row); |
|
Q_UNUSED(col); |
|
return i18nc("'source' is a source file", "Source: %1", source); |
|
}
|
|
|