Bidding round control communicating with the server.
This commit is contained in:
@ -574,6 +574,13 @@ void MainWindow::setupEventTab() {
|
||||
m_biddingRoundControl = make_unique<BiddingRoundControl>();
|
||||
containerLayout->addWidget(m_biddingRoundControl.get());
|
||||
|
||||
/// requests
|
||||
connect(m_biddingRoundControl.get(), &BiddingRoundControl::sendGetRequest, m_core.get(),
|
||||
&GenericCore::sendGetRequest);
|
||||
|
||||
/// responses
|
||||
connect(m_core.get(), &GenericCore::currentBiddingRoundChanged, m_biddingRoundControl.get(),
|
||||
&BiddingRoundControl::onCurrentBiddingRoundChanged);
|
||||
|
||||
ui->tabWidget->insertTab(0, containerWidget, "Event (&1)");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user