Added Help menu , improved Icons , fixed minor display issues

This commit is contained in:
LoudSnorer 2023-01-09 20:10:53 -05:00
parent 4eafac8fbb
commit 5f6988eaa9
17 changed files with 458 additions and 143 deletions

View File

@ -59,12 +59,13 @@
<file>icons/up-down.png</file> <file>icons/up-down.png</file>
<file>icons/warning.png</file> <file>icons/warning.png</file>
<file>icons/exit.png</file> <file>icons/exit.png</file>
<file>icons/brick-wall.png</file>
<file>icons/plus.png</file> <file>icons/plus.png</file>
<file>icons/rename.png</file> <file>icons/rename.png</file>
<file>icons/restore.png</file> <file>icons/restore.png</file>
<file>icons/trash_can.png</file> <file>icons/trash_can.png</file>
<file>icons/update.png</file> <file>icons/update.png</file>
<file>icons/cog.png</file> <file>icons/cog.png</file>
<file>icons/question_mark.png</file>
<file>icons/return.png</file>
</qresource> </qresource>
</RCC> </RCC>

View File

@ -7,7 +7,7 @@
* License. See the file COPYING in the main directory of the source code * License. See the file COPYING in the main directory of the source code
* for more details. */ * for more details. */
#define TEST_MACROS_ENABLEDoff #define TEST_MACROS_ENABLED
#include <test_macros.h> #include <test_macros.h>
#include <QTextCharFormat> #include <QTextCharFormat>

View File

