Qt Quick based coffee brewing control chart.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

newpointcontrol.h 443B

1234567891011121314151617181920212223
  1. #ifndef NEWPOINTCONTROL_H
  2. #define NEWPOINTCONTROL_H
  3. #include <QWidget>
  4. #include <QVariant>
  5. #include <QLineEdit>
  6. class NewPointControl : public QWidget
  7. {
  8. Q_OBJECT
  9. public:
  10. explicit NewPointControl(QWidget *parent = 0);
  11. signals:
  12. void newPoint(QVariantMap pointDescription);
  13. public slots:
  14. void plotButtonClicked();
  15. private:
  16. QLineEdit *groundsMass;
  17. QLineEdit *brewMass;
  18. QLineEdit *tds;
  19. };
  20. #endif // NEWPOINTCONTROL_H