OSCAR-code/Graphs/gGraphView.h

389 lines
11 KiB
C
Raw Normal View History

#ifndef GGRAPHVIEW_H
#define GGRAPHVIEW_H
#include <QGLWidget>
#include <QScrollBar>
#include <QResizeEvent>
#include <SleepLib/day.h>
#include <QThread>
#include <QMutex>
#include <QSemaphore>
2011-09-01 09:03:23 +00:00
#include <QWaitCondition>
#include <Graphs/glcommon.h>
#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;
2011-08-31 05:24:48 +00:00
void GetTextExtent(QString text, int & width, int & height, QFont *font=defaultfont);
class gGraphView;
class gGraph;
2011-08-26 04:09:56 +00:00
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);
2011-09-01 07:12:25 +00:00
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; }
2011-09-01 07:12:25 +00:00
void setColor(QColor color) { m_color=color; }
protected:
QColor m_color;
GLshort * buffer;
2011-09-01 07:12:25 +00:00
GLubyte * colors;
int m_max;
2011-08-31 05:24:48 +00:00
int m_type; // type (GL_LINES, GL_QUADS, etc)
int m_cnt; // cnt
2011-09-01 07:12:25 +00:00
int m_colcnt;
float m_size;
int s1,s2,s3,s4;
bool m_scissor;
bool m_antialias;
bool m_forceantialias;
2011-09-01 07:12:25 +00:00
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:
2011-08-31 05:24:48 +00:00
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;
2011-08-31 05:24:48 +00:00
QVector<GLBuffer *> mgl_buffers;
};
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<Layer *> layers;
};
class gGraph;
class gThread:public QThread
{
public:
gThread(gGraph *g);
2011-09-01 03:43:47 +00:00
~gThread();
void run();
void paint(int originX, int originY, int width, int height);
2011-09-01 02:06:38 +00:00
void die() { m_running=false; }
2011-08-31 12:24:45 +00:00
QMutex mutex;
protected:
gGraph * graph;
2011-09-01 09:03:23 +00:00
int m_top,m_left,m_width,m_height;
2011-09-01 02:06:38 +00:00
volatile bool m_running;
2011-09-01 09:03:23 +00:00
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);
2011-09-03 02:51:55 +00:00
void roundY(EventDataType &miny, EventDataType &maxy);
2011-08-31 05:24:48 +00:00
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; }
2011-08-26 08:18:14 +00:00
void DrawTextQue();
void setDay(Day * day);
gThread * thread() { return m_thread; }
virtual void paint(int originX, int originY, int width, int height);
void threadDone();
2011-09-01 03:37:25 +00:00
bool threadRunning() { return m_thread->isRunning(); }
void threadStart() { if (!m_thread->isRunning()) m_thread->start(); }
2011-09-01 07:12:25 +00:00
GLBuffer * lines();
GLBuffer * backlines();
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<Layer *> m_layers;
float m_height,m_width;
2011-08-26 11:54:47 +00:00
short m_marginleft, m_marginright, m_margintop, m_marginbottom;
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;
2011-08-25 09:00:19 +00:00
QRect m_selection;
bool m_selecting_area;
QPoint m_current;
short m_group;
short m_lastx23;
Day * m_day;
GLBuffer * quad;
};
class gGraphView : public QGLWidget
{
Q_OBJECT
public:
2011-08-29 07:13:58 +00:00
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;
2011-09-01 09:03:23 +00:00
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; }
2011-08-25 13:55:44 +00:00
void setPointClicked(QPoint p) { m_point_clicked=p; }
void setGlobalPointClicked(QPoint p) { m_global_point_clicked=p; }
2011-08-25 09:00:19 +00:00
gGraph *m_selected_graph;
void AddTextQue(QString & text, short x, short y, float angle, QColor & color, QFont * font);
2011-08-26 04:09:56 +00:00
int horizTravel() { return m_horiz_travel; }
2011-08-26 08:18:14 +00:00
void DrawTextQue();
2011-08-29 07:13:58 +00:00
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;
2011-08-31 12:24:45 +00:00
bool useThreads() { return m_idealthreads>1; }
2011-09-01 07:12:25 +00:00
GLBuffer * lines, * backlines;
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);
2011-08-29 07:13:58 +00:00
gGraphView *m_shared; // convenient link to daily's graphs.
QVector<gGraph *> 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;
2011-08-26 04:09:56 +00:00
int m_horiz_travel;
MyScrollBar * m_scrollbar;
bool m_graph_dragging;
int m_graph_index;
TextQue m_textque[textque_max];
int m_textque_items;
2011-08-26 11:54:47 +00:00
int m_lastxpos,m_lastypos;
volatile int m_threadsrunning;
2011-08-29 07:13:58 +00:00
QString m_emptytext;
signals:
public slots:
void scrollbarValueChanged(int val);
};
#endif // GGRAPHVIEW_H