From 0b60755eb7c38ae2995690f57ce405b5f0052f0f Mon Sep 17 00:00:00 2001 From: pommicket Date: Thu, 7 Aug 2025 14:37:02 -0400 Subject: Add macondo tab, run process --- quacker/macondo.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 quacker/macondo.h (limited to 'quacker/macondo.h') diff --git a/quacker/macondo.h b/quacker/macondo.h new file mode 100644 index 0000000..e6eb749 --- /dev/null +++ b/quacker/macondo.h @@ -0,0 +1,20 @@ +#include + +class QPushButton; +class QProcess; +class QTimer; + +class Macondo : public QWidget { +Q_OBJECT +public: + explicit Macondo(QWidget *parent = 0); +public slots: + void run(); + void updateResults(); + void processStarted(); +private: + QPushButton *m_runButton; + QTimer *m_updateTimer; + std::string m_execPath; + QProcess *m_process = nullptr; +}; -- cgit v1.2.3