mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +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..
|
||||
|
||||
if (!(event->modifiers() & Qt::ControlModifier)) {
|
||||
if ((event->modifiers() & Qt::ControlModifier)) {
|
||||
int x=event->x();
|
||||
int y=event->y();
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user