OSCAR-code/oscar/saveGraphLayoutSettings.cpp

901 lines
33 KiB
C++
Raw Normal View History

2022-12-31 02:02:17 +00:00
/* user graph settings Implementation
*
* Copyright (c) 2019-2022 The OSCAR Team
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
*
* 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. */
2022-12-31 02:02:17 +00:00
#define TEST_MACROS_ENABLED
#include <test_macros.h>
#include <QMessageBox>
#include <QAbstractButton>
#include <QPixmap>
#include <QSize>
2022-12-31 02:02:17 +00:00
#include <QChar>
#include "SleepLib/profiles.h"
2022-12-28 18:24:01 +00:00
#include "saveGraphLayoutSettings.h"
#define USE_FRAMELESS_WINDOW
#define USE_PROFILE_SPECIFIC_FOLDERoff // off implies saved layouts worked for all profiles.
2022-12-28 18:24:01 +00:00
SaveGraphLayoutSettings::SaveGraphLayoutSettings(QString title,QWidget* parent) : parent(parent),title(title)
{
fontSizeIncrease = 1;
helpFontSizeIncrease = 1;
2022-12-31 02:02:17 +00:00
createSaveFolder();
if (dir==nullptr) return;
dir->setFilter(QDir::Files | QDir::Readable | QDir::Writable | QDir::NoSymLinks);
2022-12-31 02:02:17 +00:00
QString descFileName = dirName+title.toLower()+".descriptions.txt";
descriptionMap = new DescriptionMap (dir,descFileName);
createMenu() ;
menuDialog->connect(menuAddFullBtn, SIGNAL(clicked()), this, SLOT (addFull_feature() ));
menuDialog->connect(menuAddBtn, SIGNAL(clicked()), this, SLOT (add_feature() ));
2022-12-31 02:02:17 +00:00
menuDialog->connect(menuRestoreBtn, SIGNAL(clicked()), this, SLOT (restore_feature() ));
menuDialog->connect(menuUpdateBtn, SIGNAL(clicked()), this, SLOT (update_feature() ));
menuDialog->connect(menuRenameBtn, SIGNAL(clicked()), this, SLOT (rename_feature() ));
menuDialog->connect(menuDeleteBtn, SIGNAL(clicked()), this, SLOT (delete_feature() ));
menuDialog->connect(menuHelpBtn, SIGNAL(clicked()), this, SLOT (help_feature() ));
2022-12-31 02:02:17 +00:00
menuDialog->connect(menuExitBtn, SIGNAL(clicked()), this, SLOT (exit() ));
menuDialog->connect(menuList, SIGNAL(itemChanged(QListWidgetItem*)), this, SLOT(itemChanged(QListWidgetItem*) ));
menuDialog->connect(menuList, SIGNAL(itemSelectionChanged()), this, SLOT(itemSelectionChanged() ));
2022-12-31 02:02:17 +00:00
singleLineRe = new QRegularExpression( QString("^\\s*([^\\r\\n]{0,%1})").arg(1+maxDescriptionLen) );
fileNumRe = new QRegularExpression( QString("%1(\\d+)(.shg)?$").arg(fileBaseName) );
parseFilenameRe = new QRegularExpression(QString("^(%1[.](%2(\\d*)))[.]shg$").arg(title).arg(fileBaseName));
}
2022-12-28 18:24:01 +00:00
SaveGraphLayoutSettings::~SaveGraphLayoutSettings()
{
2022-12-31 02:02:17 +00:00
if (dir==nullptr) {return;}
menuDialog->disconnect(menuAddFullBtn, SIGNAL(clicked()), this, SLOT (addFull_feature() ));
menuDialog->disconnect(menuAddBtn, SIGNAL(clicked()), this, SLOT (add_feature() ));
2022-12-31 02:02:17 +00:00
menuDialog->disconnect(menuRestoreBtn, SIGNAL(clicked()), this, SLOT (restore_feature() ));
menuDialog->disconnect(menuUpdateBtn, SIGNAL(clicked()), this, SLOT (update_feature() ));
menuDialog->disconnect(menuRenameBtn, SIGNAL(clicked()), this, SLOT (rename_feature() ));
menuDialog->disconnect(menuDeleteBtn, SIGNAL(clicked()), this, SLOT (delete_feature() ));
2022-12-31 02:02:17 +00:00
menuDialog->disconnect(menuExitBtn, SIGNAL(clicked()), this, SLOT (exit() ));
menuDialog->disconnect(menuHelpBtn, SIGNAL(clicked()), this, SLOT (help_feature() ));
menuDialog->disconnect(menuList, SIGNAL(itemChanged(QListWidgetItem*)), this, SLOT(itemChanged(QListWidgetItem*) ));
menuDialog->disconnect(menuList, SIGNAL(itemSelectionChanged()), this, SLOT(itemSelectionChanged() ));
helpDestructor();
2022-12-31 02:02:17 +00:00
delete descriptionMap;
delete singleLineRe;
2022-12-31 02:02:17 +00:00
delete fileNumRe;
delete parseFilenameRe;
}
2022-12-31 02:02:17 +00:00
void SaveGraphLayoutSettings::createSaveFolder() {
// Insure that the save folder exists
// Get the directory name for the save files
QString layoutFileFolder = "savedGraphLayoutSettings/";
#if 0
// home directory for the current profile.
QString baseName = p_profile->Get("{DataFolder}/");
#else
// home directory for all profiles.
// allows settings to be shared accross profiles.
QString baseName = p_pref->Get("{home}/");
#endif
dirName = baseName+layoutFileFolder;
// Check if the save folder exists
QDir* tmpDir = new QDir(dirName);
if (!tmpDir->exists()) {
QDir* baseDir=new QDir(baseName);
if (!baseDir->exists()) {
// Base folder does not exist - terminate
return ;
}
// saved Setting folder does not exist. make it
if (!baseDir->mkdir(dirName)) {
// Did not create the folder.
return ;
}
tmpDir = new QDir(dirName);
// double check if save folder exists or not.
if (!tmpDir->exists()) {
return ;
}
}
dir=tmpDir;
}
QPushButton* SaveGraphLayoutSettings::menuBtn(QString name, QIcon* icon, QString style,QSizePolicy::Policy hPolicy,QString tooltip) {
return newBtnRtn(menuLayoutButtons, name, icon, style, hPolicy,tooltip) ;
}
QPushButton* SaveGraphLayoutSettings::helpBtn(QString name, QIcon* icon, QString style,QSizePolicy::Policy hPolicy,QString tooltip) {
return newBtnRtn(helpLayoutButtons, name, icon, style, hPolicy,tooltip) ;
}
QPushButton* SaveGraphLayoutSettings::newBtnRtn(QHBoxLayout* layout,QString name, QIcon* icon, QString style,QSizePolicy::Policy hPolicy,QString tooltip) {
QPushButton* button = new QPushButton(name, menuDialog);
button->setIcon(*icon);
button->setStyleSheet(style);
button->setSizePolicy(hPolicy,QSizePolicy::Fixed);
button->setToolTip(tooltip);
button->setToolTipDuration(AppSetting->tooltipTimeout());
button->setFont(*mediumfont);
layout->addWidget(button);
return button;
}
void SaveGraphLayoutSettings::createStyleSheets() {
styleOn= calculateButtonStyle(true,false);
styleOff= calculateButtonStyle(false,false);
styleExit= calculateButtonStyle(true,true);
styleMessageBox=
"QMessageBox { "
"background-color:yellow;"
//"color:black;"
"color:red;"
"border: 2px solid black;"
"text-align: right;"
"font-size: 16px;"
"}"
"QTextEdit {"
"background-color:lightblue;"
//"color:black;"
"color:red;"
"border: 9px solid black;"
"text-align: center;"
"vertical-align:top;"
"}"
;
styleDialog=
"QDialog { "
"border: 3px solid black;"
"}";
}
void SaveGraphLayoutSettings::createMenu() {
menuListFont =*defaultfont;
menuListFont.setPointSize(fontSizeIncrease+menuListFont.pointSize());
createStyleSheets();
2022-12-31 02:02:17 +00:00
#ifdef USE_FRAMELESS_WINDOW
menuDialog= new QDialog(parent, Qt::FramelessWindowHint);
menuDialog->setSizeGripEnabled(true); // allows lower right hand corner to resize dialog
#else
menuDialog= new QDialog(parent, Qt::WindowTitleHint | Qt::WindowCloseButtonHint|Qt::WindowSystemMenuHint);
menuDialog->setWindowTitle(tr("Manage Save Layout Settings")) ;
#endif
2022-12-31 02:02:17 +00:00
menuDialog->setStyleSheet(styleDialog);
menuLayout = new QVBoxLayout(menuDialog);
menuLayoutButtons = new QHBoxLayout();
menuAddFullBtn = menuBtn(tr("Add" ),m_icon_add , styleOff ,QSizePolicy::Minimum, tr("Add Feature inhibited. The maximum number of Items has been exceeded.") );
menuAddBtn = menuBtn(tr("Add" ),m_icon_add , styleOn ,QSizePolicy::Minimum, tr("creates new copy of current settings."));
menuRestoreBtn = menuBtn(tr("Restore"),m_icon_restore , styleOn ,QSizePolicy::Minimum, tr("Restores saved settings from selection."));
menuRenameBtn = menuBtn(tr("Rename" ),m_icon_rename , styleOn ,QSizePolicy::Minimum, tr("Renames the selection. Must edit existing name then press enter."));
menuUpdateBtn = menuBtn(tr("Update" ),m_icon_update , styleOn ,QSizePolicy::Minimum, tr("Updates the selection with current settings."));
menuDeleteBtn = menuBtn(tr("Delete" ),m_icon_delete , styleOn ,QSizePolicy::Minimum, tr("Deletes the selection."));
menuHelpBtn = menuBtn("" ,m_icon_help , styleOn ,QSizePolicy::Fixed , tr("Expanded Help menu."));
menuExitBtn = menuBtn("" ,m_icon_exit , styleExit,QSizePolicy::Fixed , tr("Exits the Layout menu."));
#ifndef USE_FRAMELESS_WINDOW
menuExitBtn->hide();
#endif
menuList = new QListWidget(menuDialog);
menuList->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
menuList->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
menuList->setFont(menuListFont);
menuLayout->addLayout(menuLayoutButtons);
menuLayout->addWidget(menuList, 1);
//menuList->setSizePolicy(QSizePolicy::Preferred,QSizePolicy::Preferred);
menuList->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum);
};
void SaveGraphLayoutSettings::createHelp() {
if(helpDialog) return;
helpDialog= new QDialog(parent, Qt::FramelessWindowHint);
helpDialog->setStyleSheet(styleDialog);
menuDialog->setSizeGripEnabled(true); // allows lower right hand corner to resize dialog
QFont helpInfoFont = menuListFont;
helpInfoFont.setPointSize(helpFontSizeIncrease+helpInfoFont.pointSize());
QFont helpInfoLabelFont = helpInfoFont;
helpInfoLabelFont.setPointSize(fontSizeIncrease+ helpInfoFont.pointSize());
//QHBoxLayout* helpLayoutButtons;
//QLabel* helpInfoHeaderLabel;
//QFont helpInfoFont;
//QVBoxLayout* helpLayout;
QLabel* helpInfoHeaderLabel = new QLabel("helpInfoHeaderLabel",parent);
helpInfoHeaderLabel->setText(QString( tr("<h4><center>Help Menu - Manage Graph Layout Settings</center></h4>")));
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() {
return QString( tr("\
<p style=\"color:black;\"> \
2023-01-11 01:39:53 +00:00
<b><center>Button Description</center></b>\
<table width=\"100%\">\
2023-01-11 01:39:53 +00:00
<tr><td>Add </td> <td> Creates a new saved Setting item. The default description is the current date.<br>\
The description may be changed by the User.<br>\
The Add button will be greyed out when maximum number of saved layouts is reached.</td></tr>\
2023-01-11 01:39:53 +00:00
<br>\
<tr><td><i><u>Other Buttons</u> </i></td> \
<td> These buttons will be greyed out when no items are selected</td></tr>\
2023-01-11 01:39:53 +00:00
<br>\
<tr><td>Restore</td> <td> Loads the current graph layout setting with the selected saved settings then returns. </td></tr>\
<br>\
<tr><td>Rename </td> <td> Allows the user to modify the description of the selected saved session.\
Same as a double click on the item.</td></tr>\
2023-01-11 01:39:53 +00:00
<br>\
<tr><td>Update </td> <td> Saves the current graph layout setting to the selected saved setting.<br>Prompts for confirmation.</td></tr>\
<br>\
<tr><td>Delete </td> <td> Deletes the selected graph layout setting. <br>Prompts for confirmation.</td></tr>\
2023-01-11 01:39:53 +00:00
<br>\
<tr><td>Exit </td> <td> (Red circle with a white \"X.\") Returns to OSCAR menu.</td></tr>\
2023-01-11 01:39:53 +00:00
<br>\
</table> \
<center><b>Graph Layout Settings</b></center>\
<table width=\"100%\" > \
<tr> <td>* Name </td><td>* Order </td><td>* Pinning </td><td>* Height</td>\
<tr> <td>* Height Options </td><td>* Event Flags </td><td>* Plots Enabled </td><td>* Dotted Lines</td>\
</table> \
<center><b>General Information</b></center>\
2023-01-11 01:39:53 +00:00
<table> \
<tr><td>*</td> <td> Maximum description size = 80 characters.</td>\
<tr><td>*</td> <td> Maximum Saved Graph Layout Settings = 30 </td>\
<tr><td>*</td> <td> Saved Graprhg Layout Setting are available for all user profiles</td>\
<tr><td>*</td> <td> Graph Layout Settings only impact how graphs are displayed. <br>\
They do not contains any other data.</td>\
<tr><td>*</td> <td> The Escape key \"esc\" will always exit a dialog menu - like this help or the layout menu</td>\
</table> \
</p>\
"));
}
const QString SaveGraphLayoutSettings::calculateStyleMessageBox(QFont* font , QString& s1, QString& s2) {
QFontMetrics fm = QFontMetrics(*font);
int width = fm.boundingRect(s1).size().width();
int width2 = fm.boundingRect(s2).size().width();
width = qMax(width,width2) + iconWidthMessageBox;
QString style = QString("%1 QLabel{%2 min-width: %3px;}" ).
arg(styleMessageBox).
arg("text-align: center;" "color:black;").
arg(width);
return style;
}
bool SaveGraphLayoutSettings::verifyItem(QListWidgetItem* item,QString text,QIcon* icon) {
//if (verifyhelp() ) return false;
if (item) return true;
initminMenuListSize();
confirmAction( text ,"" , icon);
return false;
}
#if 1
bool SaveGraphLayoutSettings::confirmAction(QString top ,QString bottom,QIcon* icon,QMessageBox::StandardButtons flags , QMessageBox::StandardButton adefault, QMessageBox::StandardButton success) {
//QString topText=QString("<Center>%1</Center>").arg(top);
//QString bottomText=QString("<Center>%1</Center>").arg(bottom);
QString topText=QString("<p style=""text-align:center"">%1</p>").arg(top);
QString bottomText=QString("<p style=""text-align:center"">%1</p>").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);
2022-12-31 02:02:17 +00:00
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);
2022-12-31 02:02:17 +00:00
msgBox.setWindowFlag(Qt::FramelessWindowHint,true);
return (msgBox.exec()==QMessageBox::Yes);
2022-12-31 02:02:17 +00:00
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;
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings::looksOn(QPushButton* button,bool on){
//button->setEnabled(on);
button->setStyleSheet(on?styleOn:styleOff);
}
void SaveGraphLayoutSettings::manageButtonApperance() {
bool enable = menuList->currentItem();
2022-12-31 02:02:17 +00:00
looksOn(menuUpdateBtn,enable);
looksOn(menuRestoreBtn,enable);
looksOn(menuDeleteBtn,enable);
looksOn(menuRenameBtn,enable);
2022-12-31 02:02:17 +00:00
if (nextNumToUse<0) { // check if at Maximum limit
// must always hide first
2022-12-31 02:02:17 +00:00
menuAddBtn->hide();
menuAddFullBtn->show();
} else {
// must always hide first
2022-12-31 02:02:17 +00:00
menuAddFullBtn->hide();
menuAddBtn->show();
}
}
2022-12-31 02:02:17 +00:00
void SaveGraphLayoutSettings::add_feature() {
if(!graphView) return;
QString fileName = QString("%1%2").arg(fileBaseName).arg(nextNumToUse,fileNumMaxLength,10,QLatin1Char('0'));
2022-12-31 02:02:17 +00:00
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();
}
2022-12-31 02:02:17 +00:00
void SaveGraphLayoutSettings::addFull_feature() {
verifyItem( nullptr,tr("Maximum number of Items exceeded.") , m_icon_add);
2022-12-31 02:02:17 +00:00
}
2022-12-28 18:24:01 +00:00
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;
2022-12-31 02:02:17 +00:00
QString fileName = item->data(fileNameRole).toString();
writeSettings(fileName);
};
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings::restore_feature() {
if(!graphView) return;
QListWidgetItem * item=menuList->currentItem();
if (!verifyItem(item, tr("No Item Selected") , m_icon_restore)) return ;
2022-12-31 02:02:17 +00:00
QString fileName = item->data(fileNameRole).toString();
loadSettings(fileName);
exit();
};
2022-12-28 18:24:01 +00:00
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);
2022-12-28 18:24:01 +00:00
// 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();
}
2022-12-28 18:24:01 +00:00
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;
2022-12-31 02:02:17 +00:00
QString fileName = item->data(fileNameRole).toString();
descriptionMap->remove(fileName);
descriptionMap->save();
deleteSettings(fileName);
delete item;
2022-12-31 02:02:17 +00:00
if (nextNumToUse<0) {
nextNumToUse=fileNum(fileName);
}
manageButtonApperance();
resizeMenu();
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings::itemChanged(QListWidgetItem *item)
{
2022-12-31 02:02:17 +00:00
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
2022-12-31 02:02:17 +00:00
desc=descriptionMap->get(fileName);
} else {
2022-12-31 02:02:17 +00:00
descriptionMap->add(fileName,desc);
descriptionMap->save();
}
item->setText(desc);
menuList->sortItems();
menuList->setCurrentItem(item);
resizeMenu();
}
2022-12-28 18:24:01 +00:00
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();
}
};
2022-12-31 02:02:17 +00:00
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;
}
2022-12-28 18:24:01 +00:00
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();
2022-12-31 02:02:17 +00:00
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) {
2022-12-31 02:02:17 +00:00
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++;
2022-12-31 02:02:17 +00:00
QListWidgetItem *item = new QListWidgetItem(descriptionMap->get(fileName));
item->setData(fileNameRole,fileName);
item->setFlags(item->flags() | Qt::ItemIsEditable);
menuList->insertItem(row,item);
row++;
2022-12-31 02:02:17 +00:00
if (find!=nullptr && fileName==find) {
ret=item;
}
}
}
}
2022-12-31 02:02:17 +00:00
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<maxFiles) {
// a slot is available
2022-12-31 02:02:17 +00:00
nextNumToUse=count;
}
}
manageButtonApperance();
menuList->sortItems();
return ret;
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings::exit() {
2022-12-31 02:02:17 +00:00
menuDialog->close();
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings::menu(gGraphView* graphView) {
2022-12-31 02:02:17 +00:00
if (dir==nullptr) {
//const char* err=qPrintable(QString("Cannot find directory %1").arg(dirName));
//qWarning(err);
return;
}
this->graphView=graphView;
updateFileList();
manageButtonApperance();
2022-12-31 02:02:17 +00:00
menuDialog->raise();
menuDialog->exec();
exit();
}
//====================================================================================================
//====================================================================================================
2022-12-31 02:02:17 +00:00
// Descriptions map class with file storage
2022-12-31 02:02:17 +00:00
DescriptionMap::DescriptionMap(QDir* dir, QString _filename)
{
filename = dir->absoluteFilePath(_filename);
2022-12-31 02:02:17 +00:00
parseDescriptionsRe = new QRegularExpression(QString("^\\s*(\\w+)%1(.*)$").arg(delimiter) );
};
2022-12-31 02:02:17 +00:00
DescriptionMap::~DescriptionMap() {
delete parseDescriptionsRe;
};
2022-12-31 02:02:17 +00:00
void DescriptionMap::add(QString key,QString desc) {
descriptions.insert(key,desc);
};
2022-12-31 02:02:17 +00:00
void DescriptionMap::remove(QString key) {
descriptions.remove(key);
}
2022-12-31 02:02:17 +00:00
QString DescriptionMap::get(QString key) {
QString ret =descriptions.value(key,key);
return ret;
}
2022-12-31 02:02:17 +00:00
void DescriptionMap::save() {
QFile file(filename);
file.open(QFile::WriteOnly);
QTextStream out(&file);
QMapIterator<QString, QString>it(descriptions);
while (it.hasNext()) {
it.next();
2022-12-31 02:02:17 +00:00
QString line=QString("%1%2%3\n").arg(it.key()).arg(delimiter).arg(it.value());
out <<line;
}
file.close();
}
2022-12-31 02:02:17 +00:00
void DescriptionMap::load() {
QString line;
QFile file(filename);
2022-12-31 02:02:17 +00:00
descriptions.clear();
if (!file.exists()) return;
file.open(QFile::ReadOnly);
QTextStream instr(&file);
while (instr.readLineInto(&line)) {
QRegularExpressionMatch match = parseDescriptionsRe->match(line);
if (match.hasMatch()) {
2022-12-31 02:02:17 +00:00
QString fileName = match.captured(1);
QString desc = match.captured(2);
2022-12-31 02:02:17 +00:00
add(fileName,desc);
} else {
DEBUGF QQ("MATCH ERROR",line);
}
}
}
//====================================================================================================
//====================================================================================================
#if 0
Are you &lt;b&gt;absolutely sure&lt;/b&gt; you want to proceed?
QMessageBox msgBox; msgBox.setText(tr("Confirm?"));
QAbstractButton* pButtonYes = msgBox.addButton(tr("Yeah!"), QMessageBox::YesRole);
pButtonNo=msgBox.addButton(tr("Nope"), QMessageBox::NoRole);
btn.setIcon(const QIcon &icon);
msgBox.exec();
if (msgBox.clickedButton()==pButtonYes) {
QIcon groupIcon( style()->standardIcon( QStyle::SP_DirClosedIcon ) )
https://www.pythonguis.com/faq/built-in-qicons-pyqt/
QMessageBox msgBox;
msgBox.setText("The document has been modified.");
msgBox.setInformativeText("Do you want to save your changes?");
msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);
msgBox.setDefaultButton(QMessageBox::Save);
int ret = msgBox.exec();
switch (ret) {
case QMessageBox::Save:
// Save was clicked
break;
case QMessageBox::Discard:
// Don't Save was clicked
break;
case QMessageBox::Cancel:
// Cancel was clicked
break;
default:
// should never be reached
break;
}
// Reminders For testing
Different languages unicodes to test. optained from translation files
הצג את מחיצת הנתונים
הצג את מחיצת הנתונים عذرا ، لا يمكن تحديد موقع ملف.
عذرا ، لا يمكن تحديد موقع ملف.
Toon gegevensmap
عذرا ، لا يمكن تحديد موقع ملف.
menuDialog->connect(menuList, SIGNAL(itemActivated(QListWidgetItem*)), this, SLOT(itemActivated(QListWidgetItem*) ));
menuDialog->connect(menuList, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(itemDoubleClicked(QListWidgetItem*) ));
menuDialog->connect(menuList, SIGNAL(itemClicked(QListWidgetItem*)), this, SLOT(itemClicked(QListWidgetItem*) ));
menuDialog->connect(menuList, SIGNAL(itemEntered(QListWidgetItem*)), this, SLOT(itemEntered(QListWidgetItem*) ));
menuDialog->connect(menuList, SIGNAL(itemPressed(QListWidgetItem*)), this, SLOT(itemEntered(QListWidgetItem*) ));
menuDialog->disconnect(menuList, SIGNAL(itemActivated(QListWidgetItem*)), this, SLOT(itemActivated(QListWidgetItem*) ));
menuDialog->disconnect(menuList, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(itemDoubleClicked(QListWidgetItem*) ));
menuDialog->disconnect(menuList, SIGNAL(itemClicked(QListWidgetItem*)), this, SLOT(itemClicked(QListWidgetItem*) ));
menuDialog->disconnect(menuList, SIGNAL(itemEntered(QListWidgetItem*)), this, SLOT(itemEntered(QListWidgetItem*) ));
menuDialog->disconnect(menuList, SIGNAL(itemPressed(QListWidgetItem*)), this, SLOT(itemEntered(QListWidgetItem*) ));
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings::itemActivated(QListWidgetItem *item)
{
Q_UNUSED( item );
DEBUGF Q( item->text() );
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings::itemDoubleClicked(QListWidgetItem *item)
{
Q_UNUSED( item );
DEBUGF Q( item->text() );
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings::itemClicked(QListWidgetItem *item)
{
Q_UNUSED( item );
DEBUGF Q( item->text() );
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings::itemEntered(QListWidgetItem *item)
{
Q_UNUSED( item );
DEBUGF Q( item->text() );
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings::itemPressed(QListWidgetItem *item)
{
Q_UNUSED( item );
DEBUGF Q( item->text() );
}
//private_slots:
void itemActivated(QListWidgetItem *item);
void itemDoubleClicked(QListWidgetItem *item);
void itemClicked(QListWidgetItem *item);
void itemEntered(QListWidgetItem *item);
void itemPressed(QListWidgetItem *item);
#endif