2023-02-06 16:06:03 +00:00
|
|
|
/* search GUI Headers
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019-2022 The OSCAR Team
|
|
|
|
*
|
|
|
|
* 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>
|
2023-05-08 12:47:18 +00:00
|
|
|
#include <QListWidgetItem>
|
2023-02-06 16:06:03 +00:00
|
|
|
#include <QList>
|
|
|
|
#include <QWidget>
|
2023-05-08 12:47:18 +00:00
|
|
|
#include <QPushButton>
|
2023-02-06 16:06:03 +00:00
|
|
|
#include <QTabWidget>
|
2023-02-11 22:04:21 +00:00
|
|
|
#include <QMap>
|
2023-03-27 13:38:07 +00:00
|
|
|
#include <QTextEdit>
|
2023-02-06 16:06:03 +00:00
|
|
|
#include "SleepLib/common.h"
|
|
|
|
|
2023-05-08 12:47:18 +00:00
|
|
|
class GPushButton;
|
2023-02-06 16:06:03 +00:00
|
|
|
class QWidget ;
|
2023-05-08 12:47:18 +00:00
|
|
|
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 ;
|
2023-05-08 12:47:18 +00:00
|
|
|
class QSizeF ;
|
2023-02-06 16:06:03 +00:00
|
|
|
|
|
|
|
class Day; //forward declaration.
|
|
|
|
class Daily; //forward declaration.
|
|
|
|
|
|
|
|
class DailySearchTab : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2023-02-28 01:45:58 +00:00
|
|
|
DailySearchTab ( Daily* daily , QWidget* , QTabWidget* ) ;
|
2023-02-06 16:06:03 +00:00
|
|
|
~DailySearchTab();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// 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-28 01:45:58 +00:00
|
|
|
enum ValueMode { invalidValueMode , notUsed , minutesToMs , hoursToMs , hundredths , opWhole , displayWhole , opString , displayString};
|
2023-02-23 20:37:25 +00:00
|
|
|
|
2023-02-28 01:45:58 +00:00
|
|
|
enum SearchTopic { ST_NONE = 0 , ST_DAYS_SKIPPED = 1 , ST_DISABLED_SESSIONS = 2 , ST_NOTES = 3 , ST_NOTES_STRING , ST_BOOKMARKS , ST_BOOKMARKS_STRING , ST_AHI , ST_SESSION_LENGTH , ST_SESSIONS_QTY , ST_DAILY_USAGE, ST_EVENT };
|
2023-02-24 23:19:25 +00:00
|
|
|
|
2023-02-23 20:37:25 +00:00
|
|
|
enum OpCode {
|
|
|
|
//DO NOT CHANGE NUMERIC OP CODES because THESE VALUES impact compare operations.
|
|
|
|
// start of fixed codes
|
|
|
|
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 };
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
// start Widget
|
|
|
|
QWidget* startWidget;
|
|
|
|
QHBoxLayout* startLayout;
|
|
|
|
QPushButton* startButton;
|
|
|
|
QPushButton* matchButton;
|
|
|
|
QPushButton* clearButton;
|
2023-05-08 12:47:18 +00:00
|
|
|
|
|
|
|
// Command command Widget
|
|
|
|
QWidget* commandWidget;
|
|
|
|
QHBoxLayout* commandLayout;
|
2023-02-11 22:04:21 +00:00
|
|
|
|
2023-02-23 20:37:25 +00:00
|
|
|
QPushButton* helpButton;
|
2023-03-27 13:38:07 +00:00
|
|
|
QTextEdit* helpText;
|
2023-02-11 22:04:21 +00:00
|
|
|
|
2023-05-10 11:46:19 +00:00
|
|
|
QProgressBar* progressBar;
|
2023-02-14 02:54:23 +00:00
|
|
|
|
2023-05-08 12:47:18 +00:00
|
|
|
// control Widget
|
2023-02-14 02:54:23 +00:00
|
|
|
|
2023-05-08 12:47:18 +00:00
|
|
|
QWidget* summaryWidget;
|
|
|
|
QHBoxLayout* summaryLayout;
|
2023-02-14 02:54:23 +00:00
|
|
|
|
2023-05-08 12:47:18 +00:00
|
|
|
// Command Widget
|
|
|
|
QListWidget* commandList;
|
|
|
|
// command Widget
|
|
|
|
QPushButton* commandButton;
|
|
|
|
QComboBox* operationCombo;
|
|
|
|
QPushButton* operationButton;
|
|
|
|
QLabel* selectUnits;
|
2023-02-11 22:04:21 +00:00
|
|
|
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
|
|
|
|
2023-02-11 22:04:21 +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);
|
2023-05-08 12:47:18 +00:00
|
|
|
OpCode operationOpCode = OP_INVALID;
|
2023-02-11 22:04:21 +00:00
|
|
|
|
2023-02-06 16:06:03 +00:00
|
|
|
|
2023-02-14 02:54:23 +00:00
|
|
|
bool helpMode=false;
|
2023-05-08 12:47:18 +00:00
|
|
|
QString helpString = helpStr();
|
2023-02-06 16:06:03 +00:00
|
|
|
void createUi();
|
2023-05-08 12:47:18 +00:00
|
|
|
void populateControl();
|
|
|
|
QSize setText(QPushButton*,QString);
|
|
|
|
QSize setText(QLabel*,QString);
|
|
|
|
QSize textsize(QFont font ,QString text);
|
2023-02-06 16:06:03 +00:00
|
|
|
|
2023-02-11 22:04:21 +00:00
|
|
|
void search(QDate date);
|
2023-02-28 01:45:58 +00:00
|
|
|
void find(QDate&);
|
2023-02-06 16:06:03 +00:00
|
|
|
void criteriaChanged();
|
|
|
|
void endOfPass();
|
2023-02-11 22:04:21 +00:00
|
|
|
void displayStatistics();
|
2023-05-08 12:47:18 +00:00
|
|
|
void setResult(int row,int column,QDate date,QString value);
|
2023-02-06 16:06:03 +00:00
|
|
|
|
2023-02-11 22:04:21 +00:00
|
|
|
|
2023-02-23 20:37:25 +00:00
|
|
|
void addItem(QDate date, QString value, Qt::Alignment alignment);
|
2023-02-11 22:04:21 +00:00
|
|
|
void setCommandPopupEnabled(bool );
|
|
|
|
void setOperationPopupEnabled(bool );
|
|
|
|
void setOperation( );
|
2023-05-08 12:47:18 +00:00
|
|
|
void hideResults(bool);
|
2023-06-06 22:06:09 +00:00
|
|
|
void hideCommand(bool showcommand=false);
|
2023-05-08 12:47:18 +00:00
|
|
|
void connectUi(bool);
|
|
|
|
|
2023-02-11 22:04:21 +00:00
|
|
|
|
|
|
|
QString helpStr();
|
2023-02-06 16:06:03 +00:00
|
|
|
QString centerLine(QString line);
|
2023-02-14 02:54:23 +00:00
|
|
|
QString formatTime (qint32) ;
|
2023-02-06 16:06:03 +00:00
|
|
|
QString convertRichText2Plain (QString rich);
|
2023-02-23 20:37:25 +00:00
|
|
|
QRegExp searchPatterToRegex (QString wildcard);
|
2023-05-08 12:47:18 +00:00
|
|
|
QListWidgetItem* calculateMaxSize(QString str,int topic);
|
|
|
|
float commandListItemMaxWidth = 0;
|
|
|
|
float commandListItemHeight = 0;
|
2023-02-23 20:37:25 +00:00
|
|
|
|
2023-02-11 22:04:21 +00:00
|
|
|
EventDataType calculateAhi(Day* day);
|
|
|
|
bool compare(int,int );
|
2023-02-23 20:37:25 +00:00
|
|
|
bool compare(QString aa , QString bb);
|
2023-02-28 01:45:58 +00:00
|
|
|
|
2023-02-06 16:06:03 +00:00
|
|
|
bool createUiFinished=false;
|
2023-02-11 22:04:21 +00:00
|
|
|
bool startButtonMode=true;
|
2023-05-08 12:47:18 +00:00
|
|
|
bool commandPopupEnabled=false;
|
2023-02-24 23:19:25 +00:00
|
|
|
SearchTopic searchTopic;
|
2023-02-06 16:06:03 +00:00
|
|
|
int nextTab;
|
2023-02-24 23:19:25 +00:00
|
|
|
int channelId;
|
2023-02-06 16:06:03 +00:00
|
|
|
|
2023-02-28 01:45:58 +00:00
|
|
|
QDate earliestDate ;
|
|
|
|
QDate latestDate ;
|
2023-02-06 16:06:03 +00:00
|
|
|
QDate nextDate;
|
|
|
|
|
2023-02-28 01:45:58 +00:00
|
|
|
//
|
2023-02-06 16:06:03 +00:00
|
|
|
int daysTotal;
|
|
|
|
int daysSkipped;
|
2023-02-28 01:45:58 +00:00
|
|
|
int daysProcessed;
|
2023-02-06 16:06:03 +00:00
|
|
|
int daysFound;
|
|
|
|
int passFound;
|
|
|
|
|
2023-05-08 12:47:18 +00:00
|
|
|
void setoperation(OpCode opCode,ValueMode mode) ;
|
2023-02-14 02:54:23 +00:00
|
|
|
|
|
|
|
ValueMode valueMode;
|
|
|
|
qint32 selectValue=0;
|
|
|
|
|
2023-02-06 16:06:03 +00:00
|
|
|
bool minMaxValid;
|
2023-02-14 02:54:23 +00:00
|
|
|
qint32 minInteger;
|
|
|
|
qint32 maxInteger;
|
|
|
|
void updateValues(qint32);
|
2023-02-11 22:04:21 +00:00
|
|
|
|
2023-02-14 02:54:23 +00:00
|
|
|
QString valueToString(int value, QString empty = "");
|
|
|
|
qint32 foundValue;
|
|
|
|
QString foundString;
|
2023-02-11 22:04:21 +00:00
|
|
|
|
|
|
|
double maxDouble;
|
|
|
|
double minDouble;
|
2023-02-06 16:06:03 +00:00
|
|
|
|
|
|
|
QTextDocument richText;
|
|
|
|
|
2023-02-11 22:04:21 +00:00
|
|
|
|
2023-02-06 16:06:03 +00:00
|
|
|
public slots:
|
|
|
|
private slots:
|
|
|
|
void on_startButton_clicked();
|
2023-02-23 20:37:25 +00:00
|
|
|
void on_clearButton_clicked();
|
2023-05-08 12:47:18 +00:00
|
|
|
void on_matchButton_clicked();
|
2023-02-23 20:37:25 +00:00
|
|
|
void on_helpButton_clicked();
|
2023-05-08 12:47:18 +00:00
|
|
|
|
|
|
|
void on_commandButton_clicked();
|
|
|
|
void on_operationButton_clicked();
|
|
|
|
|
|
|
|
void on_commandList_activated(QListWidgetItem* item);
|
|
|
|
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);
|
2023-05-08 12:47:18 +00:00
|
|
|
|
|
|
|
void on_activated(GPushButton*);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class GPushButton : public QPushButton
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
GPushButton (int,int,QDate,DailySearchTab* parent);
|
|
|
|
virtual ~GPushButton();
|
|
|
|
int row() { return _row;};
|
|
|
|
int column() { return _column;};
|
|
|
|
QDate date() { return _date;};
|
|
|
|
void setDate(QDate date) {_date=date;};
|
|
|
|
private:
|
|
|
|
const DailySearchTab* _parent;
|
|
|
|
const int _row;
|
|
|
|
const int _column;
|
|
|
|
QDate _date;
|
|
|
|
signals:
|
|
|
|
void activated(GPushButton*);
|
|
|
|
public slots:
|
|
|
|
void on_clicked();
|
2023-02-06 16:06:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SEARCHDAILY_H
|
|
|
|
|