Browse Source

bigger clickable zone

master
rico rico 4 years ago
parent
commit
c582043dc5
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      soft/thermostat/src/mainwindow.cpp

+ 3
- 0
soft/thermostat/src/mainwindow.cpp View File

@ -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;
}


Loading…
Cancel
Save