2011-08-05 00:12:23 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
Daily GUI Headers
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-08-05 00:12:23 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef DAILY_H
|
|
|
|
#define DAILY_H
|
|
|
|
|
|
|
|
|
2011-07-30 04:54:22 +00:00
|
|
|
#include <QMenu>
|
|
|
|
#include <QAction>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QTreeWidget>
|
2011-08-30 17:22:54 +00:00
|
|
|
#include <QHBoxLayout>
|
2011-12-01 06:06:13 +00:00
|
|
|
#include <QPushButton>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include <QLabel>
|
|
|
|
#include <QtOpenGL/QGLContext>
|
2011-08-25 06:11:44 +00:00
|
|
|
#include <QScrollBar>
|
2011-12-02 11:40:47 +00:00
|
|
|
#include <QTableWidgetItem>
|
2011-09-17 12:39:00 +00:00
|
|
|
#include "Graphs/gSummaryChart.h"
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
#include <SleepLib/profiles.h>
|
2011-07-30 04:54:22 +00:00
|
|
|
#include "mainwindow.h"
|
2011-08-25 06:11:44 +00:00
|
|
|
#include "Graphs/gGraphView.h"
|
|
|
|
|
2011-07-27 09:21:53 +00:00
|
|
|
#include "Graphs/gLineChart.h"
|
2011-09-02 05:13:07 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
namespace Ui {
|
|
|
|
class Daily;
|
|
|
|
}
|
|
|
|
|
2011-07-29 14:58:44 +00:00
|
|
|
|
2011-07-30 04:54:22 +00:00
|
|
|
class MainWindow;
|
2011-06-26 08:30:44 +00:00
|
|
|
class Daily : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-10-05 07:41:56 +00:00
|
|
|
explicit Daily(QWidget *parent, gGraphView *shared,MainWindow *mw);
|
2011-06-26 08:30:44 +00:00
|
|
|
~Daily();
|
|
|
|
void ReloadGraphs();
|
2011-07-28 14:20:59 +00:00
|
|
|
void ResetGraphLayout();
|
2011-11-27 14:35:25 +00:00
|
|
|
gGraphView *graphView() { return GraphView; }
|
2011-08-07 12:33:00 +00:00
|
|
|
void RedrawGraphs();
|
2011-10-28 03:45:31 +00:00
|
|
|
void LoadDate(QDate date);
|
2011-11-15 07:53:22 +00:00
|
|
|
QDate getDate() { return previous_date; }
|
2011-12-01 15:40:32 +00:00
|
|
|
|
|
|
|
void PrintReport();
|
2011-12-02 13:48:05 +00:00
|
|
|
void UnitsChanged();
|
2011-12-01 15:40:32 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
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_treeWidget_itemSelectionChanged();
|
|
|
|
|
2011-06-28 01:51:21 +00:00
|
|
|
void on_JournalNotesUnderline_clicked();
|
2011-07-30 04:54:22 +00:00
|
|
|
void ShowHideGraphs();
|
2011-10-30 02:46:17 +00:00
|
|
|
void on_prevDayButton_clicked();
|
|
|
|
|
|
|
|
void on_nextDayButton_clicked();
|
|
|
|
|
|
|
|
void on_calButton_toggled(bool checked);
|
|
|
|
|
2011-10-30 03:18:20 +00:00
|
|
|
void on_todayButton_clicked();
|
2011-11-24 23:03:33 +00:00
|
|
|
|
|
|
|
void on_Link_clicked(const QUrl &url);
|
2011-11-27 07:41:00 +00:00
|
|
|
void on_evViewSlider_valueChanged(int value);
|
|
|
|
|
2011-11-27 22:36:38 +00:00
|
|
|
void on_treeWidget_itemClicked(QTreeWidgetItem *item, int column);
|
|
|
|
|
2011-12-01 06:06:13 +00:00
|
|
|
void on_graphtogglebutton_toggled(bool);
|
2011-12-02 11:40:47 +00:00
|
|
|
void on_ZombieMeter_actionTriggered(int action);
|
|
|
|
|
|
|
|
void on_addBookmarkButton_clicked();
|
|
|
|
|
|
|
|
void on_removeBookmarkButton_clicked();
|
|
|
|
|
|
|
|
void on_bookmarkTable_itemActivated(QTableWidgetItem *item);
|
|
|
|
|
|
|
|
void on_bookmarkTable_itemClicked(QTableWidgetItem *item);
|
|
|
|
|
2011-07-28 11:09:53 +00:00
|
|
|
protected:
|
2011-06-28 01:51:21 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
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);
|
|
|
|
|
2011-08-29 11:42:40 +00:00
|
|
|
gGraph *PRD,*FRW,*GAHI,*TAP,*LEAK,*SF,*TAP_EAP,*TAP_IAP,*PULSE,*SPO2,
|
2011-08-25 06:11:44 +00:00
|
|
|
*SNORE,*RR,*MP,*MV,*TV,*FLG,*PTB,*OF,*INTPULSE,*INTSPO2, *THPR,
|
2011-11-21 12:51:15 +00:00
|
|
|
*PLETHY,*TI,*TE, *RE, *IE, *TgMV, *AHI;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
QList<Layer *> OXIData;
|
|
|
|
QList<Layer *> CPAPData;
|
2011-12-01 06:06:13 +00:00
|
|
|
QHash<QString,QPushButton *> GraphToggles;
|
2011-07-31 20:24:43 +00:00
|
|
|
QVector<QAction *> GraphAction;
|
2011-07-22 13:46:17 +00:00
|
|
|
QGLContext *offscreen_context;
|
2011-07-11 04:54:53 +00:00
|
|
|
|
2011-07-28 14:20:59 +00:00
|
|
|
QList<int> splitter_sizes;
|
2011-08-25 06:11:44 +00:00
|
|
|
Layer * AddCPAP(Layer *d) { CPAPData.push_back(d); return d; }
|
|
|
|
Layer * AddOXI(Layer *d) { OXIData.push_back(d); return d; }
|
2011-10-18 12:19:06 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
void UpdateCPAPGraphs(Day *day);
|
|
|
|
void UpdateOXIGraphs(Day *day);
|
|
|
|
|
2011-07-30 04:54:22 +00:00
|
|
|
MainWindow * mainwin;
|
2011-06-26 08:30:44 +00:00
|
|
|
Ui::Daily *ui;
|
|
|
|
QDate previous_date;
|
2011-07-30 04:54:22 +00:00
|
|
|
QMenu *show_graph_menu;
|
2011-08-29 11:42:40 +00:00
|
|
|
|
2011-09-21 14:10:10 +00:00
|
|
|
gGraphView *GraphView,*snapGV;
|
2011-08-25 06:11:44 +00:00
|
|
|
MyScrollBar *scrollbar;
|
|
|
|
QHBoxLayout *layout;
|
2011-12-02 11:40:47 +00:00
|
|
|
bool ZombieMeterMoved;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DAILY_H
|
2011-12-02 11:40:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
|