mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
42 lines
974 B
C++
42 lines
974 B
C++
/* This file is part of the KDE project
|
|
|
|
Copyright (C) 2002 Patrick Charbonnier <pch@valleeurpe.net>
|
|
Copyright (C) 2010 Matthias Fuchs <mat69@gmx.net>
|
|
|
|
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.
|
|
*/
|
|
|
|
#ifndef KGETPLUGIN_H
|
|
#define KGETPLUGIN_H
|
|
|
|
#include <KDE/KParts/Plugin>
|
|
|
|
#include <QtCore/QPointer>
|
|
|
|
class KToggleAction;
|
|
|
|
class KGetPlugin : public KParts::Plugin
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
KGetPlugin(QObject* parent, const QVariantList&);
|
|
virtual ~KGetPlugin();
|
|
|
|
private Q_SLOTS:
|
|
void slotShowDrop();
|
|
void slotShowLinks();
|
|
void slotShowSelectedLinks();
|
|
void slotImportLinks();
|
|
void showPopup();
|
|
|
|
private:
|
|
void getLinks(bool selectedOnly = false);
|
|
|
|
QStringList m_linkList;
|
|
KToggleAction *m_dropTargetAction;
|
|
};
|
|
|
|
#endif
|