mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
34 lines
589 B
C++
34 lines
589 B
C++
|
//#include <QApplication>
|
||
|
//#include <QString>
|
||
|
//#include <QPushButton>
|
||
|
|
||
|
#include "CalendarPlugin.h"
|
||
|
#include "mainwindow.h"
|
||
|
|
||
|
QString
|
||
|
CalendarPlugin::pluginDescription() const
|
||
|
{
|
||
|
QString res;
|
||
|
res = "A simple plugin, based on QT calendar(richtext) example" ;
|
||
|
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
QString
|
||
|
CalendarPlugin::pluginName() const
|
||
|
{
|
||
|
return "Calendar" ;
|
||
|
}
|
||
|
|
||
|
QWidget*
|
||
|
CalendarPlugin::pluginWidget(QWidget * parent )
|
||
|
{
|
||
|
MainWindow* window = new MainWindow(parent);
|
||
|
//window->openImage(":/images/example.jpg");
|
||
|
|
||
|
return window;
|
||
|
}
|
||
|
|
||
|
|
||
|
Q_EXPORT_PLUGIN2(calendar_plugin, CalendarPlugin)
|