2022-12-31 02:02:17 +00:00
/* user graph settings Implementation
2022-12-27 00:26:23 +00:00
*
2024-01-13 20:27:48 +00:00
* Copyright ( c ) 2022 - 2024 The OSCAR Team
2022-12-27 00:26:23 +00:00
*
* 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 . */
2023-02-14 02:54:23 +00:00
# define TEST_MACROS_ENABLEDoff
2022-12-27 00:26:23 +00:00
# include <test_macros.h>
# include <QMessageBox>
# include <QAbstractButton>
2023-10-15 00:13:50 +00:00
# include <QWindow>
# include <QApplication>
# include <QScrollArea>
# include <QVBoxLayout>
# include <QTextEdit>
2022-12-27 00:26:23 +00:00
# include <QPixmap>
# include <QSize>
2022-12-31 02:02:17 +00:00
# include <QChar>
2022-12-27 00:26:23 +00:00
# include "SleepLib/profiles.h"
2022-12-28 18:24:01 +00:00
# include "saveGraphLayoutSettings.h"
2022-12-27 00:26:23 +00:00
2023-10-15 00:13:50 +00:00
# define USE_FRAMELESS_WINDOW_off
2023-01-10 01:10:53 +00:00
# define USE_PROFILE_SPECIFIC_FOLDERoff // off implies saved layouts worked for all profiles.
2022-12-27 00:26:23 +00:00
2022-12-28 18:24:01 +00:00
SaveGraphLayoutSettings : : SaveGraphLayoutSettings ( QString title , QWidget * parent ) : parent ( parent ) , title ( title )
2022-12-27 00:26:23 +00:00
{
2022-12-31 02:02:17 +00:00
createSaveFolder ( ) ;
if ( dir = = nullptr ) return ;
2022-12-27 00:26:23 +00:00
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 ) ;
2022-12-27 00:26:23 +00:00
createMenu ( ) ;
2023-10-15 00:13:50 +00:00
menu . dialog - > connect ( menuAddFullBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( addFull_feature ( ) ) ) ;
menu . dialog - > connect ( menuAddBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( add_feature ( ) ) ) ;
menu . dialog - > connect ( menuRestoreBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( restore_feature ( ) ) ) ;
menu . dialog - > connect ( menuUpdateBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( update_feature ( ) ) ) ;
menu . dialog - > connect ( menuRenameBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( rename_feature ( ) ) ) ;
menu . dialog - > connect ( menuDeleteBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( delete_feature ( ) ) ) ;
menu . dialog - > connect ( menuHelpBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( help_feature ( ) ) ) ;
menu . dialog - > connect ( menuList , SIGNAL ( itemChanged ( QListWidgetItem * ) ) , this , SLOT ( itemChanged ( QListWidgetItem * ) ) ) ;
menu . dialog - > connect ( menuList , SIGNAL ( itemSelectionChanged ( ) ) , this , SLOT ( itemSelectionChanged ( ) ) ) ;
2023-01-10 01:10:53 +00:00
2022-12-31 02:02:17 +00:00
2022-12-27 00:26:23 +00:00
singleLineRe = new QRegularExpression ( QString ( " ^ \\ s*([^ \\ r \\ n]{0,%1}) " ) . arg ( 1 + maxDescriptionLen ) ) ;
2023-01-10 01:10:53 +00:00
fileNumRe = new QRegularExpression ( QString ( " %1( \\ d+)(.shg)?$ " ) . arg ( fileBaseName ) ) ;
parseFilenameRe = new QRegularExpression ( QString ( " ^(%1[.](%2( \\ d*)))[.]shg$ " ) . arg ( title ) . arg ( fileBaseName ) ) ;
2022-12-27 00:26:23 +00:00
}
2022-12-28 18:24:01 +00:00
SaveGraphLayoutSettings : : ~ SaveGraphLayoutSettings ( )
2022-12-27 00:26:23 +00:00
{
2022-12-31 02:02:17 +00:00
if ( dir = = nullptr ) { return ; }
2023-10-15 00:13:50 +00:00
menu . dialog - > disconnect ( menuAddFullBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( addFull_feature ( ) ) ) ;
menu . dialog - > disconnect ( menuAddBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( add_feature ( ) ) ) ;
menu . dialog - > disconnect ( menuRestoreBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( restore_feature ( ) ) ) ;
menu . dialog - > disconnect ( menuUpdateBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( update_feature ( ) ) ) ;
menu . dialog - > disconnect ( menuRenameBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( rename_feature ( ) ) ) ;
menu . dialog - > disconnect ( menuDeleteBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( delete_feature ( ) ) ) ;
menu . dialog - > disconnect ( menuHelpBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( help_feature ( ) ) ) ;
menu . dialog - > disconnect ( menuList , SIGNAL ( itemChanged ( QListWidgetItem * ) ) , this , SLOT ( itemChanged ( QListWidgetItem * ) ) ) ;
menu . dialog - > disconnect ( menuList , SIGNAL ( itemSelectionChanged ( ) ) , this , SLOT ( itemSelectionChanged ( ) ) ) ;
2023-01-10 01:10:53 +00:00
helpDestructor ( ) ;
2022-12-27 00:26:23 +00:00
2022-12-31 02:02:17 +00:00
delete descriptionMap ;
2022-12-27 00:26:23 +00:00
delete singleLineRe ;
2022-12-31 02:02:17 +00:00
delete fileNumRe ;
2022-12-27 00:26:23 +00:00
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
2023-01-16 17:04:31 +00:00
//QString layoutFileFolder = "savedGraphLayoutSettings/";
QString layoutFileFolder = " layoutSettings/ " ;
2022-12-31 02:02:17 +00:00
#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 ) ;
2023-10-15 00:13:50 +00:00
if ( ! baseDir - > exists ( ) ) {
2022-12-31 02:02:17 +00:00
// 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 ;
}
2023-01-10 01:10:53 +00:00
QPushButton * SaveGraphLayoutSettings : : menuBtn ( QString name , QIcon * icon , QString style , QSizePolicy : : Policy hPolicy , QString tooltip ) {
return newBtnRtn ( menuLayoutButtons , name , icon , style , hPolicy , tooltip ) ;
}
2023-10-15 00:13:50 +00:00
//QPushButton* SaveGraphLayoutSettings::helpBtn(QString name, QIcon* icon, QString style,QSizePolicy::Policy hPolicy,QString tooltip) {
//return newBtnRtn(menuLayoutButtons, name, icon, style, hPolicy,tooltip) ;
//}
2023-01-10 01:10:53 +00:00
QPushButton * SaveGraphLayoutSettings : : newBtnRtn ( QHBoxLayout * layout , QString name , QIcon * icon , QString style , QSizePolicy : : Policy hPolicy , QString tooltip ) {
2023-10-15 00:13:50 +00:00
QPushButton * button = new QPushButton ( name , menu . dialog ) ;
2023-01-10 01:10:53 +00:00
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 ) ;
2022-12-27 00:26:23 +00:00
styleMessageBox =
" QMessageBox { "
" background-color:yellow; "
2023-01-10 01:10:53 +00:00
//"color:black;"
" color:red; "
2022-12-27 00:26:23 +00:00
" border: 2px solid black; "
2023-01-10 01:10:53 +00:00
" text-align: right; "
" font-size: 16px; "
2022-12-27 00:26:23 +00:00
" } "
2023-01-10 01:10:53 +00:00
" QTextEdit { "
" background-color:lightblue; "
//"color:black;"
" color:red; "
" border: 9px solid black; "
" text-align: center; "
" vertical-align:top; "
2022-12-27 00:26:23 +00:00
" } "
;
2023-10-15 00:13:50 +00:00
styleDialog = QString ( R " ( QDialog { border: 3px solid black; } ) " ) ;
2023-01-10 01:10:53 +00:00
}
void SaveGraphLayoutSettings : : createMenu ( ) {
2023-10-15 00:13:50 +00:00
if ( menu . dialog ) return ;
initDialog ( menu , tr ( " Manage Save Layout Settings " ) ) ;
2022-12-27 00:26:23 +00:00
2023-01-10 01:10:53 +00:00
createStyleSheets ( ) ;
2022-12-31 02:02:17 +00:00
2023-10-15 00:13:50 +00:00
QString styleDialog ( R " ( QDialog { border: 3px solid black; } ) " ) ;
menu . dialog - > setStyleSheet ( styleDialog ) ;
2023-01-10 01:10:53 +00:00
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. " ) ) ;
2023-10-15 00:13:50 +00:00
menuList = new QListWidget ( menu . dialog ) ;
2023-01-10 01:10:53 +00:00
menuList - > setVerticalScrollBarPolicy ( Qt : : ScrollBarAlwaysOn ) ;
menuList - > setHorizontalScrollBarPolicy ( Qt : : ScrollBarAlwaysOn ) ;
2023-10-15 00:13:50 +00:00
menuList - > setFont ( menu . font ) ;
2023-01-10 01:10:53 +00:00
2023-10-15 00:13:50 +00:00
menu . layout - > addLayout ( menuLayoutButtons ) ;
menu . layout - > addWidget ( menuList , 1 ) ;
2023-01-10 01:10:53 +00:00
//menuList->setSizePolicy(QSizePolicy::Preferred,QSizePolicy::Preferred);
menuList - > setSizePolicy ( QSizePolicy : : Minimum , QSizePolicy : : Minimum ) ;
2022-12-27 00:26:23 +00:00
} ;
2023-10-15 00:13:50 +00:00
void HelpData : : setDialog ( QWidget * parent , QString windowsTitle ) {
if ( dialog ) return ;
open = false ;
# ifdef USE_FRAMELESS_WINDOW
dialog = new QDialog ( parent , Qt : : FramelessWindowHint ) ;
title . setText ( QString ( " <h4>%1</h4> " ) . arg ( windowsTitle ) ) ;
headerLayout = new QHBoxLayout ( ) ;
# else
dialog = new QDialog ( nullptr , Qt : : WindowTitleHint | Qt : : WindowCloseButtonHint | Qt : : WindowSystemMenuHint ) ;
dialog - > setWindowTitle ( windowsTitle ) ;
dialog - > setWindowModality ( Qt : : WindowModal ) ;
dialog - > setStyleSheet ( QString ( " QDialog { border: 3px solid black; } " ) ) ;
# endif
Q_UNUSED ( parent ) ;
font = QApplication : : font ( ) ;
fontBold = font ;
fontBold . setWeight ( QFont : : Bold ) ;
layout = new QVBoxLayout ( dialog ) ;
}
void SaveGraphLayoutSettings : : initDialog (
HelpData & aHelp
, QString title
) {
if ( aHelp . dialog ) return ;
aHelp . setDialog ( parent , title ) ;
# ifdef USE_FRAMELESS_WINDOW
aHelp . headerLayout - > addWidget ( & aHelp . title ) ;
aHelp . exitBtn = newBtnRtn ( aHelp . headerLayout , " " , m_icon_exit , styleExit , QSizePolicy : : Fixed , tr ( " Exits the dialog menu. " ) ) ;
aHelp . layout - > addLayout ( aHelp . headerLayout ) ;
# endif
// YXXXXXXXXXXXXXXXXXXX
// dialog->setFont(font) ;
aHelp . dialog - > setSizeGripEnabled ( true ) ; // allows lower right hand corner to resize dialog
aHelp . dialog - > setStyleSheet ( QString ( " QDialog { border: 3px solid black; } " ) ) ;
}
2023-01-10 01:10:53 +00:00
2023-10-15 00:13:50 +00:00
void SaveGraphLayoutSettings : : createHelp ( ) {
createHelp ( help , tr ( " Help Menu - Manage Layout Settings " ) , helpInfo ( ) ) ;
if ( help . exitBtn ) help . dialog - > connect ( help . exitBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( help_exit_feature ( ) ) ) ;
} ;
2023-01-10 01:10:53 +00:00
2023-10-15 00:13:50 +00:00
void SaveGraphLayoutSettings : : createHelp ( HelpData & ahelp , QString title , QString text ) {
if ( ahelp . dialog ) return ;
initDialog ( ahelp , title ) ;
2023-01-10 01:10:53 +00:00
2023-10-15 00:13:50 +00:00
ahelp . label = new QLabel ( parent ) ;
ahelp . label - > setFont ( ahelp . font ) ;
ahelp . label - > setText ( text ) ;
ahelp . layout - > addWidget ( ahelp . label , 1 ) ;
2023-01-10 01:10:53 +00:00
}
void SaveGraphLayoutSettings : : helpDestructor ( ) {
2023-10-15 00:13:50 +00:00
closeHelp ( ) ;
closeHint ( ) ;
closeMenu ( ) ;
if ( hint . exitBtn ) hint . dialog - > disconnect ( hint . exitBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( closeHint ( ) ) ) ;
if ( help . exitBtn ) help . dialog - > disconnect ( help . exitBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( closeHelp ( ) ) ) ;
if ( menu . exitBtn ) menu . dialog - > disconnect ( menu . exitBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( help_exit_feature ( ) ) ) ;
}
# define TABLES QString(R"( <table width="100%"> )")
# define TABLEE QString(R"( < / table> )")
# define CENTERS QString(R"( <div style="text-align: center;"><p> )")
# define CENTERE QString(R"( < / p>< / div> )")
# define BREAK QString(R"( <br> )")
# define PARAS QString(R"( <p> )")
# define PARAE QString(R"( < / p> )")
# define ROWS QString(R"( <tr> )")
# define ROWE QString(R"( < / tr> )")
# define COLS QString(R"( <td> )")
# define COLE QString(R"( < / td> )")
# define CSEP QString(R"( < / th><td> )")
QString SaveGraphLayoutSettings : : hintInfo ( ) {
QStringList strList ;
strList
< < CENTERS < < " <b> "
< < tr ( " Basic Hints " )
< < " </b> " < < CENTERE
< < TABLES
< < ROWS < < COLS < < " <b> " < < QString ( tr ( " Key Sequence " ) ) < < " </b> " < < CSEP < < " <b> " < < QString ( tr ( " Description " ) ) < < " </b> " < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " MouseWheel " ) ) < < CSEP < < QString ( tr ( " Scrolls unpinned Graphs " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Ctrl + MouseWheel " ) ) < < CSEP < < QString ( tr ( " Zooms Time Selection " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " LeftMouse dragDrop " ) ) < < CSEP < < QString ( tr ( " Defines Time Selection " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " RightMouse dragDrop " ) ) < < CSEP < < QString ( tr ( " Moves Time Selection " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Ctrl + (right/left)MouseClick " ) ) < < CSEP < < QString ( tr ( " Zooms Time Selection " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " (right/left)MouseClick " ) ) < < CSEP < < QString ( tr ( " Moves Time Selection " ) ) < < COLE < < ROWE
< < BREAK
< < ROWS < < COLS < < QString ( tr ( " (right/left) Arrow (Ctrl => faster) " ) ) < < CSEP < < QString ( tr ( " Moves Time Selection " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Up/Down Arrow " ) ) < < CSEP < < QString ( tr ( " Scrolls graphs " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Up/Down Arrow+Focus " ) ) < < CSEP < < QString ( tr ( " Zooms graphs " ) ) < < COLE < < ROWE
< < TABLEE
< < CENTERS < < " <b> "
< < tr ( " Graph Layout Hints " )
< < " </b> " < < CENTERE
< < TABLES
< < ROWS < < COLS < < QString ( tr ( " Double Click Graph Title " ) ) < < CSEP < < QString ( tr ( " Toggles Pinning " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Daily:Double Click Y-axis label " ) ) < < CSEP < < QString ( tr ( " Toggle Time Selection Auto Zoom " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " DragDrop Graph Title " ) ) < < CSEP < < QString ( tr ( " Reorders Graph layout " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " DragDrop graph’ s bottom line " ) ) < < CSEP < < QString ( tr ( " Changes Size of Graphs " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Layout Button (next to Graph Button) " ) ) < < CSEP < < QString ( tr ( " Save / Restore Graph Layouts " ) ) < < COLE < < ROWE
< < TABLEE
< < CENTERS < < " <b> "
< < tr ( " Daily Graph Hints " )
< < " </b> " < < CENTERE
< < TABLES
< < ROWS < < COLS < < QString ( tr ( " Click on date " ) ) < < CSEP < < QString ( tr ( " Toggle Calendar on/off " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Detailed: Click on colored event " ) ) < < CSEP < < QString ( tr ( " Jump to event tab with event opened " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Detailed: Click on a session (at bottom) " ) ) < < CSEP < < QString ( tr ( " Toggle session disable / enable session " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Event: Click on an event " ) ) < < CSEP < < QString ( tr ( " Time Selection 3 min before event 20 sec after " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Bookmark " ) ) < < CSEP < < QString ( tr ( " Save current Time Selection " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Search Tab " ) ) < < CSEP < < QString ( tr ( " Search data base " ) ) < < COLE < < ROWE
< < TABLEE
< < CENTERS < < " <b> "
< < tr ( " Miscellaneous Hints " )
< < " </b> " < < CENTERE
< < TABLES
< < ROWS < < COLS < < QString ( tr ( " OverView: Shift Click on a date " ) ) < < CSEP < < QString ( tr ( " Jumps to date in the Daily Tab " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Daily: Event (bottom left corner) " ) ) < < CSEP < < QString ( tr ( " Select Events to view " ) ) < < COLE < < ROWE
< < ROWS < < COLS < < QString ( tr ( " Graph / Chart (bottom right corner) " ) ) < < CSEP < < QString ( tr ( " Selects graphs to view " ) ) < < COLE < < ROWE
< < TABLEE
;
return strList . join ( " \n " ) ;
2023-01-10 01:10:53 +00:00
}
QString SaveGraphLayoutSettings : : helpInfo ( ) {
2023-06-07 19:57:32 +00:00
QStringList strList ;
strList < < QString ( " <p style= \" color:black; \" > " )
< < QString ( tr ( " This feature manages the saving and restoring of Layout Settings. " ) )
< < QString ( " <br> " )
< < QString ( tr ( " Layout Settings control the layout of a graph or chart. " ) )
< < QString ( " <br> " )
< < QString ( tr ( " Different Layouts Settings can be saved and later restored. " ) )
< < QString ( " <br> </p> <table width= \" 100% \" > <tr><td><b> " )
< < QString ( tr ( " Button " ) )
< < QString ( " </b></td> <td><b> " )
< < QString ( tr ( " Description " ) )
< < QString ( " </b></td></tr> <tr><td valign= \" top \" > " )
< < QString ( tr ( " Add " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " Creates a copy of the current Layout Settings. " ) )
< < QString ( " <br> " )
< < QString ( tr ( " The default description is the current date. " ) )
< < QString ( " <br> " )
< < QString ( tr ( " The description may be changed. " ) )
< < QString ( " <br> " )
< < QString ( tr ( " The Add button will be greyed out when maximum number is reached. " ) )
2023-10-15 00:13:50 +00:00
< < QString ( " <br> " )
< < QString ( " </td></tr> <tr><td><i><u> " )
2023-06-07 19:57:32 +00:00
< < QString ( tr ( " Other Buttons " ) )
< < QString ( " </u> </i></td> <td> " )
< < QString ( tr ( " Greyed out when there are no selections " ) )
< < QString ( " </td></tr> <tr><td> " )
< < QString ( tr ( " Restore " ) )
< < QString ( " </td> <td> " )
2023-10-15 00:13:50 +00:00
< < QString ( tr ( " Loads the Layout Settings from the selection. Stays Open " ) )
2023-06-07 19:57:32 +00:00
< < QString ( " </td></tr> <tr><td> " )
< < QString ( tr ( " Rename " ) )
< < QString ( " </td><td> " )
2023-09-23 23:15:48 +00:00
< < QString ( tr ( " Modify the description of the selection. Same as a double click. " ) )
2023-06-07 19:57:32 +00:00
< < QString ( " </td></tr> <tr><td valign= \" top \" > " )
< < QString ( tr ( " Update " ) )
< < QString ( " </td><td> " )
< < QString ( tr ( " Saves the current Layout Settings to the selection. " ) )
< < QString ( " <br> " )
< < QString ( tr ( " Prompts for confirmation. " ) )
< < QString ( " </td></tr> <tr><td valign= \" top \" > " )
< < QString ( tr ( " Delete " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " Deletes the selecton. " ) )
< < QString ( " <br> " )
< < QString ( tr ( " Prompts for confirmation. " ) )
< < QString ( " </td></tr> <tr><td><i><u> " )
< < QString ( tr ( " Control " ) )
< < QString ( " </u> </i></td> <td></td></tr> <tr><td> " )
< < QString ( tr ( " Exit " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " (Red circle with a white \" X \" .) Returns to OSCAR menu. " ) )
< < QString ( " </td></tr> <tr><td> " )
< < QString ( tr ( " Return " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " Next to Exit icon. Only in Help Menu. Returns to Layout menu. " ) )
< < QString ( " </td></tr> <tr><td> " )
< < QString ( tr ( " Escape Key " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " Exit the Help or Layout menu. " ) )
< < QString ( " </td></tr> </table> <p><b> " )
< < QString ( tr ( " Layout Settings " ) )
< < QString ( " </b></p> <table width= \" 100% \" > <tr> <td> " )
< < QString ( tr ( " * Name " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " * Pinning " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " * Plots Enabled " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " * Height " ) )
< < QString ( " </td> </tr> <tr> <td> " )
< < QString ( tr ( " * Order " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " * Event Flags " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " * Dotted Lines " ) )
< < QString ( " </td> <td> " )
< < QString ( tr ( " * Height Options " ) )
< < QString ( " </td> </tr> </table> <p><b> " )
< < QString ( tr ( " General Information " ) )
< < QString ( " </b></p> <ul style=margin-left= \" 20 \" ; > <li> " )
< < QString ( tr ( " Maximum description size = 80 characters. " ) )
< < QString ( " </li> <li> " )
< < QString ( tr ( " Maximum Saved Layout Settings = 30. " ) )
< < QString ( " </li> <li> " )
< < QString ( tr ( " Saved Layout Settings can be accessed by all profiles. " ) )
< < QString ( " <li> " )
< < QString ( tr ( " Layout Settings only control the layout of a graph or chart. " ) )
< < QString ( " <br> " )
< < QString ( tr ( " They do not contain any other data. " ) )
< < QString ( " <br> " )
< < QString ( tr ( " They do not control if a graph is displayed or not. " ) )
< < QString ( " </li> <li> " )
< < QString ( tr ( " Layout Settings for daily and overview are managed independantly. " ) )
< < QString ( " </li> </ul> " ) ;
return strList . join ( " \n " ) ;
} ;
2023-01-10 01:10:53 +00:00
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 ) ;
2023-10-15 00:13:50 +00:00
QMessageBox msgBox ( menu . dialog ) ;
2023-01-10 01:10:53 +00:00
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 ) ;
2023-10-15 00:13:50 +00:00
msgBox . setStyleSheet ( calculateStyleMessageBox ( & menu . font , top , bottom ) ) ;
2023-01-10 01:10:53 +00:00
// 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 ) {
2023-10-15 00:13:50 +00:00
//bool SaveGraphLayoutSettings::confirmAction(QString name,QString question,QIcon* icon)
2023-01-10 01:10:53 +00:00
Q_UNUSED ( flags ) ;
Q_UNUSED ( adefault ) ;
Q_UNUSED ( success ) ;
2023-10-15 00:13:50 +00:00
QMessageBox msgBox ( menu . dialog ) ;
2022-12-27 00:26:23 +00:00
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 ) ;
2022-12-27 00:26:23 +00:00
return ( msgBox . exec ( ) = = QMessageBox : : Yes ) ;
2022-12-31 02:02:17 +00:00
Q_UNUSED ( name ) ;
2022-12-27 00:26:23 +00:00
}
2023-01-10 01:10:53 +00:00
# endif
2022-12-27 00:26:23 +00:00
2023-01-10 01:10:53 +00:00
QString SaveGraphLayoutSettings : : calculateButtonStyle ( bool on , bool exitBtn ) {
2022-12-27 00:26:23 +00:00
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 ) {
2023-01-10 01:10:53 +00:00
//button->setEnabled(on);
2022-12-27 00:26:23 +00:00
button - > setStyleSheet ( on ? styleOn : styleOff ) ;
}
2023-01-10 01:10:53 +00:00
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 ) ;
2023-01-10 01:10:53 +00:00
2022-12-31 02:02:17 +00:00
if ( nextNumToUse < 0 ) { // check if at Maximum limit
2023-01-10 01:10:53 +00:00
// must always hide first
2022-12-31 02:02:17 +00:00
menuAddBtn - > hide ( ) ;
menuAddFullBtn - > show ( ) ;
2022-12-27 00:26:23 +00:00
} else {
2023-01-10 01:10:53 +00:00
// must always hide first
2022-12-31 02:02:17 +00:00
menuAddFullBtn - > hide ( ) ;
menuAddBtn - > show ( ) ;
}
}
2023-01-10 01:10:53 +00:00
2022-12-31 02:02:17 +00:00
void SaveGraphLayoutSettings : : add_feature ( ) {
if ( ! graphView ) return ;
2023-01-10 01:10:53 +00:00
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 ) {
2023-01-10 01:10:53 +00:00
menuList - > setCurrentItem ( item , QItemSelectionModel : : ClearAndSelect ) ;
menuList - > editItem ( item ) ;
2022-12-27 00:26:23 +00:00
}
2023-01-10 01:10:53 +00:00
menuList - > sortItems ( ) ;
resizeMenu ( ) ;
2022-12-27 00:26:23 +00:00
}
2022-12-31 02:02:17 +00:00
void SaveGraphLayoutSettings : : addFull_feature ( ) {
2023-01-10 01:10:53 +00:00
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 ( ) {
2022-12-27 00:26:23 +00:00
if ( ! graphView ) return ;
2023-01-10 01:10:53 +00:00
QListWidgetItem * item = menuList - > currentItem ( ) ;
if ( ! verifyItem ( item , tr ( " No Item Selected " ) , m_icon_update ) ) return ;
2022-12-27 00:26:23 +00:00
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-27 00:26:23 +00:00
} ;
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings : : restore_feature ( ) {
2022-12-27 00:26:23 +00:00
if ( ! graphView ) return ;
2023-01-10 01:10:53 +00:00
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 ) ;
2023-10-15 00:13:50 +00:00
closeMenu ( ) ;
2022-12-27 00:26:23 +00:00
} ;
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings : : rename_feature ( ) {
2022-12-27 00:26:23 +00:00
if ( ! graphView ) return ;
2023-01-10 01:10:53 +00:00
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.
2022-12-27 00:26:23 +00:00
// itemChanged will update the description map
}
2023-01-10 01:10:53 +00:00
void SaveGraphLayoutSettings : : help_exit_feature ( ) {
2023-10-15 00:13:50 +00:00
closeMenu ( ) ;
closeHelp ( ) ;
2023-01-10 01:10:53 +00:00
}
void SaveGraphLayoutSettings : : help_feature ( ) {
initminMenuListSize ( ) ;
createHelp ( ) ;
2023-10-15 00:13:50 +00:00
if ( ! help . dialog ) return ;
if ( help . open ) {
closeHelp ( ) ;
return ;
}
help . dialog - > raise ( ) ;
help . open = true ;
help . dialog - > exec ( ) ;
help . open = false ;
2023-01-10 01:10:53 +00:00
manageButtonApperance ( ) ;
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings : : delete_feature ( ) {
2022-12-27 00:26:23 +00:00
if ( ! graphView ) return ;
2023-01-10 01:10:53 +00:00
QListWidgetItem * item = menuList - > currentItem ( ) ;
if ( ! verifyItem ( item , tr ( " No Item Selected " ) , m_icon_delete ) ) return ;
2022-12-27 00:26:23 +00:00
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 ) ;
2022-12-27 00:26:23 +00:00
delete item ;
2022-12-31 02:02:17 +00:00
if ( nextNumToUse < 0 ) {
nextNumToUse = fileNum ( fileName ) ;
2022-12-27 00:26:23 +00:00
}
2023-01-10 01:10:53 +00:00
manageButtonApperance ( ) ;
resizeMenu ( ) ;
2022-12-27 00:26:23 +00:00
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings : : itemChanged ( QListWidgetItem * item )
2022-12-27 00:26:23 +00:00
{
2022-12-31 02:02:17 +00:00
QString fileName = item - > data ( fileNameRole ) . toString ( ) ;
2022-12-27 00:26:23 +00:00
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 ) ;
2022-12-27 00:26:23 +00:00
} else {
2022-12-31 02:02:17 +00:00
descriptionMap - > add ( fileName , desc ) ;
descriptionMap - > save ( ) ;
2022-12-27 00:26:23 +00:00
}
item - > setText ( desc ) ;
2023-01-10 01:10:53 +00:00
menuList - > sortItems ( ) ;
menuList - > setCurrentItem ( item ) ;
resizeMenu ( ) ;
2022-12-27 00:26:23 +00:00
}
2022-12-28 18:24:01 +00:00
void SaveGraphLayoutSettings : : itemSelectionChanged ( )
2022-12-27 00:26:23 +00:00
{
2023-01-10 01:10:53 +00:00
initminMenuListSize ( ) ;
manageButtonApperance ( ) ;
2022-12-27 00:26:23 +00:00
}
2023-01-10 01:10:53 +00:00
void SaveGraphLayoutSettings : : initminMenuListSize ( ) {
if ( minMenuDialogSize . width ( ) = = 0 ) {
2023-10-15 00:13:50 +00:00
menuDialogSize = menu . dialog - > size ( ) ;
2023-01-10 01:10:53 +00:00
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 ) ;
2022-12-27 00:26:23 +00:00
int value = - 1 ;
if ( match . hasMatch ( ) ) {
value = match . captured ( 1 ) . toInt ( ) ;
}
return value ;
}
2023-01-10 01:10:53 +00:00
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 ( ) {
2023-10-15 00:13:50 +00:00
if ( minMenuDialogSize . width ( ) = = 0 ) return ;
2023-01-10 01:10:53 +00:00
QSize newSize = calculateMenuDialogSize ( ) ;
newSize . setWidth ( newSize . width ( ) ) ;
2023-10-15 00:13:50 +00:00
menuDialogSize = menu . dialog - > size ( ) ;
2023-01-10 01:10:53 +00:00
if ( sizeEqual ( newSize , menuDialogSize ) ) {
2023-10-15 00:13:50 +00:00
// no work to do
2023-01-10 01:10:53 +00:00
return ;
} ;
if ( menuDialogSize . width ( ) < newSize . width ( ) ) {
2023-10-15 00:13:50 +00:00
menu . dialog - > setMinimumWidth ( newSize . width ( ) ) ;
menu . dialog - > setMaximumWidth ( QWIDGETSIZE_MAX ) ;
2023-01-10 01:10:53 +00:00
} else if ( menuDialogSize . width ( ) > newSize . width ( ) ) {
2023-10-15 00:13:50 +00:00
menu . dialog - > setMaximumWidth ( newSize . width ( ) ) ;
menu . dialog - > setMinimumWidth ( newSize . width ( ) ) ;
2023-01-10 01:10:53 +00:00
}
if ( menuDialogSize . height ( ) < newSize . height ( ) ) {
2023-10-15 00:13:50 +00:00
menu . dialog - > setMinimumHeight ( newSize . height ( ) ) ;
menu . dialog - > setMaximumHeight ( QWIDGETSIZE_MAX ) ;
2023-01-10 01:10:53 +00:00
} else if ( menuDialogSize . height ( ) > newSize . height ( ) ) {
2023-10-15 00:13:50 +00:00
menu . dialog - > setMaximumHeight ( newSize . height ( ) ) ;
menu . dialog - > setMinimumHeight ( newSize . height ( ) ) ;
2023-01-10 01:10:53 +00:00
}
menuDialogSize = newSize ;
}
QSize SaveGraphLayoutSettings : : calculateMenuDialogSize ( ) {
if ( menuDialogSize . width ( ) = = 0 ) return QSize ( 0 , 0 ) ;
QListWidgetItem * item ;
widestItem = nullptr ;
2023-10-15 00:13:50 +00:00
QFontMetrics fm = QFontMetrics ( menu . font ) ;
2023-01-10 01:10:53 +00:00
// 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 ) {
2022-12-27 00:26:23 +00:00
QListWidgetItem * ret = nullptr ;
2023-01-10 01:10:53 +00:00
manageButtonApperance ( ) ;
2022-12-27 00:26:23 +00:00
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 ;
2023-01-10 01:10:53 +00:00
menuList - > clear ( ) ;
2022-12-31 02:02:17 +00:00
nextNumToUse = - 1 ;
descriptionMap - > load ( ) ;
2022-12-27 00:26:23 +00:00
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 ;
}
2022-12-27 00:26:23 +00:00
}
count + + ;
2022-12-31 02:02:17 +00:00
QListWidgetItem * item = new QListWidgetItem ( descriptionMap - > get ( fileName ) ) ;
item - > setData ( fileNameRole , fileName ) ;
2022-12-27 00:26:23 +00:00
item - > setFlags ( item - > flags ( ) | Qt : : ItemIsEditable ) ;
2023-01-10 01:10:53 +00:00
menuList - > insertItem ( row , item ) ;
2022-12-27 00:26:23 +00:00
row + + ;
2022-12-31 02:02:17 +00:00
if ( find ! = nullptr & & fileName = = find ) {
2022-12-27 00:26:23 +00:00
ret = item ;
}
}
}
}
2022-12-31 02:02:17 +00:00
if ( nextNumToUse < 0 ) { // check if there is an existing empty slot
2022-12-27 00:26:23 +00:00
// 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 ;
2022-12-27 00:26:23 +00:00
}
}
2023-01-10 01:10:53 +00:00
manageButtonApperance ( ) ;
menuList - > sortItems ( ) ;
2022-12-27 00:26:23 +00:00
return ret ;
}
2023-10-15 00:13:50 +00:00
void SaveGraphLayoutSettings : : closeHelp ( ) {
if ( help . open ) {
help . dialog - > close ( ) ;
}
}
void SaveGraphLayoutSettings : : closeHint ( ) {
if ( hint . open ) {
hint . dialog - > close ( ) ;
}
}
void SaveGraphLayoutSettings : : closeMenu ( ) {
closeHelp ( ) ;
closeHint ( ) ;
if ( menu . open ) {
menu . dialog - > close ( ) ;
}
2022-12-27 00:26:23 +00:00
}
2023-10-15 00:13:50 +00:00
void SaveGraphLayoutSettings : : triggerLayout ( 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 ;
}
2023-10-15 00:13:50 +00:00
if ( menu . open ) {
closeMenu ( ) ;
return ;
}
2022-12-27 00:26:23 +00:00
this - > graphView = graphView ;
updateFileList ( ) ;
2023-01-10 01:10:53 +00:00
manageButtonApperance ( ) ;
2023-10-15 00:13:50 +00:00
menu . dialog - > raise ( ) ;
menu . open = true ;
menu . dialog - > exec ( ) ;
menu . open = false ;
closeMenu ( ) ;
}
QSize textsize ( QFont font , QString text ) {
return QFontMetrics ( font ) . size ( 0 , text ) ;
2022-12-27 00:26:23 +00:00
}
2023-10-15 00:13:50 +00:00
void SaveGraphLayoutSettings : : createHint ( ) {
createHelp ( hint , tr ( " Graph Short-Cuts Help " ) , hintInfo ( ) ) ;
if ( hint . exitBtn ) {
hint . dialog - > connect ( hint . exitBtn , SIGNAL ( clicked ( ) ) , this , SLOT ( closeHint ( ) ) ) ;
}
} ;
void SaveGraphLayoutSettings : : hintHelp ( ) {
if ( hint . open ) {
hint . dialog - > close ( ) ;
return ;
}
createHint ( ) ;
if ( ! hint . dialog ) return ;
hint . dialog - > raise ( ) ;
hint . dialog - > show ( ) ;
hint . open = true ;
hint . dialog - > exec ( ) ;
hint . open = false ;
}
2022-12-27 00:26:23 +00:00
//====================================================================================================
//====================================================================================================
2022-12-31 02:02:17 +00:00
// Descriptions map class with file storage
2022-12-27 00:26:23 +00:00
2022-12-31 02:02:17 +00:00
DescriptionMap : : DescriptionMap ( QDir * dir , QString _filename )
2022-12-27 00:26:23 +00:00
{
filename = dir - > absoluteFilePath ( _filename ) ;
2022-12-31 02:02:17 +00:00
parseDescriptionsRe = new QRegularExpression ( QString ( " ^ \\ s*( \\ w+)%1(.*)$ " ) . arg ( delimiter ) ) ;
2022-12-27 00:26:23 +00:00
} ;
2022-12-31 02:02:17 +00:00
DescriptionMap : : ~ DescriptionMap ( ) {
2022-12-27 00:26:23 +00:00
delete parseDescriptionsRe ;
} ;
2022-12-31 02:02:17 +00:00
void DescriptionMap : : add ( QString key , QString desc ) {
2022-12-27 00:26:23 +00:00
descriptions . insert ( key , desc ) ;
} ;
2022-12-31 02:02:17 +00:00
void DescriptionMap : : remove ( QString key ) {
2022-12-27 00:26:23 +00:00
descriptions . remove ( key ) ;
}
2022-12-31 02:02:17 +00:00
QString DescriptionMap : : get ( QString key ) {
2022-12-27 00:26:23 +00:00
QString ret = descriptions . value ( key , key ) ;
return ret ;
}
2022-12-31 02:02:17 +00:00
void DescriptionMap : : save ( ) {
2022-12-27 00:26:23 +00:00
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 ( ) ) ;
2022-12-27 00:26:23 +00:00
out < < line ;
}
file . close ( ) ;
}
2022-12-31 02:02:17 +00:00
void DescriptionMap : : load ( ) {
2022-12-27 00:26:23 +00:00
QString line ;
QFile file ( filename ) ;
2022-12-31 02:02:17 +00:00
descriptions . clear ( ) ;
if ( ! file . exists ( ) ) return ;
2022-12-27 00:26:23 +00:00
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 ) ;
2022-12-27 00:26:23 +00:00
QString desc = match . captured ( 2 ) ;
2022-12-31 02:02:17 +00:00
add ( fileName , desc ) ;
2022-12-27 00:26:23 +00:00
} else {
DEBUGF QQ ( " MATCH ERROR " , line ) ;
}
}
}
//====================================================================================================
//====================================================================================================
#if 0
Different languages unicodes to test . optained from translation files
도 움 주 신 분 들
已 成 功 删 除
删 除
ה צ ג א ת מ ח י צ ת ה נ ת ו נ י ם
ה צ ג א ת מ ח י צ ת ה נ ת ו נ י ם 已 成 功 删 除 ع ذ ر ا ، ل ا ي م ك ن ت ح د ي د م و ق ع م ل ف .
已 成 功 删 除 ع ذ ر ا ، ل ا ي م ك ن ت ح د ي د م و ق ع م ل ف . 删 除
Toon gegevensmap
ع ذ ر ا ، ل ا ي م ك ن ت ح د ي د م و ق ع م ل ف .
# endif