author | llornkcor <llornkcor> | 2003-02-23 14:31:07 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-02-23 14:31:07 (UTC) |
commit | 135c6fb1d73d322b43c8a487d40675278f3bf5f5 (patch) (unidiff) | |
tree | 43d007722409e3d3ff9111ab95acd79464e37bee | |
parent | a566d1696216eead6a3e4ed8274ca6c04e296165 (diff) | |
download | opie-135c6fb1d73d322b43c8a487d40675278f3bf5f5.zip opie-135c6fb1d73d322b43c8a487d40675278f3bf5f5.tar.gz opie-135c6fb1d73d322b43c8a487d40675278f3bf5f5.tar.bz2 |
remove bogus include
3 files changed, 0 insertions, 3 deletions
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.h b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.h index 7e7698f..e88c687 100644 --- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.h +++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.h | |||
@@ -1,47 +1,46 @@ | |||
1 | /* | 1 | /* |
2 | * stocktickerplugin.h | 2 | * stocktickerplugin.h |
3 | * | 3 | * |
4 | * copyright : (c) 2002 by L.J. Potter | 4 | * copyright : (c) 2002 by L.J. Potter |
5 | * email : llornkcor@handhelds.org | 5 | * email : llornkcor@handhelds.org |
6 | * | 6 | * |
7 | */ | 7 | */ |
8 | /*************************************************************************** | 8 | /*************************************************************************** |
9 | * * | 9 | * * |
10 | * This program is free software; you can redistribute it and/or modify * | 10 | * This program is free software; you can redistribute it and/or modify * |
11 | * it under the terms of the GNU General Public License as published by * | 11 | * it under the terms of the GNU General Public License as published by * |
12 | * the Free Software Foundation; either version 2 of the License, or * | 12 | * the Free Software Foundation; either version 2 of the License, or * |
13 | * (at your option) any later version. * | 13 | * (at your option) any later version. * |
14 | * * | 14 | * * |
15 | ***************************************************************************/ | 15 | ***************************************************************************/ |
16 | 16 | ||
17 | 17 | ||
18 | #ifndef STOCKTICKER_PLUGIN_H | 18 | #ifndef STOCKTICKER_PLUGIN_H |
19 | #define STOCKTICKER_PLUGIN_H | 19 | #define STOCKTICKER_PLUGIN_H |
20 | 20 | ||
21 | #include <qstring.h> | 21 | #include <qstring.h> |
22 | #include <qwidget.h> | 22 | #include <qwidget.h> |
23 | 23 | ||
24 | #include <opie/tododb.h> | ||
25 | #include <opie/oclickablelabel.h> | 24 | #include <opie/oclickablelabel.h> |
26 | 25 | ||
27 | #include <opie/todayplugininterface.h> | 26 | #include <opie/todayplugininterface.h> |
28 | #include <opie/todayconfigwidget.h> | 27 | #include <opie/todayconfigwidget.h> |
29 | 28 | ||
30 | class StockTickerPlugin : public TodayPluginObject { | 29 | class StockTickerPlugin : public TodayPluginObject { |
31 | 30 | ||
32 | public: | 31 | public: |
33 | StockTickerPlugin(); | 32 | StockTickerPlugin(); |
34 | ~StockTickerPlugin(); | 33 | ~StockTickerPlugin(); |
35 | 34 | ||
36 | QString pluginName() const; | 35 | QString pluginName() const; |
37 | double versionNumber() const; | 36 | double versionNumber() const; |
38 | QString pixmapNameWidget() const; | 37 | QString pixmapNameWidget() const; |
39 | QWidget* widget(QWidget *); | 38 | QWidget* widget(QWidget *); |
40 | QString pixmapNameConfig() const; | 39 | QString pixmapNameConfig() const; |
41 | TodayConfigWidget* configWidget(QWidget *); | 40 | TodayConfigWidget* configWidget(QWidget *); |
42 | QString appName() const; | 41 | QString appName() const; |
43 | bool excludeFromRefresh() const; | 42 | bool excludeFromRefresh() const; |
44 | 43 | ||
45 | }; | 44 | }; |
46 | 45 | ||
47 | #endif | 46 | #endif |
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.h b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.h index 1189bf5..8a8fbf8 100644 --- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.h +++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.h | |||
@@ -1,63 +1,62 @@ | |||
1 | /* | 1 | /* |
2 | * stocktickerpluginwidget.h | 2 | * stocktickerpluginwidget.h |
3 | * | 3 | * |
4 | * copyright : (c) 2002 by L.J. Potter | 4 | * copyright : (c) 2002 by L.J. Potter |
5 | * email : lornkcor@handhelds.org | 5 | * email : lornkcor@handhelds.org |
6 | * | 6 | * |
7 | */ | 7 | */ |
8 | /*************************************************************************** | 8 | /*************************************************************************** |
9 | * * | 9 | * * |
10 | * This program is free software; you can redistribute it and/or modify * | 10 | * This program is free software; you can redistribute it and/or modify * |
11 | * it under the terms of the GNU General Public License as published by * | 11 | * it under the terms of the GNU General Public License as published by * |
12 | * the Free Software Foundation; either version 2 of the License, or * | 12 | * the Free Software Foundation; either version 2 of the License, or * |
13 | * (at your option) any later version. * | 13 | * (at your option) any later version. * |
14 | * * | 14 | * * |
15 | ***************************************************************************/ | 15 | ***************************************************************************/ |
16 | 16 | ||
17 | 17 | ||
18 | #ifndef STOCKTICKERL_PLUGIN_WIDGET_H | 18 | #ifndef STOCKTICKERL_PLUGIN_WIDGET_H |
19 | #define STOCKTICKERL_PLUGIN_WIDGET_H | 19 | #define STOCKTICKERL_PLUGIN_WIDGET_H |
20 | 20 | ||
21 | #include <qsocket.h> | 21 | #include <qsocket.h> |
22 | #include <qstring.h> | 22 | #include <qstring.h> |
23 | #include <qwidget.h> | 23 | #include <qwidget.h> |
24 | #include <qlineedit.h> | 24 | #include <qlineedit.h> |
25 | 25 | ||
26 | #include <opie/tododb.h> | ||
27 | #include <opie/oclickablelabel.h> | 26 | #include <opie/oclickablelabel.h> |
28 | #include <opie/oticker.h> | 27 | #include <opie/oticker.h> |
29 | 28 | ||
30 | #include <sys/types.h> | 29 | #include <sys/types.h> |
31 | #include <sys/uio.h> | 30 | #include <sys/uio.h> |
32 | #include <unistd.h> | 31 | #include <unistd.h> |
33 | #include <stdio.h> | 32 | #include <stdio.h> |
34 | #include <stdlib.h> | 33 | #include <stdlib.h> |
35 | #include <string.h> | 34 | #include <string.h> |
36 | 35 | ||
37 | class QTimer; | 36 | class QTimer; |
38 | 37 | ||
39 | class StockTickerPluginWidget : public QWidget { | 38 | class StockTickerPluginWidget : public QWidget { |
40 | 39 | ||
41 | Q_OBJECT | 40 | Q_OBJECT |
42 | 41 | ||
43 | public: | 42 | public: |
44 | StockTickerPluginWidget( QWidget *parent, const char *name ); | 43 | StockTickerPluginWidget( QWidget *parent, const char *name ); |
45 | ~StockTickerPluginWidget(); | 44 | ~StockTickerPluginWidget(); |
46 | 45 | ||
47 | protected slots: | 46 | protected slots: |
48 | void doStocks(); | 47 | void doStocks(); |
49 | void isConnected(); | 48 | void isConnected(); |
50 | void socketError(int); | 49 | void socketError(int); |
51 | void checkConnection(); | 50 | void checkConnection(); |
52 | private: | 51 | private: |
53 | int updateSpeed; | 52 | int updateSpeed; |
54 | QString symbollist; | 53 | QString symbollist; |
55 | bool wasError; | 54 | bool wasError; |
56 | QSocket *Sock; | 55 | QSocket *Sock; |
57 | void timerEvent( QTimerEvent * ); | 56 | void timerEvent( QTimerEvent * ); |
58 | void init(); | 57 | void init(); |
59 | // void DefProxy(void); | 58 | // void DefProxy(void); |
60 | int timerDelay; | 59 | int timerDelay; |
61 | }; | 60 | }; |
62 | 61 | ||
63 | #endif | 62 | #endif |
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktimerpluginwidget.h b/noncore/todayplugins/stockticker/stocktickerlib/stocktimerpluginwidget.h index 2feef80..d7b6047 100644 --- a/noncore/todayplugins/stockticker/stocktickerlib/stocktimerpluginwidget.h +++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktimerpluginwidget.h | |||
@@ -1,45 +1,44 @@ | |||
1 | /* | 1 | /* |
2 | * mailpluginwidget.h | 2 | * mailpluginwidget.h |
3 | * | 3 | * |
4 | * copyright : (c) 2002 by Maximilian Reiß | 4 | * copyright : (c) 2002 by Maximilian Reiß |
5 | * email : harlekin@handhelds.org | 5 | * email : harlekin@handhelds.org |
6 | * | 6 | * |
7 | */ | 7 | */ |
8 | /*************************************************************************** | 8 | /*************************************************************************** |
9 | * * | 9 | * * |
10 | * This program is free software; you can redistribute it and/or modify * | 10 | * This program is free software; you can redistribute it and/or modify * |
11 | * it under the terms of the GNU General Public License as published by * | 11 | * it under the terms of the GNU General Public License as published by * |
12 | * the Free Software Foundation; either version 2 of the License, or * | 12 | * the Free Software Foundation; either version 2 of the License, or * |
13 | * (at your option) any later version. * | 13 | * (at your option) any later version. * |
14 | * * | 14 | * * |
15 | ***************************************************************************/ | 15 | ***************************************************************************/ |
16 | 16 | ||
17 | 17 | ||
18 | #ifndef MAIL_PLUGIN_WIDGET_H | 18 | #ifndef MAIL_PLUGIN_WIDGET_H |
19 | #define MAIL_PLUGIN_WIDGET_H | 19 | #define MAIL_PLUGIN_WIDGET_H |
20 | 20 | ||
21 | #include <qstring.h> | 21 | #include <qstring.h> |
22 | #include <qwidget.h> | 22 | #include <qwidget.h> |
23 | 23 | ||
24 | #include <opie/tododb.h> | ||
25 | #include <opie/oclickablelabel.h> | 24 | #include <opie/oclickablelabel.h> |
26 | 25 | ||
27 | class MailPluginWidget : public QWidget { | 26 | class MailPluginWidget : public QWidget { |
28 | 27 | ||
29 | Q_OBJECT | 28 | Q_OBJECT |
30 | 29 | ||
31 | 30 | ||
32 | public: | 31 | public: |
33 | MailPluginWidget( QWidget *parent, const char *name ); | 32 | MailPluginWidget( QWidget *parent, const char *name ); |
34 | ~MailPluginWidget(); | 33 | ~MailPluginWidget(); |
35 | 34 | ||
36 | protected slots: | 35 | protected slots: |
37 | void startMail(); | 36 | void startMail(); |
38 | 37 | ||
39 | private: | 38 | private: |
40 | OClickableLabel *mailLabel; | 39 | OClickableLabel *mailLabel; |
41 | void readConfig(); | 40 | void readConfig(); |
42 | void getInfo(); | 41 | void getInfo(); |
43 | }; | 42 | }; |
44 | 43 | ||
45 | #endif | 44 | #endif |