mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
enhanced daily search radio buttons
This commit is contained in:
parent
69865eecae
commit
26260b61e9
@ -132,6 +132,7 @@ DailySearchTab::DailySearchTab(Daily* daily , QWidget* searchTabWidget , QTabWi
|
|||||||
m_icon_selected = new QIcon(":/icons/checkmark.png");
|
m_icon_selected = new QIcon(":/icons/checkmark.png");
|
||||||
m_icon_notSelected = new QIcon(":/icons/empty_box.png");
|
m_icon_notSelected = new QIcon(":/icons/empty_box.png");
|
||||||
m_icon_configure = new QIcon(":/icons/cog.png");
|
m_icon_configure = new QIcon(":/icons/cog.png");
|
||||||
|
|
||||||
createUi();
|
createUi();
|
||||||
connectUi(true);
|
connectUi(true);
|
||||||
}
|
}
|
||||||
@ -155,9 +156,9 @@ void DailySearchTab::createUi() {
|
|||||||
startWidget = new QWidget(searchTabWidget);
|
startWidget = new QWidget(searchTabWidget);
|
||||||
startLayout = new QHBoxLayout;
|
startLayout = new QHBoxLayout;
|
||||||
matchButton = new QPushButton( startWidget);
|
matchButton = new QPushButton( startWidget);
|
||||||
|
addMatchButton = new QPushButton( startWidget);
|
||||||
clearButton = new QPushButton( startWidget);
|
clearButton = new QPushButton( startWidget);
|
||||||
startButton = new QPushButton( startWidget);
|
startButton = new QPushButton( startWidget);
|
||||||
addMatchButton = new QPushButton( startWidget);
|
|
||||||
|
|
||||||
|
|
||||||
commandWidget = new QWidget(searchTabWidget);
|
commandWidget = new QWidget(searchTabWidget);
|
||||||
@ -191,9 +192,9 @@ void DailySearchTab::createUi() {
|
|||||||
searchTabLayout->setMargin(2);
|
searchTabLayout->setMargin(2);
|
||||||
|
|
||||||
startLayout->addWidget(matchButton);
|
startLayout->addWidget(matchButton);
|
||||||
|
startLayout->addWidget(addMatchButton);
|
||||||
startLayout->addWidget(clearButton);
|
startLayout->addWidget(clearButton);
|
||||||
startLayout->addWidget(startButton);
|
startLayout->addWidget(startButton);
|
||||||
startLayout->addWidget(addMatchButton);
|
|
||||||
startLayout->addStretch(0);
|
startLayout->addStretch(0);
|
||||||
startLayout->addSpacing(2);
|
startLayout->addSpacing(2);
|
||||||
startLayout->setMargin(2);
|
startLayout->setMargin(2);
|
||||||
@ -324,13 +325,13 @@ void DailySearchTab::createUi() {
|
|||||||
|
|
||||||
|
|
||||||
setResult(DS_ROW_HEADER,0,QDate(),tr("DATE\nJumps to Date"));
|
setResult(DS_ROW_HEADER,0,QDate(),tr("DATE\nJumps to Date"));
|
||||||
on_clearButton_clicked();
|
setState( reset );
|
||||||
}
|
}
|
||||||
|
|
||||||
void DailySearchTab::connectUi(bool doConnect) {
|
void DailySearchTab::connectUi(bool doConnect) {
|
||||||
if (doConnect) {
|
if (doConnect) {
|
||||||
daily->connect(startButton, SIGNAL(clicked()), this, SLOT(on_startButton_clicked()) );
|
daily->connect(startButton, SIGNAL(clicked()), this, SLOT(on_startButton_clicked()) );
|
||||||
daily->connect(buttonGroup, SIGNAL(buttonReleased(QAbstractButton*)), this, SLOT(on_radioGroupButton_clicked(QAbstractButton*)));
|
daily->connect(buttonGroup, SIGNAL(buttonReleased(QAbstractButton*)), this, SLOT(on_matchGroupButton_toggled(QAbstractButton*)));
|
||||||
daily->connect(clearButton, SIGNAL(clicked()), this, SLOT(on_clearButton_clicked()) );
|
daily->connect(clearButton, SIGNAL(clicked()), this, SLOT(on_clearButton_clicked()) );
|
||||||
daily->connect(matchButton, SIGNAL(clicked()), this, SLOT(on_matchButton_clicked()) );
|
daily->connect(matchButton, SIGNAL(clicked()), this, SLOT(on_matchButton_clicked()) );
|
||||||
daily->connect(addMatchButton, SIGNAL(clicked()), this, SLOT(on_addMatchButton_clicked()) );
|
daily->connect(addMatchButton, SIGNAL(clicked()), this, SLOT(on_addMatchButton_clicked()) );
|
||||||
@ -346,7 +347,7 @@ void DailySearchTab::connectUi(bool doConnect) {
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
daily->disconnect(startButton, SIGNAL(clicked()), this, SLOT(on_startButton_clicked()) );
|
daily->disconnect(startButton, SIGNAL(clicked()), this, SLOT(on_startButton_clicked()) );
|
||||||
daily->disconnect(buttonGroup, SIGNAL(buttonReleased(QAbstractButton*)), this, SLOT(on_radioGroupButton_clicked(QAbstractButton*)));
|
daily->disconnect(buttonGroup, SIGNAL(buttonReleased(QAbstractButton*)), this, SLOT(on_matchGroupButton_toggled(QAbstractButton*)));
|
||||||
daily->disconnect(clearButton, SIGNAL(clicked()), this, SLOT(on_clearButton_clicked()) );
|
daily->disconnect(clearButton, SIGNAL(clicked()), this, SLOT(on_clearButton_clicked()) );
|
||||||
daily->disconnect(matchButton, SIGNAL(clicked()), this, SLOT(on_matchButton_clicked()) );
|
daily->disconnect(matchButton, SIGNAL(clicked()), this, SLOT(on_matchButton_clicked()) );
|
||||||
daily->disconnect(addMatchButton, SIGNAL(clicked()), this, SLOT(on_addMatchButton_clicked()) );
|
daily->disconnect(addMatchButton, SIGNAL(clicked()), this, SLOT(on_addMatchButton_clicked()) );
|
||||||
@ -370,32 +371,97 @@ void DailySearchTab::addCommandItem(QString str,int topic) {
|
|||||||
width += 30 ; // account for scrollbar width;
|
width += 30 ; // account for scrollbar width;
|
||||||
commandListItemMaxWidth = max (commandListItemMaxWidth, (width*percentX));
|
commandListItemMaxWidth = max (commandListItemMaxWidth, (width*percentX));
|
||||||
commandListItemHeight = QFontMetricsF(this->font()).size(Qt::TextSingleLine , str).height();
|
commandListItemHeight = QFontMetricsF(this->font()).size(Qt::TextSingleLine , str).height();
|
||||||
QAbstractButton* radioButton ;
|
QAbstractButton* topicButton ;
|
||||||
if (topic<=0) {
|
//topicButton = new QCheckBox(str,commandList);
|
||||||
radioButton = new QPushButton(str,commandList);
|
topicButton = new QRadioButton(str,commandList);
|
||||||
} else {
|
buttonGroup->addButton(topicButton,topic);
|
||||||
radioButton = new QRadioButton(str,commandList);
|
|
||||||
}
|
|
||||||
buttonGroup->addButton(radioButton,topic);
|
|
||||||
|
|
||||||
QListWidgetItem* item = new QListWidgetItem(commandList);
|
QListWidgetItem* item = new QListWidgetItem(commandList);
|
||||||
item->setData(Qt::UserRole,topic);
|
item->setData(Qt::UserRole,topic);
|
||||||
commandList->setItemWidget(item, radioButton);
|
commandList->setItemWidget(item, topicButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
void DailySearchTab::on_radioGroupButton_clicked(QAbstractButton* but ) {
|
void DailySearchTab::debugStates() {
|
||||||
QRadioButton* radio = dynamic_cast<QRadioButton*>(but);
|
#ifdef TEST_MACROS_ENABLED
|
||||||
if (radio) {
|
return;
|
||||||
lastButton = radio;
|
qDebug() ;
|
||||||
lastTopic = buttonGroup->id(radio);
|
for (int ind = 0; ind <commandList->count() ; ++ind) {
|
||||||
//} else if (!lastTopic || !lastButton) {
|
QListWidgetItem *item = commandList->item(ind);
|
||||||
//return;
|
QAbstractButton* topicButton = dynamic_cast<QAbstractButton*>(commandList->itemWidget(item));
|
||||||
|
if (!topicButton) continue;
|
||||||
|
int topic = buttonGroup->id(topicButton);
|
||||||
|
DEBUGFC
|
||||||
|
QQ("checkable",topicButton->isCheckable())
|
||||||
|
QQ("check",topicButton->isChecked())
|
||||||
|
O(topicButton->text())
|
||||||
|
O(topic)
|
||||||
|
;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void DailySearchTab::showOnlyAhiChannels(bool ahiOnly) {
|
||||||
|
for (int ind = 0; ind <commandList->count() ; ++ind) {
|
||||||
|
QListWidgetItem *item = commandList->item(ind);
|
||||||
|
QAbstractButton* topicButton = dynamic_cast<QAbstractButton*>(commandList->itemWidget(item));
|
||||||
|
if (!topicButton) continue;
|
||||||
|
int topic = buttonGroup->id(topicButton);
|
||||||
|
if (apneaLikeChannels.contains(topic)) {
|
||||||
|
item->setHidden(false);
|
||||||
|
} else {
|
||||||
|
if (topic == ST_CLEAR) {
|
||||||
|
topicButton->setChecked(true);
|
||||||
|
item->setHidden(true);
|
||||||
|
} else if (topic == ST_APNEA_ALL) {
|
||||||
|
item->setHidden(!ahiOnly);
|
||||||
|
} else {
|
||||||
|
item->setHidden(ahiOnly);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!ahiOnly) {
|
||||||
|
lastButton = nullptr;
|
||||||
|
lastTopic = ST_NONE ;
|
||||||
|
};
|
||||||
|
debugStates();
|
||||||
|
};
|
||||||
|
|
||||||
|
void DailySearchTab::on_matchGroupButton_toggled(QAbstractButton* topicButton ) {
|
||||||
|
if (topicButton) {
|
||||||
|
int topic = buttonGroup->id(topicButton);
|
||||||
|
if (lastTopic == ST_APNEA_LENGTH ) {
|
||||||
|
//menu was only ahi channels
|
||||||
|
apneaLikeChannels.clear();
|
||||||
|
if (topic == ST_APNEA_ALL ) {
|
||||||
|
initApneaLikeChannels();
|
||||||
|
} else {
|
||||||
|
// topic is ChannelIDA
|
||||||
|
apneaLikeChannels.push_back(topic);
|
||||||
|
}
|
||||||
|
process_match_info(lastButton->text(), ST_APNEA_LENGTH );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
lastButton = topicButton;
|
||||||
|
lastTopic = buttonGroup->id(topicButton);
|
||||||
|
if (lastTopic == ST_APNEA_LENGTH ) {
|
||||||
|
initApneaLikeChannels();
|
||||||
|
showOnlyAhiChannels(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
process_match_info(lastButton->text(), lastTopic );
|
process_match_info(lastButton->text(), lastTopic );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DailySearchTab::initApneaLikeChannels() {
|
||||||
|
apneaLikeChannels = QVector<ChannelID>(ahiChannels);
|
||||||
|
if (p_profile->cpap->userEventFlagging()) {
|
||||||
|
apneaLikeChannels.push_back(CPAP_UserFlag1);
|
||||||
|
apneaLikeChannels.push_back(CPAP_UserFlag2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void DailySearchTab::updateEvents(ChannelID id,QString fullname) {
|
void DailySearchTab::updateEvents(ChannelID id,QString fullname) {
|
||||||
if (commandEventList.contains(fullname)) return;
|
if (commandEventList.contains(fullname)) return;
|
||||||
commandEventList.insert(fullname);
|
commandEventList.insert(fullname);
|
||||||
@ -427,7 +493,6 @@ void DailySearchTab::populateControl() {
|
|||||||
if (!day) return;
|
if (!day) return;
|
||||||
|
|
||||||
commandList->clear();
|
commandList->clear();
|
||||||
//addCommandItem(tr("Done"),ST_NONE);
|
|
||||||
addCommandItem(tr("Notes"),ST_NOTES);
|
addCommandItem(tr("Notes"),ST_NOTES);
|
||||||
addCommandItem(tr("Notes containing"),ST_NOTES_STRING);
|
addCommandItem(tr("Notes containing"),ST_NOTES_STRING);
|
||||||
addCommandItem(tr("Bookmarks"),ST_BOOKMARKS);
|
addCommandItem(tr("Bookmarks"),ST_BOOKMARKS);
|
||||||
@ -453,9 +518,89 @@ void DailySearchTab::populateControl() {
|
|||||||
schema::Channel chan = schema::channel[ id ];
|
schema::Channel chan = schema::channel[ id ];
|
||||||
updateEvents(id,chan.fullname());
|
updateEvents(id,chan.fullname());
|
||||||
}
|
}
|
||||||
|
// these must be at end
|
||||||
|
addCommandItem(tr("All Apnea"),ST_APNEA_ALL);
|
||||||
|
addCommandItem("CLEAR",ST_CLEAR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DailySearchTab::setState(STATE newState) {
|
||||||
|
STATE prev=state;
|
||||||
|
state = newState;
|
||||||
|
//enum STATE { reset , waitForSearchTopic , matching , multpileMatches , waitForStart , autoStart , searching , endOfSeaching , waitForContinue , noDataFound};
|
||||||
|
//DEBUGFC O(prev) O("==>") O(state) Q( matches.size()) QQ("name",match->matchName) O(match->opCodeStr) O(match->compareString) O(match->units);
|
||||||
|
switch (state) {
|
||||||
|
case multpileMatches :
|
||||||
|
break;
|
||||||
|
case matching :
|
||||||
|
if (prev == multpileMatches) {
|
||||||
|
matchButton->show();
|
||||||
|
addMatchButton->hide();
|
||||||
|
} else {
|
||||||
|
setState(reset);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case reset :
|
||||||
|
clrCmdDescList();
|
||||||
|
match = matches.reset();
|
||||||
|
clearMatch() ;
|
||||||
|
setState(waitForSearchTopic);
|
||||||
|
break;
|
||||||
|
case waitForSearchTopic :
|
||||||
|
setColor(matchButton,green);
|
||||||
|
matchButton->show();
|
||||||
|
addMatchButton->hide();
|
||||||
|
startButton->hide();
|
||||||
|
hideResults(true);
|
||||||
|
progressBar->hide();
|
||||||
|
summaryWidget->hide();
|
||||||
|
setCommandPopupEnabled(false);
|
||||||
|
startButton_1stPass=true;
|
||||||
|
showOnlyAhiChannels(false);
|
||||||
|
break;
|
||||||
|
case waitForStart :
|
||||||
|
matchButton->hide();
|
||||||
|
addMatchButton->show();
|
||||||
|
startButton->show();
|
||||||
|
break;
|
||||||
|
case autoStart :
|
||||||
|
break;
|
||||||
|
case searching :
|
||||||
|
//if (prev == searching) break;
|
||||||
|
matchButton->hide();
|
||||||
|
addMatchButton->hide();
|
||||||
|
hideResults(true);
|
||||||
|
progressBar->show();
|
||||||
|
summaryWidget->show();
|
||||||
|
break;
|
||||||
|
case waitForContinue :
|
||||||
|
startButton->setEnabled(true);
|
||||||
|
startButton_1stPass=false;
|
||||||
|
setText(startButton,(tr("Continue Search")));
|
||||||
|
setColor(startButton,green);
|
||||||
|
matchButton->hide();
|
||||||
|
addMatchButton->hide();
|
||||||
|
hideResults(false);
|
||||||
|
break;
|
||||||
|
case endOfSeaching :
|
||||||
|
startButton->setEnabled(false);
|
||||||
|
setText(startButton,tr("End of Search"));
|
||||||
|
setColor(startButton,red);
|
||||||
|
matchButton->show();
|
||||||
|
addMatchButton->hide();
|
||||||
|
hideResults(false);
|
||||||
|
break;
|
||||||
|
case noDataFound :
|
||||||
|
startButton->setEnabled(false);
|
||||||
|
setText(startButton,tr("No Matches"));
|
||||||
|
setColor(startButton,red);
|
||||||
|
matchButton->show();
|
||||||
|
addMatchButton->hide();
|
||||||
|
hideResults(true);
|
||||||
|
break;
|
||||||
|
};
|
||||||
|
//DEBUGFC O(prev) O("==>") O(state) Q(matchButton->isVisible()) Q(addMatchButton->isVisible()) Q( matches.size());
|
||||||
|
};
|
||||||
|
|
||||||
QRegExp Match::searchPatterToRegex (QString searchPattern) {
|
QRegExp Match::searchPatterToRegex (QString searchPattern) {
|
||||||
|
|
||||||
const static QChar bSlash('\\');
|
const static QChar bSlash('\\');
|
||||||
@ -597,7 +742,7 @@ QString Match::valueToString(int value, QString defaultValue) {
|
|||||||
break;
|
break;
|
||||||
case displayWhole:
|
case displayWhole:
|
||||||
case opWhole:
|
case opWhole:
|
||||||
return QString().setNum(value);
|
return QString("%1").arg(value);
|
||||||
break;
|
break;
|
||||||
case secondsDisplayString:
|
case secondsDisplayString:
|
||||||
case displayString:
|
case displayString:
|
||||||
@ -657,6 +802,7 @@ void DailySearchTab::setResult(int row,int column,QDate date,QString text) {
|
|||||||
if (row == DS_ROW_HEADER) {
|
if (row == DS_ROW_HEADER) {
|
||||||
QSize size=setText(item,text);
|
QSize size=setText(item,text);
|
||||||
resultTable->setRowHeight(DS_ROW_HEADER,8/*margins*/+size.height());
|
resultTable->setRowHeight(DS_ROW_HEADER,8/*margins*/+size.height());
|
||||||
|
return; // skip make row visible if header. will be made visible with hideResults method
|
||||||
} else {
|
} else {
|
||||||
item->setIcon(*m_icon_notSelected);
|
item->setIcon(*m_icon_notSelected);
|
||||||
if (column == 0) {
|
if (column == 0) {
|
||||||
@ -772,27 +918,21 @@ bool DailySearchTab::matchFind(Match* myMatch ,Day* day, QDate& date, Qt::Alignm
|
|||||||
myMatch->foundString = myMatch->valueToString( ahi,"----");
|
myMatch->foundString = myMatch->valueToString( ahi,"----");
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case ST_CLEAR :
|
||||||
|
case ST_APNEA_ALL :
|
||||||
|
break; // should never get here
|
||||||
case ST_APNEA_LENGTH :
|
case ST_APNEA_LENGTH :
|
||||||
{
|
{
|
||||||
QList<Session *> sessions = day->getSessions(MT_CPAP);
|
QList<Session *> sessions = day->getSessions(MT_CPAP);
|
||||||
QMap<ChannelID,int> values;
|
QMap<ChannelID,int> values;
|
||||||
// find possible channeld to use
|
// find possible channeld to use
|
||||||
QVector<ChannelID> apneaLikeChannels(ahiChannels);
|
|
||||||
#if 0
|
|
||||||
if (p_profile->cpap->userEventFlagging()) {
|
|
||||||
apneaLikeChannels.push_back(CPAP_UserFlag1);
|
|
||||||
apneaLikeChannels.push_back(CPAP_UserFlag2);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
//apneaLikeChannels.push_back(CPAP_RERA);
|
|
||||||
|
|
||||||
QList<ChannelID> chans;
|
QList<ChannelID> chans;
|
||||||
for( auto code : apneaLikeChannels) {
|
for( auto code : apneaLikeChannels) {
|
||||||
if (day->count(code)) { chans.push_back(code); }
|
if (day->count(code)) { chans.push_back(code); }
|
||||||
}
|
}
|
||||||
bool errorFound = false;
|
bool errorFound = false;
|
||||||
QString result;
|
QString result;
|
||||||
if (!chans.isEmpty()) {
|
if (!apneaLikeChannels.isEmpty()) {
|
||||||
for (Session* sess : sessions ) {
|
for (Session* sess : sessions ) {
|
||||||
if (!sess->enabled()) continue;
|
if (!sess->enabled()) continue;
|
||||||
auto keys = sess->eventlist.keys();
|
auto keys = sess->eventlist.keys();
|
||||||
@ -808,7 +948,7 @@ bool DailySearchTab::matchFind(Match* myMatch ,Day* day, QDate& date, Qt::Alignm
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for( ChannelID code : chans) {
|
for( ChannelID code : apneaLikeChannels) {
|
||||||
auto evlist = sess->eventlist.find(code);
|
auto evlist = sess->eventlist.find(code);
|
||||||
if (evlist == sess->eventlist.end()) {
|
if (evlist == sess->eventlist.end()) {
|
||||||
continue;
|
continue;
|
||||||
@ -818,6 +958,10 @@ bool DailySearchTab::matchFind(Match* myMatch ,Day* day, QDate& date, Qt::Alignm
|
|||||||
EventList & ev=*(evlist.value()[z]);
|
EventList & ev=*(evlist.value()[z]);
|
||||||
for (quint32 o=0;o<ev.count();o++) {
|
for (quint32 o=0;o<ev.count();o++) {
|
||||||
int sec = evlist.value()[z]->raw(o);
|
int sec = evlist.value()[z]->raw(o);
|
||||||
|
//qint64 time = evlist.value()[z]->time(o);
|
||||||
|
if (apneaLikeChannels.size()==1) {
|
||||||
|
myMatch->updateMinMaxValues(sec);
|
||||||
|
}
|
||||||
if (myMatch->compare (sec , myMatch->compareValue)) {
|
if (myMatch->compare (sec , myMatch->compareValue)) {
|
||||||
// save value in map
|
// save value in map
|
||||||
auto it = values.find(code);
|
auto it = values.find(code);
|
||||||
@ -935,14 +1079,12 @@ void DailySearchTab::find(QDate& date) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void DailySearchTab::search(QDate date) {
|
void DailySearchTab::search(QDate date) {
|
||||||
state = searching;
|
setState( searching );
|
||||||
if (!date.isValid()) {
|
if (!date.isValid()) {
|
||||||
qWarning() << "DailySearchTab::find invalid date." << date;
|
qWarning() << "DailySearchTab::find invalid date." << date;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//addMatchButton->setEnabled(false);
|
|
||||||
startButton->setEnabled(false);
|
startButton->setEnabled(false);
|
||||||
hideResults(false);
|
|
||||||
match->foundString.clear();
|
match->foundString.clear();
|
||||||
passFound=0;
|
passFound=0;
|
||||||
while (date >= earliestDate) {
|
while (date >= earliestDate) {
|
||||||
@ -966,25 +1108,14 @@ void DailySearchTab::addItem(QDate date, QString value,Qt::Alignment alignment)
|
|||||||
|
|
||||||
void DailySearchTab::endOfPass() {
|
void DailySearchTab::endOfPass() {
|
||||||
cmdDescList->show();
|
cmdDescList->show();
|
||||||
startButtonMode=false; // display Continue;
|
|
||||||
QString display;
|
QString display;
|
||||||
if ((passFound >= passDisplayLimit) && (daysProcessed<daysTotal)) {
|
if ((passFound >= passDisplayLimit) && (daysProcessed<daysTotal)) {
|
||||||
state = waitForContinue;
|
setState( waitForContinue );
|
||||||
startButton->setEnabled(true);
|
|
||||||
setText(startButton,(tr("Continue Search")));
|
|
||||||
setColor(startButton,green);
|
|
||||||
} else if (daysFound>0) {
|
} else if (daysFound>0) {
|
||||||
state = endOfSeaching;
|
setState( endOfSeaching );
|
||||||
startButton->setEnabled(false);
|
|
||||||
setText(startButton,tr("End of Search"));
|
|
||||||
setColor(startButton,red);
|
|
||||||
} else {
|
} else {
|
||||||
state = endOfSeaching;
|
setState( noDataFound );
|
||||||
startButton->setEnabled(false);
|
|
||||||
setText(startButton,tr("No Matches"));
|
|
||||||
setColor(startButton,red);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
displayStatistics();
|
displayStatistics();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1005,7 +1136,6 @@ void DailySearchTab::setCommandPopupEnabled(bool on) {
|
|||||||
commandPopupEnabled=true;
|
commandPopupEnabled=true;
|
||||||
hideCommand();
|
hideCommand();
|
||||||
commandList->show();
|
commandList->show();
|
||||||
hideResults(true);
|
|
||||||
} else {
|
} else {
|
||||||
commandPopupEnabled=false;
|
commandPopupEnabled=false;
|
||||||
commandList->hide();
|
commandList->hide();
|
||||||
@ -1017,6 +1147,7 @@ void DailySearchTab::process_match_info(QString text, int topic) {
|
|||||||
// here to select new search criteria
|
// here to select new search criteria
|
||||||
// must reset all variables and label, button, etc
|
// must reset all variables and label, button, etc
|
||||||
clearMatch() ;
|
clearMatch() ;
|
||||||
|
//DEBUGFC QQ("name",match->matchName) O(match->opCodeStr) O(match->compareString) O(match->units) O(selectUnits->text());
|
||||||
commandWidget->show();
|
commandWidget->show();
|
||||||
match->matchName = text;
|
match->matchName = text;
|
||||||
// get item selected
|
// get item selected
|
||||||
@ -1048,8 +1179,8 @@ void DailySearchTab::process_match_info(QString text, int topic) {
|
|||||||
setoperation( OP_INVALID ,notUsed);
|
setoperation( OP_INVALID ,notUsed);
|
||||||
break;
|
break;
|
||||||
case ST_DAYS_SKIPPED :
|
case ST_DAYS_SKIPPED :
|
||||||
setResult(DS_ROW_HEADER,1,QDate(),tr("No Data\nJumps to Date's Details "));
|
setResult(DS_ROW_HEADER,1,QDate(),"");
|
||||||
match->nextTab = TW_DETAILED ;
|
// there is no graphs available in daily. or in the lefti sidebar so no jump match->nextTab = TW_DETAILED ;
|
||||||
setoperation(OP_NO_PARMS,notUsed);
|
setoperation(OP_NO_PARMS,notUsed);
|
||||||
break;
|
break;
|
||||||
case ST_DISABLED_SESSIONS :
|
case ST_DISABLED_SESSIONS :
|
||||||
@ -1088,6 +1219,9 @@ void DailySearchTab::process_match_info(QString text, int topic) {
|
|||||||
selectDouble->setValue(5.0);
|
selectDouble->setValue(5.0);
|
||||||
selectDouble->setSingleStep(0.1);
|
selectDouble->setSingleStep(0.1);
|
||||||
break;
|
break;
|
||||||
|
case ST_CLEAR :
|
||||||
|
case ST_APNEA_ALL :
|
||||||
|
break; // should never get here
|
||||||
case ST_APNEA_LENGTH :
|
case ST_APNEA_LENGTH :
|
||||||
DaysWithFileErrors = 0;
|
DaysWithFileErrors = 0;
|
||||||
|
|
||||||
@ -1141,14 +1275,13 @@ void DailySearchTab::process_match_info(QString text, int topic) {
|
|||||||
|
|
||||||
addMatchButton->setText(tr("add another match?"));
|
addMatchButton->setText(tr("add another match?"));
|
||||||
addMatchButton->setVisible(true);
|
addMatchButton->setVisible(true);
|
||||||
|
setState( waitForStart );
|
||||||
|
|
||||||
if (match->operationOpCode == OP_NO_PARMS ) {
|
if (match->operationOpCode == OP_NO_PARMS ) {
|
||||||
match->units = "";
|
|
||||||
match->compareString="";
|
|
||||||
// auto start searching
|
// auto start searching
|
||||||
setText(startButton,opCodeStr(match->operationOpCode));
|
setState (autoStart);
|
||||||
setColor(startButton,red);
|
//match->units = "";
|
||||||
startButtonMode=true;
|
//match->compareString="";
|
||||||
on_startButton_clicked();
|
on_startButton_clicked();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -1158,7 +1291,7 @@ void DailySearchTab::process_match_info(QString text, int topic) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void DailySearchTab::on_operationButton_clicked() {
|
void DailySearchTab::on_operationButton_clicked() {
|
||||||
state = waitForStart;
|
setState( waitForStart );
|
||||||
// only gets here for string operations
|
// only gets here for string operations
|
||||||
if (match->operationOpCode == OP_CONTAINS ) {
|
if (match->operationOpCode == OP_CONTAINS ) {
|
||||||
match->operationOpCode = OP_WILDCARD;
|
match->operationOpCode = OP_WILDCARD;
|
||||||
@ -1174,7 +1307,7 @@ void DailySearchTab::on_operationButton_clicked() {
|
|||||||
|
|
||||||
void DailySearchTab::on_operationCombo_activated(int index) {
|
void DailySearchTab::on_operationCombo_activated(int index) {
|
||||||
// only gets here for numeric comparisions.
|
// only gets here for numeric comparisions.
|
||||||
state = waitForStart;
|
setState( waitForStart );
|
||||||
QString text = operationCombo->itemText(index);
|
QString text = operationCombo->itemText(index);
|
||||||
OpCode opCode = opCodeMap[text];
|
OpCode opCode = opCodeMap[text];
|
||||||
match->operationOpCode = opCode;
|
match->operationOpCode = opCode;
|
||||||
@ -1185,10 +1318,7 @@ void DailySearchTab::on_operationCombo_activated(int index) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void DailySearchTab::on_matchButton_clicked() {
|
void DailySearchTab::on_matchButton_clicked() {
|
||||||
if (state == endOfSeaching || state == waitForContinue) {
|
setState (matching);
|
||||||
on_clearButton_clicked();
|
|
||||||
}
|
|
||||||
setColor(startButton,grey);
|
|
||||||
setCommandPopupEnabled(!commandPopupEnabled);
|
setCommandPopupEnabled(!commandPopupEnabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1212,14 +1342,7 @@ void DailySearchTab::on_helpButton_clicked() {
|
|||||||
|
|
||||||
void DailySearchTab::on_clearButton_clicked()
|
void DailySearchTab::on_clearButton_clicked()
|
||||||
{
|
{
|
||||||
clrCmdDescList();
|
setState( reset);
|
||||||
matches.clear();
|
|
||||||
match = matches.addMatch();
|
|
||||||
addMatchButton->setEnabled(true);
|
|
||||||
addMatchButton->setVisible(false);
|
|
||||||
QCoreApplication::processEvents();
|
|
||||||
clearMatch();
|
|
||||||
state = waitForSearchParameters;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void DailySearchTab::setOperationPopupEnabled(bool on) {
|
void DailySearchTab::setOperationPopupEnabled(bool on) {
|
||||||
@ -1297,8 +1420,7 @@ void DailySearchTab::hideResults(bool hide) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
progressBar->setMinimumHeight(matchButton->height());
|
progressBar->setMinimumHeight(matchButton->height());
|
||||||
progressBar->setVisible(!hide);
|
//summaryWidget->setVisible(!hide);
|
||||||
summaryWidget->setVisible(!hide);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QSize DailySearchTab::textsize(QFont font ,QString text) {
|
QSize DailySearchTab::textsize(QFont font ,QString text) {
|
||||||
@ -1321,8 +1443,6 @@ void DailySearchTab::clearMatch()
|
|||||||
addMatchButton->setVisible(matches.size()>1);
|
addMatchButton->setVisible(matches.size()>1);
|
||||||
|
|
||||||
startButton->setText(tr("Start Search"));
|
startButton->setText(tr("Start Search"));
|
||||||
setColor(startButton,grey);
|
|
||||||
startButtonMode=true;
|
|
||||||
startButton->setEnabled( false);
|
startButton->setEnabled( false);
|
||||||
|
|
||||||
// hide widgets
|
// hide widgets
|
||||||
@ -1339,7 +1459,7 @@ void DailySearchTab::clearMatch()
|
|||||||
selectInteger->hide();
|
selectInteger->hide();
|
||||||
selectString->hide();
|
selectString->hide();
|
||||||
selectUnits->hide();
|
selectUnits->hide();
|
||||||
hideResults(true);
|
selectUnits->clear();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1358,19 +1478,15 @@ void DailySearchTab::on_addMatchButton_clicked() {
|
|||||||
|
|
||||||
Match* nmatch = matches.addMatch();
|
Match* nmatch = matches.addMatch();
|
||||||
match = nmatch;
|
match = nmatch;
|
||||||
setColor(addMatchButton,grey);
|
|
||||||
clearMatch();
|
clearMatch();
|
||||||
|
setState(multpileMatches);
|
||||||
on_matchButton_clicked();
|
on_matchButton_clicked();
|
||||||
}
|
}
|
||||||
|
|
||||||
void DailySearchTab::on_startButton_clicked() {
|
void DailySearchTab::on_startButton_clicked() {
|
||||||
|
setState( searching );
|
||||||
clearStatistics();
|
clearStatistics();
|
||||||
addMatchButton->setVisible(matches.size()<=1);
|
if (startButton_1stPass) {
|
||||||
setColor(addMatchButton,grey);
|
|
||||||
|
|
||||||
setColor(startButton,grey);
|
|
||||||
hideResults(false);
|
|
||||||
if (startButtonMode) {
|
|
||||||
|
|
||||||
match->createMatchDescription();
|
match->createMatchDescription();
|
||||||
QLabel* label = getCmdDescLabel();
|
QLabel* label = getCmdDescLabel();
|
||||||
@ -1379,11 +1495,9 @@ void DailySearchTab::on_startButton_clicked() {
|
|||||||
|
|
||||||
commandWidget->hide();
|
commandWidget->hide();
|
||||||
cmdDescList->show();
|
cmdDescList->show();
|
||||||
QCoreApplication::processEvents();
|
|
||||||
search (latestDate );
|
search (latestDate );
|
||||||
startButtonMode=false;
|
startButton_1stPass=false;
|
||||||
} else {
|
} else {
|
||||||
QCoreApplication::processEvents();
|
|
||||||
search (nextDate );
|
search (nextDate );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1410,6 +1524,7 @@ void DailySearchTab::on_activated(GPushButton* item ) {
|
|||||||
row-=DS_ROW_DATA;
|
row-=DS_ROW_DATA;
|
||||||
|
|
||||||
item->setIcon (*m_icon_selected);
|
item->setIcon (*m_icon_selected);
|
||||||
|
if (match->searchTopic == ST_DAYS_SKIPPED) return;
|
||||||
daily->LoadDate( item->date() );
|
daily->LoadDate( item->date() );
|
||||||
if ((col!=0) && match->nextTab>=0 && match->nextTab < dailyTabWidget->count()) {
|
if ((col!=0) && match->nextTab>=0 && match->nextTab < dailyTabWidget->count()) {
|
||||||
dailyTabWidget->setCurrentIndex(match->nextTab); // 0 = details ; 1=events =2 notes ; 3=bookarks;
|
dailyTabWidget->setCurrentIndex(match->nextTab); // 0 = details ; 1=events =2 notes ; 3=bookarks;
|
||||||
@ -1471,7 +1586,13 @@ void DailySearchTab::displayStatistics() {
|
|||||||
// display associated value
|
// display associated value
|
||||||
extra ="";
|
extra ="";
|
||||||
if (match->minMaxValid) {
|
if (match->minMaxValid) {
|
||||||
extra = QString("%1 / %2").arg(match->valueToString(match->minInteger)).arg(match->valueToString(match->maxInteger));
|
if (match->valueMode == secondsDisplayString) {
|
||||||
|
extra = QString("%1 / %2").arg(match->minInteger).arg(match->maxInteger);
|
||||||
|
} else {
|
||||||
|
QString amin = match->valueToString(match->minInteger);
|
||||||
|
QString amax = match->valueToString(match->maxInteger);
|
||||||
|
extra = QString("%1 / %2").arg(amin).arg(amax);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (extra.size()>0) {
|
if (extra.size()>0) {
|
||||||
setText(summaryMinMax,extra);
|
setText(summaryMinMax,extra);
|
||||||
@ -1531,10 +1652,8 @@ void DailySearchTab::criteriaChanged() {
|
|||||||
setText(startButton,tr("Start Search"));
|
setText(startButton,tr("Start Search"));
|
||||||
setColor(startButton,green);
|
setColor(startButton,green);
|
||||||
setColor(addMatchButton , green);
|
setColor(addMatchButton , green);
|
||||||
startButtonMode=true;
|
|
||||||
startButton->setEnabled( true);
|
startButton->setEnabled( true);
|
||||||
|
|
||||||
hideResults(true);
|
|
||||||
|
|
||||||
match->minMaxValid = false;
|
match->minMaxValid = false;
|
||||||
match->minInteger = 0;
|
match->minInteger = 0;
|
||||||
@ -1547,7 +1666,6 @@ void DailySearchTab::criteriaChanged() {
|
|||||||
daysFound=0;
|
daysFound=0;
|
||||||
daysSkipped=0;
|
daysSkipped=0;
|
||||||
daysProcessed=0;
|
daysProcessed=0;
|
||||||
startButtonMode=true;
|
|
||||||
|
|
||||||
//initialize progress bar.
|
//initialize progress bar.
|
||||||
|
|
||||||
@ -1633,7 +1751,7 @@ QString DailySearchTab::opCodeStr(OpCode opCode) {
|
|||||||
case OP_WILDCARD : return "*?";
|
case OP_WILDCARD : return "*?";
|
||||||
case OP_INVALID:
|
case OP_INVALID:
|
||||||
case OP_END_NUMERIC:
|
case OP_END_NUMERIC:
|
||||||
case OP_NO_PARMS : return tr("Automatic Starting");
|
case OP_NO_PARMS : // return tr("Automatic Starting");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return QString();
|
return QString();
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
#include <QRadioButton>
|
#include <QRadioButton>
|
||||||
|
#include <QAbstractButton>
|
||||||
#include <QButtonGroup>
|
#include <QButtonGroup>
|
||||||
#include <QTabWidget>
|
#include <QTabWidget>
|
||||||
#include <QMap>
|
#include <QMap>
|
||||||
@ -46,7 +47,7 @@ class Daily; //forward declaration.
|
|||||||
|
|
||||||
enum ValueMode { invalidValueMode , notUsed , minutesToMs , hoursToMs , hundredths , opWhole , displayWhole , opString , displayString, secondsDisplayString};
|
enum ValueMode { invalidValueMode , notUsed , minutesToMs , hoursToMs , hundredths , opWhole , displayWhole , opString , displayString, secondsDisplayString};
|
||||||
|
|
||||||
enum SearchTopic { ST_NONE , ST_DAYS_SKIPPED , 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_APNEA_LENGTH , ST_EVENT };
|
enum SearchTopic { ST_NONE , ST_DAYS_SKIPPED , 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_APNEA_LENGTH , ST_APNEA_ALL , ST_CLEAR , 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.
|
||||||
@ -103,6 +104,7 @@ public:
|
|||||||
Matches() ;
|
Matches() ;
|
||||||
~Matches() ;
|
~Matches() ;
|
||||||
Match* addMatch();
|
Match* addMatch();
|
||||||
|
Match* reset() {clear();return addMatch();};
|
||||||
void clear() ;
|
void clear() ;
|
||||||
Match* at(int offset) {
|
Match* at(int offset) {
|
||||||
if (offset<0 || offset>= size()) return empty();
|
if (offset<0 || offset>= size()) return empty();
|
||||||
@ -126,8 +128,17 @@ public:
|
|||||||
void updateEvents(ChannelID id,QString fullname);
|
void updateEvents(ChannelID id,QString fullname);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum STATE { INIT , waitForSearchParameters , waitForStart , searching , endOfSeaching , waitForContinue };
|
enum STATE { reset = 0 ,
|
||||||
STATE state;
|
waitForSearchTopic = 1 ,
|
||||||
|
matching = 2 ,
|
||||||
|
multpileMatches =3 ,
|
||||||
|
waitForStart =4 ,
|
||||||
|
autoStart =5 ,
|
||||||
|
searching =6 ,
|
||||||
|
endOfSeaching =7 ,
|
||||||
|
waitForContinue =8 ,
|
||||||
|
noDataFound =9 };
|
||||||
|
STATE state = waitForSearchTopic;
|
||||||
|
|
||||||
QString red = "#ff8080";
|
QString red = "#ff8080";
|
||||||
QString green="#80ff80";
|
QString green="#80ff80";
|
||||||
@ -188,7 +199,7 @@ private:
|
|||||||
// Command Widget
|
// Command Widget
|
||||||
QListWidget* commandList;
|
QListWidget* commandList;
|
||||||
QButtonGroup* buttonGroup;
|
QButtonGroup* buttonGroup;
|
||||||
QRadioButton* lastButton;
|
QAbstractButton* lastButton = nullptr;
|
||||||
qint32 lastTopic = ST_NONE;
|
qint32 lastTopic = ST_NONE;
|
||||||
QPushButton* commandButton;
|
QPushButton* commandButton;
|
||||||
QComboBox* operationCombo;
|
QComboBox* operationCombo;
|
||||||
@ -208,12 +219,16 @@ private:
|
|||||||
|
|
||||||
QMap <QString,OpCode> opCodeMap;
|
QMap <QString,OpCode> opCodeMap;
|
||||||
QString opCodeStr(OpCode);
|
QString opCodeStr(OpCode);
|
||||||
|
QVector<ChannelID> apneaLikeChannels;
|
||||||
|
|
||||||
bool helpMode=false;
|
bool helpMode=false;
|
||||||
QString helpString = helpStr();
|
QString helpString = helpStr();
|
||||||
void clearMatch();
|
void clearMatch();
|
||||||
|
void debugStates();
|
||||||
|
void setState(STATE);
|
||||||
void createUi();
|
void createUi();
|
||||||
void populateControl();
|
void populateControl();
|
||||||
|
void initApneaLikeChannels();
|
||||||
QSize setText(QPushButton*,QString);
|
QSize setText(QPushButton*,QString);
|
||||||
QSize setText(QLabel*,QString);
|
QSize setText(QLabel*,QString);
|
||||||
QSize textsize(QFont font ,QString text);
|
QSize textsize(QFont font ,QString text);
|
||||||
@ -236,6 +251,7 @@ private:
|
|||||||
void setOperation( );
|
void setOperation( );
|
||||||
void hideResults(bool);
|
void hideResults(bool);
|
||||||
void hideCommand(bool showcommand=false);
|
void hideCommand(bool showcommand=false);
|
||||||
|
void showOnlyAhiChannels(bool);
|
||||||
void connectUi(bool);
|
void connectUi(bool);
|
||||||
|
|
||||||
|
|
||||||
@ -251,7 +267,7 @@ private:
|
|||||||
EventDataType calculateAhi(Day* day);
|
EventDataType calculateAhi(Day* day);
|
||||||
|
|
||||||
bool createUiFinished=false;
|
bool createUiFinished=false;
|
||||||
bool startButtonMode=true;
|
bool startButton_1stPass = true;
|
||||||
bool commandPopupEnabled=false;
|
bool commandPopupEnabled=false;
|
||||||
|
|
||||||
QDate earliestDate ;
|
QDate earliestDate ;
|
||||||
@ -274,7 +290,7 @@ void process_match_info(QString text, int topic);
|
|||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
private slots:
|
private slots:
|
||||||
void on_radioGroupButton_clicked(QAbstractButton* );
|
void on_matchGroupButton_toggled(QAbstractButton* );
|
||||||
void on_startButton_clicked();
|
void on_startButton_clicked();
|
||||||
void on_clearButton_clicked();
|
void on_clearButton_clicked();
|
||||||
void on_matchButton_clicked();
|
void on_matchButton_clicked();
|
||||||
|
Loading…
Reference in New Issue
Block a user