mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Make statusbar selection time tab context aware
This commit is contained in:
parent
168b8e9843
commit
8b4983a06f
@ -2020,6 +2020,29 @@ void gGraphView::scrollbarValueChanged(int val)
|
|||||||
redraw(); // do this on a timer?
|
redraw(); // do this on a timer?
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
void gGraphView::selectionTime()
|
||||||
|
{
|
||||||
|
qint64 xx=m_maxx - m_minx;
|
||||||
|
double d=xx/86400000L;
|
||||||
|
int h=xx/3600000L;
|
||||||
|
int m=(xx/60000) % 60;
|
||||||
|
int s=(xx/1000) % 60;
|
||||||
|
int ms(xx % 1000);
|
||||||
|
QString str;
|
||||||
|
if (d>1) {
|
||||||
|
/*QDate d1=QDateTime::fromTime_t(m_minx/1000).toUTC().date();
|
||||||
|
QDate d2=QDateTime::fromTime_t(m_maxx/1000).toUTC().date();
|
||||||
|
d=PROFILE.countDays(MT_CPAP,d1,d2); */
|
||||||
|
|
||||||
|
str.sprintf("%1.0f days",ceil(d));
|
||||||
|
} else {
|
||||||
|
str.sprintf("%02i:%02i:%02i:%03i",h,m,s,ms);
|
||||||
|
}
|
||||||
|
if (qstatus2) {
|
||||||
|
qstatus2->setText(str);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
void gGraphView::ResetBounds(bool refresh) //short group)
|
void gGraphView::ResetBounds(bool refresh) //short group)
|
||||||
{
|
{
|
||||||
Q_UNUSED(refresh)
|
Q_UNUSED(refresh)
|
||||||
|
@ -765,6 +765,9 @@ public:
|
|||||||
gToolTip * m_tooltip;
|
gToolTip * m_tooltip;
|
||||||
QTimer * timer;
|
QTimer * timer;
|
||||||
|
|
||||||
|
//! \brief Show the current selection time in the statusbar area
|
||||||
|
void selectionTime();
|
||||||
|
|
||||||
//! \brief Add the Text information to the Text Drawing Queue (called by gGraphs renderText method)
|
//! \brief Add the Text information to the Text Drawing Queue (called by gGraphs renderText method)
|
||||||
void AddTextQue(QString & text, short x, short y, float angle=0.0, QColor color=Qt::black, QFont * font=defaultfont);
|
void AddTextQue(QString & text, short x, short y, float angle=0.0, QColor color=Qt::black, QFont * font=defaultfont);
|
||||||
|
|
||||||
|
@ -162,6 +162,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
|
|
||||||
QString loadingtxt="<HTML><body style='text-align: center; vertical-align: center'><table width='100%' height='100%'><tr><td align=center><h1>Loading...</h1></td></tr></table></body></HTML>";
|
QString loadingtxt="<HTML><body style='text-align: center; vertical-align: center'><table width='100%' height='100%'><tr><td align=center><h1>Loading...</h1></td></tr></table></body></HTML>";
|
||||||
ui->summaryView->setHtml(loadingtxt);
|
ui->summaryView->setHtml(loadingtxt);
|
||||||
|
on_tabWidget_currentChanged(0);
|
||||||
}
|
}
|
||||||
extern MainWindow *mainwin;
|
extern MainWindow *mainwin;
|
||||||
MainWindow::~MainWindow()
|
MainWindow::~MainWindow()
|
||||||
@ -2110,3 +2111,21 @@ void MainWindow::LinkHovered(const QString & link, const QString & title, const
|
|||||||
Q_UNUSED(textContent);
|
Q_UNUSED(textContent);
|
||||||
ui->statusbar->showMessage(link);
|
ui->statusbar->showMessage(link);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_tabWidget_currentChanged(int index)
|
||||||
|
{
|
||||||
|
Q_UNUSED(index);
|
||||||
|
QWidget *widget=ui->tabWidget->currentWidget();
|
||||||
|
if ((widget==ui->summaryTab) || (widget==ui->helpTab)) {
|
||||||
|
qstatus2->setVisible(false);
|
||||||
|
} else if (widget==daily) {
|
||||||
|
qstatus2->setVisible(true);
|
||||||
|
daily->graphView()->selectionTime();
|
||||||
|
} else if (widget==overview) {
|
||||||
|
qstatus2->setVisible(true);
|
||||||
|
overview->graphView()->selectionTime();
|
||||||
|
} else if (widget==oximetry) {
|
||||||
|
qstatus2->setVisible(true);
|
||||||
|
oximetry->graphView()->selectionTime();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -267,6 +267,8 @@ private slots:
|
|||||||
|
|
||||||
//! \brief Display Help WebView Link in statusbar.
|
//! \brief Display Help WebView Link in statusbar.
|
||||||
void LinkHovered(const QString & link, const QString & title, const QString & textContent);
|
void LinkHovered(const QString & link, const QString & title, const QString & textContent);
|
||||||
|
void on_tabWidget_currentChanged(int index);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
|
Loading…
Reference in New Issue
Block a user