Tell user to create a new profile if none there

This commit is contained in:
Phil Olynyk 2019-03-25 17:49:24 -04:00
parent 6213819fa5
commit f9919036de

View File

@ -58,8 +58,10 @@ ProfileSelector::ProfileSelector(QWidget *parent) :
ui->diskSpaceInfo->setVisible(false);
QItemSelectionModel * sm = ui->profileView->selectionModel();
if (sm) connect(sm, SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), this, SLOT(on_selectionChanged(QModelIndex,QModelIndex)));
if (sm)
connect(sm, SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), this, SLOT(on_selectionChanged(QModelIndex,QModelIndex)));
ui->buttonEditProfile->setEnabled(false);
ui->buttonOpenProfile->setEnabled(false);
}
ProfileSelector::~ProfileSelector()
@ -162,6 +164,9 @@ void ProfileSelector::updateProfileList()
w+=20;
// ui->profileView->setMinimumWidth(w);
if ( row == 0 ) {
ui->profileInfoLabel->setText("You must create a profile");
}
proxy = new MySortFilterProxyModel2(this);
proxy->setSourceModel(model);
proxy->setSortCaseSensitivity(Qt::CaseInsensitive);
@ -202,13 +207,11 @@ void ProfileSelector::updateProfileHighlight(QString name)
for (int i=0; i<proxy->columnCount(); i++) {
idx = proxy->index(row, i, QModelIndex());
proxy->setData(idx, bg, Qt::ForegroundRole);
proxy->setData(idx, font, Qt::FontRole);
}
break;
}
}
}
@ -232,14 +235,10 @@ Profile *ProfileSelector::SelectProfile(QString profname, bool skippassword=fals
lay->addWidget(e);
int tries = 0;
bool succeeded = false;
do {
e->setText("");
if (dialog.exec() != QDialog::Accepted) { break; }
tries++;
if (prof->user->checkPassword(e->text())) {
succeeded = true;
break;
@ -255,9 +254,7 @@ Profile *ProfileSelector::SelectProfile(QString profname, bool skippassword=fals
} while (tries < 3);
if (!succeeded) return nullptr;
}
// Unselect everything in ProfileView
updateProfileHighlight(profname);
}
@ -513,5 +510,6 @@ void ProfileSelector::on_selectionChanged(const QModelIndex &index, const QModel
ui->diskSpaceInfo->setText("Something went wrong");
}
}
ui->buttonOpenProfile->setEnabled(enabled);
ui->buttonEditProfile->setEnabled(enabled);
}