/* gLineChart Header Copyright (c)2011 Mark Watkins License: GPL */ #ifndef GLINECHART_H #define GLINECHART_H #include #include "SleepLib/event.h" #include "SleepLib/day.h" #include "gGraphView.h" //#include "graphlayer.h" class AHIChart:public Layer { public: AHIChart(const QColor col=QColor("black")); ~AHIChart(); virtual void paint(gGraph & w,int left, int top, int width, int height); virtual void SetDay(Day *d); virtual EventDataType Miny() { return m_miny; } virtual EventDataType Maxy() { return m_maxy; } virtual bool isEmpty() { return m_data.size()==0; } protected: QVector m_data; QVector m_time; EventDataType m_miny,m_maxy; QColor m_color; GLShortBuffer * lines; }; /*! \class gLineChart \brief Draws a 2D linechart from all Session data in a day. EVL_Waveforms typed EventLists are accelerated. */ class gLineChart:public Layer { public: /*! \brief Creates a new 2D gLineChart Layer \param code The Channel that gets drawn by this layer \param col Color of the Plot \param square_plot Whether or not to use square plots (only effective for EVL_Event typed EventList data) \param disable_accel Whether or not to disable acceleration for EVL_Waveform typed EventList data */ gLineChart(ChannelID code,const QColor col=QColor("black"), bool square_plot=false,bool disable_accel=false); virtual ~gLineChart(); //! \brief The drawing code that fills the vertex buffers virtual void paint(gGraph & w,int left, int top, int width, int height); //! \brief Set Use Square plots for non EVL_Waveform data void SetSquarePlot(bool b) { m_square_plot=b; } //! \brief Returns true if using Square plots for non EVL_Waveform data bool GetSquarePlot() { return m_square_plot; } //! \brief Set this if you want this layer to draw it's empty data message //! \note They don't show anymore due to the changes in gGraphView. Should modify isEmpty if this still gets to live void ReportEmpty(bool b) { m_report_empty=b; } //! \brief Returns whether or not to show the empty text message bool GetReportEmpty() { return m_report_empty; } //! \brief Sets the ability to Disable waveform plot acceleration (which hides unseen data) void setDisableAccel(bool b) { m_disable_accel=b; } //! \brief Returns true if waveform plot acceleration is disabled bool disableAccel() { return m_disable_accel; } //! \brief Sets the Day object containing the Sessions this linechart draws from virtual void SetDay(Day *d); //! \brief Returns Minimum Y-axis value for this layer virtual EventDataType Miny(); //! \brief Returns Maximum Y-axis value for this layer virtual EventDataType Maxy(); protected: bool m_report_empty; bool m_square_plot; bool m_disable_accel; QColor m_line_color; GLShortBuffer * lines; GLShortBuffer * outlines; //! \brief Used by accelerated waveform plots. Must be >= Screen Resolution (or at least graph width) static const int max_drawlist_size=4096; //! \brief The list of screen points used for accelerated waveform plots.. QPoint m_drawlist[max_drawlist_size]; int subtract_offset; }; #endif // GLINECHART_H