diff options
Diffstat (limited to 'examples/chart/setdataform.h')
-rw-r--r-- | examples/chart/setdataform.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/examples/chart/setdataform.h b/examples/chart/setdataform.h new file mode 100644 index 000000000..e16dd784e --- /dev/null +++ b/examples/chart/setdataform.h @@ -0,0 +1,47 @@ +#ifndef SETDATAFORM_H +#define SETDATAFORM_H + +#include "element.h" + +#include <qdialog.h> + +class TQHBoxLayout; +class TQPushButton; +class TQTable; +class TQVBoxLayout; + + +class SetDataForm: public TQDialog +{ + Q_OBJECT +public: + SetDataForm( ElementVector *elements, int decimalPlaces, + TQWidget *parent = 0, const char *name = "set data form", + bool modal = TRUE, WFlags f = 0 ); + ~SetDataForm() {} + +public slots: + void setColor(); + void setColor( int row, int col ); + void currentChanged( int row, int col ); + void valueChanged( int row, int col ); + +protected slots: + void accept(); + +private: + TQTable *table; + TQPushButton *colorPushButton; + TQPushButton *okPushButton; + TQPushButton *cancelPushButton; + +protected: + TQVBoxLayout *tableButtonBox; + TQHBoxLayout *buttonBox; + +private: + ElementVector *m_elements; + int m_decimalPlaces; +}; + +#endif |