Added a placeholder for the configuration of the monthly financial need.

This commit is contained in:
2026-02-16 11:46:01 +01:00
parent f200fff99e
commit f8201ead71
2 changed files with 36 additions and 7 deletions

View File

@ -5,6 +5,7 @@
class ModelSummary;
class QLabel;
class QSpinBox;
class SummaryWidget : public QWidget {
Q_OBJECT
@ -12,9 +13,16 @@ class SummaryWidget : public QWidget {
public:
explicit SummaryWidget(std::shared_ptr<ModelSummary> modelSummary, QWidget* parent = nullptr);
private slots:
void onFinancialNeedChanged(int newFinancialNeed);
private:
std::shared_ptr<ModelSummary> m_modelSummary;
// TODO read from settings (maybe via model/core; maybe set in constructor)
const int m_financialNeed = 13942;
QSpinBox* m_financialNeedBox = nullptr;
QLabel* m_rowCountValueLabel;
QLabel* m_nExpectedBiddingsValueLabel;