00001 /* 00002 * stocktickerplugin.h 00003 * 00004 * copyright : (c) 2002 by L.J. Potter 00005 * email : llornkcor@handhelds.org 00006 * 00007 */ 00008 /*************************************************************************** 00009 * * 00010 * This program is free software; you can redistribute it and/or modify * 00011 * it under the terms of the GNU General Public License as published by * 00012 * the Free Software Foundation; either version 2 of the License, or * 00013 * (at your option) any later version. * 00014 * * 00015 ***************************************************************************/ 00016 00017 00018 #ifndef STOCKTICKER_PLUGIN_H 00019 #define STOCKTICKER_PLUGIN_H 00020 00021 #include <opie2/oclickablelabel.h> 00022 #include <opie2/todayplugininterface.h> 00023 #include <opie2/todayconfigwidget.h> 00024 00025 #include <qstring.h> 00026 #include <qwidget.h> 00027 00028 class StockTickerPlugin : public TodayPluginObject { 00029 00030 public: 00031 StockTickerPlugin(); 00032 ~StockTickerPlugin(); 00033 00034 QString pluginName() const; 00035 double versionNumber() const; 00036 QString pixmapNameWidget() const; 00037 QWidget* widget(QWidget *); 00038 QString pixmapNameConfig() const; 00039 TodayConfigWidget* configWidget(QWidget *); 00040 QString appName() const; 00041 bool excludeFromRefresh() const; 00042 00043 }; 00044 00045 #endif
1.4.2