progress bar, code cleaning, popup menu for closing tabs

This commit is contained in:
Paul Leroy
2025-03-04 16:31:58 +01:00
parent 1c3e619fe5
commit 6a1982a0a0
9 changed files with 109 additions and 44 deletions
+9 -1
View File
@@ -64,8 +64,9 @@ protected:
};
class WolmanCustomPlot : public QWidget
class WolmanCustomPlot : public QCustomPlot
{
Q_OBJECT
public:
WolmanCustomPlot(const Eigen::ArrayXf& d_sample);
@@ -73,6 +74,13 @@ public:
QCPGraph* m_graph;
void emitCloseTab(){emit closeTab();}
void mousePressEvent(QMouseEvent* event) override;
signals:
void closeTab();
private:
Ui::WolmanCustomPlot *ui;
};