/* user graph settings Implementation
*
* Copyright (c) 2022-2023 The OSCAR Team
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the source code
* for more details. */
#define TEST_MACROS_ENABLEDoff
#include Help Menu - Manage Layout Settings
")));
helpInfoHeaderLabel->setFont(helpInfoLabelFont);
QLabel* helpInfoLabel = new QLabel("helpInfo",parent);
helpInfoLabel->setFont(helpInfoFont);
helpInfoLabel->setText(helpInfo()) ;
helpLayoutButtons = new QHBoxLayout();
helpLayoutButtons->addWidget(helpInfoHeaderLabel);
helpInfoExitBtn= helpBtn("" ,m_icon_return , styleOn ,QSizePolicy::Fixed , tr("Exits the help menu."));
helpExitBtn = helpBtn("" ,m_icon_exit , styleExit,QSizePolicy::Fixed , tr("Exits the dialog menu."));
QVBoxLayout* helpLayout = new QVBoxLayout(helpDialog);
helpLayout->addLayout(helpLayoutButtons);
helpLayout->addWidget(helpInfoLabel, 1);
helpDialog->connect(helpInfoExitBtn,SIGNAL(clicked()), this, SLOT (help_off_feature() ));
helpDialog->connect(helpExitBtn, SIGNAL(clicked()), this, SLOT (help_exit_feature() ));
}
void SaveGraphLayoutSettings::helpDestructor() {
if(!helpDialog) return;
helpDialog->disconnect(helpInfoExitBtn,SIGNAL(clicked()), this, SLOT (help_off_feature() ));
helpDialog->disconnect(helpExitBtn, SIGNAL(clicked()), this, SLOT (help_exit_feature() ));
}
QString SaveGraphLayoutSettings::helpInfo() {
QStringList strList;
strList<
")
< | ")
< |
")
<")
< | |
")
< | ")
< |
")
<")
< | |
")
<")
< | |
")
<")
< | |
")
<")
< | |
")
< | |
")
<")
< | |
")
<")
< | |
")
<")
< | |
")
<
")
<")
< | ")
< | ")
< | |
")
<")
< | ")
< | ")
< | |
")
<
%1
").arg(top); QString bottomText=QString("%1
").arg(bottom); QMessageBox msgBox(menuDialog); msgBox.setText(topText); msgBox.setInformativeText(bottomText); if (icon!=nullptr) { msgBox.setIconPixmap(icon->pixmap(QSize(iconWidthMessageBox,iconWidthMessageBox))); } // may be good for help menu. a pull down box with box of data. msgBox.setDetailedText("some detailed string"); msgBox.setStandardButtons(flags); msgBox.setDefaultButton(adefault); msgBox.setWindowFlag(Qt::FramelessWindowHint,true); msgBox.setStyleSheet(calculateStyleMessageBox(&menuListFont,top,bottom)); // displaywidgets((QWidget*)&msgBox); bool ret= msgBox.exec()==success; return ret; } #else bool SaveGraphLayoutSettings::confirmAction(QString name ,QString question,QIcon* icon,QMessageBox::StandardButtons flags , QMessageBox::StandardButton adefault, QMessageBox::StandardButton success) { //bool SaveGraphLayoutSettings::confirmAction(QString name,QString question,QIcon* icon) Q_UNUSED(flags); Q_UNUSED(adefault); Q_UNUSED(success); QMessageBox msgBox(menuDialog); msgBox.setText(question); if (icon!=nullptr) { msgBox.setIconPixmap(icon->pixmap(QSize(50,50))); } msgBox.setStandardButtons(QMessageBox::Cancel | QMessageBox::Yes ); msgBox.setDefaultButton(QMessageBox::Cancel); msgBox.setStyleSheet(styleMessageBox); msgBox.setWindowFlag(Qt::FramelessWindowHint,true); return (msgBox.exec()==QMessageBox::Yes); Q_UNUSED(name); } #endif QString SaveGraphLayoutSettings::calculateButtonStyle(bool on,bool exitBtn){ QString btnStyle=QString("QPushButton{%1%2}").arg(on ?"color: black;background-color:white;" :"color: darkgray;background-color:#e8e8e8 ;" ).arg(!exitBtn ? "" : "background: transparent;" "border-radius: 8px;" "border: 2px solid transparent;" "max-width:1em;" "border:none;" ); QString toolTipStyle=" QToolTip { " "border: 1px solid black;" "border-width: 1px;" "padding: 4px;" "font: 14px ; color:black; background-color:yellow;" "}"; btnStyle.append(toolTipStyle); return btnStyle; } void SaveGraphLayoutSettings::looksOn(QPushButton* button,bool on){ //button->setEnabled(on); button->setStyleSheet(on?styleOn:styleOff); } void SaveGraphLayoutSettings::manageButtonApperance() { bool enable = menuList->currentItem(); looksOn(menuUpdateBtn,enable); looksOn(menuRestoreBtn,enable); looksOn(menuDeleteBtn,enable); looksOn(menuRenameBtn,enable); if (nextNumToUse<0) { // check if at Maximum limit // must always hide first menuAddBtn->hide(); menuAddFullBtn->show(); } else { // must always hide first menuAddFullBtn->hide(); menuAddBtn->show(); } } void SaveGraphLayoutSettings::add_feature() { if(!graphView) return; QString fileName = QString("%1%2").arg(fileBaseName).arg(nextNumToUse,fileNumMaxLength,10,QLatin1Char('0')); writeSettings(fileName); // create a default description - use formatted datetime. QString desc=QDateTime::currentDateTime().toString(); descriptionMap->add(fileName,desc); descriptionMap->save(); QListWidgetItem* item = updateFileList( fileName); if (item!=nullptr) { menuList->setCurrentItem(item,QItemSelectionModel::ClearAndSelect); menuList->editItem(item); } menuList->sortItems(); resizeMenu(); } void SaveGraphLayoutSettings::addFull_feature() { verifyItem( nullptr,tr("Maximum number of Items exceeded.") , m_icon_add); } void SaveGraphLayoutSettings::update_feature() { if(!graphView) return; QListWidgetItem * item=menuList->currentItem(); if (!verifyItem(item, tr("No Item Selected") , m_icon_update)) return ; if(!confirmAction( item->text(), tr("Ok to Update?") , m_icon_update) ) return; QString fileName = item->data(fileNameRole).toString(); writeSettings(fileName); }; void SaveGraphLayoutSettings::restore_feature() { if(!graphView) return; QListWidgetItem * item=menuList->currentItem(); if (!verifyItem(item, tr("No Item Selected") , m_icon_restore)) return ; QString fileName = item->data(fileNameRole).toString(); loadSettings(fileName); exit(); }; void SaveGraphLayoutSettings::rename_feature() { if(!graphView) return; QListWidgetItem * item=menuList->currentItem(); if (!verifyItem(item, tr("No Item Selected") , m_icon_rename)) return ; menuList->editItem(item); // SaveGraphLayoutSettings::itemChanged(QListWidgetItem *item) is called when edit changes the entry. // itemChanged will update the description map } void SaveGraphLayoutSettings::help_exit_feature() { helpDialog->close(); exit(); } void SaveGraphLayoutSettings::help_off_feature() { helpDialog->close(); } void SaveGraphLayoutSettings::help_feature() { initminMenuListSize(); createHelp(); if(!helpDialog) return; helpDialog->raise(); helpDialog->exec(); manageButtonApperance(); } void SaveGraphLayoutSettings::delete_feature() { if(!graphView) return; QListWidgetItem * item=menuList->currentItem(); if (!verifyItem(item, tr("No Item Selected") , m_icon_delete)) return ; if(!confirmAction(item->text(), tr("Ok To Delete?") ,m_icon_delete) ) return; QString fileName = item->data(fileNameRole).toString(); descriptionMap->remove(fileName); descriptionMap->save(); deleteSettings(fileName); delete item; if (nextNumToUse<0) { nextNumToUse=fileNum(fileName); } manageButtonApperance(); resizeMenu(); } void SaveGraphLayoutSettings::itemChanged(QListWidgetItem *item) { QString fileName=item->data(fileNameRole).toString(); QString desc= item->text(); // use only the first line in a multiline string. Can be set using cut and paste QRegularExpressionMatch match = singleLineRe->match(desc); if (match.hasMatch()) { // captured match is the first line and has been truncated desc=match.captured(1).trimmed(); // reoves spaces at end. } else { // no match. // an invalid name was entered. too much white space or empty desc=""; } if (desc.length()>maxDescriptionLen) { desc.append("..."); } if (desc.length() <=0) { // returns name back to previous saved name desc=descriptionMap->get(fileName); } else { descriptionMap->add(fileName,desc); descriptionMap->save(); } item->setText(desc); menuList->sortItems(); menuList->setCurrentItem(item); resizeMenu(); } void SaveGraphLayoutSettings::itemSelectionChanged() { initminMenuListSize(); manageButtonApperance(); } void SaveGraphLayoutSettings::initminMenuListSize() { if (minMenuDialogSize.width()==0) { menuDialogSize = menuDialog->size(); minMenuDialogSize = menuDialogSize; menuListSize = menuList->size(); minMenuListSize = menuListSize; dialogListDiff = menuDialogSize - menuListSize; dialogListDiff.setWidth (horizontalWidthAdjustment + dialogListDiff.width()); resizeMenu(); } }; void SaveGraphLayoutSettings::writeSettings(QString filename) { graphView->SaveSettings(title+"."+filename,dirName); }; void SaveGraphLayoutSettings::loadSettings(QString filename) { graphView->LoadSettings(title+"."+filename,dirName); }; void SaveGraphLayoutSettings::deleteSettings(QString filename) { QString fileName=graphView->settingsFilename (title+"."+filename,dirName) ; dir->remove(fileName); }; int SaveGraphLayoutSettings::fileNum(QString fileName) { QRegularExpressionMatch match = fileNumRe->match(fileName); int value=-1; if (match.hasMatch()) { value=match.captured(1).toInt(); } return value; } QSize SaveGraphLayoutSettings::maxSize(const QSize AA , const QSize BB ) { return QSize ( qMax(AA.width(),BB.width()) , qMax(AA.height(),BB.height() ) ); } bool SaveGraphLayoutSettings::sizeEqual(const QSize AA , const QSize BB ) { return (AA.width()==BB.width()) && ( AA.height()==BB.height()) ; } void SaveGraphLayoutSettings::resizeMenu() { if (minMenuDialogSize.width()==0) return; QSize newSize = calculateMenuDialogSize(); newSize.setWidth ( newSize.width()); menuDialogSize = menuDialog->size(); if ( sizeEqual(newSize , menuDialogSize)) { // no work to do return; }; if ( menuDialogSize.width() < newSize.width() ) { menuDialog->setMinimumWidth(newSize.width()); menuDialog->setMaximumWidth(QWIDGETSIZE_MAX); } else if ( menuDialogSize.width() > newSize.width() ) { menuDialog->setMaximumWidth(newSize.width()); menuDialog->setMinimumWidth(newSize.width()); } if ( menuDialogSize.height() < newSize.height() ) { menuDialog->setMinimumHeight(newSize.height()); menuDialog->setMaximumHeight(QWIDGETSIZE_MAX); } else if ( menuDialogSize.height() > newSize.height() ) { menuDialog->setMaximumHeight(newSize.height()); menuDialog->setMinimumHeight(newSize.height()); } menuDialogSize = newSize; } QSize SaveGraphLayoutSettings::calculateMenuDialogSize() { if (menuDialogSize.width()==0) return QSize(0,0); QListWidgetItem* item; widestItem=nullptr; QFontMetrics fm = QFontMetrics(menuListFont); // account for scrollbars. QSize returnValue = QSize( 0 , fm.height() ); // add an extra space at the bottom. width didn't work // Account for dialog Size returnValue += dialogListDiff; QSize size; for (int index = 0; index < menuList->count(); ++index) { item = menuList->item(index); if (!item) continue; size = fm.boundingRect(item->text()).size(); if (returnValue.width() < size.width()) { returnValue.setWidth( qMax( returnValue.width(),size.width())); widestItem=item; } returnValue.setHeight( returnValue.height()+size.height()); } returnValue.setWidth( horizontalWidthAdjustment + returnValue.width() ) ; returnValue = maxSize(returnValue, minMenuDialogSize); return returnValue; } QListWidgetItem* SaveGraphLayoutSettings::updateFileList(QString find) { QListWidgetItem* ret=nullptr; manageButtonApperance(); dir->refresh(); QFileInfoList filelist = dir->entryInfoList( QDir::Files | QDir::Readable | QDir::Writable | QDir::NoSymLinks,QDir::Name); // Restrict number of files. easy to find availble unused entry for add function. int row=0; int count=0; menuList->clear(); nextNumToUse=-1; descriptionMap->load(); for (int i = 0; i < filelist.size(); ++i) { QFileInfo fileInfo = filelist.at(i); QString fileName = fileInfo.fileName(); QRegularExpressionMatch match = parseFilenameRe->match(fileName); if (match.hasMatch()) { if (match.lastCapturedIndex()==3) { QString fileName=match.captured(2); if (nextNumToUse<0) { // check if an entry is availavle to use int fileNum=match.captured(3).toInt(); // find an available file name(number); if (fileNum!=count) { nextNumToUse=count; } } count++; QListWidgetItem *item = new QListWidgetItem(descriptionMap->get(fileName)); item->setData(fileNameRole,fileName); item->setFlags(item->flags() | Qt::ItemIsEditable); menuList->insertItem(row,item); row++; if (find!=nullptr && fileName==find) { ret=item; } } } } if (nextNumToUse<0) { // check if there is an existing empty slot // if not then the next available slot is at the end. CHeck if at max files. if (count