Swapped ScrollWheel modifier to keep my sanity. Ctrl key+scrollwheel now zooms, and scrollwheel by itself vertically scrolls.

This commit is contained in:
Mark Watkins 2011-08-26 00:42:10 +10:00
parent d565911cc8
commit 529acbe16e
3 changed files with 8 additions and 8 deletions

View File

@ -1137,7 +1137,7 @@ void gGraphView::wheelEvent(QWheelEvent * event)
{
// Hmm.. I could optionalize this to change mousewheel behaviour without affecting the scrollbar now..
if (!(event->modifiers() & Qt::ControlModifier)) {
if ((event->modifiers() & Qt::ControlModifier)) {
int x=event->x();
int y=event->y();

View File

@ -73,7 +73,8 @@ Daily::Daily(QWidget *parent,QGLWidget * shared, MainWindow *mw)
RR=new gGraph(GraphView,"Respiratory Rate",180);
TV=new gGraph(GraphView,"Tidal Volume",180);
MV=new gGraph(GraphView,"Minute Ventilation",180);
FLG=new gGraph(GraphView,"Flow Limitation Graph",180);
FLG=new gGraph(GraphView,"Flow Limitation",180);
PTB=new gGraph(GraphView,"Patient Trig. Breath",180);
gFlagsGroup *fg=new gFlagsGroup();
fg->AddLayer((new gFlagsLine(CPAP_CSR,QColor("light green"),"CSR",false,FT_Span)));
@ -132,6 +133,11 @@ Daily::Daily(QWidget *parent,QGLWidget * shared, MainWindow *mw)
SNORE->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
SNORE->AddLayer(new gXAxis(),LayerBottom,0,20);
PTB->AddLayer(new gXGrid());
PTB->AddLayer(AddCPAP(new gLineChart(CPAP_PatientTriggeredBreaths,Qt::gray,true)));
PTB->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
PTB->AddLayer(new gXAxis(),LayerBottom,0,20);
MP->AddLayer(new gXGrid());
MP->AddLayer(AddCPAP(new gLineChart(CPAP_MaskPressure,Qt::blue,false)));
MP->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);

View File

@ -54,12 +54,6 @@
<height>0</height>
</size>
</property>
<property name="font">
<font>
<family>Sans Serif</family>
<pointsize>10</pointsize>
</font>
</property>
<property name="firstDayOfWeek">
<enum>Qt::Monday</enum>
</property>