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.
 
 
 
 
 
 

217 lines
5.6 KiB

/* This file is part of the KDE project
Copyright (C) by Andrew Stanley-Jones <asj@cban.com>
Copyright (C) 2004 Esben Mose Hansen <kde@mosehansen.dk>
Copyright (C) 2008 by Dmitry Suzdalev <dimsuz@gmail.com>
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 of the License, or (at your option) any later version.
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; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KLIPPER_H
#define KLIPPER_H
#include "config-klipper.h"
#include <QElapsedTimer>
#include <QTimer>
#include <QClipboard>
#include <QPointer>
#include "urlgrabber.h"
class KToggleAction;
class KActionCollection;
class KlipperPopup;
class URLGrabber;
class QTime;
class History;
class QAction;
class QMenu;
class QMimeData;
class HistoryItem;
class KNotification;
enum class KlipperMode {
Standalone,
DataEngine
};
class Klipper : public QObject
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.klipper.klipper")
public Q_SLOTS:
Q_SCRIPTABLE QString getClipboardContents();
Q_SCRIPTABLE void setClipboardContents(const QString &s);
Q_SCRIPTABLE void clearClipboardContents();
Q_SCRIPTABLE void clearClipboardHistory();
Q_SCRIPTABLE void saveClipboardHistory();
Q_SCRIPTABLE QStringList getClipboardHistoryMenu();
Q_SCRIPTABLE QString getClipboardHistoryItem(int i);
Q_SCRIPTABLE void showKlipperPopupMenu();
Q_SCRIPTABLE void showKlipperManuallyInvokeActionMenu();
public:
Klipper(QObject* parent, const KSharedConfigPtr& config, KlipperMode mode = KlipperMode::Standalone);
~Klipper() override;
/**
* Get clipboard history (the "document")
*/
History* history() { return m_history; }
URLGrabber* urlGrabber() const { return m_myURLGrabber; }
void saveSettings() const;
KlipperPopup *popup() {
return m_popup;
}
void editData(const QSharedPointer<const HistoryItem> &item);
#ifdef HAVE_PRISON
void showBarcode(const QSharedPointer<const HistoryItem> &item);
#endif
public Q_SLOTS:
void saveSession();
void slotHistoryTopChanged();
void slotConfigure();
void slotCycleNext();
void slotCyclePrev();
protected:
/**
* The selection modes
*
* Don't use 1, as I use that as a guard against passing
* a boolean true as a mode.
*/
enum SelectionMode { Clipboard = 2, Selection = 4 };
/**
* Loads history from disk.
*/
bool loadHistory();
/**
* Save history to disk
* @param empty save empty history instead of actual history
*/
void saveHistory(bool empty = false);
/**
* Check data in clipboard, and if it passes these checks,
* store the data in the clipboard history.
*/
void checkClipData( bool selectionMode );
/**
* Enter clipboard data in the history.
*/
QSharedPointer<HistoryItem> applyClipChanges( const QMimeData* data );
void setClipboard( const HistoryItem& item, int mode );
bool ignoreClipboardChanges() const;
KSharedConfigPtr config() const { return m_config; }
Q_SIGNALS:
void passivePopup(const QString& caption, const QString& text);
void editFinished(QSharedPointer< const HistoryItem > item, int result);
public Q_SLOTS:
void slotPopupMenu();
void slotAskClearHistory();
protected Q_SLOTS:
void showPopupMenu( QMenu * );
void slotRepeatAction();
void setURLGrabberEnabled( bool );
void disableURLGrabber();
private Q_SLOTS:
void newClipData( QClipboard::Mode );
void slotClearClipboard();
void slotHistoryChanged();
void slotQuit();
void slotStartShowTimer();
void slotClearOverflow();
void slotCheckPending();
void loadSettings();
private:
static void updateTimestamp();
QClipboard* m_clip;
QElapsedTimer m_showTimer;
History* m_history;
KlipperPopup *m_popup;
int m_overflowCounter;
KToggleAction* m_toggleURLGrabAction;
QAction* m_clearHistoryAction;
QAction* m_repeatAction;
QAction* m_editAction;
#ifdef HAVE_PRISON
QAction* m_showBarcodeAction;
#endif
QAction* m_configureAction;
QAction* m_quitAction;
QAction* m_cycleNextAction;
QAction* m_cyclePrevAction;
QAction* m_showOnMousePos;
bool m_bKeepContents :1;
bool m_bURLGrabber :1;
bool m_bReplayActionInHistory :1;
bool m_bUseGUIRegExpEditor :1;
bool m_bNoNullClipboard :1;
bool m_bIgnoreSelection :1;
bool m_bSynchronize :1;
bool m_bSelectionTextOnly :1;
bool m_bIgnoreImages :1;
/**
* Avoid reacting to our own changes, using this
* lock.
* Don't manupulate this object directly... use the Ignore struct
* instead
*/
int m_locklevel;
URLGrabber* m_myURLGrabber;
QString m_lastURLGrabberTextSelection;
QString m_lastURLGrabberTextClipboard;
KSharedConfigPtr m_config;
QTimer m_overflowClearTimer;
QTimer m_pendingCheckTimer;
bool m_pendingContentsCheck;
bool blockFetchingNewData();
QString cycleText() const;
KActionCollection* m_collection;
KlipperMode m_mode;
QTimer *m_saveFileTimer = nullptr;
QPointer<KNotification> m_notification;
};
#endif