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>
|
2023-02-11 22:04:21 +00:00
|
|
|
#include <QFrame>
|
2023-02-06 16:06:03 +00:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QTabWidget>
|
2023-02-11 22:04:21 +00:00
|
|
|
#include <QMap>
|
2023-02-06 16:06:03 +00:00
|
|
|
#include "SleepLib/common.h"
|
|
|
|
|
|
|
|
class QWidget ;
|
|
|
|
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;
|
|
|
|
|
|
|
|
Daily* daily;
|
|
|
|
QWidget* parent;
|
|
|
|
QWidget* searchTabWidget;
|
|
|
|
QTabWidget* dailyTabWidget;
|
2023-02-11 22:04:21 +00:00
|
|
|
|
2023-02-06 16:06:03 +00:00
|
|
|
QVBoxLayout* searchTabLayout;
|
|
|
|
QHBoxLayout* criteriaLayout;
|
2023-02-14 02:54:23 +00:00
|
|
|
QFrame * innerCriteriaFrame;
|
2023-02-11 22:04:21 +00:00
|
|
|
QHBoxLayout* innerCriteriaLayout;
|
2023-02-14 02:54:23 +00:00
|
|
|
|
2023-02-06 16:06:03 +00:00
|
|
|
QHBoxLayout* searchLayout;
|
|
|
|
QHBoxLayout* summaryLayout;
|
2023-02-11 22:04:21 +00:00
|
|
|
|
|
|
|
QPushButton* helpInfo;
|
|
|
|
|
|
|
|
QComboBox* selectOperationCombo;
|
|
|
|
QPushButton* selectOperationButton;
|
|
|
|
QComboBox* selectCommandCombo;
|
|
|
|
QPushButton* selectCommandButton;
|
|
|
|
QPushButton* selectMatch;
|
|
|
|
QLabel* selectUnits;
|
2023-02-14 02:54:23 +00:00
|
|
|
|
2023-02-11 22:04:21 +00:00
|
|
|
QLabel* statusProgress;
|
2023-02-14 02:54:23 +00:00
|
|
|
|
2023-02-11 22:04:21 +00:00
|
|
|
QLabel* summaryProgress;
|
|
|
|
QLabel* summaryFound;
|
|
|
|
QLabel* summaryMinMax;
|
2023-02-14 02:54:23 +00:00
|
|
|
|
2023-02-11 22:04:21 +00:00
|
|
|
QDoubleSpinBox* selectDouble;
|
|
|
|
QSpinBox* selectInteger;
|
|
|
|
QLineEdit* selectString;
|
2023-02-06 16:06:03 +00:00
|
|
|
QPushButton* startButton;
|
2023-02-14 02:54:23 +00:00
|
|
|
|
2023-02-06 16:06:03 +00:00
|
|
|
QTableWidget* guiDisplayTable;
|
2023-02-11 22:04:21 +00:00
|
|
|
QTableWidgetItem* horizontalHeader0;
|
|
|
|
QTableWidgetItem* horizontalHeader1;
|
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-11 22:04:21 +00:00
|
|
|
QMap <QString,qint32> opCodeMap;
|
2023-02-14 02:54:23 +00:00
|
|
|
QString opCodeStr(int);
|
|
|
|
int selectOperationOpCode = 0;
|
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-02-06 16:06:03 +00:00
|
|
|
void createUi();
|
|
|
|
void delayedCreateUi();
|
|
|
|
|
2023-02-11 22:04:21 +00:00
|
|
|
void search(QDate date);
|
2023-02-06 16:06:03 +00:00
|
|
|
bool find(QDate& , Day* day);
|
|
|
|
void criteriaChanged();
|
|
|
|
void endOfPass();
|
2023-02-11 22:04:21 +00:00
|
|
|
void displayStatistics();
|
2023-02-06 16:06:03 +00:00
|
|
|
|
2023-02-11 22:04:21 +00:00
|
|
|
|
|
|
|
void addItem(QDate date, QString value);
|
|
|
|
void setCommandPopupEnabled(bool );
|
|
|
|
void setOperationPopupEnabled(bool );
|
|
|
|
void setOperation( );
|
|
|
|
|
|
|
|
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-11 22:04:21 +00:00
|
|
|
EventDataType calculateAhi(Day* day);
|
|
|
|
bool compare(int,int );
|
2023-02-06 16:06:03 +00:00
|
|
|
|
|
|
|
bool createUiFinished=false;
|
2023-02-11 22:04:21 +00:00
|
|
|
bool startButtonMode=true;
|
2023-02-06 16:06:03 +00:00
|
|
|
int searchType;
|
|
|
|
int nextTab;
|
|
|
|
|
|
|
|
QDate firstDate ;
|
|
|
|
QDate lastDate ;
|
|
|
|
QDate nextDate;
|
|
|
|
|
|
|
|
//
|
|
|
|
int daysTotal;
|
|
|
|
int daysSkipped;
|
|
|
|
int daysSearched;
|
|
|
|
int daysFound;
|
|
|
|
int passFound;
|
|
|
|
|
2023-02-14 02:54:23 +00:00
|
|
|
enum ValueMode { notUsed , minutesToMs ,hoursToMs, hundredths , whole , string};
|
|
|
|
|
|
|
|
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:
|
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-11 22:04:21 +00:00
|
|
|
void on_selectMatch_clicked();
|
|
|
|
void on_selectCommandButton_clicked();
|
|
|
|
void on_selectCommandCombo_activated(int);
|
|
|
|
void on_selectOperationButton_clicked();
|
|
|
|
void on_selectOperationCombo_activated(int);
|
|
|
|
void on_helpInfo_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
|
|
|
|
|