#ifndef GGRAPHVIEW_H #define GGRAPHVIEW_H #include #include #include #include #include #include #include #include #include #define MIN(a,b) (((a)<(b)) ? (a) : (b)); #define MAX(a,b) (((a)<(b)) ? (b) : (a)); enum FlagType { FT_Bar, FT_Dot, FT_Span }; void InitGraphs(); void DoneGraphs(); extern QFont * defaultfont; extern QFont * mediumfont; extern QFont * bigfont; void GetTextExtent(QString text, int & width, int & height, QFont *font=defaultfont); class gGraphView; class gGraph; const int textque_max=512; class GLBuffer { public: GLBuffer(QColor color,int max=2048,int type=GL_LINES); ~GLBuffer(); void add(GLshort s); void add(GLshort x, GLshort y); void add(GLshort x1, GLshort y1, GLshort x2, GLshort y2); void add(GLshort x, GLshort y,QColor & col); // add with vertex color void add(GLshort x1, GLshort y1, GLshort x2, GLshort y2,QColor & col); // add with vertex colors void scissor(GLshort x1, GLshort y1, GLshort x2, GLshort y2) { s1=x1; s2=y1; s3=x2; s4=y2; m_scissor=true; } void draw(); inline GLshort & operator [](int i) { return buffer[i]; } void reset() { m_cnt=0; } int max() { return m_max; } int cnt() { return m_cnt; } bool full() { return m_cnt>=m_max; } void setSize(float f) { m_size=f; } void setAntiAlias(bool b) { m_antialias=b; } void forceAntiAlias(bool b) { m_forceantialias=b; } void setColor(QColor color) { m_color=color; } protected: QColor m_color; GLshort * buffer; GLubyte * colors; int m_max; int m_type; // type (GL_LINES, GL_QUADS, etc) int m_cnt; // cnt int m_colcnt; float m_size; int s1,s2,s3,s4; bool m_scissor; bool m_antialias; bool m_forceantialias; QMutex mutex; }; struct TextQue { short x,y; float angle; QString text; QColor color; QFont *font; }; class MyScrollBar:public QScrollBar { public: MyScrollBar(QWidget * parent=0); void SendWheelEvent(QWheelEvent * e); }; enum LayerPosition { LayerLeft, LayerRight, LayerTop, LayerBottom, LayerCenter, LayerOverlay }; class Layer { friend class gGraph; public: Layer(ChannelID code); virtual ~Layer(); virtual void SetDay(Day * d); virtual void SetCode(ChannelID c) { m_code=c; } const ChannelID & code() { return m_code; } virtual bool isEmpty(); virtual qint64 Minx() { if (m_day) return m_day->first(); return m_minx; } virtual qint64 Maxx() { if (m_day) return m_day->last(); return m_maxx; } virtual EventDataType Miny() { return m_miny; } virtual EventDataType Maxy() { return m_maxy; } virtual void setMinY(EventDataType val) { m_miny=val; } virtual void setMaxY(EventDataType val) { m_maxy=val; } virtual void setMinX(qint64 val) { m_minx=val; } virtual void setMaxX(qint64 val) { m_maxx=val; } void setVisible(bool b) { m_visible=b; } bool visible() { return m_visible; } void setMovable(bool b) { m_movable=b; } bool movable() { return m_movable; } virtual void paint(gGraph & gv,int left,int top,int width, int height)=0; void setLayout(LayerPosition position, short width, short height, short order); void setPos(short x, short y) { m_X=x; m_Y=y; } int Width() { return m_width; } int Height() { return m_height; } LayerPosition position() { return m_position; } //void X() { return m_X; } //void Y() { return m_Y; } virtual void drawGLBuf(); protected: void addGLBuf(GLBuffer *buf) { mgl_buffers.push_back(buf); } //QRect bounds; // bounds, relative to top of individual graph. Day *m_day; bool m_visible; bool m_movable; qint64 m_minx,m_maxx; EventDataType m_miny,m_maxy; ChannelID m_code; short m_width; // reserved x pixels needed for this layer. 0==Depends on position.. short m_height; // reserved y pixels needed for this layer. both 0 == expand to all free area. short m_X; // offset for repositionable layers.. short m_Y; short m_order; // order for positioning.. LayerPosition m_position; QVector mgl_buffers; // Default layer mouse handling = Do nothing virtual bool wheelEvent(QWheelEvent * event) { return false; } virtual bool mouseMoveEvent(QMouseEvent * event) { return false; } virtual bool mousePressEvent(QMouseEvent * event) { return false; } virtual bool mouseReleaseEvent(QMouseEvent * event) { return false; } virtual bool mouseDoubleClickEvent(QMouseEvent * event) { return false; } virtual bool keyPressEvent(QKeyEvent * event) { return false; } }; class LayerGroup:public Layer { public: LayerGroup(); virtual ~LayerGroup(); virtual void AddLayer(Layer *l); virtual qint64 Minx(); virtual qint64 Maxx(); virtual EventDataType Miny(); virtual EventDataType Maxy(); virtual bool isEmpty(); virtual void SetDay(Day * d); virtual void drawGLBuf(); protected: QVector layers; //overide mouse handling to pass to sublayers.. }; class gGraph; class gThread:public QThread { public: gThread(gGraph *g); ~gThread(); void run(); void paint(int originX, int originY, int width, int height); void die() { m_running=false; } QMutex mutex; protected: gGraph * graph; int m_top,m_left,m_width,m_height; volatile bool m_running; QWaitCondition wc; }; class gGraph { public: friend class gGraphView; gGraph(gGraphView * graphview=NULL, QString title="",int height=100,short group=0); virtual ~gGraph(); void setVisible(bool b) { m_visible=b; } bool visible() { return m_visible; } float height() { return m_height; } void setHeight(float height) { m_height=height; } int minHeight() { return m_min_height; } void setMinHeight(int height) { m_min_height=height; } int maxHeight() { return m_max_height; } void setMaxHeight(int height) { m_max_height=height; } bool isEmpty(); void AddLayer(Layer * l,LayerPosition position=LayerCenter, short pixelsX=0, short pixelsY=0, short order=0, bool movable=false, short x=0, short y=0); void qglColor(QColor col); void renderText(QString text, int x,int y, float angle=0.0, QColor color=Qt::black, QFont *font=defaultfont); void roundY(EventDataType &miny, EventDataType &maxy); void drawGLBuf(); QString title() { return m_title; } //virtual void repaint(); // Repaint individual graph.. virtual void ResetBounds(); virtual void SetXBounds(qint64 minx, qint64 maxx); virtual qint64 MinX(); virtual qint64 MaxX(); virtual EventDataType MinY(); virtual EventDataType MaxY(); virtual void SetMinX(qint64 v); virtual void SetMaxX(qint64 v); virtual void SetMinY(EventDataType v); virtual void SetMaxY(EventDataType v); void resize(int width, int height); // margin recalcs.. qint64 max_x,min_x,max_y,min_y; qint64 rmax_x,rmin_x,rmax_y,rmin_y; bool blockZoom() { return m_blockzoom; } void setBlockZoom(bool b) { m_blockzoom=b; } int flipY(int y); // flip GL coordinates short group() { return m_group; } void setGroup(short group) { m_group=group; } void DrawTextQue(); void setDay(Day * day); gThread * thread() { return m_thread; } virtual void paint(int originX, int originY, int width, int height); void redraw(); void threadDone(); bool threadRunning() { return m_thread->isRunning(); } void threadStart() { if (!m_thread->isRunning()) m_thread->start(); } GLBuffer * lines(); GLBuffer * backlines(); GLBuffer * quads(); short m_marginleft, m_marginright, m_margintop, m_marginbottom; protected: //void invalidate(); virtual void wheelEvent(QWheelEvent * event); virtual void mouseMoveEvent(QMouseEvent * event); virtual void mousePressEvent(QMouseEvent * event); virtual void mouseReleaseEvent(QMouseEvent * event); virtual void mouseDoubleClickEvent(QMouseEvent * event); virtual void keyPressEvent(QKeyEvent * event); void ZoomX(double mult,int origin_px); gThread * m_thread; gGraphView * m_graphview; QString m_title; QVector m_layers; float m_height,m_width; short left,right,top,bottom; // dirty magin hacks.. int m_min_height; int m_max_height; bool m_visible; bool m_blockzoom; QRect m_lastbounds; QRect m_selection; bool m_selecting_area; QPoint m_current; short m_group; short m_lastx23; Day * m_day; GLBuffer * m_quad; }; class gGraphView : public QGLWidget { Q_OBJECT public: explicit gGraphView(QWidget *parent = 0,gGraphView * shared=0); virtual ~gGraphView(); void AddGraph(gGraph *g,short group=0); void setScrollBar(MyScrollBar *sb); MyScrollBar * scrollBar() { return m_scrollbar; } static const int titleWidth=30; static const int graphSpacer=3; float findTop(gGraph * graph); float scaleY() { return m_scaleY; } void ResetBounds(); //short group=0); void SetXBounds(qint64 minx, qint64 maxx, short group=0); bool hasGraphs() { return m_graphs.size()>0; } QPoint pointClicked() { return m_point_clicked; } QPoint globalPointClicked() { return m_global_point_clicked; } void setPointClicked(QPoint p) { m_point_clicked=p; } void setGlobalPointClicked(QPoint p) { m_global_point_clicked=p; } gGraph *m_selected_graph; void AddTextQue(QString & text, short x, short y, float angle, QColor & color, QFont * font); int horizTravel() { return m_horiz_travel; } void DrawTextQue(); int size() { return m_graphs.size(); } gGraph * operator[](int i) { return m_graphs[i]; } void updateScrollBar(); void updateScale(); // update scale & Scrollbar void setEmptyText(QString s) { m_emptytext=s; } QMutex text_mutex; QMutex gl_mutex; void setDay(Day * day); QSemaphore * masterlock; bool useThreads() { return m_idealthreads>1; } GLBuffer * lines, * backlines, *quads; protected: int m_idealthreads; Day * m_day; float totalHeight(); float scaleHeight(); virtual void initializeGL(); virtual void paintGL(); virtual void resizeGL(int width, int height); virtual void resizeEvent(QResizeEvent *); void setOffsetY(int offsetY); void setOffsetX(int offsetX); virtual void mouseMoveEvent(QMouseEvent * event); virtual void mousePressEvent(QMouseEvent * event); virtual void mouseReleaseEvent(QMouseEvent * event); virtual void mouseDoubleClickEvent(QMouseEvent * event); virtual void wheelEvent(QWheelEvent * event); virtual void keyPressEvent(QKeyEvent * event); gGraphView *m_shared; // convenient link to daily's graphs. QVector m_graphs; int m_offsetY,m_offsetX; // Scroll Offsets float m_scaleY; bool m_sizer_dragging; int m_sizer_index; bool m_button_down; QPoint m_point_clicked; QPoint m_global_point_clicked; QPoint m_sizer_point; int m_horiz_travel; MyScrollBar * m_scrollbar; bool m_graph_dragging; int m_graph_index; TextQue m_textque[textque_max]; int m_textque_items; int m_lastxpos,m_lastypos; volatile int m_threadsrunning; QString m_emptytext; signals: public slots: void scrollbarValueChanged(int val); }; #endif // GGRAPHVIEW_H