summaryrefslogtreecommitdiff
path: root/noncore
authorllornkcor <llornkcor>2002-11-03 18:04:17 (UTC)
committer llornkcor <llornkcor>2002-11-03 18:04:17 (UTC)
commit8b3893f3b11731151c19274d2c9ed22d7a00a2b3 (patch) (unidiff)
tree17ef03a9138eda5e6844606deecdb9af1841f855 /noncore
parent16e8fad81f7ee6045990f48edc84542638bf07d7 (diff)
downloadopie-8b3893f3b11731151c19274d2c9ed22d7a00a2b3.zip
opie-8b3893f3b11731151c19274d2c9ed22d7a00a2b3.tar.gz
opie-8b3893f3b11731151c19274d2c9ed22d7a00a2b3.tar.bz2
blah
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.h b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.h
new file mode 100644
index 0000000..4b950dc
--- a/dev/null
+++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.h
@@ -0,0 +1,46 @@
1/*
2 * stocktickerconfig.h
3 *
4 * copyright : (c) 2002 by LJP
5 * email : llornkcor@handhelds.org
6 *
7 */
8/***************************************************************************
9 * *
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 *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17#ifndef STOCKTICKER_PLUGIN_CONFIG_H
18#define STOCKTICKER_PLUGIN_CONFIG_H
19
20#include <qwidget.h>
21#include <opie/todayconfigwidget.h>
22#include <qstring.h>
23
24class QLineEdit;
25class QCheckBox;
26class QPushButton;
27class QCheckBox;
28class QSpinBox;
29
30class StocktickerPluginConfig : public TodayConfigWidget {
31
32public:
33 StocktickerPluginConfig( QWidget *parent, const char *name );
34 ~StocktickerPluginConfig();
35 QString text() const;
36 void writeConfig();
37private:
38 QLineEdit* LineEdit1;
39 QCheckBox *timeCheck, *dateCheck, *symbolCheck, *nameCheck, *currentPriceCheck, *lastPriceCheck, *openPriceCheck, *minPriceCheck, *maxPriceCheck, *variationCheck, *volumeCheck;
40 QPushButton *lookupButton;
41 QSpinBox *timerDelaySpin;
42private slots:
43 void doLookup();
44
45};
46#endif