summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/stockticker/stockticker/inputDialog.h
blob: 8fda6ad40e2a1303caff8eb4e9e02eed75d53798 (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

#ifndef INPUTDIALOG_H
#define INPUTDIALOG_H

#include <qvariant.h>
#include <qdialog.h>
#include <qmainwindow.h>

class QLineEdit;
class QCheckBox;

class InputDialog : public  QMainWindow {
    Q_OBJECT

public:
    InputDialog(  );
//    InputDialog( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
    ~InputDialog();
    QString text()const;
    
private:
    QLineEdit* LineEdit1;
    QCheckBox *timeCheck, *dateCheck, *symbolCheck, *nameCheck, *currentPriceCheck, *lastPriceCheck, *openPriceCheck, *minPriceCheck, *maxPriceCheck, *variationCheck, *volumeCheck;
private slots:
    void cleanUp(); 
protected slots:
    
};

#endif // INPUTDIALOG_H