25 QHBoxLayout* typeLayout =
new QHBoxLayout();
29 _queryComboBox->addItems({
"All",
"Single",
"Time Range",
"Index Range"});
34 connect(
_queryComboBox, &QComboBox::currentTextChanged,
this, &This::showSelectedFormForQuery);
38 auto queryTargetLayout =
new QHBoxLayout();
40 typeLayout->addLayout(queryTargetLayout);
54 void SnapshotSelectorWidget::showSelectedFormForQuery(QString selected)
58 form->setVisible(name == selected);
62 void SnapshotSelectorWidget::addForm(
const QString& key, SnapshotForm* form)
69 void SnapshotSelectorWidget::hideAllForms()
73 form->setVisible(
false);