From c582043dc5c9bdc6d762226dc4114e5546b93f73 Mon Sep 17 00:00:00 2001 From: Richard Genoud Date: Mon, 6 Jan 2020 19:39:37 +0100 Subject: [PATCH] bigger clickable zone --- soft/thermostat/src/mainwindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/soft/thermostat/src/mainwindow.cpp b/soft/thermostat/src/mainwindow.cpp index c24adc2..ca7cdc4 100644 --- a/soft/thermostat/src/mainwindow.cpp +++ b/soft/thermostat/src/mainwindow.cpp @@ -32,7 +32,10 @@ MainWindow::MainWindow(QWidget *parent) : zone = new ZoneItem(s->m_rooms.at(i).name, this); zone->m_zoneNameBtn.setProperty("idx", i); zone->m_target_temperature = get_target_temperature(i); + /* TODO: make a big clickable zone instead of 3 tiny buttons */ connect(&(zone->m_zoneNameBtn), SIGNAL(clicked()), this, SLOT(show_boost())); + connect(&(zone->m_temperatureBtn), SIGNAL(clicked()), this, SLOT(show_boost())); + connect(&(zone->m_hygroBtn), SIGNAL(clicked()), this, SLOT(show_boost())); m_zones << zone; }