From bd0f3345a938b35ce6a12f6150373b0955b8dd12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:24:15 -0500 Subject: Add Qt3 development HEAD version --- examples/chart/setdataform.h | 47 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 examples/chart/setdataform.h (limited to 'examples/chart/setdataform.h') diff --git a/examples/chart/setdataform.h b/examples/chart/setdataform.h new file mode 100644 index 0000000..39ff2b2 --- /dev/null +++ b/examples/chart/setdataform.h @@ -0,0 +1,47 @@ +#ifndef SETDATAFORM_H +#define SETDATAFORM_H + +#include "element.h" + +#include + +class QHBoxLayout; +class QPushButton; +class QTable; +class QVBoxLayout; + + +class SetDataForm: public QDialog +{ + Q_OBJECT +public: + SetDataForm( ElementVector *elements, int decimalPlaces, + QWidget *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: + QTable *table; + QPushButton *colorPushButton; + QPushButton *okPushButton; + QPushButton *cancelPushButton; + +protected: + QVBoxLayout *tableButtonBox; + QHBoxLayout *buttonBox; + +private: + ElementVector *m_elements; + int m_decimalPlaces; +}; + +#endif -- cgit v1.2.1