minor display changes && allow == 0 matches for events.

This commit is contained in:
LoudSnorer 2023-02-24 18:19:25 -05:00
parent 74960d6472
commit b3956acb1f
2 changed files with 102 additions and 116 deletions

View File

@ -31,20 +31,7 @@
#include "daily.h" #include "daily.h"
//enums DO NOT WORK because due to switch statements because channelID for events are also used DailySearchTab::DailySearchTab(Daily* daily , QWidget* searchTabWidget , QTabWidget* dailyTabWidget) :
#define OT_NONE 0
#define OT_DISABLED_SESSIONS 1
#define OT_NOTES 2
#define OT_NOTES_STRING 3
#define OT_BOOKMARKS 4
#define OT_BOOKMARKS_STRING 5
#define OT_AHI 6
#define OT_SESSION_LENGTH 7
#define OT_SESSIONS_QTY 8
#define OT_DAILY_USAGE 9
#define OT_BMI 10
DailySearchTab::DailySearchTab(Daily* daily , QWidget* searchTabWidget , QTabWidget* dailyTabWidget) :
daily(daily) , parent(daily) , searchTabWidget(searchTabWidget) ,dailyTabWidget(dailyTabWidget) daily(daily) , parent(daily) , searchTabWidget(searchTabWidget) ,dailyTabWidget(dailyTabWidget)
{ {
m_icon_selected = new QIcon(":/icons/checkmark.png"); m_icon_selected = new QIcon(":/icons/checkmark.png");
@ -177,16 +164,12 @@ void DailySearchTab::createUi() {
searchTabLayout ->addWidget(guiDisplayTable); searchTabLayout ->addWidget(guiDisplayTable);
// End of UI creatation // End of UI creatation
// Initialize ui contents // Initialize ui contents
QString styleButton=QString("QPushButton { color: black; border: 1px solid black; padding: 5px ; } QPushButton:disabled { color: #606060; border: 1px solid #606060; }" ); QString styleButton=QString("QPushButton { color: black; border: 1px solid black; padding: 5px ; } QPushButton:disabled { color: #606060; border: 1px solid #606060; }" );
searchTabWidget ->setFont(baseFont); searchTabWidget ->setFont(baseFont);
helpButton ->setFont(baseFont); helpButton ->setFont(baseFont);
//helpButton ->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum);
//helpButton ->setStyleSheet(QString("QPushButton:flat {border: none }"));
//helpButton ->setStyleSheet(" text-align:left ; padding: 4;border: 1px");
helpInfo ->setText(helpStr()); helpInfo ->setText(helpStr());
helpInfo ->setFont(baseFont); helpInfo ->setFont(baseFont);
@ -217,11 +200,8 @@ void DailySearchTab::createUi() {
setOperationPopupEnabled(false); setOperationPopupEnabled(false);
selectDouble->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum); selectDouble->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum);
//selectDouble->hide();
selectInteger->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum); selectInteger->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum);
//selectInteger->hide();
selectString->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum); selectString->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum);
//selectString ->hide();
selectUnits->setText(""); selectUnits->setText("");
selectUnits->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum); selectUnits->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum);
@ -233,7 +213,6 @@ void DailySearchTab::createUi() {
helpButton ->setStyleSheet( styleButton ); helpButton ->setStyleSheet( styleButton );
//statusProgress ->show();
summaryProgress ->setFont(baseFont); summaryProgress ->setFont(baseFont);
summaryFound ->setFont(baseFont); summaryFound ->setFont(baseFont);
summaryMinMax ->setFont(baseFont); summaryMinMax ->setFont(baseFont);
@ -243,10 +222,7 @@ void DailySearchTab::createUi() {
summaryFound ->setStyleSheet("padding:4px;background-color: #f0f0f0;" ); summaryFound ->setStyleSheet("padding:4px;background-color: #f0f0f0;" );
summaryMinMax ->setStyleSheet("padding:4px;background-color: #ffffff;" ); summaryMinMax ->setStyleSheet("padding:4px;background-color: #ffffff;" );
//summaryProgress ->show(); searchTopic = ST_NONE;
//summaryFound ->show();
//summaryMinMax ->show();
searchType = OT_NONE;
clearButton->setText(tr("Clear")); clearButton->setText(tr("Clear"));
startButton->setText(tr("Start Search")); startButton->setText(tr("Start Search"));
@ -274,7 +250,6 @@ void DailySearchTab::createUi() {
horizontalHeader0->setText(tr("DATE\nClick date to Restore")); horizontalHeader0->setText(tr("DATE\nClick date to Restore"));
horizontalHeader1->setText(""); horizontalHeader1->setText("");
guiDisplayTable->horizontalHeader()->hide();
} }
void DailySearchTab::delayedCreateUi() { void DailySearchTab::delayedCreateUi() {
@ -283,15 +258,15 @@ void DailySearchTab::delayedCreateUi() {
createUiFinished = true; createUiFinished = true;
selectCommandCombo->clear(); selectCommandCombo->clear();
selectCommandCombo->addItem(tr("Notes"),OT_NOTES); selectCommandCombo->addItem(tr("Notes"),ST_NOTES);
selectCommandCombo->addItem(tr("Notes containing"),OT_NOTES_STRING); selectCommandCombo->addItem(tr("Notes containing"),ST_NOTES_STRING);
selectCommandCombo->addItem(tr("Bookmarks"),OT_BOOKMARKS); selectCommandCombo->addItem(tr("Bookmarks"),ST_BOOKMARKS);
selectCommandCombo->addItem(tr("Bookmarks containing"),OT_BOOKMARKS_STRING); selectCommandCombo->addItem(tr("Bookmarks containing"),ST_BOOKMARKS_STRING);
selectCommandCombo->addItem(tr("AHI "),OT_AHI); selectCommandCombo->addItem(tr("AHI "),ST_AHI);
selectCommandCombo->addItem(tr("Daily Duration"),OT_DAILY_USAGE); selectCommandCombo->addItem(tr("Daily Duration"),ST_DAILY_USAGE);
selectCommandCombo->addItem(tr("Session Duration" ),OT_SESSION_LENGTH); selectCommandCombo->addItem(tr("Session Duration" ),ST_SESSION_LENGTH);
selectCommandCombo->addItem(tr("Disabled Sessions"),OT_DISABLED_SESSIONS); selectCommandCombo->addItem(tr("Disabled Sessions"),ST_DISABLED_SESSIONS);
selectCommandCombo->addItem(tr("Number of Sessions"),OT_SESSIONS_QTY); selectCommandCombo->addItem(tr("Number of Sessions"),ST_SESSIONS_QTY);
selectCommandCombo->insertSeparator(selectCommandCombo->count()); // separate from events selectCommandCombo->insertSeparator(selectCommandCombo->count()); // separate from events
opCodeMap.clear(); opCodeMap.clear();
@ -305,7 +280,7 @@ void DailySearchTab::delayedCreateUi() {
opCodeMap.insert( opCodeStr(OP_CONTAINS),OP_CONTAINS); opCodeMap.insert( opCodeStr(OP_CONTAINS),OP_CONTAINS);
opCodeMap.insert( opCodeStr(OP_WILDCARD),OP_WILDCARD); opCodeMap.insert( opCodeStr(OP_WILDCARD),OP_WILDCARD);
// The order here is the order in the popup box // The order here is the order in the popup box
selectOperationCombo->clear(); selectOperationCombo->clear();
selectOperationCombo->addItem(opCodeStr(OP_LT)); selectOperationCombo->addItem(opCodeStr(OP_LT));
selectOperationCombo->addItem(opCodeStr(OP_GT)); selectOperationCombo->addItem(opCodeStr(OP_GT));
@ -359,26 +334,26 @@ QRegExp DailySearchTab::searchPatterToRegex (QString searchPattern) {
searchPattern = searchPattern.simplified(); searchPattern = searchPattern.simplified();
//QString wilDebug = searchPattern; //QString wilDebug = searchPattern;
// //
// wildcard searches uses '*' , '?' and '\' // wildcard searches uses '*' , '?' and '\'
// '*' will match zero or more characters. '?' will match one character. the escape character '\' always matches the next character. // '*' will match zero or more characters. '?' will match one character. the escape character '\' always matches the next character.
// '\\' will match '\'. '\*' will match '*'. '\?' mach for '?'. otherwise the '\' is ignored // '\\' will match '\'. '\*' will match '*'. '\?' mach for '?'. otherwise the '\' is ignored
// The user request will be mapped into a valid QRegularExpression. All RegExp meta characters in the request must be handled. // The user request will be mapped into a valid QRegularExpression. All RegExp meta characters in the request must be handled.
// Most of the meta characters will be escapped. backslash, asterisk, question mark will be treated. // Most of the meta characters will be escapped. backslash, asterisk, question mark will be treated.
// '\*' -> '\*' // '\*' -> '\*'
// '\?' -> '\?' // '\?' -> '\?'
// '*' -> '.*' // really asterisk followed by asterisk or questionmark -> as a single asterisk. // '*' -> '.*' // really asterisk followed by asterisk or questionmark -> as a single asterisk.
// '?' -> '.' // '?' -> '.'
// '.' -> '\.' // default for all other meta characters. // '.' -> '\.' // default for all other meta characters.
// '\\' -> '[\\]' // '\\' -> '[\\]'
// QT documentation states regex reserved characetrs are $ () * + . ? [ ] ^ {} | // seems to be missing / \ - // QT documentation states regex reserved characetrs are $ () * + . ? [ ] ^ {} | // seems to be missing / \ -
// Regular expression reserved characters / \ [ ] () {} | + ^ . $ ? * - // Regular expression reserved characters / \ [ ] () {} | + ^ . $ ? * -
static const QString metaClass = QString( "[ / \\\\ \\[ \\] ( ) { } | + ^ . $ ? * - ]").replace(" ",""); // slash,bSlash,[,],(,),{,},+,^,.,$,?,*,-,| static const QString metaClass = QString( "[ / \\\\ \\[ \\] ( ) { } | + ^ . $ ? * - ]").replace(" ",""); // slash,bSlash,[,],(,),{,},+,^,.,$,?,*,-,|
static const QRegExp metaCharRegex(metaClass); static const QRegExp metaCharRegex(metaClass);
#if 0 #if 0
// Verify search pattern // Verify search pattern
if (!metaCharRegex.isValid()) { if (!metaCharRegex.isValid()) {
@ -416,15 +391,15 @@ QRegExp DailySearchTab::searchPatterToRegex (QString searchPattern) {
len = searchPattern.length(); len = searchPattern.length();
if (next>=len) break; if (next>=len) break;
nextChar = searchPattern.at(next); nextChar = searchPattern.at(next);
} }
replace = anyStr; // if asterisk then write dot asterisk replace = anyStr; // if asterisk then write dot asterisk
} else if (metaChar == qMark ) { } else if (metaChar == qMark ) {
replace = singleStr; replace = singleStr;
} else { } else {
if ((metaChar == bSlash ) ) { if ((metaChar == bSlash ) ) {
if ( ((nextChar == bSlash ) || (nextChar == asterisk ) || (nextChar == qMark ) ) ) { if ( ((nextChar == bSlash ) || (nextChar == asterisk ) || (nextChar == qMark ) ) ) {
pos+=2; continue; pos+=2; continue;
} }
replace = emptyStr; //match next character. same as deleteing the backslash replace = emptyStr; //match next character. same as deleteing the backslash
} else { } else {
// Now have a regex reserved character that needs escaping. // Now have a regex reserved character that needs escaping.
@ -531,73 +506,79 @@ void DailySearchTab::on_selectCommandCombo_activated(int index) {
selectOperationOpCode = OP_INVALID; selectOperationOpCode = OP_INVALID;
// get item selected // get item selected
searchType = selectCommandCombo->itemData(index).toInt(); int itemTopic = selectCommandCombo->itemData(index).toInt();
switch (searchType) { if (itemTopic>=ST_EVENT) {
case OT_NONE : channelId = itemTopic;
searchTopic = ST_EVENT;
} else {
searchTopic = (SearchTopic)itemTopic;
}
switch (searchTopic) {
case ST_NONE :
// should never get here. // should never get here.
horizontalHeader1->setText(""); horizontalHeader1->setText("");
nextTab = TW_NONE ; nextTab = TW_NONE ;
setSelectOperation( OP_INVALID ,notUsed); setSelectOperation( OP_INVALID ,notUsed);
break; break;
case OT_DISABLED_SESSIONS : case ST_DISABLED_SESSIONS :
horizontalHeader1->setText(tr("Number Disabled Session\nJumps to Notes")); horizontalHeader1->setText(tr("Number Disabled Session\nJumps to Notes"));
nextTab = TW_DETAILED ; nextTab = TW_DETAILED ;
selectInteger->setValue(0); selectInteger->setValue(0);
setSelectOperation(OP_NO_PARMS,displayWhole); setSelectOperation(OP_NO_PARMS,displayWhole);
break; break;
case OT_NOTES : case ST_NOTES :
horizontalHeader1->setText(tr("Note\nJumps to Notes")); horizontalHeader1->setText(tr("Note\nJumps to Notes"));
nextTab = TW_NOTES ; nextTab = TW_NOTES ;
setSelectOperation( OP_NO_PARMS ,displayString); setSelectOperation( OP_NO_PARMS ,displayString);
break; break;
case OT_BOOKMARKS : case ST_BOOKMARKS :
horizontalHeader1->setText(tr("Jumps to Bookmark")); horizontalHeader1->setText(tr("Jumps to Bookmark"));
nextTab = TW_BOOKMARK ; nextTab = TW_BOOKMARK ;
setSelectOperation( OP_NO_PARMS ,displayString); setSelectOperation( OP_NO_PARMS ,displayString);
break; break;
case OT_BOOKMARKS_STRING : case ST_BOOKMARKS_STRING :
horizontalHeader1->setText(tr("Jumps to Bookmark")); horizontalHeader1->setText(tr("Jumps to Bookmark"));
nextTab = TW_BOOKMARK ; nextTab = TW_BOOKMARK ;
//setSelectOperation(OP_CONTAINS,opString); //setSelectOperation(OP_CONTAINS,opString);
setSelectOperation(OP_WILDCARD,opString); setSelectOperation(OP_WILDCARD,opString);
selectString->clear(); selectString->clear();
break; break;
case OT_NOTES_STRING : case ST_NOTES_STRING :
horizontalHeader1->setText(tr("Note\nJumps to Notes")); horizontalHeader1->setText(tr("Note\nJumps to Notes"));
nextTab = TW_NOTES ; nextTab = TW_NOTES ;
//setSelectOperation(OP_CONTAINS,opString); //setSelectOperation(OP_CONTAINS,opString);
setSelectOperation(OP_WILDCARD,opString); setSelectOperation(OP_WILDCARD,opString);
selectString->clear(); selectString->clear();
break; break;
case OT_AHI : case ST_AHI :
horizontalHeader1->setText(tr("AHI\nJumps to Details")); horizontalHeader1->setText(tr("AHI\nJumps to Details"));
nextTab = TW_DETAILED ; nextTab = TW_DETAILED ;
setSelectOperation(OP_GT,hundredths); setSelectOperation(OP_GT,hundredths);
selectDouble->setValue(5.0); selectDouble->setValue(5.0);
break; break;
case OT_SESSION_LENGTH : case ST_SESSION_LENGTH :
horizontalHeader1->setText(tr("Session Duration\nJumps to Details")); horizontalHeader1->setText(tr("Session Duration\nJumps to Details"));
nextTab = TW_DETAILED ; nextTab = TW_DETAILED ;
setSelectOperation(OP_LT,minutesToMs); setSelectOperation(OP_LT,minutesToMs);
selectDouble->setValue(5.0); selectDouble->setValue(5.0);
selectInteger->setValue((int)selectDouble->value()*60000.0); //convert to ms selectInteger->setValue((int)selectDouble->value()*60000.0); //convert to ms
break; break;
case OT_SESSIONS_QTY : case ST_SESSIONS_QTY :
horizontalHeader1->setText(tr("Number of Sessions\nJumps to Details")); horizontalHeader1->setText(tr("Number of Sessions\nJumps to Details"));
nextTab = TW_DETAILED ; nextTab = TW_DETAILED ;
setSelectOperation(OP_GT,opWhole); setSelectOperation(OP_GT,opWhole);
selectInteger->setRange(0,999); selectInteger->setRange(0,999);
selectInteger->setValue(1); selectInteger->setValue(2);
break; break;
case OT_DAILY_USAGE : case ST_DAILY_USAGE :
horizontalHeader1->setText(tr("Daily Duration\nJumps to Details")); horizontalHeader1->setText(tr("Daily Duration\nJumps to Details"));
nextTab = TW_DETAILED ; nextTab = TW_DETAILED ;
setSelectOperation(OP_LT,hoursToMs); setSelectOperation(OP_LT,hoursToMs);
selectDouble->setValue(p_profile->cpap->complianceHours()); selectDouble->setValue(p_profile->cpap->complianceHours());
selectInteger->setValue((int)selectDouble->value()*3600000.0); //convert to ms selectInteger->setValue((int)selectDouble->value()*3600000.0); //convert to ms
break; break;
default: case ST_EVENT:
// Have an Event // Have an Event
horizontalHeader1->setText(tr("Number of events\nJumps to Events")); horizontalHeader1->setText(tr("Number of events\nJumps to Events"));
nextTab = TW_EVENTS ; nextTab = TW_EVENTS ;
setSelectOperation(OP_GT,opWhole); setSelectOperation(OP_GT,opWhole);
@ -635,8 +616,8 @@ bool DailySearchTab::find(QDate& date,Day* day)
if (!day) return false; if (!day) return false;
bool found=false; bool found=false;
Qt::Alignment alignment=Qt::AlignCenter; Qt::Alignment alignment=Qt::AlignCenter;
switch (searchType) { switch (searchTopic) {
case OT_DISABLED_SESSIONS : case ST_DISABLED_SESSIONS :
{ {
qint32 numDisabled=0; qint32 numDisabled=0;
QList<Session *> sessions = day->getSessions(MT_CPAP,true); QList<Session *> sessions = day->getSessions(MT_CPAP,true);
@ -654,7 +635,7 @@ bool DailySearchTab::find(QDate& date,Day* day)
//} //}
} }
break; break;
case OT_NOTES : case ST_NOTES :
{ {
Session* journal=daily->GetJournalSession(date); Session* journal=daily->GetJournalSession(date);
if (journal && journal->settings.contains(Journal_Notes)) { if (journal && journal->settings.contains(Journal_Notes)) {
@ -665,7 +646,7 @@ bool DailySearchTab::find(QDate& date,Day* day)
} }
} }
break; break;
case OT_BOOKMARKS : case ST_BOOKMARKS :
{ {
Session* journal=daily->GetJournalSession(date); Session* journal=daily->GetJournalSession(date);
if (journal && journal->settings.contains(Bookmark_Notes)) { if (journal && journal->settings.contains(Bookmark_Notes)) {
@ -679,15 +660,15 @@ bool DailySearchTab::find(QDate& date,Day* day)
} }
} }
break; break;
case OT_BOOKMARKS_STRING : case ST_BOOKMARKS_STRING :
{ {
Session* journal=daily->GetJournalSession(date); Session* journal=daily->GetJournalSession(date);
if (journal && journal->settings.contains(Bookmark_Notes)) { if (journal && journal->settings.contains(Bookmark_Notes)) {
QStringList notes = journal->settings[Bookmark_Notes].toStringList(); QStringList notes = journal->settings[Bookmark_Notes].toStringList();
QString findStr = selectString->text(); QString findStr = selectString->text();
for ( const auto & note : notes) { for ( const auto & note : notes) {
//if (note.contains(findStr,Qt::CaseInsensitive) ) //if (note.contains(findStr,Qt::CaseInsensitive) )
if (compare(findStr , note)) if (compare(findStr , note))
{ {
found=true; found=true;
foundString = note.simplified().left(stringDisplayLen).simplified(); foundString = note.simplified().left(stringDisplayLen).simplified();
@ -698,7 +679,7 @@ bool DailySearchTab::find(QDate& date,Day* day)
} }
} }
break; break;
case OT_NOTES_STRING : case ST_NOTES_STRING :
{ {
Session* journal=daily->GetJournalSession(date); Session* journal=daily->GetJournalSession(date);
if (journal && journal->settings.contains(Journal_Notes)) { if (journal && journal->settings.contains(Journal_Notes)) {
@ -712,17 +693,17 @@ bool DailySearchTab::find(QDate& date,Day* day)
} }
} }
break; break;
case OT_AHI : case ST_AHI :
{ {
EventDataType dahi =calculateAhi(day); EventDataType dahi =calculateAhi(day);
dahi += 0.005; dahi += 0.005;
dahi *= 100.0; dahi *= 100.0;
int ahi = (int)dahi; int ahi = (int)dahi;
updateValues(ahi); updateValues(ahi);
found = compare (ahi , selectValue); found = compare (ahi , selectValue);
} }
break; break;
case OT_SESSION_LENGTH : case ST_SESSION_LENGTH :
{ {
bool valid=false; bool valid=false;
qint64 value=0; qint64 value=0;
@ -743,7 +724,7 @@ bool DailySearchTab::find(QDate& date,Day* day)
if (valid) updateValues(value); if (valid) updateValues(value);
} }
break; break;
case OT_SESSIONS_QTY : case ST_SESSIONS_QTY :
{ {
QList<Session *> sessions = day->getSessions(MT_CPAP); QList<Session *> sessions = day->getSessions(MT_CPAP);
qint32 size = sessions.size(); qint32 size = sessions.size();
@ -751,7 +732,7 @@ bool DailySearchTab::find(QDate& date,Day* day)
found=compare (size , selectValue); found=compare (size , selectValue);
} }
break; break;
case OT_DAILY_USAGE : case ST_DAILY_USAGE :
{ {
QList<Session *> sessions = day->getSessions(MT_CPAP); QList<Session *> sessions = day->getSessions(MT_CPAP);
qint64 sum = 0 ; qint64 sum = 0 ;
@ -762,15 +743,14 @@ bool DailySearchTab::find(QDate& date,Day* day)
found=compare (sum , selectValue); found=compare (sum , selectValue);
} }
break; break;
default : case ST_EVENT :
{ {
qint32 count = day->count(searchType); qint32 count = day->count(channelId);
if (count<=0) break;
updateValues(count); updateValues(count);
found=compare (count , selectValue); found=compare (count , selectValue);
} }
break; break;
case OT_NONE : case ST_NONE :
return false; return false;
break; break;
} }
@ -883,7 +863,7 @@ void DailySearchTab::on_dateItemClicked(QTableWidgetItem *item)
{ {
// a date is clicked // a date is clicked
// load new date // load new date
// change tab // change tab
int row = item->row(); int row = item->row();
int col = item->column(); int col = item->column();
guiDisplayTable->setCurrentItem(item,QItemSelectionModel::Clear); guiDisplayTable->setCurrentItem(item,QItemSelectionModel::Clear);
@ -980,13 +960,15 @@ void DailySearchTab::setSelectOperation(OpCode opCode,ValueMode mode) {
break; break;
case opWhole: case opWhole:
selectInteger->show(); selectInteger->show();
break;
case displayWhole: case displayWhole:
break; selectInteger->hide();
break;
case opString: case opString:
selectOperationButton->show(); selectOperationButton->show();
selectString ->show(); selectString ->show();
break; break;
case displayString: case displayString:
selectString ->hide(); selectString ->hide();
break; break;
case invalidValueMode: case invalidValueMode:
@ -996,17 +978,36 @@ void DailySearchTab::setSelectOperation(OpCode opCode,ValueMode mode) {
} }
void DailySearchTab::hideResults() {
void DailySearchTab::on_clearButton_clicked() guiProgressBar->hide();
// clear display table && hide
guiDisplayTable->horizontalHeader()->hide();
for (int index=0; index<guiDisplayTable->rowCount();index++) {
guiDisplayTable->setRowHidden(index,true);
}
guiDisplayTable->horizontalHeader()->hide();
// reset summary line
summaryProgress->hide();
summaryFound->hide();
summaryMinMax->hide();
statusProgress->hide();
}
void DailySearchTab::on_clearButton_clicked()
{ {
// make these button text back to start. // make these button text back to start.
selectCommandButton->setText(tr("Select Match"));
startButton->setText(tr("Start Search")); startButton->setText(tr("Start Search"));
startButtonMode=true;
startButton->setEnabled( false);
// hide widgets // hide widgets
//Reset Select area //Reset Select area
selectCommandCombo->hide(); selectCommandCombo->hide();
setCommandPopupEnabled(false); setCommandPopupEnabled(false);
selectCommandButton->setText(tr("Select Match"));
selectCommandButton->show(); selectCommandButton->show();
selectOperationCombo->hide(); selectOperationCombo->hide();
@ -1018,25 +1019,12 @@ void DailySearchTab::on_clearButton_clicked()
selectString->hide(); selectString->hide();
selectUnits->hide(); selectUnits->hide();
hideResults();
//Reset Start area
startButtonMode=true;
startButton->setEnabled( false);
statusProgress->hide();
// reset summary line
summaryProgress->hide();
summaryFound->hide();
summaryMinMax->hide();
guiProgressBar->hide();
// clear display table && hide
guiDisplayTable->horizontalHeader()->hide();
for (int index=0; index<guiDisplayTable->rowCount();index++) {
guiDisplayTable->setRowHidden(index,true);
}
guiDisplayTable->horizontalHeader()->hide();
} }
@ -1087,7 +1075,7 @@ void DailySearchTab::displayStatistics() {
// display days found // display days found
summaryFound->setText(centerLine(QString(tr("Found %1.")).arg(daysFound) )); summaryFound->setText(centerLine(QString(tr("Found %1.")).arg(daysFound) ));
// display associated value // display associated value
extra =""; extra ="";
if (minMaxValid) { if (minMaxValid) {
extra = QString("%1/%2").arg(valueToString(minInteger)).arg(valueToString(maxInteger)); extra = QString("%1/%2").arg(valueToString(minInteger)).arg(valueToString(maxInteger));
@ -1139,14 +1127,7 @@ void DailySearchTab::criteriaChanged() {
statusProgress->setText(centerLine(" ----- ")); statusProgress->setText(centerLine(" ----- "));
statusProgress->clear(); statusProgress->clear();
hideResults();
summaryProgress->clear();
summaryFound->clear();
summaryMinMax->clear();
for (int index=0; index<guiDisplayTable->rowCount();index++) {
guiDisplayTable->setRowHidden(index,true);
}
guiDisplayTable->horizontalHeader()->hide();
minMaxValid = false; minMaxValid = false;
minInteger = 0; minInteger = 0;
@ -1162,7 +1143,6 @@ void DailySearchTab::criteriaChanged() {
startButtonMode=true; startButtonMode=true;
//initialize progress bar. //initialize progress bar.
guiProgressBar->hide();
guiProgressBar->setMinimum(0); guiProgressBar->setMinimum(0);
guiProgressBar->setMaximum(daysTotal); guiProgressBar->setMaximum(daysTotal);
guiProgressBar->setTextVisible(true); guiProgressBar->setTextVisible(true);
@ -1208,7 +1188,7 @@ QString DailySearchTab::formatTime (qint32 ms) {
qint32 minutes = ms / 60000; qint32 minutes = ms / 60000;
ms = ms % 60000; ms = ms % 60000;
qint32 seconds = ms /1000; qint32 seconds = ms /1000;
return QString(tr("%1h %2m %3s")).arg(hours).arg(minutes).arg(seconds); return QString(tr("%1h %2m %3s")).arg(hours).arg(minutes).arg(seconds);
} }
QString DailySearchTab::convertRichText2Plain (QString rich) { QString DailySearchTab::convertRichText2Plain (QString rich) {
@ -1227,7 +1207,9 @@ QString DailySearchTab::opCodeStr(OpCode opCode) {
case OP_NE : return "!="; case OP_NE : return "!=";
case OP_CONTAINS : return QChar(0x2208); // or use 0x220B case OP_CONTAINS : return QChar(0x2208); // or use 0x220B
case OP_WILDCARD : return "*?"; case OP_WILDCARD : return "*?";
default: case OP_INVALID:
case OP_END_NUMERIC:
case OP_NO_PARMS:
break; break;
} }
return QString(); return QString();

View File

@ -60,6 +60,8 @@ private:
enum ValueMode { invalidValueMode, notUsed , minutesToMs ,hoursToMs, hundredths , opWhole , displayWhole , opString, displayString}; enum ValueMode { invalidValueMode, notUsed , minutesToMs ,hoursToMs, hundredths , opWhole , displayWhole , opString, displayString};
enum SearchTopic { ST_NONE, ST_DISABLED_SESSIONS, ST_NOTES, ST_NOTES_STRING, ST_BOOKMARKS, ST_BOOKMARKS_STRING, ST_AHI, ST_SESSION_LENGTH, ST_SESSIONS_QTY, ST_DAILY_USAGE, ST_EVENT };
enum OpCode { enum OpCode {
//DO NOT CHANGE NUMERIC OP CODES because THESE VALUES impact compare operations. //DO NOT CHANGE NUMERIC OP CODES because THESE VALUES impact compare operations.
// start of fixed codes // start of fixed codes
@ -133,6 +135,7 @@ enum OpCode {
void setCommandPopupEnabled(bool ); void setCommandPopupEnabled(bool );
void setOperationPopupEnabled(bool ); void setOperationPopupEnabled(bool );
void setOperation( ); void setOperation( );
void hideResults();
QString helpStr(); QString helpStr();
QString centerLine(QString line); QString centerLine(QString line);
@ -146,8 +149,9 @@ enum OpCode {
bool createUiFinished=false; bool createUiFinished=false;
bool startButtonMode=true; bool startButtonMode=true;
int searchType; SearchTopic searchTopic;
int nextTab; int nextTab;
int channelId;
QDate firstDate ; QDate firstDate ;
QDate lastDate ; QDate lastDate ;