@ -1567,7 +1567,7 @@ QToolButton:pressed {
<normaloff>:/icons/cog.png</normaloff>:/icons/cog.png</iconset> <normaloff>:/icons/cog.png</normaloff>:/icons/cog.png</iconset>
</property> </property>
<property name="toolTip"> <property name="toolTip">
<string>Save and Restore graph layout settings</string> <string>Save and Restore Graph Layout Settings</string>
</property> </property>
</widget> </widget>
</item> </item>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
oscar/icons/return.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -255,8 +255,8 @@ lessThan(QT_MAJOR_VERSION,5)|lessThan(QT_MINOR_VERSION,12) {
SOURCES += \ SOURCES += \
checkupdates.cpp \ checkupdates.cpp \
overview.cpp \
saveGraphLayoutSettings.cpp \ saveGraphLayoutSettings.cpp \
overview.cpp \
common_gui.cpp \ common_gui.cpp \
cprogressbar.cpp \ cprogressbar.cpp \
daily.cpp \ daily.cpp \
@ -362,8 +362,8 @@ QMAKE_EXTRA_COMPILERS += optimize
HEADERS += \ HEADERS += \
checkupdates.h \ checkupdates.h \
overview.h \
saveGraphLayoutSettings.h \ saveGraphLayoutSettings.h \
overview.h \
common_gui.h \ common_gui.h \
cprogressbar.h \ cprogressbar.h \
daily.h \ daily.h \

View File

@ -269,7 +269,7 @@ QToolButton:pressed {
<normaloff>:/icons/cog.png</normaloff>:/icons/cog.png</iconset> <normaloff>:/icons/cog.png</normaloff>:/icons/cog.png</iconset>
</property> </property>
<property name="toolTip"> <property name="toolTip">
<string>Save and Restore graph layout settings</string> <string>Save and Restore Graph Layout Settings</string>
</property> </property>
</widget> </widget>
</item> </item>

View File

@ -18,9 +18,13 @@
#include "SleepLib/profiles.h" #include "SleepLib/profiles.h"
#include "saveGraphLayoutSettings.h" #include "saveGraphLayoutSettings.h"
#define USE_FRAMELESS_WINDOW
#define USE_PROFILE_SPECIFIC_FOLDERoff // off implies saved layouts worked for all profiles.
SaveGraphLayoutSettings::SaveGraphLayoutSettings(QString title,QWidget* parent) : parent(parent),title(title) SaveGraphLayoutSettings::SaveGraphLayoutSettings(QString title,QWidget* parent) : parent(parent),title(title)
{ {
fontSizeIncrease = 1;
helpFontSizeIncrease = 1;
createSaveFolder(); createSaveFolder();
if (dir==nullptr) return; if (dir==nullptr) return;
dir->setFilter(QDir::Files | QDir::Readable | QDir::Writable | QDir::NoSymLinks); dir->setFilter(QDir::Files | QDir::Readable | QDir::Writable | QDir::NoSymLinks);
@ -30,36 +34,40 @@ SaveGraphLayoutSettings::SaveGraphLayoutSettings(QString title,QWidget* parent)
createMenu() ; createMenu() ;
menuDialog->connect(menuAddFullBtn, SIGNAL(clicked()), this, SLOT (addFull_feature() )); menuDialog->connect(menuAddFullBtn, SIGNAL(clicked()), this, SLOT (addFull_feature() ));
menuDialog->connect(menuAddBtn, SIGNAL(clicked()), this, SLOT (add_feature() )); menuDialog->connect(menuAddBtn, SIGNAL(clicked()), this, SLOT (add_feature() ));
menuDialog->connect(menuRestoreBtn, SIGNAL(clicked()), this, SLOT (restore_feature() )); menuDialog->connect(menuRestoreBtn, SIGNAL(clicked()), this, SLOT (restore_feature() ));
menuDialog->connect(menuUpdateBtn, SIGNAL(clicked()), this, SLOT (update_feature() )); menuDialog->connect(menuUpdateBtn, SIGNAL(clicked()), this, SLOT (update_feature() ));
menuDialog->connect(menuRenameBtn, SIGNAL(clicked()), this, SLOT (rename_feature() )); menuDialog->connect(menuRenameBtn, SIGNAL(clicked()), this, SLOT (rename_feature() ));
menuDialog->connect(menuDeleteBtn, SIGNAL(clicked()), this, SLOT (delete_feature() )); menuDialog->connect(menuDeleteBtn, SIGNAL(clicked()), this, SLOT (delete_feature() ));
menuDialog->connect(menuHelpBtn, SIGNAL(clicked()), this, SLOT (help_feature() ));
menuDialog->connect(menuExitBtn, SIGNAL(clicked()), this, SLOT (exit() )); 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() ));
menuDialog->connect(menulist, SIGNAL(itemChanged(QListWidgetItem*)), this, SLOT(itemChanged(QListWidgetItem*) ));
menuDialog->connect(menulist, SIGNAL(itemSelectionChanged()), this, SLOT(itemSelectionChanged() ));
singleLineRe = new QRegularExpression( QString("^\\s*([^\\r\\n]{0,%1})").arg(1+maxDescriptionLen) ); singleLineRe = new QRegularExpression( QString("^\\s*([^\\r\\n]{0,%1})").arg(1+maxDescriptionLen) );
fileNumRe = new QRegularExpression( QString("%1(\\d+)(.shg)?$").arg(baseName) ); fileNumRe = new QRegularExpression( QString("%1(\\d+)(.shg)?$").arg(fileBaseName) );
parseFilenameRe = new QRegularExpression(QString("^(%1[.](%2(\\d*)))[.]shg$").arg(title).arg(baseName)); parseFilenameRe = new QRegularExpression(QString("^(%1[.](%2(\\d*)))[.]shg$").arg(title).arg(fileBaseName));
} }
SaveGraphLayoutSettings::~SaveGraphLayoutSettings() SaveGraphLayoutSettings::~SaveGraphLayoutSettings()
{ {
if (dir==nullptr) {return;} if (dir==nullptr) {return;}
menuDialog->disconnect(menuAddFullBtn, SIGNAL(clicked()), this, SLOT (addFull_feature() )); menuDialog->disconnect(menuAddFullBtn, SIGNAL(clicked()), this, SLOT (addFull_feature() ));
menuDialog->disconnect(menuAddBtn, SIGNAL(clicked()), this, SLOT (add_feature() )); menuDialog->disconnect(menuAddBtn, SIGNAL(clicked()), this, SLOT (add_feature() ));
menuDialog->disconnect(menuRestoreBtn, SIGNAL(clicked()), this, SLOT (restore_feature() )); menuDialog->disconnect(menuRestoreBtn, SIGNAL(clicked()), this, SLOT (restore_feature() ));
menuDialog->disconnect(menuUpdateBtn, SIGNAL(clicked()), this, SLOT (update_feature() )); menuDialog->disconnect(menuUpdateBtn, SIGNAL(clicked()), this, SLOT (update_feature() ));
menuDialog->disconnect(menuDeleteBtn, SIGNAL(clicked()), this, SLOT (delete_feature() ));
menuDialog->disconnect(menuRenameBtn, SIGNAL(clicked()), this, SLOT (rename_feature() )); menuDialog->disconnect(menuRenameBtn, SIGNAL(clicked()), this, SLOT (rename_feature() ));
menuDialog->disconnect(menuDeleteBtn, SIGNAL(clicked()), this, SLOT (delete_feature() ));
menuDialog->disconnect(menuExitBtn, SIGNAL(clicked()), this, SLOT (exit() )); 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();
menuDialog->disconnect(menulist, SIGNAL(itemChanged(QListWidgetItem*)), this, SLOT(itemChanged(QListWidgetItem*) ));
menuDialog->disconnect(menulist, SIGNAL(itemSelectionChanged()), this, SLOT(itemSelectionChanged() ));
delete descriptionMap; delete descriptionMap;
delete singleLineRe; delete singleLineRe;
@ -107,97 +115,239 @@ void SaveGraphLayoutSettings::createSaveFolder() {
dir=tmpDir; dir=tmpDir;
} }
void SaveGraphLayoutSettings::createMenu() { QPushButton* SaveGraphLayoutSettings::menuBtn(QString name, QIcon* icon, QString style,QSizePolicy::Policy hPolicy,QString tooltip) {
styleOn= calculateStyle(true,false); return newBtnRtn(menuLayoutButtons, name, icon, style, hPolicy,tooltip) ;
styleOff= calculateStyle(false,false); }
styleExitBtn=calculateStyle(true,true); 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= styleMessageBox=
"QMessageBox { " "QMessageBox { "
"background-color:yellow;" "background-color:yellow;"
"color:black;" //"color:black;"
"color:red;"
"border: 2px solid black;" "border: 2px solid black;"
"text-align: center;" "text-align: right;"
"font-size: 16px;"
"}" "}"
"QPushButton { " "QTextEdit {"
"color:black;" "background-color:lightblue;"
//"color:black;"
"color:red;"
"border: 9px solid black;"
"text-align: center;"
"vertical-align:top;"
"}" "}"
; ;
styleDialog= styleDialog=
"QDialog { " "QDialog { "
"border: 3px solid black;" "border: 3px solid black;"
"min-width:30em;" // make large fonts in message box
"}"; "}";
}
menuDialog= new QDialog(parent, Qt::WindowTitleHint | Qt::WindowCloseButtonHint|Qt::WindowSystemMenuHint); void SaveGraphLayoutSettings::createMenu() {
menuDialog->setWindowFlag(Qt::FramelessWindowHint);
menuAddFullBtn =new QPushButton("Add", parent); menuListFont =*defaultfont;
menuAddBtn =new QPushButton(tr("Add"), parent); menuListFont.setPointSize(fontSizeIncrease+menuListFont.pointSize());
menuRestoreBtn = new QPushButton(tr("Restore"), parent);
menuUpdateBtn = new QPushButton(tr("Update"), parent);
menuRenameBtn = new QPushButton(tr("Rename"), parent);
menuDeleteBtn = new QPushButton(tr("Delete"), parent);
menuExitBtn = new QPushButton(*m_icon_exit,tr(""),parent);
menulist=new QListWidget(menuDialog);
menulist->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
menuLayout = new QVBoxLayout(menuDialog); createStyleSheets();
menuLayout1 = new QHBoxLayout();
menuLayout2 = new QVBoxLayout();
menuLayout2->setMargin(6);
menuLayout->addLayout(menuLayout1);
menuLayout->addLayout(menuLayout2);
menuLayout1->addWidget(menuAddFullBtn);
menuLayout1->addWidget(menuAddBtn);
menuLayout1->addWidget(menuRestoreBtn);
menuLayout1->addWidget(menuRenameBtn);
menuLayout1->addWidget(menuUpdateBtn);
menuLayout1->addWidget(menuDeleteBtn);
menuLayout1->addWidget(menuExitBtn);
menuLayout2->addWidget(menulist, 1);
/*TRANSLATION*/
menuAddFullBtn-> setToolTip(tr("Add Feature inhibited. The maximum number has been exceeded."));
menuAddBtn-> setToolTip(tr("Save current settings."));
menuRestoreBtn-> setToolTip(tr("Restores saved settings."));
menuRenameBtn-> setToolTip(tr("Renames the selection. Must edit existing name then press enter."));
menuUpdateBtn-> setToolTip(tr("Updates the selection with current settings."));
menuDeleteBtn-> setToolTip(tr("Delete the selection."));
menuExitBtn-> setToolTip(tr("Closes the dialog menu. Returns to previous menu."));
#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
menuDialog->setStyleSheet(styleDialog); menuDialog->setStyleSheet(styleDialog);
menuAddFullBtn->setStyleSheet(styleOff);
menuAddBtn->setStyleSheet(styleOn); menuLayout = new QVBoxLayout(menuDialog);
menuRestoreBtn->setStyleSheet(styleOn); menuLayoutButtons = new QHBoxLayout();
menuUpdateBtn->setStyleSheet(styleOn);
menuRenameBtn->setStyleSheet(styleOn); menuAddFullBtn = menuBtn(tr("Add" ),m_icon_add , styleOff ,QSizePolicy::Minimum, tr("Add Feature inhibited. The maximum number of Items has been exceeded.") );
menuDeleteBtn->setStyleSheet(styleOn); menuAddBtn = menuBtn(tr("Add" ),m_icon_add , styleOn ,QSizePolicy::Minimum, tr("creates new copy of current settings."));
menuExitBtn->setStyleSheet( styleExitBtn ); 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);
menuAddFullBtn->setIcon(*m_icon_add ); menuLayout->addLayout(menuLayoutButtons);
menuAddBtn->setIcon(*m_icon_add ); menuLayout->addWidget(menuList, 1);
menuRestoreBtn->setIcon(*m_icon_restore );
menuRenameBtn->setIcon(*m_icon_rename );
menuUpdateBtn->setIcon(*m_icon_update );
menuDeleteBtn->setIcon(*m_icon_delete );
menuDeleteBtn->setIcon(*m_icon_delete );
//menuList->setSizePolicy(QSizePolicy::Preferred,QSizePolicy::Preferred);
menuList->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum);
int timeout = AppSetting->tooltipTimeout();
menuAddFullBtn->setToolTipDuration(timeout);
menuAddBtn->setToolTipDuration(timeout);
menuRestoreBtn->setToolTipDuration(timeout);
menuUpdateBtn->setToolTipDuration(timeout);
menuRenameBtn->setToolTipDuration(timeout);
menuDeleteBtn->setToolTipDuration(timeout);
menuExitBtn->setToolTipDuration(timeout);
}; };
bool SaveGraphLayoutSettings::confirmAction(QString name,QString question,QIcon* icon) { 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("\
<b><center>Button Description</center></b>\
<p style=\"color:black;\"> \
<table width=\"100%\">\
<tr><td>Add </td> <td> Creates a new saved Setting item. The default descripton is the currenti 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>\
<tr><td><i><u>Other Buttons</u> </i></td> \
<td> These buttons will be greyed out when no items are selected</td></tr>\
<tr><td>Restore</td> <td> Loads the current graph layout setting with the swlected saved settings then returns. </td></tr>\
<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>\
<tr><td>Update </td> <td> Saves the current graph layout setting to the selected saved settings.<br>Prompts for confirmation.</td></tr>\
<tr><td>Delete </td> <td> Deletes the selected graph layout setting. <br>Prompts for confirmation.</td></tr>\
<tr><td>Exit </td> <td> (Red circle with a white \"X.\") Returns to OSCAR menu.</td></tr>\
</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>\
</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);
QMessageBox msgBox(menuDialog); QMessageBox msgBox(menuDialog);
msgBox.setText(question); msgBox.setText(question);
if (icon!=nullptr) { if (icon!=nullptr) {
@ -213,8 +363,9 @@ bool SaveGraphLayoutSettings::confirmAction(QString name,QString question,QIcon*
Q_UNUSED(name); Q_UNUSED(name);
} }
#endif
QString SaveGraphLayoutSettings::calculateStyle(bool on,bool exitBtn){ QString SaveGraphLayoutSettings::calculateButtonStyle(bool on,bool exitBtn){
QString btnStyle=QString("QPushButton{%1%2}").arg(on QString btnStyle=QString("QPushButton{%1%2}").arg(on
?"color: black;background-color:white;" ?"color: black;background-color:white;"
:"color: darkgray;background-color:#e8e8e8 ;" :"color: darkgray;background-color:#e8e8e8 ;"
@ -239,27 +390,33 @@ QString SaveGraphLayoutSettings::calculateStyle(bool on,bool exitBtn){
} }
void SaveGraphLayoutSettings::looksOn(QPushButton* button,bool on){ void SaveGraphLayoutSettings::looksOn(QPushButton* button,bool on){
button->setEnabled(on); //button->setEnabled(on);
button->setStyleSheet(on?styleOn:styleOff); button->setStyleSheet(on?styleOn:styleOff);
} }
void SaveGraphLayoutSettings::enableButtons(bool enable) { void SaveGraphLayoutSettings::manageButtonApperance() {
bool enable = menuList->currentItem();
looksOn(menuUpdateBtn,enable); looksOn(menuUpdateBtn,enable);
looksOn(menuRestoreBtn,enable); looksOn(menuRestoreBtn,enable);
looksOn(menuDeleteBtn,enable); looksOn(menuDeleteBtn,enable);
looksOn(menuRenameBtn,enable); looksOn(menuRenameBtn,enable);
if (nextNumToUse<0) { // check if at Maximum limit if (nextNumToUse<0) { // check if at Maximum limit
// must always hide first
menuAddBtn->hide(); menuAddBtn->hide();
menuAddFullBtn->show(); menuAddFullBtn->show();
} else { } else {
// must always hide first
menuAddFullBtn->hide(); menuAddFullBtn->hide();
menuAddBtn->show(); menuAddBtn->show();
} }
} }
void SaveGraphLayoutSettings::add_feature() { void SaveGraphLayoutSettings::add_feature() {
if(!graphView) return; if(!graphView) return;
QString fileName = QString("%1%2").arg(baseName).arg(nextNumToUse,fileNumMaxLength,10,QLatin1Char('0')); QString fileName = QString("%1%2").arg(fileBaseName).arg(nextNumToUse,fileNumMaxLength,10,QLatin1Char('0'));
writeSettings(fileName); writeSettings(fileName);
// create a default description - use formatted datetime. // create a default description - use formatted datetime.
QString desc=QDateTime::currentDateTime().toString(); QString desc=QDateTime::currentDateTime().toString();
@ -267,25 +424,21 @@ void SaveGraphLayoutSettings::add_feature() {
descriptionMap->save(); descriptionMap->save();
QListWidgetItem* item = updateFileList( fileName); QListWidgetItem* item = updateFileList( fileName);
if (item!=nullptr) { if (item!=nullptr) {
menulist->setCurrentItem(item,QItemSelectionModel::ClearAndSelect); menuList->setCurrentItem(item,QItemSelectionModel::ClearAndSelect);
menulist->editItem(item); menuList->editItem(item);
} }
menuList->sortItems();
resizeMenu();
} }
void SaveGraphLayoutSettings::addFull_feature() { void SaveGraphLayoutSettings::addFull_feature() {
QMessageBox msgBox(menuDialog); verifyItem( nullptr,tr("Maximum number of Items exceeded.") , m_icon_add);
msgBox.setText(tr("Maximum number exceeded."));
msgBox.setStandardButtons(QMessageBox::Cancel);
msgBox.setDefaultButton(QMessageBox::Cancel);
msgBox.setWindowFlag(Qt::FramelessWindowHint,true);
msgBox.setStyleSheet(styleMessageBox);
msgBox.setIconPixmap(m_icon_addFull->pixmap(QSize(50,50)));
msgBox.exec();
} }
void SaveGraphLayoutSettings::update_feature() { void SaveGraphLayoutSettings::update_feature() {
if(!graphView) return; if(!graphView) return;
QListWidgetItem * item=menulist->currentItem(); 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; if(!confirmAction( item->text(), tr("Ok to Update?") , m_icon_update) ) return;
QString fileName = item->data(fileNameRole).toString(); QString fileName = item->data(fileNameRole).toString();
writeSettings(fileName); writeSettings(fileName);
@ -293,8 +446,8 @@ void SaveGraphLayoutSettings::update_feature() {
void SaveGraphLayoutSettings::restore_feature() { void SaveGraphLayoutSettings::restore_feature() {
if(!graphView) return; if(!graphView) return;
QListWidgetItem * item=menulist->currentItem(); QListWidgetItem * item=menuList->currentItem();
if (!item) return; if (!verifyItem(item, tr("No Item Selected") , m_icon_restore)) return ;
QString fileName = item->data(fileNameRole).toString(); QString fileName = item->data(fileNameRole).toString();
loadSettings(fileName); loadSettings(fileName);
exit(); exit();
@ -302,17 +455,35 @@ void SaveGraphLayoutSettings::restore_feature() {
void SaveGraphLayoutSettings::rename_feature() { void SaveGraphLayoutSettings::rename_feature() {
if(!graphView) return; if(!graphView) return;
QListWidgetItem * item=menulist->currentItem(); QListWidgetItem * item=menuList->currentItem();
if (!item) return; if (!verifyItem(item, tr("No Item Selected") , m_icon_rename)) return ;
menulist->editItem(item); menuList->editItem(item);
// SaveGraphLayoutSettings::itemChanged(QListWidgetItem *item) is called when edit changes the entry. // SaveGraphLayoutSettings::itemChanged(QListWidgetItem *item) is called when edit changes the entry.
// itemChanged will update the description map // 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() { void SaveGraphLayoutSettings::delete_feature() {
if(!graphView) return; if(!graphView) return;
QListWidgetItem * item=menulist->currentItem(); QListWidgetItem * item=menuList->currentItem();
if (!item) return; if (!verifyItem(item, tr("No Item Selected") , m_icon_delete)) return ;
if(!confirmAction(item->text(), tr("Ok To Delete?") ,m_icon_delete) ) return; if(!confirmAction(item->text(), tr("Ok To Delete?") ,m_icon_delete) ) return;
QString fileName = item->data(fileNameRole).toString(); QString fileName = item->data(fileNameRole).toString();
@ -323,7 +494,8 @@ void SaveGraphLayoutSettings::delete_feature() {
if (nextNumToUse<0) { if (nextNumToUse<0) {
nextNumToUse=fileNum(fileName); nextNumToUse=fileNum(fileName);
} }
enableButtons(true); manageButtonApperance();
resizeMenu();
} }
void SaveGraphLayoutSettings::itemChanged(QListWidgetItem *item) void SaveGraphLayoutSettings::itemChanged(QListWidgetItem *item)
@ -352,13 +524,34 @@ void SaveGraphLayoutSettings::itemChanged(QListWidgetItem *item)
descriptionMap->save(); descriptionMap->save();
} }
item->setText(desc); item->setText(desc);
menuList->sortItems();
menuList->setCurrentItem(item);
resizeMenu();
} }
void SaveGraphLayoutSettings::itemSelectionChanged() void SaveGraphLayoutSettings::itemSelectionChanged()
{ {
enableButtons(true); 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) { void SaveGraphLayoutSettings::writeSettings(QString filename) {
graphView->SaveSettings(title+"."+filename,dirName); graphView->SaveSettings(title+"."+filename,dirName);
}; };
@ -381,9 +574,79 @@ int SaveGraphLayoutSettings::fileNum(QString fileName) {
return value; 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* SaveGraphLayoutSettings::updateFileList(QString find) {
QListWidgetItem* ret=nullptr; QListWidgetItem* ret=nullptr;
enableButtons(false); manageButtonApperance();
dir->refresh(); dir->refresh();
QFileInfoList filelist = dir->entryInfoList( QDir::Files | QDir::Readable | QDir::Writable | QDir::NoSymLinks,QDir::Name); QFileInfoList filelist = dir->entryInfoList( QDir::Files | QDir::Readable | QDir::Writable | QDir::NoSymLinks,QDir::Name);
@ -391,7 +654,7 @@ QListWidgetItem* SaveGraphLayoutSettings::updateFileList(QString find) {
int row=0; int row=0;
int count=0; int count=0;
menulist->clear(); menuList->clear();
nextNumToUse=-1; nextNumToUse=-1;
descriptionMap->load(); descriptionMap->load();
for (int i = 0; i < filelist.size(); ++i) { for (int i = 0; i < filelist.size(); ++i) {
@ -414,7 +677,7 @@ QListWidgetItem* SaveGraphLayoutSettings::updateFileList(QString find) {
QListWidgetItem *item = new QListWidgetItem(descriptionMap->get(fileName)); QListWidgetItem *item = new QListWidgetItem(descriptionMap->get(fileName));
item->setData(fileNameRole,fileName); item->setData(fileNameRole,fileName);
item->setFlags(item->flags() | Qt::ItemIsEditable); item->setFlags(item->flags() | Qt::ItemIsEditable);
menulist->insertItem(row,item); menuList->insertItem(row,item);
row++; row++;
if (find!=nullptr && fileName==find) { if (find!=nullptr && fileName==find) {
ret=item; ret=item;
@ -429,8 +692,8 @@ QListWidgetItem* SaveGraphLayoutSettings::updateFileList(QString find) {
nextNumToUse=count; nextNumToUse=count;
} }
} }
enableButtons(false); manageButtonApperance();
menulist->sortItems(); menuList->sortItems();
return ret; return ret;
} }
@ -447,6 +710,7 @@ void SaveGraphLayoutSettings::menu(gGraphView* graphView) {
} }
this->graphView=graphView; this->graphView=graphView;
updateFileList(); updateFileList();
manageButtonApperance();
menuDialog->raise(); menuDialog->raise();
menuDialog->exec(); menuDialog->exec();
exit(); exit();
@ -569,19 +833,19 @@ switch (ret) {
عذرا ، لا يمكن تحديد موقع ملف. عذرا ، لا يمكن تحديد موقع ملف.
menuDialog->connect(menulist, SIGNAL(itemActivated(QListWidgetItem*)), this, SLOT(itemActivated(QListWidgetItem*) )); menuDialog->connect(menuList, SIGNAL(itemActivated(QListWidgetItem*)), this, SLOT(itemActivated(QListWidgetItem*) ));
menuDialog->connect(menulist, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(itemDoubleClicked(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(itemClicked(QListWidgetItem*)), this, SLOT(itemClicked(QListWidgetItem*) ));
menuDialog->connect(menulist, SIGNAL(itemEntered(QListWidgetItem*)), this, SLOT(itemEntered(QListWidgetItem*) )); menuDialog->connect(menuList, SIGNAL(itemEntered(QListWidgetItem*)), this, SLOT(itemEntered(QListWidgetItem*) ));
menuDialog->connect(menulist, SIGNAL(itemPressed(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(itemActivated(QListWidgetItem*)), this, SLOT(itemActivated(QListWidgetItem*) ));
menuDialog->disconnect(menulist, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(itemDoubleClicked(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(itemClicked(QListWidgetItem*)), this, SLOT(itemClicked(QListWidgetItem*) ));
menuDialog->disconnect(menulist, SIGNAL(itemEntered(QListWidgetItem*)), this, SLOT(itemEntered(QListWidgetItem*) )); menuDialog->disconnect(menuList, SIGNAL(itemEntered(QListWidgetItem*)), this, SLOT(itemEntered(QListWidgetItem*) ));
menuDialog->disconnect(menulist, SIGNAL(itemPressed(QListWidgetItem*)), this, SLOT(itemEntered(QListWidgetItem*) )); menuDialog->disconnect(menuList, SIGNAL(itemPressed(QListWidgetItem*)), this, SLOT(itemEntered(QListWidgetItem*) ));
void SaveGraphLayoutSettings::itemActivated(QListWidgetItem *item) void SaveGraphLayoutSettings::itemActivated(QListWidgetItem *item)

View File

@ -16,9 +16,11 @@
#include <QListWidget> #include <QListWidget>
#include <QListWidgetItem> #include <QListWidgetItem>
#include <QPushButton> #include <QPushButton>
#include <QLabel>
#include <QMessageBox>
#include <QRegularExpression> #include <QRegularExpression>
#include <QDir> #include <QDir>
#include "Graphs/gGraphView.h" #include "Graphs/gGraphView.h"
class DescriptionMap class DescriptionMap
@ -35,7 +37,7 @@ private:
QString filename; QString filename;
QMap <QString,QString> descriptions; QMap <QString,QString> descriptions;
const QRegularExpression* parseDescriptionsRe; const QRegularExpression* parseDescriptionsRe;
QChar delimiter = QChar(177); const QChar delimiter = QChar(':');
}; };
class SaveGraphLayoutSettings : public QWidget class SaveGraphLayoutSettings : public QWidget
@ -46,19 +48,35 @@ public:
~SaveGraphLayoutSettings(); ~SaveGraphLayoutSettings();
void menu(gGraphView* graphView); void menu(gGraphView* graphView);
protected: protected:
QIcon* m_icon_return = new QIcon(":/icons/return.png");
QIcon* m_icon_help = new QIcon(":/icons/question_mark.png");
QIcon* m_icon_exit = new QIcon(":/icons/exit.png"); QIcon* m_icon_exit = new QIcon(":/icons/exit.png");
QIcon* m_icon_delete = new QIcon(":/icons/trash_can.png"); QIcon* m_icon_delete = new QIcon(":/icons/trash_can.png");
QIcon* m_icon_update = new QIcon(":/icons/update.png"); QIcon* m_icon_update = new QIcon(":/icons/update.png");
QIcon* m_icon_restore = new QIcon(":/icons/restore.png"); QIcon* m_icon_restore = new QIcon(":/icons/restore.png");
QIcon* m_icon_rename = new QIcon(":/icons/rename.png"); QIcon* m_icon_rename = new QIcon(":/icons/rename.png");
QIcon* m_icon_add = new QIcon(":/icons/plus.png"); QIcon* m_icon_add = new QIcon(":/icons/plus.png");
QIcon* m_icon_addFull = new QIcon(":/icons/brick-wall.png");
private: private:
const static int fileNumMaxLength=3; const static int fileNumMaxLength = 3;
const static int maxFiles=20; // Max supported design limited is 1000 - based on layoutName has has 3 numeric digits fileNumMaxLength=3. const static int maxFiles = 30; // Max supported design limited is 1000 10**fileNumMaxLength(3).
const static int maxDescriptionLen=80; const static int iconWidthMessageBox = 50;
const QString baseName=QString("layout"); const static int maxDescriptionLen = 80;
const QString fileBaseName = QString("layout");
const int fileNameRole = Qt::UserRole;
int fontSizeIncrease = 0;
int horizontalWidthAdjustment=60; // this seem to make menu size changes work. Testing says it is 60 but what causes it is unknown.
QSize minMenuListSize = QSize(0,0);
QSize minMenuDialogSize = QSize(0,0);
QSize dialogListDiff = QSize(0,0);
QSize menuDialogSize = QSize(0,0);
QSize menuListSize = QSize(0,0);
void initminMenuListSize();
QSize calculateMenuDialogSize();
QSize maxSize(const QSize AA , const QSize BB ) ;
bool sizeEqual(const QSize AA , const QSize BB ) ;
const QRegularExpression* singleLineRe; const QRegularExpression* singleLineRe;
const QRegularExpression* fileNumRe; const QRegularExpression* fileNumRe;
@ -67,10 +85,11 @@ private:
QWidget* parent; QWidget* parent;
const QString title; const QString title;
gGraphView* graphView=nullptr; gGraphView* graphView = nullptr;
QFont menuListFont;
QDialog* menuDialog; QDialog* menuDialog;
QListWidget* menulist; QListWidget* menuList;
QPushButton* menuAddFullBtn; // Must be first item for workaround. QPushButton* menuAddFullBtn; // Must be first item for workaround.
QPushButton* menuAddBtn; QPushButton* menuAddBtn;
@ -79,31 +98,59 @@ private:
QPushButton* menuUpdateBtn; QPushButton* menuUpdateBtn;
QPushButton* menuRenameBtn; QPushButton* menuRenameBtn;
QPushButton* menuExitBtn; QPushButton* menuExitBtn;
QPushButton* menuHelpBtn;
QVBoxLayout* menuLayout; QVBoxLayout* menuLayout;
QHBoxLayout* menuLayout1; QHBoxLayout* menuLayoutButtons;
QVBoxLayout* menuLayout2;
QDir* dir=nullptr; void createHelp();
void helpDestructor();
QString helpInfo();
QDialog* helpDialog=nullptr;
QPushButton* helpInfoExitBtn=nullptr;
QPushButton* helpExitBtn=nullptr;
int helpFontSizeIncrease = 0;
QHBoxLayout* helpLayoutButtons = nullptr;
QDir* dir = nullptr;
QString dirName; QString dirName;
int nextNumToUse; int nextNumToUse;
QListWidgetItem* updateFileList(QString find=QString()); QListWidgetItem* updateFileList(QString find = QString());
QListWidgetItem* widestItem=nullptr;
QString styleOn; QString styleOn;
QString styleOff; QString styleOff;
QString styleExitBtn; QString styleExit;
QString styleMessageBox; QString styleMessageBox;
QString styleDialog; QString styleDialog;
QString calculateStyle(bool on,bool border);
QString calculateButtonStyle(bool on,bool border);
void looksOn(QPushButton* button,bool on); void looksOn(QPushButton* button,bool on);
DescriptionMap* descriptionMap; DescriptionMap* descriptionMap;
bool confirmAction(QString name,QString question,QIcon* icon); bool confirmAction(QString name,QString question,QIcon* icon,
QMessageBox::StandardButtons flags = (QMessageBox::Cancel|QMessageBox::Yes) ,
QMessageBox::StandardButton adefault = QMessageBox::Cancel,
QMessageBox::StandardButton success = QMessageBox::Yes
);
bool verifyItem(QListWidgetItem* item,QString name,QIcon* icon) ;
const QString calculateStyleMessageBox( QFont* font, QString& s1, QString& s2);
void displaywidgets(QWidget* widget);
QSize calculateParagraphSize(QString& text,QFont& font, QString& );
void createMenu(); void createMenu();
void createStyleSheets();
void createSaveFolder(); void createSaveFolder();
void enableButtons(bool enable); QPushButton* newBtnRtn(QHBoxLayout*, QString name, QIcon* icon, QString style,QSizePolicy::Policy hPolicy,QString tooltip);
void add_featurertn(); QPushButton* menuBtn( QString name, QIcon* icon, QString style,QSizePolicy::Policy hPolicy,QString tooltip);
QPushButton* helpBtn( QString name, QIcon* icon, QString style,QSizePolicy::Policy hPolicy,QString tooltip);
void manageButtonApperance();
void resizeMenu();
const int fileNameRole = Qt::UserRole;
int fileNum(QString fileName); int fileNum(QString fileName);
void writeSettings(QString filename); void writeSettings(QString filename);
void loadSettings(QString filename); void loadSettings(QString filename);
@ -113,10 +160,13 @@ public slots:
private slots: private slots:
void add_feature(); void add_feature();
void addFull_feature(); void addFull_feature();
void update_feature();
void restore_feature(); void restore_feature();
void delete_feature();
void rename_feature(); void rename_feature();
void update_feature();
void help_feature();
void help_off_feature();
void help_exit_feature();
void delete_feature();
void exit(); void exit();
void itemChanged(QListWidgetItem *item); void itemChanged(QListWidgetItem *item);