OSCAR-code/oscar/dailySearchTab.h

206 lines
5.6 KiB
C
Raw Normal View History

2023-02-06 16:06:03 +00:00
/* search GUI Headers
*
* Copyright (c) 2019-2022 The OSCAR Team
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
*
* 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 <QList>
#include <QFrame>
2023-02-06 16:06:03 +00:00
#include <QWidget>
#include <QTabWidget>
#include <QMap>
2023-02-06 16:06:03 +00:00
#include "SleepLib/common.h"
class QWidget ;
2023-02-23 21:00:40 +00:00
class QProgressBar ;
2023-02-06 16:06:03 +00:00
class QHBoxLayout ;
class QVBoxLayout ;
class QPushButton ;
class QLabel ;
class QComboBox ;
class QDoubleSpinBox ;
class QSpinBox ;
class QLineEdit ;
class QTableWidget ;
class QTableWidgetItem ;
class Day; //forward declaration.
class Daily; //forward declaration.
class DailySearchTab : public QWidget
{
Q_OBJECT
public:
DailySearchTab ( Daily* daily , QWidget* , QTabWidget* ) ;
~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-23 21:00:40 +00:00
enum ValueMode { invalidValueMode, notUsed , minutesToMs ,hoursToMs, hundredths , opWhole , displayWhole , opString, displayString};
2023-02-23 20:37:25 +00:00
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 };
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;
2023-02-06 16:06:03 +00:00
QVBoxLayout* searchTabLayout;
QHBoxLayout* criteriaLayout;
2023-02-14 02:54:23 +00:00
QFrame * innerCriteriaFrame;
QHBoxLayout* innerCriteriaLayout;
2023-02-14 02:54:23 +00:00
2023-02-06 16:06:03 +00:00
QHBoxLayout* searchLayout;
QHBoxLayout* summaryLayout;
2023-02-23 20:37:25 +00:00
QPushButton* helpButton;
QLabel* helpInfo;
QComboBox* selectOperationCombo;
QPushButton* selectOperationButton;
QComboBox* selectCommandCombo;
QPushButton* selectCommandButton;
QPushButton* selectMatch;
QLabel* selectUnits;
2023-02-14 02:54:23 +00:00
QLabel* statusProgress;
2023-02-14 02:54:23 +00:00
QLabel* summaryProgress;
QLabel* summaryFound;
QLabel* summaryMinMax;
2023-02-14 02:54:23 +00:00
QDoubleSpinBox* selectDouble;
QSpinBox* selectInteger;
QLineEdit* selectString;
2023-02-06 16:06:03 +00:00
QPushButton* startButton;
2023-02-23 20:37:25 +00:00
QPushButton* clearButton;
2023-02-14 02:54:23 +00:00
2023-02-23 21:00:40 +00:00
QProgressBar* guiProgressBar;
2023-02-06 16:06:03 +00:00
QTableWidget* guiDisplayTable;
QTableWidgetItem* horizontalHeader0;
QTableWidgetItem* horizontalHeader1;
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);
OpCode selectOperationOpCode = OP_INVALID;
2023-02-06 16:06:03 +00:00
2023-02-14 02:54:23 +00:00
bool helpMode=false;
2023-02-06 16:06:03 +00:00
void createUi();
void delayedCreateUi();
void search(QDate date);
2023-02-06 16:06:03 +00:00
bool find(QDate& , Day* day);
void criteriaChanged();
void endOfPass();
void displayStatistics();
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();
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);
EventDataType calculateAhi(Day* day);
bool compare(int,int );
2023-02-23 20:37:25 +00:00
bool compare(QString aa , QString bb);
2023-02-06 16:06:03 +00:00
bool createUiFinished=false;
bool startButtonMode=true;
SearchTopic searchTopic;
2023-02-06 16:06:03 +00:00
int nextTab;
int channelId;
2023-02-06 16:06:03 +00:00
QDate firstDate ;
QDate lastDate ;
QDate nextDate;
//
int daysTotal;
int daysSkipped;
int daysSearched;
int daysFound;
int passFound;
2023-02-23 20:37:25 +00:00
void setSelectOperation(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-14 02:54:23 +00:00
QString valueToString(int value, QString empty = "");
qint32 foundValue;
QString foundString;
double maxDouble;
double minDouble;
2023-02-06 16:06:03 +00:00
QTextDocument richText;
2023-02-06 16:06:03 +00:00
public slots:
private slots:
2023-02-14 02:54:23 +00:00
void on_dateItemClicked(QTableWidgetItem *item);
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_selectMatch_clicked();
void on_selectCommandButton_clicked();
void on_selectCommandCombo_activated(int);
void on_selectOperationButton_clicked();
void on_selectOperationCombo_activated(int);
2023-02-23 20:37:25 +00:00
void on_helpButton_clicked();
2023-02-06 16:06:03 +00:00
void on_dailyTabWidgetCurrentChanged(int);
void on_intValueChanged(int);
void on_doubleValueChanged(double);
void on_textEdited(QString);
};
#endif // SEARCHDAILY_H