mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-06 08:05:18 -04:00
forget to add this
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4242 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
ccb9699f81
commit
67fcb01573
9 changed files with 2312 additions and 0 deletions
32
plugins/linkscloud_plugin/LinksPlugin.cpp
Normal file
32
plugins/linkscloud_plugin/LinksPlugin.cpp
Normal file
|
@ -0,0 +1,32 @@
|
|||
//#include <QApplication>
|
||||
//#include <QString>
|
||||
//#include <QPushButton>
|
||||
|
||||
#include "LinksPlugin.h"
|
||||
#include "LinksDialog.h"
|
||||
|
||||
QString
|
||||
LinksPlugin::pluginDescription() const
|
||||
{
|
||||
QString res;
|
||||
res = "Links Cloud plugin" ;
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
QString
|
||||
LinksPlugin::pluginName() const
|
||||
{
|
||||
return "Links Cloud" ;
|
||||
}
|
||||
|
||||
QWidget*
|
||||
LinksPlugin::pluginWidget(QWidget * parent )
|
||||
{
|
||||
LinksDialog* window = new LinksDialog(parent);
|
||||
|
||||
return window;
|
||||
}
|
||||
|
||||
|
||||
Q_EXPORT_PLUGIN2(linkscloud_plugin, LinksPlugin)
|
Loading…
Add table
Add a link
Reference in a new issue