From ca3e1a2e9282fab91c8e62f52c831290c2753907 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 31 Aug 2011 16:49:40 +1000 Subject: [PATCH] Revert vertical fonts --- Graphs/gGraphView.cpp | 21 +++++++++++---------- daily.cpp | 34 +++++++++++++++++----------------- 2 files changed, 28 insertions(+), 27 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 0cf6bed8..65373726 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -16,7 +16,8 @@ void InitGraphs() { if (!_graph_init) { defaultfont=new QFont("Sans Serif",10); - mediumfont=new QFont("Sans Serif",11); + defaultfont->setPixelSize(11); + mediumfont=new QFont("Sans Serif",12); bigfont=new QFont("Serif",35); defaultfont->setStyleHint(QFont::SansSerif,QFont::OpenGLCompatible); @@ -387,7 +388,7 @@ void gGraph::paint(int originX, int originY, int width, int height) glDisable(GL_BLEND); */ glColor4f(0,0,0,1); - renderText(title(),20,originY+height/2,90); + renderText(title(),20,originY+height/2,90,Qt::black,mediumfont); left=0,right=0,top=0,bottom=0; @@ -905,6 +906,7 @@ void gGraphView::DrawTextQue() glFlush(); //glEnable(GL_BLEND); QPainter painter(this); + int w,h; for (int i=0;iaddWidget(scrollbar,0); const int default_height=150; - SF=new gGraph(GraphView,"EVENT FLAGS",default_height); + SF=new gGraph(GraphView,"Event Flags",default_height); // GAHI=new gGraph(GraphView,"Event Breakdown",default_height); gSegmentChart * seg=new gSegmentChart(GST_Pie); @@ -85,25 +85,25 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw) SF->AddLayer(AddCPAP(seg),LayerRight,100); - FRW=new gGraph(GraphView,"FLOW RATE",default_height); - MP=new gGraph(GraphView,"MASK PRESSURE",default_height); - PRD=new gGraph(GraphView,"PRESSURE",default_height); - LEAK=new gGraph(GraphView,"LEAK",default_height); - SNORE=new gGraph(GraphView,"SNORE",default_height); - RR=new gGraph(GraphView,"RESPIRATORY RATE",default_height); - TV=new gGraph(GraphView,"TIDAL VOLUME",default_height); - MV=new gGraph(GraphView,"MINUTE VENTILATION",default_height); - FLG=new gGraph(GraphView,"FLOW LIMITATION",default_height); - PTB=new gGraph(GraphView,"PATIENT. TRIG BREATHING",default_height); - RE=new gGraph(GraphView,"RESPIRATORY EVENT",default_height); + FRW=new gGraph(GraphView,"Flow Rate",default_height); + MP=new gGraph(GraphView,"Mask Pressure",default_height); + PRD=new gGraph(GraphView,"Pressure",default_height); + LEAK=new gGraph(GraphView,"Leak",default_height); + SNORE=new gGraph(GraphView,"Snore",default_height); + RR=new gGraph(GraphView,"Respiratory Rate",default_height); + TV=new gGraph(GraphView,"Tidal Volume",default_height); + MV=new gGraph(GraphView,"Minute Ventilation",default_height); + FLG=new gGraph(GraphView,"Flow Limitation",default_height); + PTB=new gGraph(GraphView,"Patient Trig. Breath",default_height); + RE=new gGraph(GraphView,"Respiratory Event",default_height); IE=new gGraph(GraphView,"I:E",default_height); - TE=new gGraph(GraphView,"TE",default_height); - TI=new gGraph(GraphView,"TI",default_height); - INTPULSE=new gGraph(GraphView,"PULSE",default_height,1); + TE=new gGraph(GraphView,"Te",default_height); + TI=new gGraph(GraphView,"Ti",default_height); + INTPULSE=new gGraph(GraphView,"Pulse",default_height,1); INTSPO2=new gGraph(GraphView,"SPO2",default_height,1); - PULSE=new gGraph(GraphView,"PULSE",default_height,1); + PULSE=new gGraph(GraphView,"Pulse",default_height,1); SPO2=new gGraph(GraphView,"SPO2",default_height,1); - PLETHY=new gGraph(GraphView,"PLETHY",default_height,1); + PLETHY=new gGraph(GraphView,"Plethy",default_height,1); gFlagsGroup *fg=new gFlagsGroup();