From dc44b0babe9ffa7b29cc6269596703bab8edf6ab Mon Sep 17 00:00:00 2001 From: kergoth Date: Mon, 04 Nov 2002 00:32:59 +0000 Subject: fortune plugin, though it doesnt like me --- (limited to 'noncore/todayplugins/fortune/fortuneplugin.cpp') diff --git a/noncore/todayplugins/fortune/fortuneplugin.cpp b/noncore/todayplugins/fortune/fortuneplugin.cpp new file mode 100644 index 0000000..9751e6f --- a/dev/null +++ b/noncore/todayplugins/fortune/fortuneplugin.cpp @@ -0,0 +1,71 @@ +/* + * fortuneplugin.cpp + * + * copyright : (c) 2002 by Chris Larson + * email : kergoth@handhelds.org + * + */ +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + + + +#include "fortuneplugin.h" +#include "fortunepluginwidget.h" + + +FortunePlugin::FortunePlugin() +{ +} + +FortunePlugin::~FortunePlugin() +{ +} + +QString FortunePlugin::pluginName() const +{ + return QObject::tr( "Fortune plugin" ); +} + +double FortunePlugin::versionNumber() const +{ + return 0.1; +} + +QString FortunePlugin::pixmapNameWidget() const +{ + return "Fortune"; +} + +QWidget* FortunePlugin::widget( QWidget *wid ) +{ + return new FortunePluginWidget( wid, "Fortune" ); +} + +QString FortunePlugin::pixmapNameConfig() const +{ + return "Fortune"; +} + +TodayConfigWidget* FortunePlugin::configWidget( QWidget* wid ) +{ +// return new FortunePluginConfig( wid , "Fortune" ); + return NULL; +} + +QString FortunePlugin::appName() const +{ + return "fortune"; +} + + +bool FortunePlugin::excludeFromRefresh() const +{ + return false; +} -- cgit v0.9.0.2