1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/* This file is part of the KDE project
Copyright 2008 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
This library 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 library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "HyperlinkStrategy.h"
#include "Selection.h"
#include "Sheet.h"
#include "Util.h"
#include <KoCanvasBase.h>
#include <KoSelection.h>
#include <KoShapeManager.h>
#include <KoToolBase.h>
#include <KMessageBox>
#include <KMimeType>
#include <KRun>
#include <QTimer>
using namespace Calligra::Sheets;
class HyperlinkStrategy::Private
{
public:
QPointF lastPoint;
QRectF textRect;
QString url;
};
HyperlinkStrategy::HyperlinkStrategy(CellToolBase *cellTool,
const QPointF documentPos, Qt::KeyboardModifiers modifiers,
const QString& url, const QRectF& textRect)
: AbstractSelectionStrategy(cellTool, documentPos, modifiers)
, d(new Private)
{
d->lastPoint = documentPos;
d->textRect = textRect;
d->textRect.moveTo(d->lastPoint); // turn textRect which is relative to the cell to an absolute coordinate
d->url = url;
}
HyperlinkStrategy::~HyperlinkStrategy()
{
delete d;
}
void HyperlinkStrategy::handleMouseMove(const QPointF& documentPos, Qt::KeyboardModifiers modifiers)
{
d->lastPoint = documentPos;
if (d->textRect.contains(documentPos)) {
return;
}
AbstractSelectionStrategy::handleMouseMove(documentPos, modifiers);
}
void HyperlinkStrategy::finishInteraction(Qt::KeyboardModifiers modifiers)
{
if (!d->textRect.contains(d->lastPoint)) {
return;
}
Q_UNUSED(modifiers)
selection()->activeSheet()->showStatusMessage(i18n("Link %1 activated", d->url));
const KUrl url(d->url);
if (!url.isValid() || url.isRelative()) {
const Region region(d->url, selection()->activeSheet()->map(), selection()->activeSheet());
if (region.isValid()) {
if (region.firstSheet() != selection()->activeSheet()) {
selection()->emitVisibleSheetRequested(region.firstSheet());
}
selection()->initialize(region);
if (!region.firstRange().isNull()) {
const Cell cell = Cell(region.firstSheet(), region.firstRange().topLeft());
}
}
} else {
const QString type = KMimeType::findByUrl(url, 0, url.isLocalFile())->name();
if (!Util::localReferenceAnchor(d->url)) {
const bool executable = KRun::isExecutableFile(url, type);
if (executable) {
const QString question = i18n("This link points to the program or script '%1'.\n"
"Malicious programs can harm your computer. "
"Are you sure that you want to run this program?", d->url);
// this will also start local programs, so adding a "don't warn again"
// checkbox will probably be too dangerous
const int answer = KMessageBox::warningYesNo(tool()->canvas()->canvasWidget(), question,
i18n("Open Link?"));
if (answer != KMessageBox::Yes) {
return;
}
}
new KRun(url, tool()->canvas()->canvasWidget(), 0, url.isLocalFile());
}
}
tool()->repaintDecorations();
}
|