mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
102 lines
2.5 KiB
C++
102 lines
2.5 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 <QLabel>
|
|
#include <QtOpenGL/QGLContext>
|
|
#include <QScrollBar>
|
|
#include <QWebPluginFactory>
|
|
|
|
#include <SleepLib/profiles.h>
|
|
//#include <Graphs/graphwindow.h>
|
|
#include "mainwindow.h"
|
|
#include "Graphs/gGraphView.h"
|
|
|
|
//#include "Graphs/gSplitter.h"
|
|
#include "Graphs/gLineChart.h"
|
|
//#include "Graphs/gFlagsLine.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();
|
|
|
|
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();
|
|
protected:
|
|
virtual void resizeEvent (QResizeEvent * event);
|
|
|
|
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<gGraph *> Graphs;
|
|
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 AddGraph(gGraph *w);
|
|
void UpdateCPAPGraphs(Day *day);
|
|
void UpdateOXIGraphs(Day *day);
|
|
|
|
MainWindow * mainwin;
|
|
Ui::Daily *ui;
|
|
Profile *profile;
|
|
QDate previous_date;
|
|
//QScrollArea *scrollArea;
|
|
//QVBoxLayout *splitter;
|
|
QMenu *show_graph_menu;
|
|
|
|
gGraphView *GraphView;
|
|
MyScrollBar *scrollbar;
|
|
QHBoxLayout *layout;
|
|
};
|
|
|
|
#endif // DAILY_H
|