2011-11-26 04:00:31 +00:00
/*
gGraphView Implementation
Copyright ( c ) 2011 Mark Watkins < jedimark @ users . sourceforge . net >
License : GPL
*/
2011-08-25 06:11:44 +00:00
# include <cmath>
2011-08-30 17:22:54 +00:00
# include <QFontMetrics>
2011-08-25 06:11:44 +00:00
# include "gGraphView.h"
2011-08-30 17:22:54 +00:00
# include "SleepLib/profiles.h"
2011-09-03 15:54:27 +00:00
# include <QTimer>
2011-09-13 04:36:49 +00:00
# include <QLabel>
2011-11-27 16:07:28 +00:00
# include <QDir>
2011-12-01 15:40:32 +00:00
# include "mainwindow.h"
2011-12-05 08:32:46 +00:00
# include "Graphs/gYAxis.h"
2011-12-05 10:50:58 +00:00
# include "Graphs/gFlagsLine.h"
2011-12-02 00:38:32 +00:00
2011-12-01 15:40:32 +00:00
extern MainWindow * mainwin ;
2011-10-30 09:26:35 +00:00
# ifdef Q_WS_MAC
# define USE_RENDERTEXT
# endif
2011-08-30 17:22:54 +00:00
bool _graph_init = false ;
QFont * defaultfont = NULL ;
QFont * mediumfont = NULL ;
QFont * bigfont = NULL ;
bool evil_intel_graphics_chip = false ;
2011-09-13 04:36:49 +00:00
extern QLabel * qstatus2 ;
2011-09-21 09:39:16 +00:00
const int mouse_movement_threshold = 6 ;
2011-09-13 04:36:49 +00:00
2011-08-30 17:22:54 +00:00
// Must be called from a thread inside the application.
void InitGraphs ( )
{
if ( ! _graph_init ) {
2011-10-05 10:44:41 +00:00
2011-10-21 05:50:31 +00:00
if ( ! PREF . Exists ( " Fonts_Graph_Name " ) ) {
PREF [ " Fonts_Graph_Name " ] = " Sans Serif " ;
PREF [ " Fonts_Graph_Size " ] = 10 ;
PREF [ " Fonts_Graph_Bold " ] = false ;
PREF [ " Fonts_Graph_Italic " ] = false ;
2011-10-05 10:44:41 +00:00
}
2011-10-21 05:50:31 +00:00
if ( ! PREF . Exists ( " Fonts_Title_Name " ) ) {
PREF [ " Fonts_Title_Name " ] = " Serif " ;
PREF [ " Fonts_Title_Size " ] = 11 ;
PREF [ " Fonts_Title_Bold " ] = true ;
PREF [ " Fonts_Title_Italic " ] = false ;
2011-10-05 10:44:41 +00:00
}
2011-10-21 05:50:31 +00:00
if ( ! PREF . Exists ( " Fonts_Big_Name " ) ) {
PREF [ " Fonts_Big_Name " ] = " Serif " ;
PREF [ " Fonts_Big_Size " ] = 35 ;
PREF [ " Fonts_Big_Bold " ] = false ;
PREF [ " Fonts_Big_Italic " ] = false ;
2011-10-05 10:44:41 +00:00
}
2011-10-21 05:50:31 +00:00
defaultfont = new QFont ( PREF [ " Fonts_Graph_Name " ] . toString ( ) ,
PREF [ " Fonts_Graph_Size " ] . toInt ( ) ,
PREF [ " Fonts_Graph_Bold " ] . toBool ( ) ? QFont : : Bold : QFont : : Normal ,
PREF [ " Fonts_Graph_Italic " ] . toBool ( )
) ;
mediumfont = new QFont ( PREF [ " Fonts_Title_Name " ] . toString ( ) ,
PREF [ " Fonts_Title_Size " ] . toInt ( ) ,
PREF [ " Fonts_Title_Bold " ] . toBool ( ) ? QFont : : Bold : QFont : : Normal ,
PREF [ " Fonts_Title_Italic " ] . toBool ( )
) ;
bigfont = new QFont ( PREF [ " Fonts_Big_Name " ] . toString ( ) ,
PREF [ " Fonts_Big_Size " ] . toInt ( ) ,
PREF [ " Fonts_Big_Bold " ] . toBool ( ) ? QFont : : Bold : QFont : : Normal ,
PREF [ " Fonts_Big_Italic " ] . toBool ( )
) ;
2011-08-30 17:22:54 +00:00
2011-10-05 12:38:32 +00:00
defaultfont - > setStyleHint ( QFont : : AnyStyle , QFont : : OpenGLCompatible ) ;
mediumfont - > setStyleHint ( QFont : : AnyStyle , QFont : : OpenGLCompatible ) ;
bigfont - > setStyleHint ( QFont : : AnyStyle , QFont : : OpenGLCompatible ) ;
2011-10-21 05:50:31 +00:00
2011-08-30 17:22:54 +00:00
_graph_init = true ;
}
}
void DoneGraphs ( )
{
if ( _graph_init ) {
delete defaultfont ;
delete bigfont ;
delete mediumfont ;
_graph_init = false ;
}
}
2011-08-31 05:24:48 +00:00
void GetTextExtent ( QString text , int & width , int & height , QFont * font )
2011-08-30 17:22:54 +00:00
{
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-08-31 12:24:45 +00:00
static QMutex mut ;
mut . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-08-30 17:22:54 +00:00
QFontMetrics fm ( * font ) ;
//QRect r=fm.tightBoundingRect(text);
2011-12-08 14:47:10 +00:00
width = fm . width ( text ) ;
# ifdef Q_WS_WIN32
height = fm . ascent ( ) ;
# else
2011-12-10 12:14:48 +00:00
height = fm . xHeight ( ) + 2 ; // doesn't work properly on windows..
2011-12-08 14:47:10 +00:00
# endif
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-08-31 12:24:45 +00:00
mut . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-08-30 17:22:54 +00:00
}
2011-12-11 12:13:38 +00:00
GLBuffer : : GLBuffer ( int max , int type , bool stippled )
: m_max ( max ) , m_type ( type ) , m_stippled ( stippled )
2011-08-30 17:22:54 +00:00
{
m_scissor = false ;
2011-08-31 11:44:53 +00:00
m_antialias = true ;
m_forceantialias = false ;
2011-12-11 12:13:38 +00:00
2011-08-30 17:22:54 +00:00
m_cnt = 0 ;
2011-09-01 07:12:25 +00:00
m_colcnt = 0 ;
2011-08-30 17:22:54 +00:00
m_size = 1 ;
}
GLBuffer : : ~ GLBuffer ( )
{
}
2011-09-28 11:46:32 +00:00
///////
2011-10-01 12:54:20 +00:00
void GLShortBuffer : : add ( GLshort x , GLshort y )
{
if ( m_cnt < m_max + 2 ) {
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-10-01 12:54:20 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-10-01 12:54:20 +00:00
buffer [ m_cnt + + ] = x ;
buffer [ m_cnt + + ] = y ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-10-01 12:54:20 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-10-01 12:54:20 +00:00
} else {
qDebug ( ) < < " GLBuffer overflow " ;
}
}
void GLShortBuffer : : add ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 )
{
if ( m_cnt < m_max + 4 ) {
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-10-01 12:54:20 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-10-01 12:54:20 +00:00
buffer [ m_cnt + + ] = x1 ;
buffer [ m_cnt + + ] = y1 ;
buffer [ m_cnt + + ] = x2 ;
buffer [ m_cnt + + ] = y2 ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-10-01 12:54:20 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-10-01 12:54:20 +00:00
} else {
qDebug ( ) < < " GLBuffer overflow " ;
}
}
void GLShortBuffer : : add ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 , GLshort x3 , GLshort y3 , GLshort x4 , GLshort y4 )
{
if ( m_cnt < m_max + 8 ) {
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-10-01 12:54:20 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-10-01 12:54:20 +00:00
buffer [ m_cnt + + ] = x1 ;
buffer [ m_cnt + + ] = y1 ;
buffer [ m_cnt + + ] = x2 ;
buffer [ m_cnt + + ] = y2 ;
buffer [ m_cnt + + ] = x3 ;
buffer [ m_cnt + + ] = y3 ;
buffer [ m_cnt + + ] = x4 ;
buffer [ m_cnt + + ] = y4 ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-10-01 12:54:20 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-10-01 12:54:20 +00:00
} else {
qDebug ( ) < < " GLBuffer overflow " ;
}
}
2011-12-11 12:13:38 +00:00
GLShortBuffer : : GLShortBuffer ( int max , int type , bool stippled )
: GLBuffer ( max , type , stippled )
2011-08-30 17:22:54 +00:00
{
2011-09-28 11:46:32 +00:00
buffer = new GLshort [ max + 8 ] ;
colors = new GLubyte [ max * 4 + ( 8 * 4 ) ] ;
2011-08-30 17:22:54 +00:00
}
2011-09-28 11:46:32 +00:00
GLShortBuffer : : ~ GLShortBuffer ( )
2011-08-30 17:22:54 +00:00
{
2011-09-28 11:46:32 +00:00
if ( colors ) delete [ ] colors ;
if ( buffer ) delete [ ] buffer ;
2011-08-30 17:22:54 +00:00
}
2011-09-28 11:46:32 +00:00
void GLShortBuffer : : add ( GLshort x , GLshort y , QColor & color )
2011-09-01 07:12:25 +00:00
{
if ( m_cnt < m_max + 2 ) {
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-01 07:12:25 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-01 07:12:25 +00:00
buffer [ m_cnt + + ] = x ;
buffer [ m_cnt + + ] = y ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-01 07:12:25 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-01 07:12:25 +00:00
} else {
qDebug ( ) < < " GLBuffer overflow " ;
}
}
2011-09-28 11:46:32 +00:00
void GLShortBuffer : : add ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 , QColor & color )
2011-09-01 07:12:25 +00:00
{
if ( m_cnt < m_max + 4 ) {
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-01 07:12:25 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-01 07:12:25 +00:00
buffer [ m_cnt + + ] = x1 ;
buffer [ m_cnt + + ] = y1 ;
buffer [ m_cnt + + ] = x2 ;
buffer [ m_cnt + + ] = y2 ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-01 07:12:25 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-01 07:12:25 +00:00
} else {
qDebug ( ) < < " GLBuffer overflow " ;
}
}
2011-09-28 11:46:32 +00:00
void GLShortBuffer : : add ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 , GLshort x3 , GLshort y3 , GLshort x4 , GLshort y4 , QColor & color ) // add with vertex colors
2011-09-11 06:16:45 +00:00
{
if ( m_cnt < m_max + 8 ) {
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-11 06:16:45 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-11 06:16:45 +00:00
buffer [ m_cnt + + ] = x1 ;
buffer [ m_cnt + + ] = y1 ;
buffer [ m_cnt + + ] = x2 ;
buffer [ m_cnt + + ] = y2 ;
buffer [ m_cnt + + ] = x3 ;
buffer [ m_cnt + + ] = y3 ;
buffer [ m_cnt + + ] = x4 ;
buffer [ m_cnt + + ] = y4 ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-11 06:16:45 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-11 06:16:45 +00:00
} else {
qDebug ( ) < < " GLBuffer overflow " ;
}
}
2011-09-28 11:46:32 +00:00
void GLShortBuffer : : draw ( )
2011-08-30 17:22:54 +00:00
{
if ( m_cnt > 0 ) {
2011-10-30 07:08:18 +00:00
bool antialias = m_forceantialias | | ( PROFILE . ExistsAndTrue ( " UseAntiAliasing " ) & & m_antialias ) ;
2011-08-30 17:22:54 +00:00
float size = m_size ;
if ( antialias ) {
glEnable ( GL_BLEND ) ;
glBlendFunc ( GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA ) ;
2011-09-21 14:10:10 +00:00
if ( m_type = = GL_LINES | | m_type = = GL_LINE_LOOP ) {
2011-08-30 17:22:54 +00:00
glEnable ( GL_LINE_SMOOTH ) ;
glHint ( GL_LINE_SMOOTH_HINT , GL_NICEST ) ;
size + = 0.5 ;
2011-09-21 14:10:10 +00:00
} else if ( m_type = = GL_POLYGON ) {
glEnable ( GL_POLYGON_SMOOTH ) ;
glHint ( GL_POLYGON_SMOOTH_HINT , GL_NICEST ) ;
2011-08-30 17:22:54 +00:00
}
}
2011-09-21 14:10:10 +00:00
if ( m_type = = GL_LINES | | m_type = = GL_LINE_LOOP ) {
2011-12-11 12:13:38 +00:00
if ( m_stippled ) {
glLineStipple ( 1 , 0xAAAA ) ;
glEnable ( GL_LINE_STIPPLE ) ;
} else {
glLineStipple ( 1 , 0xFFFF ) ;
}
2011-08-30 17:22:54 +00:00
glLineWidth ( size ) ;
2011-12-11 12:13:38 +00:00
2011-08-30 17:22:54 +00:00
} else if ( m_type = = GL_POINTS ) {
glPointSize ( size ) ;
2011-09-21 14:10:10 +00:00
} else if ( m_type = = GL_POLYGON ) {
glPolygonMode ( GL_BACK , GL_FILL ) ;
2011-08-30 17:22:54 +00:00
}
if ( m_scissor ) {
glScissor ( s1 , s2 , s3 , s4 ) ;
glEnable ( GL_SCISSOR_TEST ) ;
}
2011-09-01 07:12:25 +00:00
2011-08-30 17:22:54 +00:00
glVertexPointer ( 2 , GL_SHORT , 0 , buffer ) ;
2011-09-01 07:12:25 +00:00
2011-10-01 12:54:20 +00:00
if ( m_colcnt > 0 ) {
glColorPointer ( 4 , GL_UNSIGNED_BYTE , 0 , colors ) ;
glEnableClientState ( GL_COLOR_ARRAY ) ;
} else {
glColor4ub ( m_color . red ( ) , m_color . green ( ) , m_color . blue ( ) , m_color . alpha ( ) ) ;
}
2011-09-01 07:12:25 +00:00
glEnableClientState ( GL_VERTEX_ARRAY ) ;
2011-08-30 17:22:54 +00:00
glDrawArrays ( m_type , 0 , m_cnt > > 1 ) ;
2011-09-28 11:46:32 +00:00
glDisableClientState ( GL_COLOR_ARRAY ) ;
2011-08-30 17:22:54 +00:00
glDisableClientState ( GL_VERTEX_ARRAY ) ;
2011-10-01 12:54:20 +00:00
if ( m_colcnt > 0 ) {
glDisableClientState ( GL_COLOR_ARRAY ) ;
}
2011-09-01 07:12:25 +00:00
2011-08-30 17:22:54 +00:00
//qDebug() << "I Drawed" << m_cnt << "vertices";
m_cnt = 0 ;
2011-09-01 07:12:25 +00:00
m_colcnt = 0 ;
2011-08-30 17:22:54 +00:00
if ( m_scissor ) {
glDisable ( GL_SCISSOR_TEST ) ;
m_scissor = false ;
}
2011-09-21 14:10:10 +00:00
if ( m_type = = GL_POLYGON ) {
glPolygonMode ( GL_BACK , GL_FILL ) ;
}
2011-12-11 12:13:38 +00:00
if ( m_stippled ) {
glDisable ( GL_LINE_STIPPLE ) ;
glLineStipple ( 1 , 0xFFFF ) ;
}
2011-08-30 17:22:54 +00:00
if ( antialias ) {
2011-09-21 14:10:10 +00:00
if ( m_type = = GL_LINES | | m_type = = GL_LINE_LOOP ) {
2011-08-30 17:22:54 +00:00
glDisable ( GL_LINE_SMOOTH ) ;
2011-09-21 14:10:10 +00:00
} else if ( m_type = = GL_POLYGON ) {
glDisable ( GL_POLYGON_SMOOTH ) ;
2011-08-30 17:22:54 +00:00
}
glDisable ( GL_BLEND ) ;
}
}
}
2011-08-25 06:11:44 +00:00
2011-09-28 11:46:32 +00:00
/////////////////////////////////////////////////////////////////////
// GLFloatBuffer
2011-12-11 12:13:38 +00:00
GLFloatBuffer : : GLFloatBuffer ( int max , int type , bool stippled )
: GLBuffer ( max , type , stippled )
2011-09-28 11:46:32 +00:00
{
buffer = new GLfloat [ max + 8 ] ;
colors = new GLubyte [ max * 4 + ( 8 * 4 ) ] ;
}
GLFloatBuffer : : ~ GLFloatBuffer ( )
{
if ( colors ) delete [ ] colors ;
if ( buffer ) delete [ ] buffer ;
}
void GLFloatBuffer : : add ( GLfloat x , GLfloat y , QColor & color )
{
if ( m_cnt < m_max + 2 ) {
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-28 11:46:32 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-28 11:46:32 +00:00
buffer [ m_cnt + + ] = x ;
buffer [ m_cnt + + ] = y ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-28 11:46:32 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-28 11:46:32 +00:00
} else {
qDebug ( ) < < " GLBuffer overflow " ;
}
}
void GLFloatBuffer : : add ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 , QColor & color )
{
if ( m_cnt < m_max + 4 ) {
qDebug ( ) < < " GLFloatBuffer overflow " ;
return ;
}
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-28 11:46:32 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-28 11:46:32 +00:00
buffer [ m_cnt + + ] = x1 ;
buffer [ m_cnt + + ] = y1 ;
buffer [ m_cnt + + ] = x2 ;
buffer [ m_cnt + + ] = y2 ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-28 11:46:32 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-28 11:46:32 +00:00
}
void GLFloatBuffer : : add ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 , GLfloat x3 , GLfloat y3 , GLfloat x4 , GLfloat y4 , QColor & color ) // add with vertex colors
{
if ( m_cnt > = m_max + 8 ) {
qDebug ( ) < < " GLFloatBuffer overflow " ;
return ;
}
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-28 11:46:32 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-28 11:46:32 +00:00
buffer [ m_cnt + + ] = x1 ;
buffer [ m_cnt + + ] = y1 ;
buffer [ m_cnt + + ] = x2 ;
buffer [ m_cnt + + ] = y2 ;
buffer [ m_cnt + + ] = x3 ;
buffer [ m_cnt + + ] = y3 ;
buffer [ m_cnt + + ] = x4 ;
buffer [ m_cnt + + ] = y4 ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-28 11:46:32 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-28 11:46:32 +00:00
}
void GLFloatBuffer : : quadGrLR ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 , GLfloat x3 , GLfloat y3 , GLfloat x4 , GLfloat y4 , QColor & color , QColor & color2 ) // add with vertex colors
{
if ( m_cnt > = m_max + 8 ) {
qDebug ( ) < < " GLFloatBuffer overflow " ;
return ;
}
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-28 11:46:32 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-28 11:46:32 +00:00
buffer [ m_cnt + + ] = x1 ;
buffer [ m_cnt + + ] = y1 ;
buffer [ m_cnt + + ] = x2 ;
buffer [ m_cnt + + ] = y2 ;
buffer [ m_cnt + + ] = x3 ;
buffer [ m_cnt + + ] = y3 ;
buffer [ m_cnt + + ] = x4 ;
buffer [ m_cnt + + ] = y4 ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color2 . red ( ) ;
colors [ m_colcnt + + ] = color2 . green ( ) ;
colors [ m_colcnt + + ] = color2 . blue ( ) ;
colors [ m_colcnt + + ] = color2 . alpha ( ) ;
colors [ m_colcnt + + ] = color2 . red ( ) ;
colors [ m_colcnt + + ] = color2 . green ( ) ;
colors [ m_colcnt + + ] = color2 . blue ( ) ;
colors [ m_colcnt + + ] = color2 . alpha ( ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-28 11:46:32 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-28 11:46:32 +00:00
}
void GLFloatBuffer : : quadGrTB ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 , GLfloat x3 , GLfloat y3 , GLfloat x4 , GLfloat y4 , QColor & color , QColor & color2 )
{
if ( m_cnt > = m_max + 8 ) {
qDebug ( ) < < " GLFloatBuffer overflow " ;
return ;
}
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-28 11:46:32 +00:00
mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-28 11:46:32 +00:00
buffer [ m_cnt + + ] = x1 ;
buffer [ m_cnt + + ] = y1 ;
buffer [ m_cnt + + ] = x3 ;
buffer [ m_cnt + + ] = y3 ;
buffer [ m_cnt + + ] = x2 ;
buffer [ m_cnt + + ] = y2 ;
buffer [ m_cnt + + ] = x4 ;
buffer [ m_cnt + + ] = y4 ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color . red ( ) ;
colors [ m_colcnt + + ] = color . green ( ) ;
colors [ m_colcnt + + ] = color . blue ( ) ;
colors [ m_colcnt + + ] = color . alpha ( ) ;
colors [ m_colcnt + + ] = color2 . red ( ) ;
colors [ m_colcnt + + ] = color2 . green ( ) ;
colors [ m_colcnt + + ] = color2 . blue ( ) ;
colors [ m_colcnt + + ] = color2 . alpha ( ) ;
colors [ m_colcnt + + ] = color2 . red ( ) ;
colors [ m_colcnt + + ] = color2 . green ( ) ;
colors [ m_colcnt + + ] = color2 . blue ( ) ;
colors [ m_colcnt + + ] = color2 . alpha ( ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-28 11:46:32 +00:00
mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-28 11:46:32 +00:00
}
void GLFloatBuffer : : draw ( )
{
if ( m_cnt < = 0 ) return ;
2011-10-05 07:41:56 +00:00
bool antialias = m_forceantialias | | ( PROFILE [ " UseAntiAliasing " ] . toBool ( ) & & m_antialias ) ;
2011-09-28 11:46:32 +00:00
float size = m_size ;
if ( antialias ) {
glEnable ( GL_BLEND ) ;
glBlendFunc ( GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA ) ;
if ( m_type = = GL_LINES | | m_type = = GL_LINE_LOOP ) {
glEnable ( GL_LINE_SMOOTH ) ;
glHint ( GL_LINE_SMOOTH_HINT , GL_NICEST ) ;
size + = 0.5 ;
} else if ( m_type = = GL_POLYGON ) {
glEnable ( GL_POLYGON_SMOOTH ) ;
glHint ( GL_POLYGON_SMOOTH_HINT , GL_NICEST ) ;
}
}
if ( m_type = = GL_LINES | | m_type = = GL_LINE_LOOP ) {
glLineWidth ( size ) ;
2011-12-11 12:13:38 +00:00
if ( m_stippled ) {
glLineStipple ( 1 , 0xAAAA ) ;
glEnable ( GL_LINE_STIPPLE ) ;
}
2011-09-28 11:46:32 +00:00
} else if ( m_type = = GL_POINTS ) {
glPointSize ( size ) ;
} else if ( m_type = = GL_POLYGON ) {
glPolygonMode ( GL_BACK , GL_FILL ) ;
}
if ( m_scissor ) {
glScissor ( s1 , s2 , s3 , s4 ) ;
glEnable ( GL_SCISSOR_TEST ) ;
}
glVertexPointer ( 2 , GL_FLOAT , 0 , buffer ) ;
glColorPointer ( 4 , GL_UNSIGNED_BYTE , 0 , colors ) ;
//glColor4ub(200,128,95,200);
glEnableClientState ( GL_VERTEX_ARRAY ) ;
glEnableClientState ( GL_COLOR_ARRAY ) ;
glDrawArrays ( m_type , 0 , m_cnt > > 1 ) ;
glDisableClientState ( GL_COLOR_ARRAY ) ;
glDisableClientState ( GL_VERTEX_ARRAY ) ;
//qDebug() << "I Drawed" << m_cnt << "vertices";
m_cnt = 0 ;
m_colcnt = 0 ;
if ( m_scissor ) {
glDisable ( GL_SCISSOR_TEST ) ;
m_scissor = false ;
}
if ( m_type = = GL_POLYGON ) {
glPolygonMode ( GL_BACK , GL_FILL ) ;
}
if ( antialias ) {
if ( m_type = = GL_LINES | | m_type = = GL_LINE_LOOP ) {
2011-12-11 12:13:38 +00:00
if ( m_stippled ) glDisable ( GL_LINE_STIPPLE ) ;
2011-09-28 11:46:32 +00:00
glDisable ( GL_LINE_SMOOTH ) ;
} else if ( m_type = = GL_POLYGON ) {
glDisable ( GL_POLYGON_SMOOTH ) ;
}
glDisable ( GL_BLEND ) ;
}
}
//////////////////////////////////////////////////////////////////////////////
// gToolTip implementation
2011-09-05 10:28:41 +00:00
gToolTip : : gToolTip ( gGraphView * graphview )
: m_graphview ( graphview )
{
m_pos . setX ( 0 ) ;
m_pos . setY ( 0 ) ;
m_visible = false ;
2011-09-18 14:43:15 +00:00
m_spacer = 2 ; // pixels around text area
2011-09-05 10:28:41 +00:00
timer = new QTimer ( graphview ) ;
connect ( timer , SIGNAL ( timeout ( ) ) , SLOT ( timerDone ( ) ) ) ;
}
gToolTip : : ~ gToolTip ( )
{
disconnect ( timer , SLOT ( timerDone ( ) ) ) ;
delete timer ;
}
2011-12-05 15:03:16 +00:00
//void gToolTip::calcSize(QString text,int &w, int &h)
//{
2011-12-05 08:32:46 +00:00
/*GetTextExtent(text,w,h);
w + = m_spacer * 2 ;
h + = m_spacer * 2 ; */
2011-12-05 15:03:16 +00:00
//}
2011-09-05 10:28:41 +00:00
void gToolTip : : display ( QString text , int x , int y , int timeout )
{
m_text = text ;
m_visible = true ;
// TODO: split multiline here
2011-12-05 08:32:46 +00:00
//calcSize(m_text,tw,th);
m_pos . setX ( x ) ;
m_pos . setY ( y ) ;
//tw+=m_spacer*2;
//th+=m_spacer*2;
2011-09-18 14:43:15 +00:00
//th*=2;
2011-09-05 10:28:41 +00:00
if ( timer - > isActive ( ) ) {
timer - > stop ( ) ;
}
timer - > setSingleShot ( true ) ;
timer - > start ( timeout ) ;
}
void gToolTip : : cancel ( )
{
m_visible = false ;
timer - > stop ( ) ;
}
void gToolTip : : paint ( ) //actually paints it.
{
if ( ! m_visible ) return ;
int x = m_pos . x ( ) ; // - tw / 2;
int y = m_pos . y ( ) ; // - th;
/*GLBuffer * & lines=m_graphview->lines;
GLBuffer * & quads = m_graphview - > quads ;
QColor col ( 255 , 255 , 128 , 200 ) ;
quads - > add ( x , y , x , y + th , col ) ;
quads - > add ( x + tw , y + th , x + tw , y , col ) ;
QColor blk ( 0 , 0 , 0 , 255 ) ;
lines - > add ( x - 1 , y - 1 , x + tw + 1 , y - 1 , blk ) ;
lines - > add ( x - 1 , y + th + 1 , x + tw + 1 , y + th + 1 , blk ) ;
lines - > add ( x - 1 , y - 1 , x - 1 , y + th + 1 , blk ) ;
lines - > add ( x + tw + 1 , y - 1 , x + tw + 1 , y + th + 1 , blk ) ;
m_graphview - > AddTextQue ( m_text , x + m_spacer , y + m_spacer + th / 2 ) ; */
QPainter painter ( m_graphview ) ;
QRect br ;
QRect rect ( x , y , 0 , 0 ) ;
painter . setFont ( * defaultfont ) ;
rect = painter . boundingRect ( rect , Qt : : AlignCenter , m_text ) ;
2011-12-05 08:32:46 +00:00
int w = rect . width ( ) + m_spacer * 2 ;
int xx = rect . x ( ) - m_spacer ;
if ( xx < 0 ) xx = 0 ;
rect . setLeft ( xx ) ;
2011-09-18 14:43:15 +00:00
rect . setTop ( rect . y ( ) - rect . height ( ) / 2 ) ;
2011-12-05 08:32:46 +00:00
rect . setWidth ( w ) ;
2011-09-05 10:28:41 +00:00
//rect.setHeight(rect.height());
QBrush brush ( QColor ( 255 , 255 , 128 , 200 ) ) ;
painter . setBrush ( brush ) ;
int z = rect . x ( ) + rect . width ( ) ;
if ( z > m_graphview - > width ( ) - 10 ) {
rect . setLeft ( m_graphview - > width ( ) - 2 - rect . width ( ) ) ; //m_pos.x()-m_spacer);
rect . setRight ( m_graphview - > width ( ) - 2 ) ;
}
2011-09-05 11:23:35 +00:00
int h = rect . height ( ) ;
if ( rect . y ( ) < 0 ) {
rect . setY ( 0 ) ;
rect . setHeight ( h ) ;
}
2011-09-05 10:28:41 +00:00
painter . drawRoundedRect ( rect , 5 , 5 ) ;
painter . drawText ( rect , Qt : : AlignCenter , m_text ) ;
painter . end ( ) ;
}
void gToolTip : : timerDone ( )
{
m_visible = false ;
m_graphview - > updateGL ( ) ;
}
2011-08-25 06:11:44 +00:00
Layer : : Layer ( ChannelID code )
{
m_code = code ;
m_visible = true ;
m_movable = false ;
m_day = NULL ;
m_miny = m_maxy = 0 ;
m_minx = m_maxx = 0 ;
m_order = 0 ;
m_width = m_height = 0 ;
m_X = m_Y = 0 ;
m_position = LayerCenter ;
2011-09-12 13:27:26 +00:00
m_refcount = 0 ;
2011-08-25 06:11:44 +00:00
}
Layer : : ~ Layer ( )
{
2011-09-21 14:10:10 +00:00
for ( int i = 0 ; i < mgl_buffers . size ( ) ; i + + ) {
delete mgl_buffers [ i ] ;
}
2011-08-25 06:11:44 +00:00
}
2011-12-11 13:00:19 +00:00
void Layer : : drawGLBuf ( float linesize )
2011-08-31 05:24:48 +00:00
{
2011-12-11 13:00:19 +00:00
int type ;
float size ;
2011-08-31 05:24:48 +00:00
if ( ! m_visible ) return ;
2011-12-11 13:57:07 +00:00
GLBuffer * buf ;
2011-08-31 05:24:48 +00:00
for ( int i = 0 ; i < mgl_buffers . size ( ) ; i + + ) {
2011-12-11 13:57:07 +00:00
buf = mgl_buffers [ i ] ;
size = buf - > size ( ) ;
type = buf - > type ( ) ;
2011-12-11 13:00:19 +00:00
if ( ( linesize > size ) & & ( ( type = = GL_LINES ) | | ( type = = GL_LINE_LOOP ) ) ) {
2011-12-11 13:57:07 +00:00
buf - > setSize ( linesize ) ;
2011-12-11 13:00:19 +00:00
}
2011-12-11 13:57:07 +00:00
buf - > draw ( ) ;
//if ((linesize>size) && ((type==GL_LINES) || (type==GL_LINE_LOOP))) {
buf - > setSize ( size ) ;
//}
2011-08-31 05:24:48 +00:00
}
}
2011-08-25 06:11:44 +00:00
void Layer : : SetDay ( Day * d )
{
2011-09-17 12:39:00 +00:00
if ( d & & ! m_code . isEmpty ( ) ) {
2011-08-31 07:40:13 +00:00
m_day = d ;
m_minx = d - > first ( m_code ) ;
m_maxx = d - > last ( m_code ) ;
m_miny = d - > min ( m_code ) ;
m_maxy = d - > max ( m_code ) ;
} else m_day = NULL ;
2011-08-25 06:11:44 +00:00
}
bool Layer : : isEmpty ( )
{
2011-12-10 12:14:48 +00:00
//if (m_day && (m_day->count(m_code)>0))
if ( m_day & & ( m_day - > channelExists ( m_code ) ) )
2011-08-25 06:11:44 +00:00
return false ;
return true ;
}
void Layer : : setLayout ( LayerPosition position , short width , short height , short order )
{
m_position = position ;
m_width = width ;
m_height = height ;
m_order = order ;
}
LayerGroup : : LayerGroup ( ) :
2011-09-17 12:39:00 +00:00
Layer ( " " )
2011-08-25 06:11:44 +00:00
{
}
LayerGroup : : ~ LayerGroup ( )
{
}
bool LayerGroup : : isEmpty ( )
{
if ( ! m_day )
return true ;
bool empty = true ;
for ( int i = 0 ; i < layers . size ( ) ; i + + ) {
if ( layers [ i ] - > isEmpty ( ) ) {
empty = false ;
break ;
}
}
return empty ;
}
2011-12-11 13:00:19 +00:00
void LayerGroup : : drawGLBuf ( float linesize )
2011-08-31 05:24:48 +00:00
{
2011-12-11 13:00:19 +00:00
Layer : : drawGLBuf ( linesize ) ;
2011-08-31 05:24:48 +00:00
for ( int i = 0 ; i < layers . size ( ) ; i + + ) {
2011-12-11 13:00:19 +00:00
layers [ i ] - > drawGLBuf ( linesize ) ;
2011-08-31 05:24:48 +00:00
}
}
2011-08-25 06:11:44 +00:00
void LayerGroup : : SetDay ( Day * d )
{
2011-08-31 07:40:13 +00:00
m_day = d ;
2011-08-25 06:11:44 +00:00
for ( int i = 0 ; i < layers . size ( ) ; i + + ) {
layers [ i ] - > SetDay ( d ) ;
}
}
void LayerGroup : : AddLayer ( Layer * l )
{
layers . push_back ( l ) ;
2011-09-12 13:27:26 +00:00
l - > addref ( ) ;
2011-08-25 06:11:44 +00:00
}
qint64 LayerGroup : : Minx ( )
{
bool first = true ;
qint64 m = 0 , t ;
for ( int i = 0 ; i < layers . size ( ) ; i + + ) {
t = layers [ i ] - > Minx ( ) ;
if ( ! t ) continue ;
if ( first ) {
m = t ;
first = false ;
} else
if ( m > t ) m = t ;
}
return m ;
}
qint64 LayerGroup : : Maxx ( )
{
bool first = true ;
qint64 m = 0 , t ;
for ( int i = 0 ; i < layers . size ( ) ; i + + ) {
t = layers [ i ] - > Maxx ( ) ;
if ( ! t ) continue ;
if ( first ) {
m = t ;
first = false ;
} else
if ( m < t ) m = t ;
}
return m ;
}
EventDataType LayerGroup : : Miny ( )
{
bool first = true ;
EventDataType m = 0 , t ;
for ( int i = 0 ; i < layers . size ( ) ; i + + ) {
t = layers [ i ] - > Miny ( ) ;
if ( t = = layers [ i ] - > Minx ( ) ) continue ;
if ( first ) {
m = t ;
first = false ;
} else {
if ( m > t ) m = t ;
}
}
return m ;
}
EventDataType LayerGroup : : Maxy ( )
{
bool first = true ;
EventDataType m = 0 , t ;
for ( int i = 0 ; i < layers . size ( ) ; i + + ) {
t = layers [ i ] - > Maxy ( ) ;
if ( t = = layers [ i ] - > Miny ( ) ) continue ;
if ( first ) {
m = t ;
first = false ;
} else
if ( m < t ) m = t ;
}
return m ;
}
2011-08-29 00:10:46 +00:00
const double zoom_hard_limit = 500.0 ;
2011-09-01 09:03:23 +00:00
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-01 09:03:23 +00:00
2011-09-05 02:30:10 +00:00
gThread : : gThread ( gGraphView * g )
2011-08-31 11:44:53 +00:00
{
2011-09-05 02:30:10 +00:00
graphview = g ;
2011-08-31 12:24:45 +00:00
mutex . lock ( ) ;
2011-08-31 11:44:53 +00:00
}
2011-09-01 03:43:47 +00:00
gThread : : ~ gThread ( )
{
if ( isRunning ( ) ) {
m_running = false ;
mutex . unlock ( ) ;
wait ( ) ;
terminate ( ) ;
}
}
2011-08-31 11:44:53 +00:00
void gThread : : run ( )
{
2011-09-01 02:06:38 +00:00
m_running = true ;
2011-09-05 02:30:10 +00:00
gGraph * g ;
2011-09-01 02:06:38 +00:00
while ( m_running ) {
2011-09-05 02:30:10 +00:00
mutex . lock ( ) ;
//mutex.unlock();
if ( ! m_running ) break ;
do {
g = graphview - > popGraph ( ) ;
if ( g ) {
g - > paint ( g - > m_lastbounds . x ( ) , g - > m_lastbounds . y ( ) , g - > m_lastbounds . width ( ) , g - > m_lastbounds . height ( ) ) ;
2011-10-21 05:50:31 +00:00
//int i=0;
2011-09-05 02:30:10 +00:00
} else {
//mutex.lock();
graphview - > masterlock - > release ( 1 ) ; // This thread gives up for now..
}
} while ( g ) ;
2011-08-31 12:24:45 +00:00
}
2011-08-31 11:44:53 +00:00
}
2011-08-25 06:11:44 +00:00
2011-10-30 07:08:18 +00:00
# endif
2011-12-05 08:32:46 +00:00
gGraph : : gGraph ( gGraphView * graphview , QString title , QString units , int height , short group ) :
2011-08-25 06:11:44 +00:00
m_graphview ( graphview ) ,
m_title ( title ) ,
2011-12-05 08:32:46 +00:00
m_units ( units ) ,
2011-08-25 06:11:44 +00:00
m_height ( height ) ,
m_visible ( true )
{
2011-08-29 09:34:30 +00:00
m_min_height = 60 ;
2011-08-25 06:11:44 +00:00
m_layers . clear ( ) ;
2011-08-26 03:26:53 +00:00
2011-08-25 06:11:44 +00:00
if ( graphview ) {
2011-10-31 11:55:25 +00:00
graphview - > addGraph ( this , group ) ;
timer = new QTimer ( graphview ) ;
connect ( timer , SIGNAL ( timeout ( ) ) , SLOT ( Timeout ( ) ) ) ;
2011-08-25 06:11:44 +00:00
} else {
qWarning ( ) < < " gGraph created without a gGraphView container.. Naughty programmer!! Bad!!! " ;
}
2011-09-12 16:41:28 +00:00
m_margintop = 14 ;
2011-08-26 11:54:47 +00:00
m_marginbottom = 5 ;
2011-09-12 16:41:28 +00:00
m_marginleft = 0 ;
2011-09-12 16:10:18 +00:00
m_marginright = 15 ;
2011-08-25 09:00:19 +00:00
m_selecting_area = m_blockzoom = false ;
2011-08-28 23:45:57 +00:00
m_lastx23 = 0 ;
2011-08-31 12:24:45 +00:00
2011-09-28 11:46:32 +00:00
m_quad = new GLShortBuffer ( 64 , GL_QUADS ) ;
2011-09-03 12:59:08 +00:00
m_quad - > forceAntiAlias ( true ) ;
2011-09-17 16:47:57 +00:00
f_miny = f_maxy = 0 ;
2011-11-27 16:07:28 +00:00
m_enforceMinY = m_enforceMaxY = false ;
2011-11-27 06:25:27 +00:00
rec_miny = rec_maxy = 0 ;
2011-08-25 06:11:44 +00:00
}
gGraph : : ~ gGraph ( )
{
2011-09-12 13:27:26 +00:00
for ( int i = 0 ; i < m_layers . size ( ) ; i + + ) {
if ( m_layers [ i ] - > unref ( ) )
delete m_layers [ i ] ;
}
m_layers . clear ( ) ;
2011-09-03 12:59:08 +00:00
delete m_quad ;
2011-10-28 05:12:19 +00:00
timer - > stop ( ) ;
disconnect ( timer , 0 , 0 , 0 ) ;
delete timer ;
}
void gGraph : : Trigger ( int ms )
{
if ( timer - > isActive ( ) ) timer - > stop ( ) ;
timer - > setSingleShot ( true ) ;
timer - > start ( ms ) ;
}
void gGraph : : Timeout ( )
{
deselect ( ) ;
m_graphview - > timedRedraw ( 0 ) ;
2011-08-25 06:11:44 +00:00
}
2011-09-04 13:48:45 +00:00
2011-10-28 05:12:19 +00:00
void gGraph : : deselect ( )
{
for ( QVector < Layer * > : : iterator l = m_layers . begin ( ) ; l ! = m_layers . end ( ) ; l + + ) {
( * l ) - > deselect ( ) ;
}
}
2011-08-25 06:11:44 +00:00
bool gGraph : : isEmpty ( )
{
bool empty = true ;
for ( QVector < Layer * > : : iterator l = m_layers . begin ( ) ; l ! = m_layers . end ( ) ; l + + ) {
if ( ! ( * l ) - > isEmpty ( ) ) {
empty = false ;
break ;
}
}
return empty ;
}
2011-12-06 14:39:14 +00:00
float gGraph : : printScaleX ( ) { return m_graphview - > printScaleX ( ) ; }
float gGraph : : printScaleY ( ) { return m_graphview - > printScaleY ( ) ; }
2011-08-31 11:44:53 +00:00
2011-08-31 05:24:48 +00:00
void gGraph : : drawGLBuf ( )
{
2011-12-11 13:00:19 +00:00
float linesize = ceil ( m_graphview - > printScaleY ( ) ) ;
2011-08-31 05:24:48 +00:00
for ( int i = 0 ; i < m_layers . size ( ) ; i + + ) {
2011-12-11 13:00:19 +00:00
m_layers [ i ] - > drawGLBuf ( linesize ) ;
2011-08-31 05:24:48 +00:00
}
2011-09-03 12:59:08 +00:00
m_quad - > draw ( ) ;
2011-08-31 05:24:48 +00:00
}
2011-08-31 07:40:13 +00:00
void gGraph : : setDay ( Day * day )
{
m_day = day ;
for ( int i = 0 ; i < m_layers . size ( ) ; i + + ) {
m_layers [ i ] - > SetDay ( day ) ;
}
ResetBounds ( ) ;
}
2011-08-30 17:22:54 +00:00
/*void gGraph::invalidate()
2011-08-25 06:11:44 +00:00
{ // this may not be necessary, as scrollbar & resize issues a full redraw..
//m_lastbounds.setWidth(m_graphview->width());
m_lastbounds . setY ( m_graphview - > findTop ( this ) ) ;
m_lastbounds . setX ( gGraphView : : titleWidth ) ;
m_lastbounds . setHeight ( m_height * m_graphview - > scaleY ( ) ) ;
m_lastbounds . setWidth ( m_graphview - > width ( ) - gGraphView : : titleWidth ) ;
int i = 0 ;
//m_lastbounds.setHeight(0);
}
void gGraph : : repaint ( )
{
if ( m_lastbounds . height ( ) > 0 ) {
//glScissor(0,m_lastbounds.y(),m_lastbounds.width(),m_lastbounds.height());
// m_graphview->swapBuffers(); // how fast is this??
//glEnable(GL_SCISSOR_BOX);
glBegin ( GL_QUADS ) ;
glColor4f ( 1 , 1 , 1 , 1.0 ) ; // Gradient End
glVertex2i ( 0 , m_lastbounds . y ( ) ) ;
glVertex2i ( gGraphView : : titleWidth , m_lastbounds . y ( ) ) ;
glVertex2i ( gGraphView : : titleWidth , m_lastbounds . y ( ) + height ( ) ) ;
glVertex2i ( 0 , m_lastbounds . y ( ) + height ( ) ) ;
glEnd ( ) ;
paint ( m_lastbounds . x ( ) , m_lastbounds . y ( ) , m_lastbounds . width ( ) , m_lastbounds . height ( ) ) ;
m_graphview - > swapBuffers ( ) ;
//glDisable(GL_SCISSOR_BOX);
} else {
qDebug ( ) < < " Wanted to redraw graph " < < m_title < < " but previous bounds were invalid.. Issuing a slower full redraw instead. Todo: Find out why. " ;
m_graphview - > updateGL ( ) ;
}
}
2011-08-30 17:22:54 +00:00
*/
2011-08-31 11:44:53 +00:00
2011-08-25 06:11:44 +00:00
void gGraph : : qglColor ( QColor col )
{
m_graphview - > qglColor ( col ) ;
}
2011-08-31 11:44:53 +00:00
2011-08-25 06:11:44 +00:00
void gGraph : : renderText ( QString text , int x , int y , float angle , QColor color , QFont * font )
{
2011-08-26 01:14:49 +00:00
m_graphview - > AddTextQue ( text , x , y , angle , color , font ) ;
2011-08-25 06:11:44 +00:00
}
void gGraph : : paint ( int originX , int originY , int width , int height )
{
m_lastbounds = QRect ( originX , originY , width , height ) ;
2011-09-01 03:37:25 +00:00
2011-08-30 08:46:24 +00:00
/*glEnable(GL_BLEND);
2011-08-25 06:11:44 +00:00
glBegin ( GL_QUADS ) ;
2011-08-30 08:46:24 +00:00
glColor4f ( 1 , 1 , 1 , 0.4 ) ; // Gradient End
2011-08-25 06:11:44 +00:00
glVertex2i ( originX , originY ) ;
glVertex2i ( originX + width , originY ) ;
2011-08-30 08:46:24 +00:00
glColor4f ( 1 , 1 , 1.0 , .7 ) ; // Gradient End
2011-08-25 06:11:44 +00:00
glVertex2i ( originX + width , originY + height ) ;
glVertex2i ( originX , originY + height ) ;
glEnd ( ) ;
2011-08-30 08:46:24 +00:00
glDisable ( GL_BLEND ) ;
*/
2011-08-31 12:24:45 +00:00
2011-12-12 07:10:45 +00:00
int fw , font_height ;
GetTextExtent ( " Wg@ " , fw , font_height ) ;
2011-12-12 07:17:01 +00:00
m_margintop = font_height + ( 8 * printScaleY ( ) ) ;
2011-12-12 14:06:08 +00:00
m_marginbottom = 5 ;
2011-12-12 07:10:45 +00:00
2011-08-31 12:24:45 +00:00
//glColor4f(0,0,0,1);
2011-12-07 10:19:28 +00:00
left = marginLeft ( ) , right = marginRight ( ) , top = marginTop ( ) , bottom = marginBottom ( ) ;
int x , y ;
GetTextExtent ( title ( ) , x , y , mediumfont ) ;
int title_x = ( float ( y ) * 2 ) ;
renderText ( title ( ) , marginLeft ( ) + title_x , originY + height / 2 , 90 , Qt : : black , mediumfont ) ;
left + = title_x ;
//#define DEBUG_LAYOUT
# ifdef DEBUG_LAYOUT
QColor col = Qt : : red ;
lines ( ) - > add ( 0 , originY , 0 , originY + height , col ) ;
lines ( ) - > add ( left , originY , left , originY + height , col ) ;
# endif
//renderText(title(),0,originY+height/2,90,Qt::black,mediumfont);
2011-08-25 06:11:44 +00:00
int tmp ;
2011-12-07 10:19:28 +00:00
//originX=0;//marginLeft()+title_x;
left = 0 ;
//originY+=marginTop();
//width-=marginLeft()+marginRight();
//height-=marginTop()+marginBottom();
2011-09-01 07:12:25 +00:00
//int lsize=m_layers.size();
2011-08-25 06:11:44 +00:00
for ( int i = 0 ; i < m_layers . size ( ) ; i + + ) {
Layer * ll = m_layers [ i ] ;
2011-12-06 14:39:14 +00:00
tmp = ll - > Height ( ) * m_graphview - > printScaleY ( ) ;
2011-08-25 06:11:44 +00:00
if ( ll - > position ( ) = = LayerTop ) top + = tmp ;
if ( ll - > position ( ) = = LayerBottom ) bottom + = tmp ;
}
for ( int i = 0 ; i < m_layers . size ( ) ; i + + ) {
Layer * ll = m_layers [ i ] ;
2011-12-06 14:39:14 +00:00
tmp = ll - > Width ( ) * m_graphview - > printScaleX ( ) ;
2011-08-25 06:11:44 +00:00
if ( ll - > position ( ) = = LayerLeft ) {
ll - > paint ( * this , originX + left , originY + top , tmp , height - top - bottom ) ;
left + = tmp ;
2011-12-07 10:19:28 +00:00
# ifdef DEBUG_LAYOUT
lines ( ) - > add ( originX + left - 1 , originY , originX + left - 1 , originY + height , col ) ;
# endif
2011-08-25 06:11:44 +00:00
}
if ( ll - > position ( ) = = LayerRight ) {
right + = tmp ;
ll - > paint ( * this , originX + width - right , originY + top , tmp , height - top - bottom ) ;
2011-12-07 10:19:28 +00:00
# ifdef DEBUG_LAYOUT
lines ( ) - > add ( originX + width - right , originY , originX + width - right , originY + height , col ) ;
# endif
2011-08-25 06:11:44 +00:00
}
}
2011-12-07 10:19:28 +00:00
bottom = marginBottom ( ) ; top = marginTop ( ) ;
2011-08-25 06:11:44 +00:00
for ( int i = 0 ; i < m_layers . size ( ) ; i + + ) {
Layer * ll = m_layers [ i ] ;
2011-12-06 14:39:14 +00:00
tmp = ll - > Height ( ) * m_graphview - > printScaleY ( ) ;
2011-08-25 06:11:44 +00:00
if ( ll - > position ( ) = = LayerTop ) {
ll - > paint ( * this , originX + left , originY + top , width - left - right , tmp ) ;
top + = tmp ;
}
if ( ll - > position ( ) = = LayerBottom ) {
bottom + = tmp ;
ll - > paint ( * this , originX + left , originY + height - bottom , width - left - right , tmp ) ;
}
}
for ( int i = 0 ; i < m_layers . size ( ) ; i + + ) {
Layer * ll = m_layers [ i ] ;
if ( ll - > position ( ) = = LayerCenter ) {
ll - > paint ( * this , originX + left , originY + top , width - left - right , height - top - bottom ) ;
}
}
2011-08-25 09:00:19 +00:00
if ( m_selection . width ( ) > 0 & & m_selecting_area ) {
2011-09-03 15:54:27 +00:00
QColor col ( 128 , 128 , 255 , 128 ) ;
quads ( ) - > add ( originX + m_selection . x ( ) , originY + top , originX + m_selection . x ( ) + m_selection . width ( ) , originY + top , col ) ;
2011-12-07 12:23:19 +00:00
quads ( ) - > add ( originX + m_selection . x ( ) + m_selection . width ( ) , originY + height - bottom , originX + m_selection . x ( ) , originY + height - bottom , col ) ;
2011-08-25 09:00:19 +00:00
}
2011-09-05 02:30:10 +00:00
}
void gGraphView : : queGraph ( gGraph * g , int left , int top , int width , int height )
{
g - > m_lastbounds = QRect ( left , top , width , height ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLED_THREADED_DRAWING
2011-09-05 02:30:10 +00:00
dl_mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-05 02:30:10 +00:00
m_drawlist . push_back ( g ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLED_THREADED_DRAWING
2011-09-05 02:30:10 +00:00
dl_mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-05 02:30:10 +00:00
}
2011-10-31 11:55:25 +00:00
void gGraphView : : trashGraphs ( )
2011-09-10 14:17:45 +00:00
{
2011-12-01 15:40:32 +00:00
//for (int i=0;i<m_graphs.size();i++) {
2011-09-10 14:17:45 +00:00
//delete m_graphs[i];
2011-12-01 15:40:32 +00:00
//}
2011-09-10 14:17:45 +00:00
m_graphs . clear ( ) ;
2011-12-01 15:40:32 +00:00
m_graphsbytitle . clear ( ) ;
2011-09-10 14:17:45 +00:00
}
2011-09-05 02:30:10 +00:00
gGraph * gGraphView : : popGraph ( )
{
gGraph * g ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLED_THREADED_DRAWING
2011-09-05 02:30:10 +00:00
dl_mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-05 02:30:10 +00:00
if ( ! m_drawlist . isEmpty ( ) ) {
g = m_drawlist . at ( 0 ) ;
m_drawlist . pop_front ( ) ;
} else g = NULL ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLED_THREADED_DRAWING
2011-09-05 02:30:10 +00:00
dl_mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-05 02:30:10 +00:00
return g ;
2011-08-25 06:11:44 +00:00
}
void gGraph : : AddLayer ( Layer * l , LayerPosition position , short width , short height , short order , bool movable , short x , short y )
{
l - > setLayout ( position , width , height , order ) ;
l - > setMovable ( movable ) ;
l - > setPos ( x , y ) ;
2011-09-12 13:27:26 +00:00
l - > addref ( ) ;
2011-08-25 06:11:44 +00:00
m_layers . push_back ( l ) ;
}
2011-09-03 10:09:22 +00:00
void gGraph : : redraw ( ) { m_graphview - > updateGL ( ) ; }
2011-10-28 05:12:19 +00:00
void gGraph : : timedRedraw ( int ms )
{
m_graphview - > timedRedraw ( ms ) ;
}
2011-09-03 10:09:22 +00:00
2011-08-25 06:11:44 +00:00
void gGraph : : mouseMoveEvent ( QMouseEvent * event )
{
// qDebug() << m_title << "Move" << event->pos() << m_graphview->pointClicked();
2011-10-21 05:50:31 +00:00
//int y=event->pos().y();
2011-08-25 06:11:44 +00:00
int x = event - > pos ( ) . x ( ) ;
2011-08-31 05:24:48 +00:00
int x2 = m_graphview - > pointClicked ( ) . x ( ) ; //,y2=m_graphview->pointClicked().y();
2011-12-07 12:23:19 +00:00
int w = m_lastbounds . width ( ) - ( right ) ;
2011-08-31 05:24:48 +00:00
//int h=m_lastbounds.height()-(bottom+m_marginbottom);
2011-08-25 06:11:44 +00:00
double xx = max_x - min_x ;
double xmult = xx / w ;
2011-08-25 13:55:44 +00:00
2011-09-03 10:09:22 +00:00
2011-10-21 05:50:31 +00:00
//bool nolayer=false;
2011-09-03 15:54:27 +00:00
bool doredraw = false ;
2011-09-03 10:09:22 +00:00
2011-08-25 13:55:44 +00:00
if ( m_graphview - > m_selected_graph = = this ) {
if ( event - > buttons ( ) & Qt : : LeftButton ) {
2011-08-26 11:54:47 +00:00
//qDebug() << m_title << "Moved" << x << y << left << right << top << bottom << m_width << h;
2011-08-25 13:55:44 +00:00
int a1 = MIN ( x , x2 ) ;
int a2 = MAX ( x , x2 ) ;
2011-12-11 13:00:19 +00:00
if ( a1 < left ) a1 = left ;
2011-08-25 13:55:44 +00:00
if ( a2 > w ) a2 = w ;
m_selecting_area = true ;
2011-12-11 13:00:19 +00:00
m_selection = QRect ( a1 - 1 , 0 , a2 - a1 , m_lastbounds . height ( ) ) ;
2011-12-08 04:10:35 +00:00
double w2 = m_lastbounds . width ( ) ; //-(right+m_marginright)-(m_marginleft+left);
2011-09-13 04:36:49 +00:00
if ( m_blockzoom ) {
xmult = ( rmax_x - rmin_x ) / w2 ;
} else xmult = ( max_x - min_x ) / w2 ;
qint64 a = double ( a2 - a1 ) * xmult ;
2011-09-13 05:05:39 +00:00
float d = double ( a ) / 86400000.0 ;
2011-09-13 04:36:49 +00:00
int h = a / 3600000 ;
int m = ( a / 60000 ) % 60 ;
int s = ( a / 1000 ) % 60 ;
int ms ( a % 1000 ) ;
QString str ;
if ( d > 1 ) {
2011-09-13 05:05:39 +00:00
str . sprintf ( " %1.0f days " , d ) ;
2011-09-13 04:36:49 +00:00
} else {
str . sprintf ( " %02i:%02i:%02i:%03i " , h , m , s , ms ) ;
}
if ( qstatus2 ) {
qstatus2 - > setText ( str ) ;
}
2011-09-03 15:54:27 +00:00
//m_graphview->updateGL();
2011-10-21 05:50:31 +00:00
//nolayer=false;
2011-09-03 15:54:27 +00:00
doredraw = true ;
2011-08-25 13:55:44 +00:00
} else if ( event - > buttons ( ) & Qt : : RightButton ) {
m_graphview - > setPointClicked ( event - > pos ( ) ) ;
x - = left + m_marginleft ;
x2 - = left + m_marginleft ;
//int a1=MIN(x,x2);
//int a2=MAX(x,x2);
//if (a1<m_marginleft+left) a1=m_marginleft+left;
//if (a2>w) a2=w;
if ( ! m_blockzoom ) {
xx = max_x - min_x ;
w - = m_marginleft + left ;
xmult = xx / double ( w ) ;
qint64 j1 = xmult * x ;
qint64 j2 = xmult * x2 ;
qint64 jj = j2 - j1 ;
min_x + = jj ;
max_x + = jj ;
2011-08-25 14:06:00 +00:00
if ( min_x < rmin_x ) {
min_x = rmin_x ;
max_x = rmin_x + xx ;
}
if ( max_x > rmax_x ) {
max_x = rmax_x ;
min_x = rmax_x - xx ;
}
2011-08-25 13:55:44 +00:00
//if (a2>rmax_x) a2=rmax_x;
2011-09-03 15:54:27 +00:00
m_graphview - > SetXBounds ( min_x , max_x , m_group , false ) ;
doredraw = true ;
2011-10-21 05:50:31 +00:00
//nolayer=true;
2011-08-25 14:06:00 +00:00
} else {
qint64 qq = rmax_x - rmin_x ;
xx = max_x - min_x ;
2011-08-26 04:50:05 +00:00
if ( xx = = qq ) xx = 1800000 ;
2011-08-25 14:06:00 +00:00
w - = m_marginleft + left ;
xmult = qq / double ( w ) ;
qint64 j1 = ( xmult * x ) ;
min_x = rmin_x + j1 - ( xx / 2 ) ;
max_x = min_x + xx ;
if ( min_x < rmin_x ) {
min_x = rmin_x ;
max_x = rmin_x + xx ;
}
if ( max_x > rmax_x ) {
max_x = rmax_x ;
min_x = rmax_x - xx ;
}
2011-09-03 15:54:27 +00:00
m_graphview - > SetXBounds ( min_x , max_x , m_group , false ) ;
doredraw = true ;
2011-10-21 05:50:31 +00:00
//nolayer=true;
2011-08-25 14:06:00 +00:00
2011-08-25 13:55:44 +00:00
}
}
}
2011-08-25 09:00:19 +00:00
2011-09-03 15:54:27 +00:00
//if (!nolayer) { // no mouse button
2011-09-03 12:59:08 +00:00
for ( int i = 0 ; i < m_layers . size ( ) ; i + + ) {
if ( m_layers [ i ] - > mouseMoveEvent ( event ) ) doredraw = true ;
}
if ( doredraw )
m_graphview - > updateGL ( ) ;
2011-09-03 15:54:27 +00:00
//}
2011-09-03 10:09:22 +00:00
//if (x>left+m_marginleft && x<m_lastbounds.width()-(right+m_marginright) && y>top+m_margintop && y<m_lastbounds.height()-(bottom+m_marginbottom)) { // main area
// x-=left+m_marginleft;
// y-=top+m_margintop;
// //qDebug() << m_title << "Moved" << x << y << left << right << top << bottom << m_width << m_height;
// }
2011-08-25 06:11:44 +00:00
}
void gGraph : : mousePressEvent ( QMouseEvent * event )
{
2011-09-03 10:09:22 +00:00
for ( int i = 0 ; i < m_layers . size ( ) ; i + + )
if ( m_layers [ i ] - > mousePressEvent ( event ) ) return ;
2011-08-31 05:24:48 +00:00
/*int y=event->pos().y();
2011-08-25 06:11:44 +00:00
int x = event - > pos ( ) . x ( ) ;
2011-08-26 11:54:47 +00:00
int w = m_lastbounds . width ( ) - ( right + m_marginright ) ;
2011-08-31 05:24:48 +00:00
//int h=m_lastbounds.height()-(bottom+m_marginbottom);
//int x2,y2;
2011-08-25 06:11:44 +00:00
double xx = max_x - min_x ;
2011-08-31 05:24:48 +00:00
//double xmult=xx/w;
2011-08-26 11:54:47 +00:00
if ( x > left + m_marginleft & & x < m_lastbounds . width ( ) - ( right + m_marginright ) & & y > top + m_margintop & & y < m_lastbounds . height ( ) - ( bottom + m_marginbottom ) ) { // main area
2011-08-25 06:11:44 +00:00
x - = left + m_marginleft ;
y - = top + m_margintop ;
2011-08-31 05:24:48 +00:00
} */
2011-08-26 05:29:19 +00:00
//qDebug() << m_title << "Clicked" << x << y << left << right << top << bottom << m_width << m_height;
2011-08-25 06:11:44 +00:00
}
2011-08-25 08:02:04 +00:00
2011-08-25 06:11:44 +00:00
void gGraph : : mouseReleaseEvent ( QMouseEvent * event )
{
2011-09-03 10:09:22 +00:00
for ( int i = 0 ; i < m_layers . size ( ) ; i + + )
if ( m_layers [ i ] - > mouseReleaseEvent ( event ) )
return ;
2011-08-25 06:11:44 +00:00
int y = event - > pos ( ) . y ( ) ;
int x = event - > pos ( ) . x ( ) ;
2011-12-11 13:00:19 +00:00
int w = m_lastbounds . width ( ) - left - right ; //(m_marginleft+left+right+m_marginright);
int h = m_lastbounds . height ( ) - ( bottom ) ; //+m_marginbottom);
2011-08-25 08:02:04 +00:00
int x2 = m_graphview - > pointClicked ( ) . x ( ) , y2 = m_graphview - > pointClicked ( ) . y ( ) ;
2011-08-25 13:13:58 +00:00
2011-08-26 04:15:15 +00:00
//qDebug() << m_title << "Released" << min_x << max_x << x << y << x2 << y2 << left << right << top << bottom << m_width << m_height;
2011-08-27 05:31:53 +00:00
if ( m_selecting_area ) {
m_selecting_area = false ;
m_selection . setWidth ( 0 ) ;
2011-09-21 09:39:16 +00:00
if ( m_graphview - > horizTravel ( ) > mouse_movement_threshold ) {
2011-12-11 13:00:19 +00:00
x - = left ; //+m_marginleft;
y - = top ; //+m_margintop;
x2 - = left ; //+m_marginleft;
y2 - = top ; //+m_margintop;
2011-08-27 05:31:53 +00:00
if ( x < 0 ) x = 0 ;
if ( x2 < 0 ) x2 = 0 ;
if ( x > w ) x = w ;
if ( x2 > w ) x2 = w ;
2011-09-13 04:36:49 +00:00
double xx ;
double xmult ;
2011-08-27 05:31:53 +00:00
if ( ! m_blockzoom ) {
2011-09-13 04:36:49 +00:00
xx = max_x - min_x ;
xmult = xx / double ( w ) ;
2011-08-27 05:31:53 +00:00
qint64 j1 = min_x + xmult * x ;
qint64 j2 = min_x + xmult * x2 ;
qint64 a1 = MIN ( j1 , j2 )
qint64 a2 = MAX ( j1 , j2 )
//if (a1<rmin_x) a1=rmin_x;
if ( a2 > rmax_x ) a2 = rmax_x ;
2011-12-05 10:50:58 +00:00
if ( a1 < = rmin_x & & a2 < = rmin_x ) {
//qDebug() << "Foo??";
} else {
if ( a2 - a1 < zoom_hard_limit ) a2 = a1 + zoom_hard_limit ;
m_graphview - > SetXBounds ( a1 , a2 , m_group ) ;
}
2011-08-27 05:31:53 +00:00
} else {
2011-09-13 04:36:49 +00:00
xx = rmax_x - rmin_x ;
xmult = xx / double ( w ) ;
2011-08-27 05:31:53 +00:00
qint64 j1 = rmin_x + xmult * x ;
qint64 j2 = rmin_x + xmult * x2 ;
qint64 a1 = MIN ( j1 , j2 )
qint64 a2 = MAX ( j1 , j2 )
//if (a1<rmin_x) a1=rmin_x;
if ( a2 > rmax_x ) a2 = rmax_x ;
2011-12-05 10:50:58 +00:00
if ( a1 < = rmin_x & & a2 < = rmin_x ) {
qDebug ( ) < < " Foo2?? " ;
} else {
if ( a2 - a1 < zoom_hard_limit ) a2 = a1 + zoom_hard_limit ;
m_graphview - > SetXBounds ( a1 , a2 , m_group ) ;
}
2011-08-27 05:31:53 +00:00
}
2011-09-13 04:36:49 +00:00
2011-08-27 05:31:53 +00:00
return ;
} else m_graphview - > updateGL ( ) ;
}
2011-08-26 04:09:56 +00:00
2011-12-11 13:00:19 +00:00
if ( ( m_graphview - > horizTravel ( ) < mouse_movement_threshold ) & & ( x > left & & x < w + left & & y > top & & y < h ) ) {
// normal click in main area
2011-08-27 05:06:08 +00:00
if ( ! m_blockzoom ) {
2011-08-28 23:58:59 +00:00
double zoom ;
2011-08-27 05:06:08 +00:00
if ( event - > button ( ) & Qt : : RightButton ) {
2011-08-28 23:58:59 +00:00
zoom = 1.33 ;
if ( event - > modifiers ( ) & Qt : : ControlModifier ) zoom * = 1.5 ;
ZoomX ( zoom , x ) ; // Zoom out
2011-08-27 05:06:08 +00:00
return ;
} else if ( event - > button ( ) & Qt : : LeftButton ) {
2011-08-28 23:58:59 +00:00
zoom = 0.75 ;
if ( event - > modifiers ( ) & Qt : : ControlModifier ) zoom / = 1.5 ;
ZoomX ( zoom , x ) ; // zoom in.
2011-08-27 05:06:08 +00:00
return ;
}
} else {
2011-12-11 13:00:19 +00:00
x - = left ;
y - = top ;
2011-08-27 05:06:08 +00:00
//w-=m_marginleft+left;
double qq = rmax_x - rmin_x ;
2011-08-28 23:29:46 +00:00
double xmult ;
2011-08-27 05:06:08 +00:00
double xx = max_x - min_x ;
2011-08-28 23:45:57 +00:00
//if (xx==qq) xx=1800000;
2011-08-27 05:06:08 +00:00
xmult = qq / double ( w ) ;
2011-08-28 23:52:07 +00:00
if ( ( xx = = qq ) | | ( x = = m_lastx23 ) ) {
2011-08-28 23:58:59 +00:00
double zoom ;
2011-08-28 23:29:46 +00:00
if ( event - > button ( ) & Qt : : RightButton ) {
2011-08-28 23:58:59 +00:00
zoom = 1.33 ;
if ( event - > modifiers ( ) & Qt : : ControlModifier ) zoom * = 1.5 ;
2011-08-28 23:29:46 +00:00
} else if ( event - > button ( ) & Qt : : LeftButton ) {
2011-08-28 23:58:59 +00:00
zoom = 0.75 ;
if ( event - > modifiers ( ) & Qt : : ControlModifier ) zoom / = 1.5 ;
2011-08-28 23:29:46 +00:00
}
2011-08-28 23:58:59 +00:00
xx * = zoom ;
2011-08-29 00:10:46 +00:00
if ( xx < qq / zoom_hard_limit ) xx = qq / zoom_hard_limit ;
2011-08-28 23:45:57 +00:00
if ( xx > qq ) xx = qq ;
2011-08-28 23:29:46 +00:00
}
double j1 = xmult * x ;
min_x = rmin_x + j1 - ( xx / 2.0 ) ;
2011-08-27 05:06:08 +00:00
max_x = min_x + xx ;
if ( min_x < rmin_x ) {
min_x = rmin_x ;
max_x = rmin_x + xx ;
2011-08-28 23:45:57 +00:00
} else
2011-08-27 05:06:08 +00:00
if ( max_x > rmax_x ) {
max_x = rmax_x ;
min_x = rmax_x - xx ;
}
m_graphview - > SetXBounds ( min_x , max_x , m_group ) ;
2011-08-28 23:45:57 +00:00
m_lastx23 = x ;
2011-08-25 10:59:49 +00:00
}
}
2011-08-25 09:00:19 +00:00
//m_graphview->updateGL();
2011-08-25 06:11:44 +00:00
}
2011-08-25 08:02:04 +00:00
2011-08-25 13:13:58 +00:00
void gGraph : : wheelEvent ( QWheelEvent * event )
2011-08-25 06:11:44 +00:00
{
2011-08-26 04:15:15 +00:00
//qDebug() << m_title << "Wheel" << event->x() << event->y() << event->delta();
2011-08-25 13:13:58 +00:00
//int y=event->pos().y();
int x = event - > pos ( ) . x ( ) - m_graphview - > titleWidth ; //(left+m_marginleft);
if ( event - > delta ( ) > 0 ) {
ZoomX ( 0.75 , x ) ;
} else {
ZoomX ( 1.5 , x ) ;
}
2011-08-25 06:11:44 +00:00
}
void gGraph : : mouseDoubleClickEvent ( QMouseEvent * event )
{
2011-08-26 04:09:56 +00:00
//mousePressEvent(event);
2011-08-26 05:29:19 +00:00
//mouseReleaseEvent(event);
int y = event - > pos ( ) . y ( ) ;
int x = event - > pos ( ) . x ( ) ;
2011-08-26 11:54:47 +00:00
int w = m_lastbounds . width ( ) - ( m_marginleft + left + right + m_marginright ) ;
int h = m_lastbounds . height ( ) - ( bottom + m_marginbottom ) ;
2011-08-31 05:24:48 +00:00
//int x2=m_graphview->pointClicked().x(),y2=m_graphview->pointClicked().y();
2011-09-21 09:39:16 +00:00
if ( ( m_graphview - > horizTravel ( ) < mouse_movement_threshold ) & & ( x > left + m_marginleft & & x < w + m_marginleft + left & & y > top + m_margintop & & y < h ) ) { // normal click in main area
2011-08-26 05:29:19 +00:00
if ( event - > button ( ) & Qt : : RightButton ) {
ZoomX ( 1.66 , x ) ; // Zoon out
return ;
} else if ( event - > button ( ) & Qt : : LeftButton ) {
ZoomX ( 0.75 / 2.0 , x ) ; // zoom in.
return ;
}
}
2011-08-26 04:09:56 +00:00
//mousePressEvent(event);
//mouseReleaseEvent(event);
2011-08-26 04:15:15 +00:00
//qDebug() << m_title << "Double Clicked" << event->x() << event->y();
2011-08-25 06:11:44 +00:00
}
void gGraph : : keyPressEvent ( QKeyEvent * event )
{
2011-10-28 03:45:31 +00:00
for ( QVector < Layer * > : : iterator i = m_layers . begin ( ) ; i ! = m_layers . end ( ) ; i + + ) {
( * i ) - > keyPressEvent ( event ) ;
}
2011-11-24 12:47:25 +00:00
//qDebug() << m_title << "Key Pressed.. implement me" << event->key();
2011-08-25 06:11:44 +00:00
}
2011-08-25 08:02:04 +00:00
void gGraph : : ZoomX ( double mult , int origin_px )
{
2011-12-11 13:00:19 +00:00
int width = m_lastbounds . width ( ) - left - right ; //(m_marginleft+left+right+m_marginright);
if ( origin_px = = 0 ) origin_px = ( width / 2 ) ; else origin_px - = left ;
2011-08-25 08:02:04 +00:00
if ( origin_px < 0 ) origin_px = 0 ;
if ( origin_px > width ) origin_px = width ;
// Okay, I want it to zoom in centered on the mouse click area..
// Find X graph position of mouse click
// find current zoom width
// apply zoom
// center on point found in step 1.
qint64 min = min_x ;
qint64 max = max_x ;
double hardspan = rmax_x - rmin_x ;
double span = max - min ;
double ww = double ( origin_px ) / double ( width ) ;
double origin = ww * span ;
//double center=0.5*span;
//double dist=(origin-center);
double q = span * mult ;
if ( q > hardspan ) q = hardspan ;
2011-08-29 00:10:46 +00:00
if ( q < hardspan / zoom_hard_limit ) q = hardspan / zoom_hard_limit ;
2011-08-25 08:02:04 +00:00
min = min + origin - ( q * ww ) ;
max = min + q ;
if ( min < rmin_x ) {
min = rmin_x ;
max = min + q ;
}
if ( max > rmax_x ) {
max = rmax_x ;
min = max - q ;
}
2011-08-26 03:26:53 +00:00
m_graphview - > SetXBounds ( min , max , m_group ) ;
2011-08-25 08:02:04 +00:00
//updateSelectionTime(max-min);
}
2011-08-26 08:18:14 +00:00
void gGraph : : DrawTextQue ( )
{
m_graphview - > DrawTextQue ( ) ;
}
2011-08-25 08:02:04 +00:00
2011-08-25 06:11:44 +00:00
// margin recalcs..
void gGraph : : resize ( int width , int height )
{
2011-08-31 05:24:48 +00:00
width = width ;
height = height ;
2011-08-26 11:54:47 +00:00
//m_height=height;
//m_width=width;
2011-08-25 06:11:44 +00:00
}
qint64 gGraph : : MinX ( )
{
qint64 val = 0 , tmp ;
for ( QVector < Layer * > : : iterator l = m_layers . begin ( ) ; l ! = m_layers . end ( ) ; l + + ) {
if ( ( * l ) - > isEmpty ( ) ) continue ;
tmp = ( * l ) - > Minx ( ) ;
2011-10-08 14:13:39 +00:00
if ( ! tmp ) continue ;
2011-10-07 05:28:35 +00:00
if ( ! val | | tmp < val ) val = tmp ;
2011-08-25 06:11:44 +00:00
}
if ( val ) rmin_x = val ;
return val ;
}
qint64 gGraph : : MaxX ( )
{
2011-10-07 05:28:35 +00:00
//bool first=true;
2011-08-25 06:11:44 +00:00
qint64 val = 0 , tmp ;
for ( QVector < Layer * > : : iterator l = m_layers . begin ( ) ; l ! = m_layers . end ( ) ; l + + ) {
if ( ( * l ) - > isEmpty ( ) ) continue ;
tmp = ( * l ) - > Maxx ( ) ;
2011-10-07 05:28:35 +00:00
//if (!tmp) continue;
if ( ! val | | tmp > val ) val = tmp ;
2011-08-25 06:11:44 +00:00
}
if ( val ) rmax_x = val ;
return val ;
}
EventDataType gGraph : : MinY ( )
{
bool first = true ;
EventDataType val = 0 , tmp ;
2011-11-27 16:07:28 +00:00
if ( m_enforceMinY ) return rmin_y = f_miny ;
2011-08-25 06:11:44 +00:00
for ( QVector < Layer * > : : iterator l = m_layers . begin ( ) ; l ! = m_layers . end ( ) ; l + + ) {
if ( ( * l ) - > isEmpty ( ) ) continue ;
tmp = ( * l ) - > Miny ( ) ;
2011-10-07 05:28:35 +00:00
if ( tmp = = 0 & & tmp = = ( * l ) - > Maxy ( ) )
continue ;
2011-08-25 06:11:44 +00:00
if ( first ) {
val = tmp ;
first = false ;
} else {
if ( tmp < val ) val = tmp ;
}
}
return rmin_y = val ;
}
EventDataType gGraph : : MaxY ( )
{
bool first = true ;
EventDataType val = 0 , tmp ;
2011-11-27 16:07:28 +00:00
if ( m_enforceMaxY ) return rmax_y = f_maxy ;
2011-08-25 06:11:44 +00:00
for ( QVector < Layer * > : : iterator l = m_layers . begin ( ) ; l ! = m_layers . end ( ) ; l + + ) {
if ( ( * l ) - > isEmpty ( ) ) continue ;
tmp = ( * l ) - > Maxy ( ) ;
if ( tmp = = 0 & & tmp = = ( * l ) - > Miny ( ) ) continue ;
if ( first ) {
val = tmp ;
first = false ;
} else {
if ( tmp > val ) val = tmp ;
}
}
return rmax_y = val ;
}
void gGraph : : SetMinX ( qint64 v )
{
2011-10-07 05:28:35 +00:00
rmin_x = min_x = v ;
2011-08-25 06:11:44 +00:00
}
void gGraph : : SetMaxX ( qint64 v )
{
2011-10-07 05:28:35 +00:00
rmax_x = max_x = v ;
2011-08-25 06:11:44 +00:00
}
void gGraph : : SetMinY ( EventDataType v )
{
2011-09-04 12:25:11 +00:00
rmin_y = min_y = v ;
2011-08-25 06:11:44 +00:00
}
void gGraph : : SetMaxY ( EventDataType v )
{
2011-09-04 12:25:11 +00:00
rmax_y = max_y = v ;
2011-08-25 06:11:44 +00:00
}
2011-09-28 11:46:32 +00:00
GLShortBuffer * gGraph : : lines ( )
2011-09-01 07:12:25 +00:00
{
return m_graphview - > lines ;
}
2011-09-28 11:46:32 +00:00
GLShortBuffer * gGraph : : backlines ( )
2011-09-01 07:12:25 +00:00
{
return m_graphview - > backlines ;
}
2011-09-28 11:46:32 +00:00
GLShortBuffer * gGraph : : quads ( )
2011-09-03 12:59:08 +00:00
{
return m_graphview - > quads ;
}
2011-12-11 12:13:38 +00:00
GLShortBuffer * gGraph : : stippled ( )
{
return m_graphview - > stippled ;
}
2011-12-12 07:10:45 +00:00
short gGraph : : marginLeft ( ) { return m_marginleft ; } //*m_graphview->printScaleX(); }
short gGraph : : marginRight ( ) { return m_marginright ; } //*m_graphview->printScaleX(); }
short gGraph : : marginTop ( ) { return m_margintop ; } //*m_graphview->printScaleY(); }
short gGraph : : marginBottom ( ) { return m_marginbottom ; } //*m_graphview->printScaleY(); }
2011-09-01 07:12:25 +00:00
2011-12-01 15:40:32 +00:00
QPixmap gGraph : : renderPixmap ( int w , int h )
{
2011-12-06 14:39:14 +00:00
gGraphView * sg = mainwin - > snapshotGraph ( ) ;
if ( ! sg ) return QPixmap ( ) ;
2011-12-07 10:19:28 +00:00
double scale = sg - > printScaleY ( ) ; //sqrt(sg->printScaleX()*sg->printScaleX()+sg->printScaleY()*sg->printScaleY());
2011-12-12 14:06:08 +00:00
/*
2011-12-06 14:39:14 +00:00
fa . setPointSize ( fa . pointSize ( ) * scale ) ;
fb . setPointSize ( fb . pointSize ( ) * scale ) ;
fc . setPointSize ( fc . pointSize ( ) * scale ) ;
2011-12-01 15:40:32 +00:00
defaultfont = & fa ;
mediumfont = & fb ;
2011-12-12 14:06:08 +00:00
bigfont = & fc ; */
2011-12-01 15:40:32 +00:00
sg - > hideSplitter ( ) ;
gGraphView * tgv = m_graphview ;
m_graphview = sg ;
//qint64 rmx=rmin_x,rMx=rmax_x;
//qint64 mx=min_x, Mx=max_x;
float tmp = m_height ;
2011-12-06 14:39:14 +00:00
m_height = PROFILE [ " GraphHeight " ] . toInt ( ) * sg - > printScaleY ( ) ;
2011-12-01 15:40:32 +00:00
sg - > trashGraphs ( ) ;
sg - > addGraph ( this ) ;
//sg->ResetBounds();
//sg->SetXBounds(mx,Mx);
2011-12-06 14:39:14 +00:00
//sg->updateScrollBar();
2011-12-01 15:40:32 +00:00
sg - > updateScale ( ) ;
2011-12-12 14:06:08 +00:00
//QImage image=sg->grabFrameBuffer();
//QPixmap pm=QPixmap::fromImage(image);
2011-12-01 15:40:32 +00:00
QPixmap pm = sg - > renderPixmap ( w , h , false ) ;
sg - > trashGraphs ( ) ;
m_graphview = tgv ;
m_height = tmp ;
2011-12-12 14:06:08 +00:00
/*
2011-12-01 15:40:32 +00:00
defaultfont = _defaultfont ;
mediumfont = _mediumfont ;
2011-12-12 14:06:08 +00:00
bigfont = _bigfont ; */
2011-12-01 15:40:32 +00:00
return pm ;
}
2011-08-25 06:11:44 +00:00
// Sets a new Min & Max X clipping, refreshing the graph and all it's layers.
void gGraph : : SetXBounds ( qint64 minx , qint64 maxx )
{
min_x = minx ;
max_x = maxx ;
//repaint();
//m_graphview->updateGL();
}
int gGraph : : flipY ( int y )
{
return m_graphview - > height ( ) - y ;
}
void gGraph : : ResetBounds ( )
{
min_x = MinX ( ) ;
max_x = MaxX ( ) ;
min_y = MinY ( ) ;
max_y = MaxY ( ) ;
}
2011-09-05 10:28:41 +00:00
void gGraph : : ToolTip ( QString text , int x , int y , int timeout )
{
m_graphview - > m_tooltip - > display ( text , x , y , timeout ) ;
}
2011-08-25 06:11:44 +00:00
2011-09-03 02:51:55 +00:00
void gGraph : : roundY ( EventDataType & miny , EventDataType & maxy )
{
2011-11-27 16:07:28 +00:00
int m , t ;
2011-12-01 09:09:33 +00:00
bool ymin_good = false , ymax_good = false ;
2011-11-27 16:07:28 +00:00
if ( rec_miny ! = rec_maxy ) {
2011-11-28 04:05:09 +00:00
if ( miny > rec_miny ) miny = rec_miny ;
if ( maxy < rec_maxy ) maxy = rec_maxy ;
2011-12-01 06:06:13 +00:00
2011-12-01 09:09:33 +00:00
if ( miny = = rec_miny ) ymin_good = true ;
if ( maxy = = rec_maxy ) ymax_good = true ;
2011-11-27 06:25:27 +00:00
}
2011-11-27 16:07:28 +00:00
if ( maxy = = miny ) {
m = ceil ( maxy / 2.0 ) ;
t = m * 2 ;
if ( maxy = = t ) t + = 2 ;
2011-12-01 09:09:33 +00:00
if ( ! ymax_good ) maxy = t ;
2011-11-27 16:07:28 +00:00
m = floor ( miny / 2.0 ) ;
t = m * 2 ;
if ( miny = = t ) t - = 2 ;
2011-12-01 06:06:13 +00:00
if ( miny > = 0 & & t < 0 ) t = 0 ;
2011-12-01 09:09:33 +00:00
if ( ! ymin_good ) miny = t ;
2011-11-27 16:07:28 +00:00
return ;
2011-12-01 06:06:13 +00:00
}
2011-12-06 14:39:14 +00:00
if ( maxy > = 300 ) {
m = ceil ( maxy / 10.0 ) ;
t = m * 10 ;
if ( ! ymax_good ) maxy = t ;
m = floor ( miny / 10.0 ) ;
if ( ! ymin_good ) miny = m * 10 ;
} else if ( maxy > = 5 ) {
2011-11-28 04:05:09 +00:00
m = ceil ( maxy / 5.0 ) ;
t = m * 5 ;
2011-12-01 09:09:33 +00:00
if ( ! ymax_good ) maxy = t ;
2011-11-27 16:07:28 +00:00
m = floor ( miny / 5.0 ) ;
2011-12-01 09:09:33 +00:00
if ( ! ymin_good ) miny = m * 5 ;
2011-09-03 02:51:55 +00:00
} else {
2011-09-04 12:25:11 +00:00
if ( maxy = = miny & & maxy = = 0 ) {
maxy = 0.5 ;
} else {
2011-12-01 06:06:13 +00:00
//maxy*=4.0;
//miny*=4.0;
2011-12-01 09:09:33 +00:00
if ( ! ymax_good ) maxy = ceil ( maxy ) ;
if ( ! ymin_good ) miny = floor ( miny ) ;
2011-12-01 06:06:13 +00:00
//maxy/=4.0;
//miny/=4.0;
2011-09-04 12:25:11 +00:00
}
2011-09-03 02:51:55 +00:00
}
2011-11-27 16:07:28 +00:00
2011-12-01 09:09:33 +00:00
//if (m_enforceMinY) { miny=f_miny; }
//if (m_enforceMaxY) { maxy=f_maxy; }
2011-09-03 02:51:55 +00:00
}
2011-08-25 06:11:44 +00:00
2011-08-29 07:13:58 +00:00
gGraphView : : gGraphView ( QWidget * parent , gGraphView * shared ) :
QGLWidget ( parent , shared ) ,
2011-08-25 06:11:44 +00:00
m_offsetY ( 0 ) , m_offsetX ( 0 ) , m_scaleY ( 1.0 ) , m_scrollbar ( NULL )
{
2011-08-29 07:13:58 +00:00
m_shared = shared ;
2011-08-25 06:11:44 +00:00
m_sizer_index = m_graph_index = 0 ;
2011-08-26 01:14:49 +00:00
m_textque_items = 0 ;
2011-08-25 06:11:44 +00:00
m_button_down = m_graph_dragging = m_sizer_dragging = false ;
2011-08-26 11:54:47 +00:00
m_lastypos = m_lastxpos = 0 ;
2011-08-26 04:09:56 +00:00
m_horiz_travel = 0 ;
2011-08-25 06:11:44 +00:00
this - > setMouseTracking ( true ) ;
2011-08-29 07:13:58 +00:00
m_emptytext = QObject : : tr ( " No Data " ) ;
2011-08-25 06:11:44 +00:00
InitGraphs ( ) ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-08-31 11:44:53 +00:00
m_idealthreads = QThread : : idealThreadCount ( ) ;
if ( m_idealthreads < = 0 ) m_idealthreads = 1 ;
masterlock = new QSemaphore ( m_idealthreads ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-09-05 10:28:41 +00:00
m_tooltip = new gToolTip ( this ) ;
2011-09-07 14:26:00 +00:00
/*for (int i=0;i<m_idealthreads;i++) {
2011-09-05 02:30:10 +00:00
gThread * gt = new gThread ( this ) ;
m_threads . push_back ( gt ) ;
2011-09-07 14:26:00 +00:00
//gt->start();
} */
2011-09-05 02:30:10 +00:00
2011-09-28 11:46:32 +00:00
lines = new GLShortBuffer ( 100000 , GL_LINES ) ; // big fat shared line list
backlines = new GLShortBuffer ( 10000 , GL_LINES ) ; // big fat shared line list
quads = new GLShortBuffer ( 1024 , GL_QUADS ) ; // big fat shared line list
2011-09-03 12:59:08 +00:00
quads - > forceAntiAlias ( true ) ;
2011-12-11 12:13:38 +00:00
stippled = new GLShortBuffer ( 20000 , GL_LINES , true ) ;
stippled - > setSize ( 1 ) ;
stippled - > forceAntiAlias ( false ) ;
2011-09-07 09:15:33 +00:00
setFocusPolicy ( Qt : : StrongFocus ) ;
2011-09-11 07:03:04 +00:00
m_showsplitter = true ;
2011-10-28 05:12:19 +00:00
timer = new QTimer ( this ) ;
2011-10-31 11:55:25 +00:00
connect ( timer , SIGNAL ( timeout ( ) ) , SLOT ( refreshTimeout ( ) ) ) ;
2011-12-06 14:39:14 +00:00
print_scaleY = print_scaleX = 1.0 ;
2011-08-25 06:11:44 +00:00
}
gGraphView : : ~ gGraphView ( )
{
2011-10-30 07:08:18 +00:00
# ifdef ENABLE_THREADED_DRAWING
2011-09-05 02:30:10 +00:00
for ( int i = 0 ; i < m_threads . size ( ) ; i + + ) {
delete m_threads [ i ] ;
}
2011-10-30 07:08:18 +00:00
delete masterlock ;
# endif
2011-08-25 06:11:44 +00:00
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
delete m_graphs [ i ] ;
}
2011-09-05 10:28:41 +00:00
delete m_tooltip ;
2011-08-25 06:11:44 +00:00
m_graphs . clear ( ) ;
2011-12-11 12:13:38 +00:00
delete stippled ;
2011-09-01 07:12:25 +00:00
delete lines ;
2011-09-03 12:59:08 +00:00
delete backlines ;
delete quads ;
2011-08-25 06:11:44 +00:00
if ( m_scrollbar ) {
this - > disconnect ( SIGNAL ( sliderMoved ( int ) ) , this ) ;
}
2011-10-28 05:12:19 +00:00
disconnect ( timer , 0 , 0 , 0 ) ;
timer - > stop ( ) ;
delete timer ;
2011-08-25 06:11:44 +00:00
}
2011-08-26 01:14:49 +00:00
void gGraphView : : DrawTextQue ( )
{
glPushAttrib ( GL_COLOR_BUFFER_BIT ) ;
2011-08-31 06:49:40 +00:00
int w , h ;
2011-09-11 14:36:51 +00:00
QPainter painter ;
2011-10-30 07:08:18 +00:00
# ifndef USE_RENDERTEXT
painter . begin ( this ) ;
# endif
2011-08-26 01:14:49 +00:00
for ( int i = 0 ; i < m_textque_items ; i + + ) {
// GL Font drawing is ass in Qt.. :(
TextQue & q = m_textque [ i ] ;
2011-10-30 07:08:18 +00:00
# ifndef USE_RENDERTEXT
QBrush b ( q . color ) ;
painter . setBrush ( b ) ;
painter . setFont ( * q . font ) ;
# endif
2011-09-11 13:58:26 +00:00
2011-08-26 01:14:49 +00:00
if ( q . angle = = 0 ) {
2011-09-11 12:03:06 +00:00
qglColor ( q . color ) ;
2011-10-30 07:08:18 +00:00
// *********************************************************
// Holy crap this is slow
// The following line is responsible for 77% of drawing time
// *********************************************************
# ifdef USE_RENDERTEXT
2011-09-11 12:03:06 +00:00
renderText ( q . x , q . y , q . text , * q . font ) ;
2011-10-30 07:08:18 +00:00
# else
painter . drawText ( q . x , q . y , q . text ) ;
# endif
2011-08-26 01:14:49 +00:00
} else {
2011-10-30 07:08:18 +00:00
# ifdef USE_RENDERTEXT
2011-09-11 13:58:26 +00:00
painter . begin ( this ) ;
2011-09-11 12:03:06 +00:00
QBrush b ( q . color ) ;
painter . setBrush ( b ) ;
painter . setFont ( * q . font ) ;
2011-10-30 07:08:18 +00:00
# endif
w = painter . fontMetrics ( ) . width ( q . text ) ;
h = painter . fontMetrics ( ) . xHeight ( ) + 2 ;
2011-09-11 13:58:26 +00:00
2011-08-31 06:49:40 +00:00
painter . translate ( q . x , q . y ) ;
painter . rotate ( - q . angle ) ;
painter . drawText ( floor ( - w / 2.0 ) , floor ( - h / 2.0 ) , q . text ) ;
painter . rotate ( + q . angle ) ;
painter . translate ( - q . x , - q . y ) ;
2011-10-30 07:08:18 +00:00
# ifdef USE_RENDERTEXT
2011-09-11 13:58:26 +00:00
painter . end ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-08-26 01:14:49 +00:00
}
q . text . clear ( ) ;
2011-08-26 03:26:53 +00:00
//q.text.squeeze();
2011-08-26 01:14:49 +00:00
}
2011-10-30 07:08:18 +00:00
# ifndef USE_RENDERTEXT
painter . end ( ) ;
# endif
2011-08-26 01:14:49 +00:00
glPopAttrib ( ) ;
2011-08-26 04:15:15 +00:00
//qDebug() << "rendered" << m_textque_items << "text items";
2011-08-26 01:14:49 +00:00
m_textque_items = 0 ;
}
2011-09-05 10:28:41 +00:00
void gGraphView : : AddTextQue ( QString & text , short x , short y , float angle , QColor color , QFont * font )
2011-08-26 01:14:49 +00:00
{
2011-10-30 07:08:18 +00:00
# ifdef ENABLED_THREADED_DRAWING
2011-08-31 14:28:19 +00:00
text_mutex . lock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-08-26 01:14:49 +00:00
if ( m_textque_items > = textque_max ) {
DrawTextQue ( ) ;
}
2011-08-31 11:44:53 +00:00
TextQue & q = m_textque [ m_textque_items + + ] ;
2011-10-30 07:08:18 +00:00
# ifdef ENABLED_THREADED_DRAWING
2011-08-31 14:28:19 +00:00
text_mutex . unlock ( ) ;
2011-10-30 07:08:18 +00:00
# endif
2011-08-26 01:14:49 +00:00
q . text = text ;
q . x = x ;
q . y = y ;
q . angle = angle ;
q . color = color ;
q . font = font ;
2011-08-30 17:22:54 +00:00
}
2011-08-25 06:11:44 +00:00
2011-10-31 11:55:25 +00:00
void gGraphView : : addGraph ( gGraph * g , short group )
2011-08-25 06:11:44 +00:00
{
2011-09-10 16:27:07 +00:00
if ( ! g ) {
qDebug ( ) < < " Attempted to add an empty graph! " ;
return ;
}
2011-08-25 06:11:44 +00:00
if ( ! m_graphs . contains ( g ) ) {
2011-08-26 03:26:53 +00:00
g - > setGroup ( group ) ;
2011-08-25 06:11:44 +00:00
m_graphs . push_back ( g ) ;
2011-11-27 16:07:28 +00:00
if ( ! m_graphsbytitle . contains ( g - > title ( ) ) ) {
m_graphsbytitle [ g - > title ( ) ] = g ;
} else {
qDebug ( ) < < " Can't have to graphs with the same title in one GraphView!! " ;
}
2011-09-10 14:17:45 +00:00
// updateScrollBar();
2011-08-25 06:11:44 +00:00
}
}
float gGraphView : : totalHeight ( )
{
float th = 0 ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-08-29 07:13:58 +00:00
if ( m_graphs [ i ] - > isEmpty ( ) | | ( ! m_graphs [ i ] - > visible ( ) ) ) continue ;
2011-08-25 06:11:44 +00:00
th + = m_graphs [ i ] - > height ( ) + graphSpacer ;
}
return ceil ( th ) ;
}
float gGraphView : : findTop ( gGraph * graph )
{
float th = - m_offsetY ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
if ( m_graphs [ i ] = = graph ) break ;
2011-08-29 07:13:58 +00:00
if ( m_graphs [ i ] - > isEmpty ( ) | | ( ! m_graphs [ i ] - > visible ( ) ) ) continue ;
2011-08-25 06:11:44 +00:00
th + = m_graphs [ i ] - > height ( ) * m_scaleY + graphSpacer ;
}
//th-=m_offsetY;
return ceil ( th ) ;
}
float gGraphView : : scaleHeight ( )
{
float th = 0 ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-08-29 07:13:58 +00:00
if ( m_graphs [ i ] - > isEmpty ( ) | | ( ! m_graphs [ i ] - > visible ( ) ) ) continue ;
2011-08-25 06:11:44 +00:00
th + = m_graphs [ i ] - > height ( ) * m_scaleY + graphSpacer ;
}
return ceil ( th ) ;
}
void gGraphView : : resizeEvent ( QResizeEvent * e )
{
QGLWidget : : resizeEvent ( e ) ; // This ques a redraw event..
updateScale ( ) ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
m_graphs [ i ] - > resize ( e - > size ( ) . width ( ) , m_graphs [ i ] - > height ( ) * m_scaleY ) ;
}
}
void gGraphView : : scrollbarValueChanged ( int val )
{
//qDebug() << "Scrollbar Changed" << val;
2011-08-26 04:15:15 +00:00
if ( m_offsetY ! = val ) {
m_offsetY = val ;
updateGL ( ) ; // do this on a timer?
}
2011-08-25 06:11:44 +00:00
}
2011-09-03 15:54:27 +00:00
void gGraphView : : ResetBounds ( bool refresh ) //short group)
2011-08-25 06:11:44 +00:00
{
2011-10-21 05:50:31 +00:00
Q_UNUSED ( refresh )
2011-10-08 13:56:33 +00:00
qint64 m1 = 0 , m2 = 0 ;
2011-11-28 12:03:43 +00:00
gGraph * g = NULL ;
2011-08-25 06:11:44 +00:00
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-10-07 05:28:35 +00:00
m_graphs [ i ] - > ResetBounds ( ) ;
2011-10-08 14:13:39 +00:00
if ( ! m_graphs [ i ] - > min_x ) continue ;
2011-11-27 23:10:16 +00:00
g = m_graphs [ i ] ;
2011-10-08 13:56:33 +00:00
if ( ! m1 | | m_graphs [ i ] - > min_x < m1 ) m1 = m_graphs [ i ] - > min_x ;
if ( ! m2 | | m_graphs [ i ] - > max_x > m2 ) m2 = m_graphs [ i ] - > max_x ;
2011-10-07 05:28:35 +00:00
}
if ( PROFILE [ " LinkGroups " ] . toBool ( ) ) {
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
m_graphs [ i ] - > SetMinX ( m1 ) ;
m_graphs [ i ] - > SetMaxX ( m2 ) ;
}
2011-08-25 06:11:44 +00:00
}
2011-11-27 23:10:16 +00:00
if ( ! g ) g = m_graphs [ 0 ] ;
2011-12-02 11:40:47 +00:00
m_minx = g - > min_x ;
m_maxx = g - > max_x ;
2011-11-27 23:10:16 +00:00
qint64 xx = g - > max_x - g - > min_x ;
2011-09-13 04:36:49 +00:00
double d = xx / 86400000L ;
int h = xx / 3600000L ;
int m = ( xx / 60000 ) % 60 ;
int s = ( xx / 1000 ) % 60 ;
int ms ( xx % 1000 ) ;
QString str ;
if ( d > 1 ) {
2011-09-13 05:05:39 +00:00
str . sprintf ( " %1.0f days " , ceil ( double ( xx ) / 86400000.0 ) ) ;
2011-09-13 04:36:49 +00:00
} else {
str . sprintf ( " %02i:%02i:%02i:%03i " , h , m , s , ms ) ;
}
if ( qstatus2 ) {
qstatus2 - > setText ( str ) ;
}
2011-08-25 06:11:44 +00:00
updateScale ( ) ;
}
2011-12-02 11:40:47 +00:00
void gGraphView : : GetXBounds ( qint64 & st , qint64 & et )
{
st = m_minx ;
et = m_maxx ;
}
2011-08-25 06:11:44 +00:00
2011-09-03 15:54:27 +00:00
void gGraphView : : SetXBounds ( qint64 minx , qint64 maxx , short group , bool refresh )
2011-08-25 06:11:44 +00:00
{
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-10-07 05:28:35 +00:00
if ( PROFILE [ " LinkGroups " ] . toBool ( ) | | ( m_graphs [ i ] - > group ( ) = = group ) ) {
2011-08-26 03:26:53 +00:00
m_graphs [ i ] - > SetXBounds ( minx , maxx ) ;
2011-10-07 05:28:35 +00:00
}
2011-08-25 06:11:44 +00:00
}
2011-12-02 11:40:47 +00:00
m_minx = minx ;
m_maxx = maxx ;
2011-09-13 04:36:49 +00:00
qint64 xx = maxx - minx ;
double d = xx / 86400000L ;
int h = xx / 3600000L ;
int m = ( xx / 60000 ) % 60 ;
int s = ( xx / 1000 ) % 60 ;
int ms ( xx % 1000 ) ;
QString str ;
if ( d > 1 ) {
str . sprintf ( " %1.0f days " , ceil ( xx / 86400000.0 ) ) ;
} else {
str . sprintf ( " %02i:%02i:%02i:%03i " , h , m , s , ms ) ;
}
if ( qstatus2 ) {
qstatus2 - > setText ( str ) ;
}
2011-09-03 15:54:27 +00:00
if ( refresh ) updateGL ( ) ;
2011-08-25 06:11:44 +00:00
}
void gGraphView : : updateScale ( )
{
float th = totalHeight ( ) ; // height of all graphs
float h = height ( ) ; // height of main widget
if ( th < h ) {
m_scaleY = h / th ; // less graphs than fits on screen, so scale to fit
} else {
m_scaleY = 1.0 ;
}
updateScrollBar ( ) ;
}
void gGraphView : : updateScrollBar ( )
{
if ( ! m_scrollbar ) return ;
if ( ! m_graphs . size ( ) ) return ;
float th = scaleHeight ( ) ; // height of all graphs
float h = height ( ) ; // height of main widget
float vis = 0 ;
2011-08-29 07:13:58 +00:00
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) vis + = m_graphs [ i ] - > isEmpty ( ) | | ( ! m_graphs [ i ] - > visible ( ) ) ? 0 : 1 ;
2011-08-25 06:11:44 +00:00
2011-09-11 07:03:04 +00:00
//vis+=1;
2011-08-25 06:11:44 +00:00
if ( th < h ) { // less graphs than fits on screen
m_scrollbar - > setMaximum ( 0 ) ; // turn scrollbar off.
} else { // more graphs than fit on screen
//m_scaleY=1.0;
float avgheight = th / vis ;
m_scrollbar - > setPageStep ( avgheight ) ;
m_scrollbar - > setSingleStep ( avgheight / 8.0 ) ;
m_scrollbar - > setMaximum ( th - height ( ) ) ;
if ( m_offsetY > th - height ( ) ) {
m_offsetY = th - height ( ) ;
}
}
}
void gGraphView : : setScrollBar ( MyScrollBar * sb )
{
m_scrollbar = sb ;
m_scrollbar - > setMinimum ( 0 ) ;
updateScrollBar ( ) ;
this - > connect ( m_scrollbar , SIGNAL ( valueChanged ( int ) ) , SLOT ( scrollbarValueChanged ( int ) ) ) ;
}
void gGraphView : : initializeGL ( )
{
setAutoFillBackground ( false ) ;
setAutoBufferSwap ( false ) ;
glDisable ( GL_LIGHTING ) ;
glDisable ( GL_DEPTH_TEST ) ;
glDisable ( GL_TEXTURE_2D ) ;
}
void gGraphView : : resizeGL ( int w , int h )
{
glViewport ( 0 , 0 , w , h ) ;
glMatrixMode ( GL_PROJECTION ) ;
glLoadIdentity ( ) ;
glOrtho ( 0 , w , h , 0 , - 1 , 1 ) ;
glMatrixMode ( GL_MODELVIEW ) ;
glLoadIdentity ( ) ;
}
void gGraphView : : paintGL ( )
{
2011-08-30 17:22:54 +00:00
2011-08-25 06:11:44 +00:00
if ( width ( ) < = 0 ) return ;
if ( height ( ) < = 0 ) return ;
2011-12-04 11:04:01 +00:00
QTime time ;
time . start ( ) ;
2011-08-25 06:11:44 +00:00
glClearColor ( 255 , 255 , 255 , 255 ) ;
//glClearDepth(1);
glClear ( GL_COLOR_BUFFER_BIT ) ; // | GL_DEPTH_BUFFER_BIT);
2011-09-01 09:03:23 +00:00
/*glEnable(GL_BLEND);
glBlendFunc ( GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA ) ;
glBegin ( GL_QUADS ) ;
2011-08-25 06:11:44 +00:00
glColor4f ( 1.0 , 1.0 , 1.0 , 1.0 ) ; // Gradient start
glVertex2f ( 0 , height ( ) ) ;
glVertex2f ( 0 , 0 ) ;
2011-08-30 17:22:54 +00:00
//glColor4f(0.9,0.9,0.9,1.0); // Gradient End
2011-08-25 06:11:44 +00:00
glVertex2f ( width ( ) , 0 ) ;
glVertex2f ( width ( ) , height ( ) ) ;
2011-09-01 09:03:23 +00:00
glEnd ( ) ;
glDisable ( GL_BLEND ) ; */
2011-08-25 06:11:44 +00:00
float px = titleWidth - m_offsetX ;
float py = - m_offsetY ;
2011-08-29 07:13:58 +00:00
int numgraphs = 0 ;
2011-08-25 06:11:44 +00:00
float h , w ;
//ax=px;//-m_offsetX;
2011-10-21 05:50:31 +00:00
//bool threaded;
2011-09-01 09:03:23 +00:00
// Tempory hack using this pref..
2011-10-30 07:08:18 +00:00
//#ifdef ENABLED_THREADED_DRAWING
2011-10-05 07:41:56 +00:00
/*if ((*profile)["EnableMultithreading"].toBool()) { // && (m_idealthreads>1)) {
2011-08-31 11:44:53 +00:00
threaded = true ;
2011-09-07 14:26:00 +00:00
for ( int i = 0 ; i < m_idealthreads ; i + + ) {
2011-09-05 02:30:10 +00:00
if ( ! m_threads [ i ] - > isRunning ( ) )
m_threads [ i ] - > start ( ) ;
2011-09-07 14:26:00 +00:00
}
} else threaded = false ; */
2011-10-30 07:08:18 +00:00
//#endif
2011-10-21 05:50:31 +00:00
//threaded=false;
2011-08-29 07:13:58 +00:00
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-11-15 22:40:13 +00:00
if ( m_graphs [ i ] - > isEmpty ( ) ) continue ;
if ( ! m_graphs [ i ] - > visible ( ) ) continue ;
2011-08-29 07:13:58 +00:00
numgraphs + + ;
2011-08-25 06:11:44 +00:00
h = m_graphs [ i ] - > height ( ) * m_scaleY ;
// set clipping?
if ( py > height ( ) )
break ; // we are done.. can't draw anymore
if ( ( py + h + graphSpacer ) > = 0 ) {
w = width ( ) ;
2011-09-05 02:30:10 +00:00
queGraph ( m_graphs [ i ] , px , py , width ( ) - titleWidth , h ) ;
2011-08-30 17:22:54 +00:00
2011-09-10 14:17:45 +00:00
if ( m_showsplitter ) {
// draw the splitter handle
QColor ca = QColor ( 128 , 128 , 128 , 255 ) ;
backlines - > add ( 0 , py + h , w , py + h , ca ) ;
ca = QColor ( 192 , 192 , 192 , 255 ) ;
backlines - > add ( 0 , py + h + 1 , w , py + h + 1 , ca ) ;
ca = QColor ( 90 , 90 , 90 , 255 ) ;
backlines - > add ( 0 , py + h + 2 , w , py + h + 2 , ca ) ;
}
2011-09-01 09:03:23 +00:00
2011-08-25 06:11:44 +00:00
}
2011-09-01 03:37:25 +00:00
py = ceil ( py + h + graphSpacer ) ;
2011-08-25 06:11:44 +00:00
}
2011-09-05 02:30:10 +00:00
//int thr=m_idealthreads;
2011-10-30 07:08:18 +00:00
# ifdef ENABLED_THREADED_DRAWING
2011-09-05 02:30:10 +00:00
for ( int i = 0 ; i < m_idealthreads ; i + + ) {
masterlock - > acquire ( 1 ) ;
m_threads [ i ] - > mutex . unlock ( ) ;
}
// wait till all the threads are done
// ask for all the CPU's back..
masterlock - > acquire ( m_idealthreads ) ;
masterlock - > release ( m_idealthreads ) ;
2011-10-30 07:08:18 +00:00
} else { // just do it here
# endif
2011-09-05 02:30:10 +00:00
int s = m_drawlist . size ( ) ;
for ( int i = 0 ; i < s ; i + + ) {
gGraph * g = m_drawlist . at ( 0 ) ;
m_drawlist . pop_front ( ) ;
g - > paint ( g - > m_lastbounds . x ( ) , g - > m_lastbounds . y ( ) , g - > m_lastbounds . width ( ) , g - > m_lastbounds . height ( ) ) ;
}
2011-10-30 07:08:18 +00:00
# ifdef ENABLED_THREADED_DRAWING
}
# endif
2011-12-05 15:03:16 +00:00
//int elapsed=time.elapsed();
2011-09-03 05:01:55 +00:00
QColor col = Qt : : black ;
2011-08-29 07:13:58 +00:00
if ( ! numgraphs ) {
2011-08-31 05:24:48 +00:00
int x , y ;
2011-08-29 07:13:58 +00:00
GetTextExtent ( m_emptytext , x , y , bigfont ) ;
AddTextQue ( m_emptytext , ( width ( ) / 2 ) - x / 2 , ( height ( ) / 2 ) + y / 2 , 0.0 , col , bigfont ) ;
}
2011-09-01 07:12:25 +00:00
2011-08-31 11:44:53 +00:00
2011-09-04 13:48:45 +00:00
//((QGLContext*)context())->makeCurrent();
2011-09-01 09:03:23 +00:00
2011-12-11 13:00:19 +00:00
float linesize = lines - > size ( ) ;
//if (print_scaleY>1) {
// lines->setSize(3);
// }
2011-09-01 07:12:25 +00:00
backlines - > draw ( ) ;
2011-12-11 12:13:38 +00:00
stippled - > draw ( ) ;
2011-08-31 05:24:48 +00:00
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
m_graphs [ i ] - > drawGLBuf ( ) ;
}
2011-09-01 07:12:25 +00:00
lines - > draw ( ) ;
2011-09-03 12:59:08 +00:00
quads - > draw ( ) ;
2011-12-11 13:00:19 +00:00
// lines->setSize(linesize);
2011-08-26 01:14:49 +00:00
DrawTextQue ( ) ;
2011-09-05 10:28:41 +00:00
m_tooltip - > paint ( ) ;
2011-10-05 07:41:56 +00:00
if ( m_showsplitter & & PROFILE [ " ShowDebug " ] . toBool ( ) ) {
2011-09-03 05:01:55 +00:00
QString ss ;
2011-12-04 11:04:01 +00:00
int ela = time . elapsed ( ) ;
ss = " Debug Mode " + QString : : number ( ela ) + " ms ( " + QString : : number ( 1000.0 / float ( ela ) , ' f ' , 1 ) + " fps) " ;
int w , h ;
GetTextExtent ( ss , w , h ) ;
QColor col = Qt : : white ;
quads - > add ( width ( ) - m_graphs [ 0 ] - > marginRight ( ) , 0 , width ( ) - m_graphs [ 0 ] - > marginRight ( ) , w , width ( ) , w , width ( ) , 0 , col ) ;
quads - > draw ( ) ;
AddTextQue ( ss , width ( ) + 3 , w / 2 , 90 , col , defaultfont ) ;
2011-09-03 05:01:55 +00:00
DrawTextQue ( ) ;
}
2011-08-25 06:11:44 +00:00
//glDisable(GL_TEXTURE_2D);
//glDisable(GL_DEPTH_TEST);
swapBuffers ( ) ; // Dump to screen.
2011-09-04 13:48:45 +00:00
2011-09-03 05:01:55 +00:00
//qDebug() << "Graph Prep,Draw" << el << "," << time.elapsed()-el << "ms x" << thr;
2011-08-25 06:11:44 +00:00
}
// For manual scrolling
void gGraphView : : setOffsetY ( int offsetY )
{
2011-08-26 04:15:15 +00:00
if ( m_offsetY ! = offsetY ) {
m_offsetY = offsetY ;
updateGL ( ) ; //issue full redraw..
}
2011-08-25 06:11:44 +00:00
}
// For manual X scrolling (not really needed)
void gGraphView : : setOffsetX ( int offsetX )
{
2011-08-26 04:15:15 +00:00
if ( m_offsetX ! = offsetX ) {
m_offsetX = offsetX ;
updateGL ( ) ; //issue redraw
}
2011-08-25 06:11:44 +00:00
}
void gGraphView : : mouseMoveEvent ( QMouseEvent * event )
{
int x = event - > x ( ) ;
int y = event - > y ( ) ;
if ( m_sizer_dragging ) { // Resize handle being dragged
float my = y - m_sizer_point . y ( ) ;
//qDebug() << "Sizer moved vertically" << m_sizer_index << my*m_scaleY;
float h = m_graphs [ m_sizer_index ] - > height ( ) ;
h + = my / m_scaleY ;
if ( h > m_graphs [ m_sizer_index ] - > minHeight ( ) ) {
m_graphs [ m_sizer_index ] - > setHeight ( h ) ;
m_sizer_point . setX ( x ) ;
m_sizer_point . setY ( y ) ;
updateScrollBar ( ) ;
updateGL ( ) ;
}
return ;
}
if ( m_graph_dragging ) { // Title bar being dragged to reorder
gGraph * p ;
int yy = m_sizer_point . y ( ) ;
bool empty ;
if ( y < yy ) {
for ( int i = m_graph_index - 1 ; i > = 0 ; i - - ) {
2011-08-29 07:13:58 +00:00
empty = m_graphs [ i ] - > isEmpty ( ) | | ( ! m_graphs [ i ] - > visible ( ) ) ;
2011-08-25 06:11:44 +00:00
// swapping upwards.
int yy2 = yy - graphSpacer - m_graphs [ i ] - > height ( ) * m_scaleY ;
yy2 + = m_graphs [ m_graph_index ] - > height ( ) * m_scaleY ;
if ( y < yy2 ) {
2011-08-26 04:15:15 +00:00
//qDebug() << "Graph Reorder" << m_graph_index;
2011-08-25 06:11:44 +00:00
p = m_graphs [ m_graph_index ] ;
m_graphs [ m_graph_index ] = m_graphs [ i ] ;
m_graphs [ i ] = p ;
if ( ! empty ) {
m_sizer_point . setY ( yy - graphSpacer - m_graphs [ m_graph_index ] - > height ( ) * m_scaleY ) ;
updateGL ( ) ;
}
m_graph_index - - ;
}
if ( ! empty ) break ;
}
} else if ( y > yy + graphSpacer + m_graphs [ m_graph_index ] - > height ( ) * m_scaleY ) {
// swapping downwards
2011-08-26 04:15:15 +00:00
//qDebug() << "Graph Reorder" << m_graph_index;
2011-08-25 06:11:44 +00:00
for ( int i = m_graph_index + 1 ; i < m_graphs . size ( ) ; i + + ) {
2011-08-29 07:13:58 +00:00
empty = m_graphs [ i ] - > isEmpty ( ) | | ( ! m_graphs [ i ] - > visible ( ) ) ;
2011-08-25 06:11:44 +00:00
p = m_graphs [ m_graph_index ] ;
m_graphs [ m_graph_index ] = m_graphs [ i ] ;
m_graphs [ i ] = p ;
if ( ! empty ) {
m_sizer_point . setY ( yy + graphSpacer + m_graphs [ m_graph_index ] - > height ( ) * m_scaleY ) ;
updateGL ( ) ;
}
m_graph_index + + ;
if ( ! empty ) break ;
}
}
return ;
}
float py = - m_offsetY ;
float h ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-08-29 07:13:58 +00:00
if ( m_graphs [ i ] - > isEmpty ( ) | | ( ! m_graphs [ i ] - > visible ( ) ) ) continue ;
2011-08-25 06:11:44 +00:00
h = m_graphs [ i ] - > height ( ) * m_scaleY ;
if ( py > height ( ) )
break ; // we are done.. can't draw anymore
2011-08-25 13:55:44 +00:00
if ( m_button_down | | ( ( py + h + graphSpacer ) > = 0 ) ) {
2011-12-06 14:39:14 +00:00
if ( ( y > = py + h ) & & ( y < = py + h + graphSpacer + 1 ) ) {
this - > setCursor ( Qt : : SplitVCursor ) ;
} else if ( m_button_down | | ( ( y > = py ) & & ( y < py + h ) ) ) {
2011-12-05 11:01:11 +00:00
if ( m_button_down | | ( x > = titleWidth + 10 ) ) { //(gYAxis::Margin-5)
2011-08-25 06:11:44 +00:00
this - > setCursor ( Qt : : ArrowCursor ) ;
2011-12-02 00:38:32 +00:00
m_horiz_travel + = qAbs ( x - m_lastxpos ) + qAbs ( y - m_lastypos ) ;
2011-08-26 04:09:56 +00:00
m_lastxpos = x ;
2011-08-26 11:54:47 +00:00
m_lastypos = y ;
2011-08-25 06:11:44 +00:00
QPoint p ( x - titleWidth , y - py ) ;
QMouseEvent e ( event - > type ( ) , p , event - > button ( ) , event - > buttons ( ) , event - > modifiers ( ) ) ;
2011-08-25 10:59:49 +00:00
2011-08-25 06:11:44 +00:00
m_graphs [ i ] - > mouseMoveEvent ( & e ) ;
2011-12-05 11:17:28 +00:00
if ( ! m_button_down & & ( x < = titleWidth + ( gYAxis : : Margin - 5 ) ) ) {
2011-12-05 11:01:11 +00:00
//qDebug() << "Hovering over" << m_graphs[i]->title();
if ( m_graphsbytitle [ " Event Flags " ] = = m_graphs [ i ] ) {
QVector < Layer * > & layers = m_graphs [ i ] - > layers ( ) ;
gFlagsGroup * fg ;
for ( int i = 0 ; i < layers . size ( ) ; i + + ) {
if ( ( fg = dynamic_cast < gFlagsGroup * > ( layers [ i ] ) ) ! = NULL ) {
float bh = fg - > barHeight ( ) ;
int count = fg - > count ( ) ;
float yp = py + m_graphs [ i ] - > marginTop ( ) ;
yp = y - yp ;
float th = ( float ( count ) * bh ) ;
if ( yp > = 0 & & yp < th ) {
int i = yp / bh ;
if ( i < count ) {
ChannelID code = fg - > visibleLayers ( ) [ i ] - > code ( ) ;
QString ttip = schema : : channel [ code ] . description ( ) ;
m_tooltip - > display ( ttip , x , y - 20 , 800 ) ;
updateGL ( ) ;
//qDebug() << code << ttip;
}
2011-12-05 10:50:58 +00:00
}
2011-12-05 11:01:11 +00:00
break ;
}
}
} else {
if ( ! m_graphs [ i ] - > units ( ) . isEmpty ( ) ) {
m_tooltip - > display ( m_graphs [ i ] - > units ( ) , x , y - 20 , 800 ) ;
updateGL ( ) ;
2011-12-05 10:50:58 +00:00
}
2011-12-05 08:32:46 +00:00
}
2011-12-05 10:50:58 +00:00
}
2011-12-05 11:01:11 +00:00
} else {
2011-08-25 06:11:44 +00:00
this - > setCursor ( Qt : : OpenHandCursor ) ;
}
2011-12-05 08:32:46 +00:00
2011-08-25 06:11:44 +00:00
}
}
py + = h ;
py + = graphSpacer ; // do we want the extra spacer down the bottom?
}
}
void gGraphView : : mousePressEvent ( QMouseEvent * event )
{
int x = event - > x ( ) ;
int y = event - > y ( ) ;
float py = - m_offsetY ;
float h ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-08-29 07:13:58 +00:00
if ( m_graphs [ i ] - > isEmpty ( ) | | ( ! m_graphs [ i ] - > visible ( ) ) ) continue ;
2011-08-25 06:11:44 +00:00
h = m_graphs [ i ] - > height ( ) * m_scaleY ;
if ( py > height ( ) )
break ; // we are done.. can't draw anymore
if ( ( py + h + graphSpacer ) > = 0 ) {
if ( ( y > = py ) & & ( y < py + h ) ) {
//qDebug() << "Clicked" << i;
2011-12-04 11:04:01 +00:00
if ( x < titleWidth + 20 ) { // clicked on title to drag graph..
2011-08-25 06:11:44 +00:00
m_graph_dragging = true ;
m_graph_index = i ;
m_sizer_point . setX ( x ) ;
m_sizer_point . setY ( py ) ; // point at top of graph..
this - > setCursor ( Qt : : ClosedHandCursor ) ;
} else { // send event to graph..
m_global_point_clicked = QPoint ( x , y ) ;
m_point_clicked = QPoint ( x - titleWidth , y - py ) ;
2011-08-25 10:38:42 +00:00
2011-08-25 09:00:19 +00:00
m_selected_graph = m_graphs [ i ] ;
2011-08-25 06:11:44 +00:00
QMouseEvent e ( event - > type ( ) , m_point_clicked , event - > button ( ) , event - > buttons ( ) , event - > modifiers ( ) ) ;
m_graph_index = i ;
m_button_down = true ;
2011-08-26 04:09:56 +00:00
m_horiz_travel = 0 ;
2011-08-25 13:13:58 +00:00
m_graphs [ i ] - > mousePressEvent ( & e ) ;
2011-08-25 06:11:44 +00:00
}
} else if ( ( y > = py + h ) & & ( y < = py + h + graphSpacer + 1 ) ) {
this - > setCursor ( Qt : : SplitVCursor ) ;
m_sizer_dragging = true ;
m_sizer_index = i ;
m_sizer_point . setX ( x ) ;
m_sizer_point . setY ( y ) ;
//qDebug() << "Sizer clicked" << i;
}
}
py + = h ;
py + = graphSpacer ; // do we want the extra spacer down the bottom?
}
}
void gGraphView : : mouseReleaseEvent ( QMouseEvent * event )
{
this - > setCursor ( Qt : : ArrowCursor ) ;
if ( m_sizer_dragging ) {
m_sizer_dragging = false ;
return ;
}
if ( m_graph_dragging ) {
m_graph_dragging = false ;
return ;
}
if ( m_button_down ) {
m_button_down = false ;
int x1 = m_global_point_clicked . x ( ) - event - > x ( ) ;
int y1 = m_global_point_clicked . y ( ) - event - > y ( ) ;
QPoint p ( m_point_clicked . x ( ) - x1 , m_point_clicked . y ( ) - y1 ) ;
QMouseEvent e ( event - > type ( ) , p , event - > button ( ) , event - > buttons ( ) , event - > modifiers ( ) ) ;
m_graphs [ m_graph_index ] - > mouseReleaseEvent ( & e ) ;
}
2011-08-31 05:24:48 +00:00
//int x=event->x();
//int y=event->y();
2011-08-25 06:11:44 +00:00
}
void gGraphView : : mouseDoubleClickEvent ( QMouseEvent * event )
{
2011-08-26 05:29:19 +00:00
mousePressEvent ( event ) ;
return ;
2011-08-25 06:11:44 +00:00
2011-08-26 05:29:19 +00:00
/* int x=event->x();
2011-08-25 06:11:44 +00:00
int y = event - > y ( ) ;
float py = - m_offsetY ;
float h ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
if ( m_graphs [ i ] - > isEmpty ( ) ) continue ;
h = m_graphs [ i ] - > height ( ) * m_scaleY ;
if ( py > height ( ) )
2011-08-25 10:38:42 +00:00
break ;
2011-08-25 06:11:44 +00:00
if ( ( py + h + graphSpacer ) > = 0 ) {
if ( ( y > = py ) & & ( y < = py + h ) ) {
if ( x < titleWidth ) {
// What to do when double clicked on the graph title ??
} else {
// send event to graph..
m_graphs [ i ] - > mouseDoubleClickEvent ( event ) ;
}
} else if ( ( y > = py + h ) & & ( y < = py + h + graphSpacer + 1 ) ) {
// What to do when double clicked on the resize handle?
}
}
py + = h ;
py + = graphSpacer ; // do we want the extra spacer down the bottom?
2011-08-26 05:29:19 +00:00
} */
2011-08-25 06:11:44 +00:00
}
void gGraphView : : wheelEvent ( QWheelEvent * event )
{
// Hmm.. I could optionalize this to change mousewheel behaviour without affecting the scrollbar now..
2011-08-25 14:42:10 +00:00
if ( ( event - > modifiers ( ) & Qt : : ControlModifier ) ) {
2011-08-25 13:13:58 +00:00
int x = event - > x ( ) ;
int y = event - > y ( ) ;
float py = - m_offsetY ;
float h ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-08-29 07:13:58 +00:00
if ( m_graphs [ i ] - > isEmpty ( ) | | ( ! m_graphs [ i ] - > visible ( ) ) ) continue ;
2011-08-25 13:13:58 +00:00
h = m_graphs [ i ] - > height ( ) * m_scaleY ;
if ( py > height ( ) )
break ;
if ( ( py + h + graphSpacer ) > = 0 ) {
if ( ( y > = py ) & & ( y < = py + h ) ) {
if ( x < titleWidth ) {
// What to do when ctrl+wheel is used on the graph title ??
} else {
// send event to graph..
m_graphs [ i ] - > wheelEvent ( event ) ;
}
} else if ( ( y > = py + h ) & & ( y < = py + h + graphSpacer + 1 ) ) {
// What to do when the wheel is used on the resize handle?
}
}
py + = h ;
py + = graphSpacer ; // do we want the extra spacer down the bottom?
}
} else {
m_scrollbar - > SendWheelEvent ( event ) ; // Just forwarding the event to scrollbar for now..
2011-09-05 11:23:35 +00:00
m_tooltip - > cancel ( ) ;
2011-08-25 13:13:58 +00:00
}
2011-08-25 06:11:44 +00:00
}
void gGraphView : : keyPressEvent ( QKeyEvent * event )
{
2011-10-28 11:31:31 +00:00
if ( event - > key ( ) = = Qt : : Key_Tab ) {
event - > ignore ( ) ;
return ;
}
2011-11-28 13:16:50 +00:00
gGraph * g = NULL ;
int group = 0 ;
2011-11-28 01:39:28 +00:00
// Pick the first valid graph in the primary group
2011-09-05 13:26:10 +00:00
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-11-28 13:16:50 +00:00
if ( m_graphs [ i ] - > group ( ) = = group ) {
if ( ! m_graphs [ i ] - > isEmpty ( ) ) {
g = m_graphs [ i ] ;
break ;
}
}
}
if ( ! g ) {
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-11-27 23:10:16 +00:00
if ( ! m_graphs [ i ] - > isEmpty ( ) ) {
g = m_graphs [ i ] ;
2011-11-28 13:16:50 +00:00
group = g - > group ( ) ;
2011-11-27 23:10:16 +00:00
break ;
}
2011-09-05 13:26:10 +00:00
}
}
if ( ! g ) return ;
2011-11-28 01:39:28 +00:00
2011-10-28 03:45:31 +00:00
g - > keyPressEvent ( event ) ;
2011-08-25 06:11:44 +00:00
2011-09-05 13:26:10 +00:00
if ( event - > key ( ) = = Qt : : Key_Left ) {
double xx = g - > max_x - g - > min_x ;
double zoom = 8.0 ;
if ( event - > modifiers ( ) & Qt : : ControlModifier ) zoom / = 4 ;
g - > min_x - = xx / zoom ; ;
g - > max_x = g - > min_x + xx ;
if ( g - > min_x < g - > rmin_x ) {
g - > min_x = g - > rmin_x ;
g - > max_x = g - > rmin_x + xx ;
}
2011-11-28 13:16:50 +00:00
SetXBounds ( g - > min_x , g - > max_x , group ) ;
2011-09-05 13:26:10 +00:00
} else if ( event - > key ( ) = = Qt : : Key_Right ) {
double xx = g - > max_x - g - > min_x ;
double zoom = 8.0 ;
if ( event - > modifiers ( ) & Qt : : ControlModifier ) zoom / = 4 ;
g - > min_x + = xx / zoom ;
g - > max_x = g - > min_x + xx ;
if ( g - > max_x > g - > rmax_x ) {
g - > max_x = g - > rmax_x ;
g - > min_x = g - > rmax_x - xx ;
}
2011-11-28 13:16:50 +00:00
SetXBounds ( g - > min_x , g - > max_x , group ) ;
2011-09-05 13:26:10 +00:00
} else if ( event - > key ( ) = = Qt : : Key_Up ) {
float zoom = 0.75 ;
if ( event - > modifiers ( ) & Qt : : ControlModifier ) zoom / = 1.5 ;
g - > ZoomX ( zoom , 0 ) ; // zoom in.
} else if ( event - > key ( ) = = Qt : : Key_Down ) {
float zoom = 1.33 ;
if ( event - > modifiers ( ) & Qt : : ControlModifier ) zoom * = 1.5 ;
g - > ZoomX ( zoom , 0 ) ; // Zoom out
}
2011-09-06 07:33:34 +00:00
//qDebug() << "Keypress??";
2011-08-25 06:11:44 +00:00
}
2011-08-31 07:40:13 +00:00
void gGraphView : : setDay ( Day * day )
{
m_day = day ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
m_graphs [ i ] - > setDay ( day ) ;
}
2011-09-08 18:38:07 +00:00
ResetBounds ( ) ;
2011-08-31 07:40:13 +00:00
}
2011-12-10 12:14:48 +00:00
bool gGraphView : : isEmpty ( )
{
bool res = true ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
if ( ! m_graphs [ i ] - > isEmpty ( ) ) {
res = false ;
break ;
}
}
return res ;
}
2011-10-31 11:55:25 +00:00
void gGraphView : : refreshTimeout ( )
2011-09-03 15:54:27 +00:00
{
updateGL ( ) ;
}
void gGraphView : : timedRedraw ( int ms )
{
2011-10-28 05:12:19 +00:00
if ( timer - > isActive ( ) )
timer - > stop ( ) ;
timer - > setSingleShot ( true ) ;
timer - > start ( ms ) ;
2011-09-03 15:54:27 +00:00
}
2011-09-12 17:47:37 +00:00
void gGraphView : : resetLayout ( )
{
2011-11-30 12:58:41 +00:00
int default_height = PROFILE [ " GraphHeight " ] . toInt ( ) ;
2011-09-12 17:47:37 +00:00
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
m_graphs [ i ] - > setHeight ( default_height ) ;
}
updateScale ( ) ;
updateGL ( ) ;
}
2011-10-31 11:55:25 +00:00
void gGraphView : : deselect ( )
{
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
m_graphs [ i ] - > deselect ( ) ;
}
}
2011-09-03 15:54:27 +00:00
2011-08-25 06:11:44 +00:00
MyScrollBar : : MyScrollBar ( QWidget * parent )
: QScrollBar ( parent )
{
}
void MyScrollBar : : SendWheelEvent ( QWheelEvent * e )
{
wheelEvent ( e ) ;
}
2011-11-27 16:07:28 +00:00
const quint32 gvmagic = 0x41756728 ;
const quint16 gvversion = 0 ;
void gGraphView : : SaveSettings ( QString title )
{
QString filename = PROFILE . Get ( " {DataFolder} " ) + QDir : : separator ( ) + title . toLower ( ) + " .shg " ;
QFile f ( filename ) ;
f . open ( QFile : : WriteOnly ) ;
QDataStream out ( & f ) ;
out . setVersion ( QDataStream : : Qt_4_6 ) ;
out . setByteOrder ( QDataStream : : LittleEndian ) ;
out < < ( quint32 ) gvmagic ;
out < < ( quint16 ) gvversion ;
out < < ( qint16 ) size ( ) ;
for ( qint16 i = 0 ; i < size ( ) ; i + + ) {
out < < m_graphs [ i ] - > title ( ) ;
out < < m_graphs [ i ] - > height ( ) ;
out < < m_graphs [ i ] - > visible ( ) ;
out < < m_graphs [ i ] - > RecMinY ( ) ;
out < < m_graphs [ i ] - > RecMaxY ( ) ;
}
f . close ( ) ;
}
bool gGraphView : : LoadSettings ( QString title )
{
QString filename = PROFILE . Get ( " {DataFolder} " ) + QDir : : separator ( ) + title . toLower ( ) + " .shg " ;
QFile f ( filename ) ;
if ( ! f . exists ( ) ) return false ;
f . open ( QFile : : ReadOnly ) ;
QDataStream in ( & f ) ;
in . setVersion ( QDataStream : : Qt_4_6 ) ;
in . setByteOrder ( QDataStream : : LittleEndian ) ;
quint32 t1 ;
quint16 t2 ;
in > > t1 ;
if ( t1 ! = gvmagic ) {
qDebug ( ) < < " gGraphView " < < title < < " settings magic doesn't match " < < t1 < < gvmagic ;
return false ;
}
in > > t2 ;
if ( t2 ! = gvversion ) {
qDebug ( ) < < " gGraphView " < < title < < " version doesn't match " ;
return false ;
}
qint16 siz ;
in > > siz ;
QString name ;
float hght ;
bool vis ;
EventDataType recminy , recmaxy ;
QVector < gGraph * > neworder ;
QHash < QString , gGraph * > : : iterator gi ;
for ( int i = 0 ; i < siz ; i + + ) {
in > > name ;
in > > hght ;
in > > vis ;
in > > recminy ;
in > > recmaxy ;
gi = m_graphsbytitle . find ( name ) ;
if ( gi = = m_graphsbytitle . end ( ) ) {
qDebug ( ) < < " Graph " < < name < < " has been renamed or removed " ;
} else {
gGraph * g = gi . value ( ) ;
neworder . push_back ( g ) ;
g - > setHeight ( hght ) ;
g - > setVisible ( vis ) ;
g - > setRecMinY ( recminy ) ;
g - > setRecMaxY ( recmaxy ) ;
}
}
if ( neworder . size ( ) = = m_graphs . size ( ) ) {
m_graphs = neworder ;
}
f . close ( ) ;
2011-11-27 16:35:17 +00:00
updateScale ( ) ;
2011-11-27 16:07:28 +00:00
return true ;
}
2011-11-27 22:36:38 +00:00
gGraph * gGraphView : : findGraph ( QString name )
{
QHash < QString , gGraph * > : : iterator i = m_graphsbytitle . find ( name ) ;
if ( i = = m_graphsbytitle . end ( ) ) return NULL ;
return i . value ( ) ;
}
2011-12-01 15:57:06 +00:00
int gGraphView : : visibleGraphs ( )
{
int cnt = 0 ;
for ( int i = 0 ; i < m_graphs . size ( ) ; i + + ) {
2011-12-07 10:19:28 +00:00
if ( m_graphs [ i ] - > visible ( ) & & ! m_graphs [ i ] - > isEmpty ( ) ) cnt + + ;
2011-12-01 15:57:06 +00:00
}
return cnt ;
}