mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Importer will be temporarily slow due to creating craploads of new indexes. Lots of bugs fixed.. Probably lots of new bugs too! Replaced slow map containers with fast QHash containers. Plus plenty of other mind numbing stuff.
122 lines
3.3 KiB
C++
122 lines
3.3 KiB
C++
/********************************************************************
|
|
Daily GUI Headers
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*********************************************************************/
|
|
|
|
#ifndef DAILY_H
|
|
#define DAILY_H
|
|
|
|
|
|
#include <QScrollArea>
|
|
#include <QMenu>
|
|
#include <QAction>
|
|
#include <QSplitter>
|
|
#include <QWidget>
|
|
#include <QTreeWidget>
|
|
#include <QLabel>
|
|
#include <QtOpenGL/QGLContext>
|
|
#include <QWebPluginFactory>
|
|
#include <SleepLib/profiles.h>
|
|
#include <Graphs/graphwindow.h>
|
|
#include "mainwindow.h"
|
|
//#include <Graphs/graphdata.h>
|
|
#include "Graphs/gLineChart.h"
|
|
#include <Graphs/gFlagsLine.h>
|
|
namespace Ui {
|
|
class Daily;
|
|
}
|
|
|
|
class Daily;
|
|
class MyScrollArea:public QScrollArea
|
|
{
|
|
public:
|
|
MyScrollArea(Daily * parent);
|
|
virtual ~MyScrollArea();
|
|
protected:
|
|
virtual void scrollContentsBy(int dx, int dy);
|
|
Daily *daily;
|
|
};
|
|
|
|
class MainWindow;
|
|
class Daily : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Daily(QWidget *parent,QGLWidget *shared,MainWindow *mw);
|
|
~Daily();
|
|
void ReloadGraphs();
|
|
void RedrawGraphs();
|
|
void ResetGraphLayout();
|
|
QGLWidget *SharedWidget() { return SF; }
|
|
|
|
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);
|
|
|
|
//gLineChart *frw,*prd,*leak,*pr_ipap,*pr_epap,*snore,*pulse,*spo2,*rr,*mv,*tv,*mp,*flg,*ptb;
|
|
|
|
//gPointData *tap,*tap_eap,*tap_iap,*g_ahi,*frw,*prd,*leak,*pressure_iap,*pressure_eap,*snore;
|
|
//gPointData *pulse,*spo2,*rr,*mv,*tv,*mp,*flg,*ptb;
|
|
|
|
gFlagsGroup *fg;
|
|
gGraphWindow *PRD,*FRW,*G_AHI,*TAP,*LEAK,*SF,*TAP_EAP,*TAP_IAP,*PULSE,*SPO2,*SNORE,*RR,*MP,*MV,*TV,*FLG,*PTB,*OF;
|
|
|
|
QList<gLayer *> OXIData;
|
|
QList<gLayer *> CPAPData;
|
|
QVector<gGraphWindow *> Graphs;
|
|
QVector<QAction *> GraphAction;
|
|
QGLContext *offscreen_context;
|
|
|
|
QList<int> splitter_sizes;
|
|
gLayer * AddCPAP(gLayer *d) { CPAPData.push_back(d); return d; }
|
|
gLayer * AddOXI(gLayer *d) { OXIData.push_back(d); return d; }
|
|
void AddGraph(gGraphWindow *w);
|
|
void UpdateCPAPGraphs(Day *day);
|
|
void UpdateOXIGraphs(Day *day);
|
|
|
|
MainWindow * mainwin;
|
|
Ui::Daily *ui;
|
|
Profile *profile;
|
|
QDate previous_date;
|
|
MyScrollArea *scrollArea;
|
|
QSplitter *gSplitter;
|
|
QLabel *NoData;
|
|
QWidget *spacer;
|
|
QMenu *show_graph_menu;
|
|
};
|
|
|
|
/*class AHIGraph:public QWebPluginFactory
|
|
{
|
|
public:
|
|
AHIGraph(QObject * parent = 0);
|
|
virtual ~AHIGraph();
|
|
virtual QObject * create ( const QString & mimeType, const QUrl & url, const QStringList & argumentNames, const QStringList & argumentValues) const;
|
|
virtual QList<Plugin> plugins () const;
|
|
//virtual void refreshPlugins ();
|
|
}; */
|
|
|
|
#endif // DAILY_H
|