mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Swapped ScrollWheel modifier to keep my sanity. Ctrl key+scrollwheel now zooms, and scrollwheel by itself vertically scrolls.
This commit is contained in:
parent
d565911cc8
commit
529acbe16e
@ -1137,7 +1137,7 @@ void gGraphView::wheelEvent(QWheelEvent * event)
|
|||||||
{
|
{
|
||||||
// Hmm.. I could optionalize this to change mousewheel behaviour without affecting the scrollbar now..
|
// 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 x=event->x();
|
||||||
int y=event->y();
|
int y=event->y();
|
||||||
|
|
||||||
|
@ -73,7 +73,8 @@ Daily::Daily(QWidget *parent,QGLWidget * shared, MainWindow *mw)
|
|||||||
RR=new gGraph(GraphView,"Respiratory Rate",180);
|
RR=new gGraph(GraphView,"Respiratory Rate",180);
|
||||||
TV=new gGraph(GraphView,"Tidal Volume",180);
|
TV=new gGraph(GraphView,"Tidal Volume",180);
|
||||||
MV=new gGraph(GraphView,"Minute Ventilation",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();
|
gFlagsGroup *fg=new gFlagsGroup();
|
||||||
fg->AddLayer((new gFlagsLine(CPAP_CSR,QColor("light green"),"CSR",false,FT_Span)));
|
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 gYAxis(),LayerLeft,gYAxis::Margin);
|
||||||
SNORE->AddLayer(new gXAxis(),LayerBottom,0,20);
|
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(new gXGrid());
|
||||||
MP->AddLayer(AddCPAP(new gLineChart(CPAP_MaskPressure,Qt::blue,false)));
|
MP->AddLayer(AddCPAP(new gLineChart(CPAP_MaskPressure,Qt::blue,false)));
|
||||||
MP->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
MP->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
||||||
|
6
daily.ui
6
daily.ui
@ -54,12 +54,6 @@
|
|||||||
<height>0</height>
|
<height>0</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="font">
|
|
||||||
<font>
|
|
||||||
<family>Sans Serif</family>
|
|
||||||
<pointsize>10</pointsize>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
<property name="firstDayOfWeek">
|
<property name="firstDayOfWeek">
|
||||||
<enum>Qt::Monday</enum>
|
<enum>Qt::Monday</enum>
|
||||||
</property>
|
</property>
|
||||||
|
Loading…
Reference in New Issue
Block a user