mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Allow Combo Box To Remain Open After Change
This commit is contained in:
parent
8d2654796d
commit
6f38eefd90
@ -7,6 +7,9 @@
|
|||||||
* License. See the file COPYING in the main directory of the source code
|
* License. See the file COPYING in the main directory of the source code
|
||||||
* for more details. */
|
* for more details. */
|
||||||
|
|
||||||
|
#define TEST_MACROS_ENABLEDoff
|
||||||
|
#include <test_macros.h>
|
||||||
|
|
||||||
#include <QTextCharFormat>
|
#include <QTextCharFormat>
|
||||||
#include <QPalette>
|
#include <QPalette>
|
||||||
#include <QTextBlock>
|
#include <QTextBlock>
|
||||||
@ -2644,6 +2647,7 @@ void Daily::on_graphCombo_activated(int index)
|
|||||||
|
|
||||||
g=GraphView->findGraphTitle(s);
|
g=GraphView->findGraphTitle(s);
|
||||||
g->setVisible(b);
|
g->setVisible(b);
|
||||||
|
ui->graphCombo->showPopup();
|
||||||
}
|
}
|
||||||
ui->graphCombo->setCurrentIndex(0);
|
ui->graphCombo->setCurrentIndex(0);
|
||||||
|
|
||||||
@ -2749,6 +2753,7 @@ void Daily::on_eventsCombo_activated(int index)
|
|||||||
bool b = !chan->enabled();
|
bool b = !chan->enabled();
|
||||||
chan->setEnabled(b);
|
chan->setEnabled(b);
|
||||||
ui->eventsCombo->setItemIcon(index,b ? *icon_on : *icon_off);
|
ui->eventsCombo->setItemIcon(index,b ? *icon_on : *icon_off);
|
||||||
|
ui->eventsCombo->showPopup();
|
||||||
}
|
}
|
||||||
|
|
||||||
ui->eventsCombo->setCurrentIndex(0);
|
ui->eventsCombo->setCurrentIndex(0);
|
||||||
|
@ -7,25 +7,8 @@
|
|||||||
* License. See the file COPYING in the main directory of the source code
|
* License. See the file COPYING in the main directory of the source code
|
||||||
* for more details. */
|
* for more details. */
|
||||||
|
|
||||||
#define NEWSTUFF
|
#define TEST_MACROS_ENABLEDoff
|
||||||
|
#include <test_macros.h>
|
||||||
#define xDEBUG_FUNCTIONS
|
|
||||||
#ifdef DEBUG_FUNCTIONS
|
|
||||||
#include <QRegularExpression>
|
|
||||||
#define DEBUGQ qDebug()
|
|
||||||
#define DEBUGL qDebug()<<QString(basename( __FILE__)).remove(QRegularExpression("\\..*$")) << __LINE__
|
|
||||||
#define DEBUGF qDebug()<< QString("%1[%2]%3").arg( QString(basename( __FILE__)).remove(QRegularExpression("\\..*$")) ).arg(__LINE__).arg(__func__)
|
|
||||||
#define DEBUGT qDebug()<<QDateTime::currentDateTime().time().toString("hh:mm:ss.zzz")
|
|
||||||
#define DEBUGTF qDebug()<<QDateTime::currentDateTime().time().toString("hh:mm:ss.zzz") << QString(basename( __FILE__)).remove(QRegularExpression("\\..*$")) << __LINE__ << __func__
|
|
||||||
#define O( XX ) " " #XX ":" << XX
|
|
||||||
#define Q( XX ) << #XX ":" << XX
|
|
||||||
#define R( XX )
|
|
||||||
#define OO( XX , YY ) " " #XX ":" << YY
|
|
||||||
#define NAME( id) schema::channel[ id ].label()
|
|
||||||
#define DATE( XX ) QDateTime::fromMSecsSinceEpoch(XX).toString("dd MMM yyyy")
|
|
||||||
#define DATETIME( XX ) QDateTime::fromMSecsSinceEpoch(XX).toString("dd MMM yyyy hh:mm:ss.zzz")
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
// Features enabled by conditional compilation.
|
// Features enabled by conditional compilation.
|
||||||
#define ENABLE_GENERAL_MODIFICATION_OF_CALENDARS
|
#define ENABLE_GENERAL_MODIFICATION_OF_CALENDARS
|
||||||
@ -890,6 +873,7 @@ void Overview::on_graphCombo_activated(int index)
|
|||||||
|
|
||||||
g = GraphView->findGraphTitle(s);
|
g = GraphView->findGraphTitle(s);
|
||||||
g->setVisible(b);
|
g->setVisible(b);
|
||||||
|
ui->graphCombo->showPopup();
|
||||||
}
|
}
|
||||||
ui->graphCombo->setCurrentIndex(0);
|
ui->graphCombo->setCurrentIndex(0);
|
||||||
updateCube();
|
updateCube();
|
||||||
@ -939,3 +923,4 @@ void Overview::on_toggleVisibility_clicked(bool checked)
|
|||||||
GraphView->updateScale();
|
GraphView->updateScale();
|
||||||
GraphView->redraw();
|
GraphView->redraw();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,74 +38,75 @@ To turn off the the test macros.
|
|||||||
#include <QRegularExpression>
|
#include <QRegularExpression>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
|
|
||||||
#define DEBUGL qDebug() <<QString("%1[%2]").arg(QFileInfo( __FILE__).baseName()).arg(__LINE__)
|
#define DEBUGQ qDebug().noquote()
|
||||||
//example:
|
#define DEBUGL DEBUGQ <<QString("%1[%2]").arg(QFileInfo( __FILE__).baseName()).arg(__LINE__)
|
||||||
//12361: Debug: "gGraphView[572]"
|
#define DEBUGF DEBUGQ <<QString("%1[%2]%3").arg(QFileInfo( __FILE__).baseName()).arg(__LINE__).arg(__func__)
|
||||||
|
#define DEBUGT DEBUGQ <<QString("%1 %2[%3]%4").arg(QDateTime::currentDateTime().time().toString("hh:mm:ss.zzz")).arg(QFileInfo( __FILE__).baseName()).arg(__LINE__)
|
||||||
|
#define DEBUGTF DEBUGQ <<QString("%1 %2[%3]%4").arg(QDateTime::currentDateTime().time().toString("hh:mm:ss.zzz")).arg(QFileInfo( __FILE__).baseName()).arg(__LINE__).arg(__func__)
|
||||||
|
|
||||||
|
// Do nothing
|
||||||
#define DEBUGF qDebug() <<QString("%1[%2]%3").arg(QFileInfo( __FILE__).baseName()).arg(__LINE__).arg(__func__)
|
#define Z( EXPRESSION ) /* comment out display of variable */
|
||||||
//example:
|
#define ZZ( A ,EXPRESSION ) /* comment out display of variable */
|
||||||
//12361: Debug: "gGraphView[572]popoutGraph"
|
// Macros to display variables
|
||||||
|
|
||||||
|
|
||||||
#define DEBUGT qDebug() <<QString("%1 %2[%3]%4").arg(QDateTime::currentDateTime().time().toString("hh:mm:ss.zzz")).arg(QFileInfo( __FILE__).baseName()).arg(__LINE__)
|
|
||||||
//example:
|
|
||||||
//12645: Debug: "06:00:18.284 gGraphView[622]"
|
|
||||||
|
|
||||||
#define DEBUGTF qDebug() <<QString("%1 %2[%3]%4").arg(QDateTime::currentDateTime().time().toString("hh:mm:ss.zzz")).arg(QFileInfo( __FILE__).baseName()).arg(__LINE__).arg(__func__)
|
|
||||||
//example:
|
|
||||||
//12645: Debug: "06:00:18.284 gGraphView[622]popoutGraph"
|
|
||||||
|
|
||||||
// Macros to display variables
|
|
||||||
#define O( EXPRESSION ) << EXPRESSION
|
#define O( EXPRESSION ) << EXPRESSION
|
||||||
|
#define Q( VALUE ) << "" #VALUE ":" << VALUE
|
||||||
// return values from functions donr't work - QQ macro instead
|
|
||||||
#define Q( VALUE ) << "" #VALUE ":" << VALUE
|
|
||||||
//example:
|
|
||||||
|
|
||||||
//
|
|
||||||
#define QQ( TEXT , EXPRESSION) << #TEXT ":" << EXPRESSION
|
#define QQ( TEXT , EXPRESSION) << #TEXT ":" << EXPRESSION
|
||||||
//example:
|
//#define Q( VALUE ) << QString("%1:%2").arg( "" #VALUE).arg(VALUE)
|
||||||
|
//#define QQ( TEXT , EXPRESSION) << QString("%1:%2").arg( "" #TEXT).arg(VALUE)
|
||||||
|
|
||||||
#define NAME( SCHEMECODE ) << schema::channel[ SCHEMECODE ].label()
|
#define NAME( SCHEMACODE ) << schema::channel[ SCHEMACODE ].label()
|
||||||
//example:
|
#define FULLNAME( SCHEMACODE ) << schema::channel[ SCHEMAcODE ].fullname()
|
||||||
|
|
||||||
#define FULLNAME( SCHEMECODE ) << schema::channel[ SCHEMEcODE ].fullname()
|
//display the date of an epoch time stamp "qint64"
|
||||||
//example:
|
|
||||||
|
|
||||||
//display the date of an epoch time stamp "qint64"
|
|
||||||
#define DATE( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy")
|
#define DATE( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy")
|
||||||
|
//display the date and Time of an epoch time stamp "qint64"
|
||||||
//display the date and Time of an epoch time stamp "qint64"
|
|
||||||
#define DATETIME( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy hh:mm:ss.zzz")
|
#define DATETIME( EPOCH ) << QDateTime::fromMSecsSinceEpoch( EPOCH ).toString("dd MMM yyyy hh:mm:ss.zzz")
|
||||||
|
|
||||||
/*
|
|
||||||
sample Lines.
|
|
||||||
|
|
||||||
code
|
#ifdef __clang__
|
||||||
DEBUGF Q(name) Q(title) QQ("UNITS",units) Q(height) Q(group);
|
#define COMPILER O(QString("clang++:%1").arg(__clang_version__) );
|
||||||
output
|
#elif __GNUC_VERSION__
|
||||||
00791: Debug: "gGraph[137]gGraph" name: "RespRate" title: "Respiratory Rate" "UNITS": "Rate of breaths per minute" height: 180 group: 0
|
#define COMPILER O(QString("GNUC++:%1").arg("GNUC").arg(__GNUC_VERSION__)) ;
|
||||||
|
#else
|
||||||
|
#define COMPILER
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
DEBUGTF Q(newname);
|
|
||||||
12645: Debug: "06:00:18.284 gGraphView[622]popoutGraph" newname: "Pressure - Friday, April 15, 2022"
|
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
//example: DEBUGL;
|
||||||
|
//12361: Debug: "gGraphView[572]"
|
||||||
|
|
||||||
DEBUGF NAME(dot.code) Q(dot.type) QQ(y,(int)y) Q(ratioX) O(QLine(left + 1, y, left + 1 + width, y)) Q(legendx) O(dot.value) ;
|
//example: DEBUGF;
|
||||||
92 00917: Debug: "gLineChart[568]paint" "Pressure" dot.type: 4 y: 341 ratioX: 1 QLine(QPoint(91,341),QPoint(464,341)) legendx: 463 12.04
|
//12361: Debug: "gGraphView[572]popoutGraph"
|
||||||
|
|
||||||
|
//example: DEBUGT;
|
||||||
|
//12645: Debug: "06:00:18.284 gGraphView[622]"
|
||||||
|
|
||||||
*/
|
//example: DEBUGTF;
|
||||||
|
//12645: Debug: "06:00:18.284 gGraphView[622]popoutGraph"
|
||||||
|
|
||||||
|
//example: DEBUGF Q(name) Q(title) QQ("UNITS",units) Q(height) Q(group);
|
||||||
|
//00791: Debug: "gGraph[137]gGraph" name: "RespRate" title: "Respiratory Rate" "UNITS": "Rate of breaths per minute" height: 180 group: 0
|
||||||
|
|
||||||
|
//example: DEBUGTF Q(newname);
|
||||||
|
//12645: Debug: "06:00:18.284 gGraphView[622]popoutGraph" newname:"Pressure - Friday, April 15, 2022"
|
||||||
|
|
||||||
|
//example: DEBUGF NAME(dot.code) Q(dot.type) QQ(y,(int)y) Q(ratioX) O(QLine(left + 1, y, left + 1 + width, y)) Q(legendx) O(dot.value) ;
|
||||||
|
//92 00917: Debug: "gLineChart[568]paint" "Pressure" dot.type: 4 y: 341 ratioX: 1 QLine(QPoint(91,341),QPoint(464,341)) legendx: 463 12.04
|
||||||
|
#endif
|
||||||
|
|
||||||
#else
|
#else
|
||||||
// Turn debugging off. macros expands to white space
|
// Turn debugging off. macros expands to white space
|
||||||
|
|
||||||
|
#define DEBUGQ
|
||||||
#define DEBUGL
|
#define DEBUGL
|
||||||
#define DEBUGF
|
#define DEBUGF
|
||||||
#define DEBUGT
|
#define DEBUGT
|
||||||
#define DEBUGTF
|
#define DEBUGTF
|
||||||
|
|
||||||
|
#define Z( XX )
|
||||||
|
#define ZZ( XX , YY)
|
||||||
#define O( XX )
|
#define O( XX )
|
||||||
#define Q( XX )
|
#define Q( XX )
|
||||||
#define QQ( XX , YY )
|
#define QQ( XX , YY )
|
||||||
@ -113,6 +114,7 @@ DEBUGF NAME(dot.code) Q(dot.type) QQ(y,(int)y) Q(ratioX) O(QLine(left + 1, y, le
|
|||||||
#define FULLNAME( id)
|
#define FULLNAME( id)
|
||||||
#define DATE( XX )
|
#define DATE( XX )
|
||||||
#define DATETIME( XX )
|
#define DATETIME( XX )
|
||||||
|
#define COMPILER
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user