OSCAR-code/oscar/dailySearchTab.h

338 lines
9.4 KiB
C
Raw Normal View History

2023-02-06 16:06:03 +00:00
/* search GUI Headers
*
* Copyright (c) 2019-2024 The OSCAR Team
2023-02-06 16:06:03 +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. */
#ifndef SEARCHDAILY_H
#define SEARCHDAILY_H
#include <QDate>
#include <QTextDocument>
#include <QListWidget>
#include <QListWidgetItem>
2023-02-06 16:06:03 +00:00
#include <QList>
#include <QFrame>
2023-02-06 16:06:03 +00:00
#include <QWidget>
#include <QPushButton>
#include <QRadioButton>
2024-02-07 01:39:48 +00:00
#include <QAbstractButton>
#include <QButtonGroup>
2023-02-06 16:06:03 +00:00
#include <QTabWidget>
#include <QMap>
#include <QTextEdit>
2023-02-06 16:06:03 +00:00
#include "SleepLib/common.h"
#include "SleepLib/machine_common.h"
2023-02-06 16:06:03 +00:00
class GPushButton;
2023-02-06 16:06:03 +00:00
class QWidget ;
class QDialog ;
class QComboBox ;
class QListWidget ;
2023-02-23 21:00:40 +00:00
class QProgressBar ;
2023-02-06 16:06:03 +00:00
class QHBoxLayout ;
class QVBoxLayout ;
class QLabel ;
class QDoubleSpinBox ;
class QSpinBox ;
class QLineEdit ;
class QTableWidget ;
class QTableWidgetItem ;
class QSizeF ;
2023-02-06 16:06:03 +00:00
class Day; //forward declaration.
class Daily; //forward declaration.
enum ValueMode { invalidValueMode , notUsed , minutesToMs , hoursToMs , hundredths , opWhole , displayWhole , opString , displayString, secondsDisplayString};
enum SearchTopic { ST_NONE , ST_DAYS_SKIPPED , ST_DISABLED_SESSIONS , ST_JOURNAL , 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 {
//DO NOT CHANGE NUMERIC OP CODES because THESE VALUES impact compare operations.
// start of fixed codes - do not modifyusage bit1(1)==> Less ; bit2(2)==>greater bit3(4)==>Equal;
OP_INVALID , OP_LT , OP_GT , OP_NE , OP_EQ , OP_LE , OP_GE , OP_END_NUMERIC ,
// end of fixed codes
OP_CONTAINS , OP_WILDCARD , OP_NO_PARMS /*Self starting*/};
class Match
{
public:
void stateMachine();
Match(bool valid=false ) {this->valid=valid;};
virtual ~Match( ) {};
bool isValid() {return valid;};
bool isEmpty() {return !valid || searchTopic==ST_NONE;};
QString matchName;
QString opCodeStr;
QString compareString;
QString units;
QString createMatchDescription();
SearchTopic searchTopic = ST_NONE;
ChannelID channelId = 0;
OpCode operationOpCode = OP_INVALID;
ValueMode valueMode;
qint32 foundValue ;
QString foundString;
bool minMaxValid = false;
qint32 minInteger ;
qint32 maxInteger ;
qint32 compareValue=0;
void updateMinMaxValues(qint32 value) ;
bool compare(int,int);
bool compare(QString aa , QString bb);
QRegExp searchPatterToRegex (QString searchPattern);
QString formatTime (qint32) ;
int nextTab;
QString valueToString(int value, QString empty = "");
double maxDouble;
double minDouble;
QString label;
private:
bool valid=false;
};
class Matches
{
public:
Matches() ;
~Matches() ;
Match* addMatch();
2024-02-07 01:39:48 +00:00
Match* reset() {clear();return addMatch();};
void clear() ;
Match* at(int offset) {
if (offset<0 || offset>= size()) return empty();
return matchList[offset];
};
Match* empty();
int size() {return inuse;};
private:
int inuse = 0;
int created() {return matchList.size();};
Match _empty = Match();
QList<Match*> matchList;
};
2023-02-06 16:06:03 +00:00
class DailySearchTab : public QWidget
{
Q_OBJECT
public:
DailySearchTab ( Daily* daily , QWidget* , QTabWidget* ) ;
2023-02-06 16:06:03 +00:00
~DailySearchTab();
void updateEvents(ChannelID id,QString fullname);
2023-02-06 16:06:03 +00:00
private:
2024-02-07 01:39:48 +00:00
enum STATE { reset = 0 ,
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 green="#80ff80";
QString grey= "#c0c0c0";
QString blue= "#8080ff";
2023-02-06 16:06:03 +00:00
// these values are hard coded. because dynamic translation might not do the proper assignment.
// Dynamic code is commented out using c preprocess #if #endif
const int TW_NONE = -1;
const int TW_DETAILED = 0;
const int TW_EVENTS = 1;
const int TW_NOTES = 2;
const int TW_BOOKMARK = 3;
const int TW_SEARCH = 4;
const int dateRole = Qt::UserRole;
const int valueRole = 1+Qt::UserRole;
const int passDisplayLimit = 30;
2023-02-23 20:37:25 +00:00
const int stringDisplayLen = 80;
2023-02-06 16:06:03 +00:00
Daily* daily;
QWidget* parent;
QWidget* searchTabWidget;
QTabWidget* dailyTabWidget;
QVBoxLayout* searchTabLayout;
2023-02-14 02:54:23 +00:00
2023-06-06 22:06:09 +00:00
QTableWidget* resultTable;
QFrame* cmdDescList;
quint32 cmdDescLabelsUsed = 0;
QVBoxLayout* cmdDescLayout;
QVector<QLabel*> cmdDescLabels;
QLabel* getCmdDescLabel();
void clrCmdDescList();
2023-06-06 22:06:09 +00:00
// start Widget
QWidget* startWidget;
QHBoxLayout* startLayout;
QPushButton* matchButton;
QPushButton* clearButton;
QPushButton* startButton;
QPushButton* addMatchButton;
// Command command Widget
QWidget* commandWidget;
QHBoxLayout* commandLayout;
2023-02-23 20:37:25 +00:00
QPushButton* helpButton;
QTextEdit* helpText;
2023-05-10 11:46:19 +00:00
QProgressBar* progressBar;
2023-02-14 02:54:23 +00:00
// control Widget
2023-02-14 02:54:23 +00:00
QWidget* summaryWidget;
QHBoxLayout* summaryLayout;
2023-02-14 02:54:23 +00:00
// Command Widget
QListWidget* commandList;
QButtonGroup* buttonGroup;
2024-02-07 01:39:48 +00:00
QAbstractButton* lastButton = nullptr;
qint32 lastTopic = ST_NONE;
QPushButton* commandButton;
QComboBox* operationCombo;
QPushButton* operationButton;
QLabel* selectUnits;
QDoubleSpinBox* selectDouble;
QSpinBox* selectInteger;
QLineEdit* selectString;
2023-02-14 02:54:23 +00:00
2023-06-06 22:06:09 +00:00
QPushButton* summaryProgress;
QPushButton* summaryFound;
QPushButton* summaryMinMax;
2023-02-14 02:54:23 +00:00
QIcon* m_icon_selected;
QIcon* m_icon_notSelected;
QIcon* m_icon_configure;
2023-02-14 02:54:23 +00:00
2023-02-23 20:37:25 +00:00
QMap <QString,OpCode> opCodeMap;
QString opCodeStr(OpCode);
2024-02-07 01:39:48 +00:00
QVector<ChannelID> apneaLikeChannels;
2023-02-06 16:06:03 +00:00
2023-02-14 02:54:23 +00:00
bool helpMode=false;
QString helpString = helpStr();
void clearMatch();
2024-02-07 01:39:48 +00:00
void setState(STATE);
2023-02-06 16:06:03 +00:00
void createUi();
void populateControl();
2024-02-07 01:39:48 +00:00
void initApneaLikeChannels();
QSize setText(QPushButton*,QString);
QSize setText(QLabel*,QString);
QSize textsize(QFont font ,QString text);
void setColor(QPushButton*,QString);
Matches matches;
Match* match = matches.empty();
void search(QDate date);
void find(QDate&);
bool matchFind(Match* myMatch ,Day* day,QDate& date , Qt::Alignment& alignment);
2023-02-06 16:06:03 +00:00
void criteriaChanged();
void endOfPass();
void displayStatistics();
void clearStatistics();
void setResult(int row,int column,QDate date,QString value);
2023-02-06 16:06:03 +00:00
2023-02-23 20:37:25 +00:00
void addItem(QDate date, QString value, Qt::Alignment alignment);
void setCommandPopupEnabled(bool );
void setOperationPopupEnabled(bool );
void setOperation( );
void hideResults(bool);
2023-06-06 22:06:09 +00:00
void hideCommand(bool showcommand=false);
2024-02-07 01:39:48 +00:00
void showOnlyAhiChannels(bool);
void connectUi(bool);
QString helpStr();
2023-02-06 16:06:03 +00:00
QString centerLine(QString line);
2023-02-23 20:37:25 +00:00
QRegExp searchPatterToRegex (QString wildcard);
void addCommandItem(QString str,int topic);
float commandListItemMaxWidth = 0;
float commandListItemHeight = 0;
QSet<QString> commandEventList;
2023-02-23 20:37:25 +00:00
EventDataType calculateAhi(Day* day);
2023-02-06 16:06:03 +00:00
bool createUiFinished=false;
2024-02-07 01:39:48 +00:00
bool startButton_1stPass = true;
bool commandPopupEnabled=false;
2023-02-06 16:06:03 +00:00
QDate earliestDate ;
QDate latestDate ;
2023-02-06 16:06:03 +00:00
QDate nextDate;
//
2023-02-06 16:06:03 +00:00
int daysTotal;
int daysSkipped;
int daysProcessed;
2023-02-06 16:06:03 +00:00
int daysFound;
int passFound;
int DaysWithFileErrors;
2023-02-06 16:06:03 +00:00
void setoperation(OpCode opCode,ValueMode mode) ;
void process_match_info(QString text, int topic);
2023-02-06 16:06:03 +00:00
public slots:
private slots:
2024-02-07 01:39:48 +00:00
void on_matchGroupButton_toggled(QAbstractButton* );
2023-02-06 16:06:03 +00:00
void on_startButton_clicked();
2023-02-23 20:37:25 +00:00
void on_clearButton_clicked();
void on_matchButton_clicked();
void on_addMatchButton_clicked();
2023-02-23 20:37:25 +00:00
void on_helpButton_clicked();
void on_commandButton_clicked();
void on_operationButton_clicked();
void on_operationCombo_activated(int index);
2023-02-06 16:06:03 +00:00
void on_intValueChanged(int);
void on_doubleValueChanged(double);
void on_textEdited(QString);
void on_activated(GPushButton*);
};
class GPushButton : public QPushButton
{
Q_OBJECT
public:
GPushButton (int,int,QDate,DailySearchTab* parent, ChannelID code=0, quint32 offset=0);
virtual ~GPushButton();
int row() { return _row;};
int column() { return _column;};
QDate date() { return _date;};
ChannelID code() {return _code;};
quint32 offset() {return _offset;};
void setDate(QDate date) {_date=date;};
void setChannelId(ChannelID code) {_code=code;};
void setOffset(quint32 offset) {_offset=offset;};
private:
const DailySearchTab* _parent;
const int _row;
const int _column;
QDate _date;
ChannelID _code;
quint32 _offset;
signals:
void activated(GPushButton*);
public slots:
void on_clicked();
2023-02-06 16:06:03 +00:00
};
#endif // SEARCHDAILY_H