/* gDailySummary Graph Header * * Copyright (C) 2011-2018 Mark Watkins * * 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 GDAILYSUMMARY_H #define GDAILYSUMMARY_H #include "Graphs/layer.h" #include "SleepLib/day.h" class gDailySummary:public Layer { public: gDailySummary(); virtual ~gDailySummary() {} virtual void SetDay(Day *d); virtual bool isEmpty(); //! Draw filled rectangles behind Event Flag's, and an outlines around them all, Calls the individual paint for each gFlagLine virtual void paint(QPainter &painter, gGraph &w, const QRegion ®ion); virtual int minimumHeight() { return m_minimum_height; } bool mouseMoveEvent(QMouseEvent *event, gGraph *graph); bool mousePressEvent(QMouseEvent *event, gGraph *graph); bool mouseReleaseEvent(QMouseEvent *event, gGraph *graph); protected: QList flag_values; QList flag_labels; QList flag_codes; QList flag_foreground; QList flag_background; QList pie_chan; QList pie_data; QList pie_labels; EventDataType pie_total; QList settings; QList info; QList info_background; QList info_foreground; float flag_height; float flag_label_width; float flag_value_width; double ahi; int info_height; int info_width; int m_minimum_height; bool m_empty; }; #endif // GDAILYSUMMARY_H