2018-06-14 07:25:54 +00:00
/* Profile Selector Implementation
2018-05-06 17:56:05 +00:00
*
2021-11-02 20:34:12 +00:00
* Copyright ( c ) 2019 - 2022 The OSCAR Team
2018-05-06 17:56:05 +00:00
* Copyright ( c ) 2018 Mark Watkins < mark @ jedimark . net >
*
* This file is subject to the terms and conditions of the GNU General Public
2018-06-04 20:48:38 +00:00
* License . See the file COPYING in the main directory of the source code
* for more details . */
2018-05-06 17:56:05 +00:00
# include <QMessageBox>
2018-04-22 12:06:48 +00:00
# include "profileselector.h"
# include "ui_profileselector.h"
2018-05-06 17:56:05 +00:00
2018-04-22 12:06:48 +00:00
# include "SleepLib/profiles.h"
# include "daily.h"
# include "overview.h"
# include "statistics.h"
# include "mainwindow.h"
# include "newprofile.h"
2020-01-15 21:34:28 +00:00
# include "version.h"
2018-04-22 12:06:48 +00:00
extern MainWindow * mainwin ;
MySortFilterProxyModel2 : : MySortFilterProxyModel2 ( QObject * parent )
: QSortFilterProxyModel ( parent )
{
}
bool MySortFilterProxyModel2 : : filterAcceptsRow ( int sourceRow ,
const QModelIndex & sourceParent ) const
{
QModelIndex index0 = sourceModel ( ) - > index ( sourceRow , 0 , sourceParent ) ;
QModelIndex index1 = sourceModel ( ) - > index ( sourceRow , 1 , sourceParent ) ;
QModelIndex index2 = sourceModel ( ) - > index ( sourceRow , 2 , sourceParent ) ;
QModelIndex index5 = sourceModel ( ) - > index ( sourceRow , 5 , sourceParent ) ;
return ( sourceModel ( ) - > data ( index0 ) . toString ( ) . contains ( filterRegExp ( ) )
| | sourceModel ( ) - > data ( index1 ) . toString ( ) . contains ( filterRegExp ( ) )
| | sourceModel ( ) - > data ( index2 ) . toString ( ) . contains ( filterRegExp ( ) )
| | sourceModel ( ) - > data ( index5 ) . toString ( ) . contains ( filterRegExp ( ) )
) ;
}
ProfileSelector : : ProfileSelector ( QWidget * parent ) :
QWidget ( parent ) ,
ui ( new Ui : : ProfileSelector )
{
ui - > setupUi ( this ) ;
model = nullptr ;
proxy = nullptr ;
2018-06-04 23:26:46 +00:00
showDiskUsage = false ; // in case I want to preference it later
2018-05-06 21:45:56 +00:00
on_diskSpaceInfo_linkActivated ( showDiskUsage ? " show " : " hide " ) ;
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
ui - > versionLabel - > setText ( " " ) ;
2018-05-06 21:45:56 +00:00
ui - > diskSpaceInfo - > setVisible ( false ) ;
2018-06-04 23:26:46 +00:00
QItemSelectionModel * sm = ui - > profileView - > selectionModel ( ) ;
2019-03-25 21:49:24 +00:00
if ( sm )
connect ( sm , SIGNAL ( currentRowChanged ( QModelIndex , QModelIndex ) ) , this , SLOT ( on_selectionChanged ( QModelIndex , QModelIndex ) ) ) ;
2018-06-04 23:26:46 +00:00
ui - > buttonEditProfile - > setEnabled ( false ) ;
2019-03-25 21:49:24 +00:00
ui - > buttonOpenProfile - > setEnabled ( false ) ;
2018-04-22 12:06:48 +00:00
}
ProfileSelector : : ~ ProfileSelector ( )
{
2018-06-04 23:26:46 +00:00
QItemSelectionModel * sm = ui - > profileView - > selectionModel ( ) ;
disconnect ( sm , SIGNAL ( currentRowChanged ( QModelIndex , QModelIndex ) ) , this , SLOT ( on_selectionChanged ( QModelIndex , QModelIndex ) ) ) ;
2018-04-22 12:06:48 +00:00
delete ui ;
}
2018-05-06 20:43:22 +00:00
const Qt : : GlobalColor openProfileHighlightColor = Qt : : darkGreen ;
2018-04-22 12:06:48 +00:00
void ProfileSelector : : updateProfileList ( )
{
2018-06-06 16:03:51 +00:00
QItemSelectionModel * sm = ui - > profileView - > selectionModel ( ) ;
if ( sm ) disconnect ( sm , SIGNAL ( currentRowChanged ( QModelIndex , QModelIndex ) ) , this , SLOT ( on_selectionChanged ( QModelIndex , QModelIndex ) ) ) ;
2018-04-22 12:06:48 +00:00
QString name ;
int w = 0 ;
if ( proxy ) delete proxy ;
if ( model ) delete model ;
const int columns = 6 ;
model = new QStandardItemModel ( 0 , columns , this ) ;
model - > setHeaderData ( 0 , Qt : : Horizontal , tr ( " Profile " ) ) ;
model - > setHeaderData ( 1 , Qt : : Horizontal , tr ( " Ventilator Brand " ) ) ;
model - > setHeaderData ( 2 , Qt : : Horizontal , tr ( " Ventilator Model " ) ) ;
model - > setHeaderData ( 3 , Qt : : Horizontal , tr ( " Other Data " ) ) ;
model - > setHeaderData ( 4 , Qt : : Horizontal , tr ( " Last Imported " ) ) ;
model - > setHeaderData ( 5 , Qt : : Horizontal , tr ( " Name " ) ) ;
ui - > profileView - > setStyleSheet ( " QHeaderView::section { background-color:lightgrey } " ) ;
int row = 0 ;
2018-05-06 21:45:56 +00:00
// int sel = -1;
2018-04-22 12:06:48 +00:00
QFontMetrics fm ( ui - > profileView - > font ( ) ) ;
2018-06-04 23:26:46 +00:00
//#if QT_VERSION < QT_VERSION_CHECK(5,11,0) // not sure when this was fixed
QPalette palette = ui - > profileView - > palette ( ) ;
palette . setColor ( QPalette : : Highlight , " #3a7fc2 " ) ;
palette . setColor ( QPalette : : HighlightedText , " white " ) ;
ui - > profileView - > setPalette ( palette ) ;
//#endif
ui - > profileView - > setEditTriggers ( QAbstractItemView : : NoEditTriggers ) ;
ui - > profileView - > setFocusPolicy ( Qt : : NoFocus ) ;
// ui->profileView->setSelectionMode(QAbstractItemView::NoSelection);
ui - > profileView - > setSelectionBehavior ( QAbstractItemView : : SelectRows ) ;
ui - > profileView - > setSelectionMode ( QAbstractItemView : : SingleSelection ) ;
2018-04-22 12:06:48 +00:00
QMap < QString , Profile * > : : iterator pi ;
for ( pi = Profiles : : profiles . begin ( ) ; pi ! = Profiles : : profiles . end ( ) ; pi + + ) {
Profile * prof = pi . value ( ) ;
name = pi . key ( ) ;
2018-05-06 21:45:56 +00:00
// if (AppSetting->profileName() == name) {
// sel = row;
// }
2018-04-22 12:06:48 +00:00
Machine * mach = prof - > GetMachine ( MT_CPAP ) ; // only interested in last cpap machine...
if ( ! mach ) {
qDebug ( ) < < " Couldn't find machine info for " < < name ;
}
model - > insertRows ( row , 1 , QModelIndex ( ) ) ;
// Problem: Can't access profile details until it's loaded.
QString usersname ;
if ( ! prof - > user - > lastName ( ) . isEmpty ( ) ) {
2022-01-10 15:49:23 +00:00
usersname = QString ( " %1, %2 " ) . arg ( prof - > user - > lastName ( ) ) . arg ( prof - > user - > firstName ( ) ) ;
2018-04-22 12:06:48 +00:00
}
model - > setData ( model - > index ( row , 0 , QModelIndex ( ) ) , name ) ;
model - > setData ( model - > index ( row , 0 , QModelIndex ( ) ) , name , Qt : : UserRole + 2 ) ;
model - > setData ( model - > index ( row , 5 , QModelIndex ( ) ) , usersname ) ;
if ( mach ) {
model - > setData ( model - > index ( row , 1 , QModelIndex ( ) ) , mach - > brand ( ) ) ;
2019-08-18 21:27:21 +00:00
model - > setData ( model - > index ( row , 2 , QModelIndex ( ) ) , mach - > model ( ) ) ;
2018-04-22 12:06:48 +00:00
model - > setData ( model - > index ( row , 4 , QModelIndex ( ) ) , mach - > lastImported ( ) . toString ( Qt : : SystemLocaleShortDate ) ) ;
}
QBrush bg = QColor ( Qt : : black ) ;
2018-05-06 20:43:22 +00:00
QFont font = QApplication : : font ( ) ;
2018-04-22 12:06:48 +00:00
if ( prof = = p_profile ) {
2018-05-06 20:43:22 +00:00
bg = QBrush ( openProfileHighlightColor ) ;
font . setBold ( true ) ;
2018-04-22 12:06:48 +00:00
}
for ( int i = 0 ; i < columns ; i + + ) {
model - > setData ( model - > index ( row , i , QModelIndex ( ) ) , bg , Qt : : ForegroundRole ) ;
2018-05-06 20:43:22 +00:00
//model->setData(model->index(row, i, QModelIndex()), font, Qt::FontRole);
2018-04-22 12:06:48 +00:00
}
QRect rect = fm . boundingRect ( name ) ;
if ( rect . width ( ) > w ) w = rect . width ( ) ;
// Profile fonts arern't loaded yet.. Using generic font.
//item->setFont(font);
//model->appendRow(item);
row + + ;
}
w + = 20 ;
// ui->profileView->setMinimumWidth(w);
2019-03-25 21:49:24 +00:00
if ( row = = 0 ) {
2019-04-04 10:08:56 +00:00
ui - > profileInfoLabel - > setText ( tr ( " You must create a profile " ) ) ;
2019-03-25 21:49:24 +00:00
}
2018-04-22 12:06:48 +00:00
proxy = new MySortFilterProxyModel2 ( this ) ;
proxy - > setSourceModel ( model ) ;
proxy - > setSortCaseSensitivity ( Qt : : CaseInsensitive ) ;
ui - > profileView - > setModel ( proxy ) ;
QHeaderView * headerView = ui - > profileView - > horizontalHeader ( ) ;
headerView - > setStretchLastSection ( true ) ;
headerView - > setSectionResizeMode ( QHeaderView : : Stretch ) ;
2018-06-06 16:03:51 +00:00
sm = ui - > profileView - > selectionModel ( ) ;
2018-06-04 23:26:46 +00:00
connect ( sm , SIGNAL ( currentRowChanged ( QModelIndex , QModelIndex ) ) , this , SLOT ( on_selectionChanged ( QModelIndex , QModelIndex ) ) ) ;
2018-04-22 12:06:48 +00:00
}
void ProfileSelector : : updateProfileHighlight ( QString name )
{
2018-06-05 00:14:07 +00:00
2018-05-06 20:43:22 +00:00
QFont font = QApplication : : font ( ) ;
font . setBold ( false ) ;
2018-04-22 12:06:48 +00:00
QBrush bg = QColor ( Qt : : black ) ;
for ( int row = 0 ; row < model - > rowCount ( ) ; row + + ) {
for ( int i = 0 ; i < model - > columnCount ( ) ; i + + ) {
2018-06-05 00:14:07 +00:00
QModelIndex idx = model - > index ( row , i , QModelIndex ( ) ) ;
model - > setData ( idx , bg , Qt : : ForegroundRole ) ;
model - > setData ( idx , font , Qt : : FontRole ) ;
2018-04-22 12:06:48 +00:00
}
}
2018-06-05 00:14:07 +00:00
2018-05-06 20:43:22 +00:00
bg = QBrush ( openProfileHighlightColor ) ;
font . setBold ( true ) ;
2018-06-05 00:14:07 +00:00
2018-04-22 12:06:48 +00:00
for ( int row = 0 ; row < proxy - > rowCount ( ) ; row + + ) {
2018-06-05 00:14:07 +00:00
QModelIndex idx = proxy - > index ( row , 0 , QModelIndex ( ) ) ;
if ( proxy - > data ( idx ) . toString ( ) . compare ( name ) = = 0 ) {
on_selectionChanged ( idx , QModelIndex ( ) ) ;
2018-04-22 12:06:48 +00:00
for ( int i = 0 ; i < proxy - > columnCount ( ) ; i + + ) {
2018-06-05 00:14:07 +00:00
idx = proxy - > index ( row , i , QModelIndex ( ) ) ;
proxy - > setData ( idx , bg , Qt : : ForegroundRole ) ;
proxy - > setData ( idx , font , Qt : : FontRole ) ;
2018-04-22 12:06:48 +00:00
}
break ;
}
2018-06-04 23:41:06 +00:00
}
2018-04-22 12:06:48 +00:00
}
2018-06-05 22:08:12 +00:00
Profile * ProfileSelector : : SelectProfile ( QString profname , bool skippassword = false )
2018-04-22 12:06:48 +00:00
{
2018-06-05 00:14:07 +00:00
auto pit = Profiles : : profiles . find ( profname ) ;
if ( pit = = Profiles : : profiles . end ( ) ) return nullptr ;
Profile * prof = pit . value ( ) ;
2018-04-22 12:06:48 +00:00
if ( prof ! = p_profile ) {
2018-06-05 22:08:12 +00:00
if ( prof - > user - > hasPassword ( ) & & ! skippassword ) {
2018-05-06 22:10:17 +00:00
QDialog dialog ( this , Qt : : Dialog ) ;
QLineEdit * e = new QLineEdit ( & dialog ) ;
e - > setEchoMode ( QLineEdit : : Password ) ;
dialog . connect ( e , SIGNAL ( returnPressed ( ) ) , & dialog , SLOT ( accept ( ) ) ) ;
dialog . setWindowTitle ( tr ( " Enter Password for %1 " ) . arg ( profname ) ) ;
dialog . setMinimumWidth ( 300 ) ;
QVBoxLayout * lay = new QVBoxLayout ( ) ;
dialog . setLayout ( lay ) ;
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 ;
} else {
if ( tries < 3 ) {
QMessageBox : : warning ( this , STR_MessageBox_Error , tr ( " You entered an incorrect password " ) , QMessageBox : : Ok ) ;
} else {
QMessageBox : : warning ( this , STR_MessageBox_Error ,
2019-03-25 21:49:24 +00:00
tr ( " Forgot your password? " ) + " \n " + tr ( " Ask on the forums how to reset it, it's actually pretty easy. " ) ,
QMessageBox : : Ok ) ;
2018-05-06 22:10:17 +00:00
}
}
} while ( tries < 3 ) ;
2018-06-05 00:14:07 +00:00
if ( ! succeeded ) return nullptr ;
2018-05-06 22:10:17 +00:00
}
2018-04-22 12:06:48 +00:00
// Unselect everything in ProfileView
updateProfileHighlight ( profname ) ;
}
2018-06-05 00:14:07 +00:00
return prof ;
2018-04-22 12:06:48 +00:00
}
void ProfileSelector : : on_profileView_doubleClicked ( const QModelIndex & index )
{
QModelIndex idx = proxy - > index ( index . row ( ) , 0 , QModelIndex ( ) ) ;
QString profname = proxy - > data ( idx , Qt : : UserRole + 2 ) . toString ( ) ;
2018-06-05 00:14:07 +00:00
//if (SelectProfile(profname)) {
mainwin - > OpenProfile ( profname ) ;
//}
2018-04-22 12:06:48 +00:00
}
void ProfileSelector : : on_profileFilter_textChanged ( const QString & arg1 )
{
QRegExp regExp ( " * " + arg1 + " * " , Qt : : CaseInsensitive , QRegExp : : Wildcard ) ;
proxy - > setFilterRegExp ( regExp ) ;
}
2019-09-29 03:13:50 +00:00
// Clear filter list
void ProfileSelector : : on_resetFilterButton_clicked ( )
{
ui - > profileFilter - > clear ( ) ;
}
2018-04-22 12:06:48 +00:00
void ProfileSelector : : on_buttonOpenProfile_clicked ( )
{
if ( ui - > profileView - > currentIndex ( ) . isValid ( ) ) {
QString name = proxy - > data ( proxy - > index ( ui - > profileView - > currentIndex ( ) . row ( ) , 0 , QModelIndex ( ) ) , Qt : : UserRole + 2 ) . toString ( ) ;
2018-06-07 01:53:20 +00:00
mainwin - > OpenProfile ( name ) ;
2018-04-22 12:06:48 +00:00
}
}
void ProfileSelector : : on_buttonEditProfile_clicked ( )
{
if ( ui - > profileView - > currentIndex ( ) . isValid ( ) ) {
QString name = proxy - > data ( proxy - > index ( ui - > profileView - > currentIndex ( ) . row ( ) , 0 , QModelIndex ( ) ) , Qt : : UserRole + 2 ) . toString ( ) ;
qDebug ( ) < < " Editing " < < name ;
Profile * prof = Profiles : : profiles [ name ] ;
//SelectProfile(name); // may not be necessary...
NewProfile * newprof = new NewProfile ( this ) ;
newprof - > edit ( name ) ;
newprof - > setWindowModality ( Qt : : ApplicationModal ) ;
newprof - > setModal ( true ) ;
if ( newprof - > exec ( ) ! = NewProfile : : Rejected ) {
QString usersname ;
if ( ! prof - > user - > lastName ( ) . isEmpty ( ) ) {
2022-01-10 15:49:23 +00:00
usersname = QString ( " %1, %2 " ) . arg ( prof - > user - > lastName ( ) ) . arg ( prof - > user - > firstName ( ) ) ;
2018-04-22 12:06:48 +00:00
}
proxy - > setData ( proxy - > index ( ui - > profileView - > currentIndex ( ) . row ( ) , 5 , QModelIndex ( ) ) , usersname ) ;
2018-05-06 20:43:22 +00:00
//updateProfileList();
if ( prof = = p_profile ) updateProfileHighlight ( name ) ;
2018-04-22 12:06:48 +00:00
}
delete newprof ;
2018-06-04 23:26:46 +00:00
} else {
QMessageBox : : information ( this , STR_MessageBox_Information , tr ( " Select a profile first " ) , QMessageBox : : Ok ) ;
2018-04-22 12:06:48 +00:00
}
}
void ProfileSelector : : on_buttonNewProfile_clicked ( )
{
if ( p_profile )
mainwin - > CloseProfile ( ) ;
NewProfile * newprof = new NewProfile ( this ) ;
newprof - > skipWelcomeScreen ( ) ;
newprof - > setWindowModality ( Qt : : ApplicationModal ) ;
newprof - > setModal ( true ) ;
if ( newprof - > exec ( ) = = NewProfile : : Accepted ) {
p_profile = Profiles : : Get ( AppSetting - > profileName ( ) ) ;
2018-04-25 10:34:23 +00:00
if ( p_profile ! = nullptr ) {
QString name = p_profile - > user - > userName ( ) ;
p_profile = nullptr ;
2018-06-05 22:08:12 +00:00
mainwin - > OpenProfile ( name , true ) ; // open profile, skipping the already entered password
2018-04-25 10:34:23 +00:00
} else {
qWarning ( ) < < AppSetting - > profileName ( ) < < " yielded a null profile " ;
p_profile = nullptr ;
}
updateProfileList ( ) ;
2018-04-22 12:06:48 +00:00
}
delete newprof ;
}
void ProfileSelector : : on_buttonDestroyProfile_clicked ( )
{
if ( ui - > profileView - > currentIndex ( ) . isValid ( ) ) {
QString name = proxy - > data ( proxy - > index ( ui - > profileView - > currentIndex ( ) . row ( ) , 0 , QModelIndex ( ) ) , Qt : : UserRole + 2 ) . toString ( ) ;
2018-05-06 17:56:05 +00:00
Profile * profile = Profiles : : profiles [ name ] ;
2018-05-06 20:43:22 +00:00
QString path = profile - > Get ( PrefMacro ( STR_GEN_DataFolder ) ) ;
2020-09-10 05:03:32 +00:00
if ( path = = ( GetAppData ( ) + " /Profiles/ " ) ) {
QMessageBox : : warning ( this , STR_MessageBox_Error , tr ( " The selected profile does not appear to contain any data and cannot be removed by OSCAR " ) , QMessageBox : : Ok ) ;
return ;
}
2018-05-06 20:43:22 +00:00
2018-06-05 22:16:37 +00:00
bool verified = true ;
2018-05-06 17:56:05 +00:00
if ( profile - > user - > hasPassword ( ) ) {
QDialog dialog ( this , Qt : : Dialog ) ;
QLineEdit * e = new QLineEdit ( & dialog ) ;
e - > setEchoMode ( QLineEdit : : Password ) ;
dialog . connect ( e , SIGNAL ( returnPressed ( ) ) , & dialog , SLOT ( accept ( ) ) ) ;
dialog . setWindowTitle ( tr ( " Enter Password for %1 " ) . arg ( name ) ) ;
dialog . setMinimumWidth ( 300 ) ;
QVBoxLayout * lay = new QVBoxLayout ( ) ;
dialog . setLayout ( lay ) ;
lay - > addWidget ( e ) ;
int tries = 0 ;
do {
e - > setText ( " " ) ;
if ( dialog . exec ( ) ! = QDialog : : Accepted ) { break ; }
tries + + ;
if ( profile - > user - > checkPassword ( e - > text ( ) ) ) {
2018-06-05 22:16:37 +00:00
verified = true ;
2018-05-06 17:56:05 +00:00
break ;
} else {
if ( tries < 3 ) {
QMessageBox : : warning ( this , STR_MessageBox_Error , tr ( " You entered an incorrect password " ) , QMessageBox : : Ok ) ;
} else {
QMessageBox : : warning ( this , STR_MessageBox_Error ,
2019-03-25 21:49:24 +00:00
tr ( " If you're trying to delete because you forgot the password, you need to either reset it or delete the profile folder manually. " ) ,
QMessageBox : : Ok ) ;
2018-05-06 17:56:05 +00:00
}
}
} while ( tries < 3 ) ;
2018-06-05 22:16:37 +00:00
if ( ! verified ) return ;
2018-05-06 20:43:22 +00:00
}
2018-05-06 17:56:05 +00:00
QDialog confirmdlg ;
QVBoxLayout layout ( & confirmdlg ) ;
2018-06-04 23:26:46 +00:00
QLabel message ( QString ( " <b> " + STR_MessageBox_Warning + " :</b> " + tr ( " You are about to destroy profile '<b>%1</b>'. " ) + " <br/><br/> " + tr ( " Think carefully, as this will irretrievably delete the profile along with all <b>backup data</b> stored under<br/>%2. " ) + " <br/><br/> " + tr ( " Enter the word <b>DELETE</b> below (exactly as shown) to confirm. " ) ) . arg ( name ) . arg ( path ) , & confirmdlg ) ;
2018-05-06 17:56:05 +00:00
layout . insertWidget ( 0 , & message , 1 ) ;
QLineEdit lineedit ( & confirmdlg ) ;
layout . insertWidget ( 1 , & lineedit , 1 ) ;
QHBoxLayout layout2 ;
layout . insertLayout ( 2 , & layout2 , 1 ) ;
QPushButton cancel ( QString ( " &Cancel " ) , & confirmdlg ) ;
QPushButton accept ( QString ( " &Delete Profile " ) , & confirmdlg ) ;
layout2 . addWidget ( & cancel ) ;
layout2 . addStretch ( 1 ) ;
layout2 . addWidget ( & accept ) ;
confirmdlg . connect ( & cancel , SIGNAL ( clicked ( ) ) , & confirmdlg , SLOT ( reject ( ) ) ) ;
confirmdlg . connect ( & accept , SIGNAL ( clicked ( ) ) , & confirmdlg , SLOT ( accept ( ) ) ) ;
confirmdlg . connect ( & lineedit , SIGNAL ( returnPressed ( ) ) , & confirmdlg , SLOT ( accept ( ) ) ) ;
if ( confirmdlg . exec ( ) ! = QDialog : : Accepted )
return ;
2018-06-04 23:26:46 +00:00
if ( lineedit . text ( ) . compare ( tr ( " DELETE " ) ) ! = 0 ) {
2018-05-06 17:56:05 +00:00
QMessageBox : : information ( NULL , tr ( " Sorry " ) , tr ( " You need to enter DELETE in capital letters. " ) , QMessageBox : : Ok ) ;
return ;
}
2018-06-05 22:16:37 +00:00
qDebug ( ) < < " Deleting Profile " < < name ;
if ( profile = = p_profile ) {
// Shut down if active
mainwin - > CloseProfile ( ) ;
}
Profiles : : profiles . remove ( name ) ;
2018-05-06 17:56:05 +00:00
2018-06-05 22:16:37 +00:00
if ( ! path . isEmpty ( ) ) {
if ( ! removeDir ( path ) ) {
QMessageBox : : information ( this , STR_MessageBox_Error ,
tr ( " There was an error deleting the profile directory, you need to manually remove it. " ) + QString ( " \n \n %1 " ) . arg ( path ) ,
QMessageBox : : Ok ) ;
2018-05-06 17:56:05 +00:00
}
2018-06-05 22:16:37 +00:00
qDebug ( ) < < " Delete " < < path ;
2018-06-14 07:25:54 +00:00
QMessageBox : : information ( this , STR_MessageBox_Information , tr ( " Profile '%1' was succesfully deleted " ) . arg ( name ) , QMessageBox : : Ok ) ;
2018-06-05 22:16:37 +00:00
}
2018-05-06 17:56:05 +00:00
2018-06-05 22:16:37 +00:00
updateProfileList ( ) ;
2018-05-06 17:56:05 +00:00
2018-04-22 12:06:48 +00:00
}
}
2018-05-06 17:56:05 +00:00
2018-06-14 07:25:54 +00:00
QString ProfileSelector : : formatSize ( qint64 size )
{
QStringList units = { tr ( " Bytes " ) , tr ( " KB " ) , tr ( " MB " ) , tr ( " GB " ) , tr ( " TB " ) , tr ( " PB " ) } ;
2018-05-06 21:45:56 +00:00
int i ;
double outputSize = size ;
for ( i = 0 ; i < units . size ( ) - 1 ; i + + ) {
if ( outputSize < 1024 ) break ;
outputSize = outputSize / 1024 ;
}
return QString ( " %0 %1 " ) . arg ( outputSize , 0 , ' f ' , 2 ) . arg ( units [ i ] ) ;
}
2018-05-06 17:56:05 +00:00
2018-06-14 07:25:54 +00:00
QString ProfileSelector : : getProfileDiskInfo ( Profile * profile )
2018-06-04 23:26:46 +00:00
{
QString html ;
if ( profile ) {
qint64 sizeSummaries = profile - > diskSpaceSummaries ( ) ;
qint64 sizeEvents = profile - > diskSpaceEvents ( ) ;
qint64 sizeBackups = profile - > diskSpaceBackups ( ) ;
html + = " <table> "
2018-06-14 07:25:54 +00:00
" <tr><td align=right> " + tr ( " Summaries: " ) + " </td><td> " + formatSize ( sizeSummaries ) + " </td></tr> "
" <tr><td align=right> " + tr ( " Events: " ) + " </td><td> " + formatSize ( sizeEvents ) + " </td></tr> "
" <tr><td align=right> " + tr ( " Backups: " ) + " </td><td> " + formatSize ( sizeBackups ) + " </td></tr> "
2018-06-04 23:26:46 +00:00
" </table> " ;
}
return html ;
}
2018-05-06 21:45:56 +00:00
void ProfileSelector : : on_diskSpaceInfo_linkActivated ( const QString & link )
{
QString html ;
if ( link = = " show " ) {
2018-06-04 23:26:46 +00:00
html + = " <a href='hide'> " + tr ( " Hide disk usage information " ) + " </a> " + getProfileDiskInfo ( p_profile ) ;
2018-05-06 21:45:56 +00:00
showDiskUsage = true ;
} else {
html + = " <a href='show'> " + tr ( " Show disk usage information " ) + " </a> " ;
showDiskUsage = false ;
}
ui - > diskSpaceInfo - > setText ( html ) ;
}
2018-06-04 23:26:46 +00:00
void ProfileSelector : : on_selectionChanged ( const QModelIndex & index , const QModelIndex & )
{
bool enabled = false ;
if ( index . isValid ( ) ) {
QString name = proxy - > data ( proxy - > index ( index . row ( ) , 0 , QModelIndex ( ) ) , Qt : : UserRole + 2 ) . toString ( ) ;
auto prof = Profiles : : profiles . find ( name ) ;
if ( prof ! = Profiles : : profiles . end ( ) ) {
enabled = true ;
QString html = QString ( ) ;
Profile * profile = prof . value ( ) ;
if ( ! profile - > user - > lastName ( ) . isEmpty ( ) & & ! profile - > user - > firstName ( ) . isEmpty ( ) ) {
html + = tr ( " Name: %1, %2 " ) . arg ( profile - > user - > lastName ( ) ) . arg ( profile - > user - > firstName ( ) ) + " <br/> " ;
}
if ( ! profile - > user - > phone ( ) . isEmpty ( ) ) {
html + = tr ( " Phone: %1 " ) . arg ( profile - > user - > phone ( ) ) + " <br/> " ;
}
if ( ! profile - > user - > email ( ) . isEmpty ( ) ) {
html + = tr ( " Email: <a href='mailto:%1'>%1</a> " ) . arg ( profile - > user - > email ( ) ) + " <br/> " ;
}
if ( ! profile - > user - > address ( ) . isEmpty ( ) ) {
html + = " <br/> " + tr ( " Address: " ) + " <br/> " + profile - > user - > address ( ) . trimmed ( ) . replace ( " \n " , " <br/> " ) + " <br/> " ;
}
if ( html . isEmpty ( ) ) {
html + = tr ( " No profile information given " ) + " <br/> " ;
}
ui - > diskSpaceInfo - > setVisible ( true ) ;
ui - > profileInfoGroupBox - > setTitle ( tr ( " Profile: %1 " ) . arg ( name ) ) ;
ui - > profileInfoLabel - > setText ( html ) ;
if ( showDiskUsage ) { // ugly, but uh....
ui - > diskSpaceInfo - > setText ( " <a href='hide'> " + tr ( " Hide disk usage information " ) + " </a> " + getProfileDiskInfo ( prof . value ( ) ) ) ;
}
} else {
ui - > diskSpaceInfo - > setText ( " Something went wrong " ) ;
}
}
2019-03-25 21:49:24 +00:00
ui - > buttonOpenProfile - > setEnabled ( enabled ) ;
2018-06-04 23:26:46 +00:00
ui - > buttonEditProfile - > setEnabled ( enabled ) ;
}