/* * Copyright (C) 2012 Felix Geyer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 or (at your option) * version 3 of the License. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "Clipboard.h" #include #include #include #include "core/Config.h" Clipboard* Clipboard::m_instance(nullptr); Clipboard::Clipboard(QObject* parent) : QObject(parent) , m_timer(new QTimer(this)) #ifdef Q_OS_MAC , m_pasteboard(new MacPasteboard) #endif { m_timer->setSingleShot(true); connect(m_timer, SIGNAL(timeout()), SLOT(clearClipboard())); connect(qApp, SIGNAL(aboutToQuit()), SLOT(clearCopiedText())); } void Clipboard::setText(const QString& text) { QClipboard* clipboard = QApplication::clipboard(); #ifdef Q_OS_MAC QMimeData* mime = new QMimeData; mime->setText(text); mime->setData("application/x-nspasteboard-concealed-type", text.toUtf8()); clipboard->setMimeData(mime, QClipboard::Clipboard); #else clipboard->setText(text, QClipboard::Clipboard); if (clipboard->supportsSelection()) { clipboard->setText(text, QClipboard::Selection); } #endif if (config()->get("security/clearclipboard").toBool()) { int timeout = config()->get("security/clearclipboardtimeout").toInt(); if (timeout > 0) { m_lastCopied = text; m_timer->start(timeout * 1000); } } } void Clipboard::clearCopiedText() { if (m_timer->isActive()) { m_timer->stop(); clearClipboard(); } } void Clipboard::clearClipboard() { QClipboard* clipboard = QApplication::clipboard(); if (!clipboard) { qWarning("Unable to access the clipboard."); return; } if (clipboard->text(QClipboard::Clipboard) == m_lastCopied) { clipboard->clear(QClipboard::Clipboard); } if (clipboard->supportsSelection() && (clipboard->text(QClipboard::Selection) == m_lastCopied)) { clipboard->clear(QClipboard::Selection); } m_lastCopied.clear(); } Clipboard* Clipboard::instance() { if (!m_instance) { m_instance = new Clipboard(qApp); } return m_instance; }