summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/stockticker/stocktickerlib/stocktickerconfig.h
blob: 10f9678af924260d82fc3b6180aa60cf9a0598e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * stocktickerconfig.h
 *
 * copyright   : (c) 2002 by LJP
 * email       : llornkcor@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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef STOCKTICKER_PLUGIN_CONFIG_H
#define STOCKTICKER_PLUGIN_CONFIG_H

#include <qwidget.h>
#include <opie/todayconfigwidget.h>
#include <qstring.h>

class QLineEdit;
class QCheckBox;
class QPushButton;
class QCheckBox;
class QSpinBox;

class StocktickerPluginConfig : public TodayConfigWidget {
    Q_OBJECT
public:
    StocktickerPluginConfig( QWidget *parent,  const char *name );
    ~StocktickerPluginConfig();
    QString text() const;
    void writeConfig();
private:
    QLineEdit* LineEdit1;
    QCheckBox *timeCheck, *dateCheck, *symbolCheck, *nameCheck, *currentPriceCheck, *lastPriceCheck, *openPriceCheck, *minPriceCheck, *maxPriceCheck, *variationCheck, *volumeCheck;
    QPushButton *lookupButton;
    QSpinBox *timerDelaySpin, *scrollSpeed, *scrollLength;
private slots:
    void doLookup();

};
#endif