mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
103 lines
2.4 KiB
C++
103 lines
2.4 KiB
C++
/*
|
|
Daily GUI Headers
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*/
|
|
|
|
#ifndef DAILY_H
|
|
#define DAILY_H
|
|
|
|
|
|
#include <QMenu>
|
|
#include <QAction>
|
|
#include <QWidget>
|
|
#include <QTreeWidget>
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
#include <QtOpenGL/QGLContext>
|
|
#include <QScrollBar>
|
|
#include "Graphs/gSummaryChart.h"
|
|
|
|
#include <SleepLib/profiles.h>
|
|
#include "mainwindow.h"
|
|
#include "Graphs/gGraphView.h"
|
|
|
|
#include "Graphs/gLineChart.h"
|
|
|
|
namespace Ui {
|
|
class Daily;
|
|
}
|
|
|
|
|
|
class MainWindow;
|
|
class Daily : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Daily(QWidget *parent, gGraphView *shared,MainWindow *mw);
|
|
~Daily();
|
|
void ReloadGraphs();
|
|
void ResetGraphLayout();
|
|
gGraphView *SharedWidget() { return GraphView; }
|
|
void RedrawGraphs();
|
|
void LoadDate(QDate date);
|
|
private slots:
|
|
|
|
void on_calendar_currentPageChanged(int year, int month);
|
|
void on_calendar_selectionChanged();
|
|
void on_JournalNotesItalic_clicked();
|
|
void on_JournalNotesBold_clicked();
|
|
void on_JournalNotesFontsize_activated(int index);
|
|
void on_JournalNotesColour_clicked();
|
|
void on_EnergySlider_sliderMoved(int position);
|
|
|
|
void on_treeWidget_itemSelectionChanged();
|
|
|
|
void on_JournalNotesUnderline_clicked();
|
|
void ShowHideGraphs();
|
|
void on_prevDayButton_clicked();
|
|
|
|
void on_nextDayButton_clicked();
|
|
|
|
void on_calButton_toggled(bool checked);
|
|
|
|
protected:
|
|
|
|
private:
|
|
Session * CreateJournalSession(QDate date);
|
|
Session * GetJournalSession(QDate date);
|
|
void Load(QDate date);
|
|
void Unload(QDate date);
|
|
void UpdateCalendarDay(QDate date);
|
|
void UpdateEventsTree(QTreeWidget * tree,Day *day);
|
|
|
|
gGraph *PRD,*FRW,*GAHI,*TAP,*LEAK,*SF,*TAP_EAP,*TAP_IAP,*PULSE,*SPO2,
|
|
*SNORE,*RR,*MP,*MV,*TV,*FLG,*PTB,*OF,*INTPULSE,*INTSPO2, *THPR,
|
|
*PLETHY,*TI,*TE, *RE, *IE;
|
|
|
|
QList<Layer *> OXIData;
|
|
QList<Layer *> CPAPData;
|
|
|
|
QVector<QAction *> GraphAction;
|
|
QGLContext *offscreen_context;
|
|
|
|
QList<int> splitter_sizes;
|
|
Layer * AddCPAP(Layer *d) { CPAPData.push_back(d); return d; }
|
|
Layer * AddOXI(Layer *d) { OXIData.push_back(d); return d; }
|
|
|
|
void UpdateCPAPGraphs(Day *day);
|
|
void UpdateOXIGraphs(Day *day);
|
|
|
|
MainWindow * mainwin;
|
|
Ui::Daily *ui;
|
|
QDate previous_date;
|
|
QMenu *show_graph_menu;
|
|
|
|
gGraphView *GraphView,*snapGV;
|
|
MyScrollBar *scrollbar;
|
|
QHBoxLayout *layout;
|
|
};
|
|
|
|
#endif // DAILY_H
|