OpenProfile password fixes, show current open profile in bold to make it more visible

This commit is contained in:
Mark Watkins 2018-06-05 10:14:07 +10:00
parent 7e5d695726
commit 640ae02c83
4 changed files with 53 additions and 34 deletions

View File

@ -390,19 +390,24 @@ void MainWindow::firstRunMessage()
QString GenerateWelcomeHTML(); QString GenerateWelcomeHTML();
void MainWindow::OpenProfile(QString profileName) bool MainWindow::OpenProfile(QString profileName)
{ {
Profile * prof = Profiles::profiles[profileName]; auto pit = Profiles::profiles.find(profileName);
if (pit == Profiles::profiles.end()) return false;
Profile * prof = pit.value();
if (p_profile) { if (p_profile) {
if ((prof != p_profile)) { if ((prof != p_profile)) {
CloseProfile(); CloseProfile();
} else { } else {
// Already open // Already open
return; return false;
} }
} }
if (!prof) return; prof = profileSelector->SelectProfile(profileName); // asks for the password and updates stuff in profileSelector tab
if (!prof) {
return false;
}
// TODO: Check profile password // TODO: Check profile password
// Check Lockfile // Check Lockfile
@ -415,14 +420,15 @@ void MainWindow::OpenProfile(QString profileName)
QObject::tr("You can only work with one instance of an individual SleepyHead profile at a time.")+"\n\n"+ QObject::tr("You can only work with one instance of an individual SleepyHead profile at a time.")+"\n\n"+
QObject::tr("If you are using cloud storage, make sure SleepyHead is closed and syncing has completed first on the other computer before proceeding."), QObject::tr("If you are using cloud storage, make sure SleepyHead is closed and syncing has completed first on the other computer before proceeding."),
QMessageBox::Cancel |QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Cancel) { QMessageBox::Cancel |QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Cancel) {
return; return false;
} }
} // not worried about localhost locks anymore, just silently drop it. } // not worried about localhost locks anymore, just silently drop it.
prof->removeLock(); prof->removeLock();
} }
qstatus->setText(tr("Loading Data"));
qprogress->show(); // qstatus->setText(tr("Loading Data"));
// qprogress->show();
p_profile = prof; p_profile = prof;
@ -471,7 +477,7 @@ void MainWindow::OpenProfile(QString profileName)
// Reload everything profile related // Reload everything profile related
if (daily) { if (daily) {
qCritical() << "OpenProfile called with active Daily object!"; qCritical() << "OpenProfile called with active Daily object!";
return; return false;
} }
welcome = new Welcome(ui->tabWidget); welcome = new Welcome(ui->tabWidget);
ui->tabWidget->insertTab(1, welcome, tr("Welcome")); ui->tabWidget->insertTab(1, welcome, tr("Welcome"));
@ -482,7 +488,7 @@ void MainWindow::OpenProfile(QString profileName)
if (overview) { if (overview) {
qCritical() << "OpenProfile called with active Overview object!"; qCritical() << "OpenProfile called with active Overview object!";
return; return false;
} }
overview = new Overview(ui->tabWidget, daily->graphView()); overview = new Overview(ui->tabWidget, daily->graphView());
ui->tabWidget->insertTab(3, overview, STR_TR_Overview); ui->tabWidget->insertTab(3, overview, STR_TR_Overview);
@ -496,17 +502,15 @@ void MainWindow::OpenProfile(QString profileName)
AppSetting->setProfileName(p_profile->user->userName()); AppSetting->setProfileName(p_profile->user->userName());
mainwin->setWindowTitle(STR_TR_SleepyHead + QString(" %1 (" + tr("Profile") + ": %2)").arg(getBranchVersion()).arg(AppSetting->profileName())); mainwin->setWindowTitle(STR_TR_SleepyHead + QString(" %1 (" + tr("Profile") + ": %2)").arg(getBranchVersion()).arg(AppSetting->profileName()));
profileSelector->updateProfileHighlight(profileName);
ui->oximetryButton->setDisabled(false); ui->oximetryButton->setDisabled(false);
ui->dailyButton->setDisabled(false); ui->dailyButton->setDisabled(false);
ui->overviewButton->setDisabled(false); ui->overviewButton->setDisabled(false);
ui->statisticsButton->setDisabled(false); ui->statisticsButton->setDisabled(false);
ui->importButton->setDisabled(false); ui->importButton->setDisabled(false);
qprogress->hide(); //qprogress->hide();
qstatus->setText(""); //qstatus->setText("");
return true;
} }
void MainWindow::CloseProfile() void MainWindow::CloseProfile()
@ -545,11 +549,12 @@ void MainWindow::Startup()
firstRunMessage(); firstRunMessage();
if (Profiles::profiles.contains(lastProfile) && AppSetting->autoOpenLastUsed()) { if (Profiles::profiles.contains(lastProfile) && AppSetting->autoOpenLastUsed()) {
OpenProfile(lastProfile); if (OpenProfile(lastProfile)) {
ui->tabWidget->setCurrentIndex(AppSetting->openTabAtStart()); ui->tabWidget->setCurrentIndex(AppSetting->openTabAtStart());
if (AppSetting->autoLaunchImport()) { if (AppSetting->autoLaunchImport()) {
on_importButton_clicked(); on_importButton_clicked();
}
} }
} else { } else {
ui->tabWidget->setCurrentWidget(profileSelector); ui->tabWidget->setCurrentWidget(profileSelector);

View File

@ -93,7 +93,7 @@ class MainWindow : public QMainWindow
void CheckForUpdates(); void CheckForUpdates();
void CloseProfile(); void CloseProfile();
void OpenProfile(QString name); bool OpenProfile(QString name);
/*! \fn Notify(QString s,int ms=5000, QString title="SleepyHead v"+VersionString()); /*! \fn Notify(QString s,int ms=5000, QString title="SleepyHead v"+VersionString());
\brief Pops up a message box near the system tray \brief Pops up a message box near the system tray

View File

@ -177,36 +177,47 @@ void ProfileSelector::updateProfileList()
void ProfileSelector::updateProfileHighlight(QString name) void ProfileSelector::updateProfileHighlight(QString name)
{ {
QFont font = QApplication::font(); QFont font = QApplication::font();
font.setBold(false); font.setBold(false);
QBrush bg = QColor(Qt::black); QBrush bg = QColor(Qt::black);
for (int row=0;row < model->rowCount(); row++) { for (int row=0;row < model->rowCount(); row++) {
for (int i=0; i<model->columnCount(); i++) { for (int i=0; i<model->columnCount(); i++) {
model->setData(model->index(row, i, QModelIndex()), bg, Qt::ForegroundRole); QModelIndex idx = model->index(row, i, QModelIndex());
//model->setData(model->index(row, i, QModelIndex()), font, Qt::FontRole); model->setData(idx, bg, Qt::ForegroundRole);
model->setData(idx, font, Qt::FontRole);
} }
} }
bg = QBrush(openProfileHighlightColor); bg = QBrush(openProfileHighlightColor);
font = QApplication::font();
font.setBold(true); font.setBold(true);
for (int row=0;row < proxy->rowCount(); row++) { for (int row=0;row < proxy->rowCount(); row++) {
if (proxy->data(proxy->index(row, 0, QModelIndex())).toString().compare(name)==0) { QModelIndex idx = proxy->index(row, 0, QModelIndex());
if (proxy->data(idx).toString().compare(name)==0) {
on_selectionChanged(idx, QModelIndex());
for (int i=0; i<proxy->columnCount(); i++) { for (int i=0; i<proxy->columnCount(); i++) {
proxy->setData(proxy->index(row, i, QModelIndex()), bg, Qt::ForegroundRole); idx = proxy->index(row, i, QModelIndex());
// proxy->setData(model->index(row, i, QModelIndex()), font, Qt::FontRole);
proxy->setData(idx, bg, Qt::ForegroundRole);
proxy->setData(idx, font, Qt::FontRole);
} }
on_selectionChanged(proxy->index(row, 0, QModelIndex()), QModelIndex());
break; break;
} }
} }
} }
void ProfileSelector::SelectProfile(QString profname) Profile *ProfileSelector::SelectProfile(QString profname)
{ {
qDebug() << "Selecting new profile" << profname; qDebug() << "Selecting new profile" << profname;
Profile * prof = Profiles::profiles[profname]; auto pit = Profiles::profiles.find(profname);
if (pit == Profiles::profiles.end()) return nullptr;
Profile * prof = pit.value();
if (prof != p_profile) { if (prof != p_profile) {
if (prof->user->hasPassword()) { if (prof->user->hasPassword()) {
@ -242,16 +253,15 @@ void ProfileSelector::SelectProfile(QString profname)
} }
} }
} while (tries < 3); } while (tries < 3);
if (!succeeded) return; if (!succeeded) return nullptr;
} }
// Unselect everything in ProfileView // Unselect everything in ProfileView
mainwin->OpenProfile(profname);
updateProfileHighlight(profname); updateProfileHighlight(profname);
} }
return prof;
} }
void ProfileSelector::on_profileView_doubleClicked(const QModelIndex &index) void ProfileSelector::on_profileView_doubleClicked(const QModelIndex &index)
@ -259,7 +269,9 @@ void ProfileSelector::on_profileView_doubleClicked(const QModelIndex &index)
QModelIndex idx = proxy->index(index.row(), 0, QModelIndex()); QModelIndex idx = proxy->index(index.row(), 0, QModelIndex());
QString profname = proxy->data(idx, Qt::UserRole+2).toString(); QString profname = proxy->data(idx, Qt::UserRole+2).toString();
SelectProfile(profname); //if (SelectProfile(profname)) {
mainwin->OpenProfile(profname);
//}
} }
void ProfileSelector::on_profileFilter_textChanged(const QString &arg1) void ProfileSelector::on_profileFilter_textChanged(const QString &arg1)

View File

@ -13,6 +13,8 @@
#include <QStandardItemModel> #include <QStandardItemModel>
#include <QSortFilterProxyModel> #include <QSortFilterProxyModel>
#include "SleepLib/profiles.h"
namespace Ui { namespace Ui {
class ProfileSelector; class ProfileSelector;
} }
@ -35,7 +37,7 @@ public:
~ProfileSelector(); ~ProfileSelector();
void updateProfileList(); void updateProfileList();
void SelectProfile(QString profname); Profile *SelectProfile(QString profname);
void updateProfileHighlight(QString name); void updateProfileHighlight(QString name);
private slots: private slots: