mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Added Reset Graph Layout in View Menu
This commit is contained in:
parent
54af28ae61
commit
9b93c8f6ea
@ -4,7 +4,7 @@
|
|||||||
License: GPL
|
License: GPL
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
#ifndef GRAPHDATA_CUSTOM_H
|
/*#ifndef GRAPHDATA_CUSTOM_H
|
||||||
#define GRAPHDATA_CUSTOM_H
|
#define GRAPHDATA_CUSTOM_H
|
||||||
|
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
@ -13,7 +13,7 @@
|
|||||||
#include "SleepLib/machine_common.h"
|
#include "SleepLib/machine_common.h"
|
||||||
#include "graphdata.h"
|
#include "graphdata.h"
|
||||||
|
|
||||||
/*
|
|
||||||
class FlagData:public gPointData
|
class FlagData:public gPointData
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -128,5 +128,6 @@ protected:
|
|||||||
T_UHD uhd;
|
T_UHD uhd;
|
||||||
};
|
};
|
||||||
|
|
||||||
*/
|
|
||||||
#endif // GRAPHDATA_CUSTOM_H
|
#endif // GRAPHDATA_CUSTOM_H
|
||||||
|
*/
|
||||||
|
@ -89,8 +89,6 @@ HEADERS += \
|
|||||||
SleepLib/day.h \
|
SleepLib/day.h \
|
||||||
Graphs/graphwindow.h \
|
Graphs/graphwindow.h \
|
||||||
Graphs/graphlayer.h \
|
Graphs/graphlayer.h \
|
||||||
Graphs/graphdata.h \
|
|
||||||
Graphs/graphdata_custom.h \
|
|
||||||
Graphs/gLineChart.h \
|
Graphs/gLineChart.h \
|
||||||
Graphs/gLineOverlay.h \
|
Graphs/gLineOverlay.h \
|
||||||
Graphs/gFooBar.h \
|
Graphs/gFooBar.h \
|
||||||
|
75
daily.cpp
75
daily.cpp
@ -264,6 +264,7 @@ Daily::Daily(QWidget *parent,QGLWidget * shared) :
|
|||||||
i=gSplitter->indexOf(FRW);
|
i=gSplitter->indexOf(FRW);
|
||||||
gSplitter->setStretchFactor(i,15);
|
gSplitter->setStretchFactor(i,15);
|
||||||
|
|
||||||
|
|
||||||
//gSplitter->refresh();
|
//gSplitter->refresh();
|
||||||
|
|
||||||
gSplitter->setChildrenCollapsible(false); // We set this per widget..
|
gSplitter->setChildrenCollapsible(false); // We set this per widget..
|
||||||
@ -272,6 +273,8 @@ Daily::Daily(QWidget *parent,QGLWidget * shared) :
|
|||||||
|
|
||||||
gSplitter->layout();
|
gSplitter->layout();
|
||||||
|
|
||||||
|
splitter_sizes=gSplitter->sizes();
|
||||||
|
|
||||||
QTextCharFormat format = ui->calendar->weekdayTextFormat(Qt::Saturday);
|
QTextCharFormat format = ui->calendar->weekdayTextFormat(Qt::Saturday);
|
||||||
format.setForeground(QBrush(Qt::black, Qt::SolidPattern));
|
format.setForeground(QBrush(Qt::black, Qt::SolidPattern));
|
||||||
ui->calendar->setWeekdayTextFormat(Qt::Saturday, format);
|
ui->calendar->setWeekdayTextFormat(Qt::Saturday, format);
|
||||||
@ -427,6 +430,11 @@ void Daily::on_calendar_selectionChanged()
|
|||||||
|
|
||||||
Load(ui->calendar->selectedDate());
|
Load(ui->calendar->selectedDate());
|
||||||
}
|
}
|
||||||
|
void Daily::ResetGraphLayout()
|
||||||
|
{
|
||||||
|
gSplitter->setSizes(splitter_sizes);
|
||||||
|
}
|
||||||
|
|
||||||
void Daily::Load(QDate date)
|
void Daily::Load(QDate date)
|
||||||
{
|
{
|
||||||
static Day * lastcpapday=NULL;
|
static Day * lastcpapday=NULL;
|
||||||
@ -451,14 +459,6 @@ void Daily::Load(QDate date)
|
|||||||
const int gwwidth=240;
|
const int gwwidth=240;
|
||||||
const int gwheight=25;
|
const int gwheight=25;
|
||||||
UpdateOXIGraphs(oxi);
|
UpdateOXIGraphs(oxi);
|
||||||
//gSplitter->blockSignals(true);
|
|
||||||
//ui->scrollArea->blockSignals(true);
|
|
||||||
//ui->scrollArea->setUpdatesEnabled(false);
|
|
||||||
//gSplitter->setUpdatesEnabled(false);
|
|
||||||
//for (unsigned i=0;i<Graphs.size();i++) {
|
|
||||||
// Graphs[i]->setUpdatesEnabled(false);
|
|
||||||
//}
|
|
||||||
|
|
||||||
UpdateCPAPGraphs(cpap);
|
UpdateCPAPGraphs(cpap);
|
||||||
UpdateEventsTree(ui->treeWidget,cpap);
|
UpdateEventsTree(ui->treeWidget,cpap);
|
||||||
|
|
||||||
@ -470,7 +470,6 @@ void Daily::Load(QDate date)
|
|||||||
Graphs[i]->hide();
|
Graphs[i]->hide();
|
||||||
}
|
}
|
||||||
spacer->hide();
|
spacer->hide();
|
||||||
//if (SF->isVisible()) SF->hide();
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
NoData->hide();
|
NoData->hide();
|
||||||
@ -486,20 +485,10 @@ void Daily::Load(QDate date)
|
|||||||
gSplitter->setMinimumHeight(vis*default_height);
|
gSplitter->setMinimumHeight(vis*default_height);
|
||||||
|
|
||||||
spacer->show();
|
spacer->show();
|
||||||
//if (!SF->isVisible()) SF->show();
|
|
||||||
}
|
}
|
||||||
/*for (unsigned i=0;i<Graphs.size();i++) {
|
|
||||||
} */
|
|
||||||
|
|
||||||
//gSplitter->layout();
|
|
||||||
//for (unsigned i=0;i<Graphs.size();i++) {
|
|
||||||
// Graphs[i]->setUpdatesEnabled(true);
|
|
||||||
//}
|
|
||||||
//gSplitter->layout();
|
|
||||||
//ui->scrollArea->update();
|
|
||||||
gSplitter->update();
|
gSplitter->update();
|
||||||
RedrawGraphs();
|
RedrawGraphs();
|
||||||
//ui->scrollArea->update();
|
|
||||||
|
|
||||||
QString epr,modestr;
|
QString epr,modestr;
|
||||||
float iap90,eap90;
|
float iap90,eap90;
|
||||||
@ -913,51 +902,3 @@ void Daily::on_JournalNotesUnderline_clicked()
|
|||||||
cursor.mergeCharFormat(format);
|
cursor.mergeCharFormat(format);
|
||||||
//ui->JournalNotes->mergeCurrentCharFormat(format);
|
//ui->JournalNotes->mergeCurrentCharFormat(format);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*AHIGraph::AHIGraph(QObject * parent)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
AHIGraph::~AHIGraph()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
QObject * AHIGraph::create(const QString & mimeType, const QUrl & url, const QStringList & argumentNames, const QStringList & argumentValues) const
|
|
||||||
{
|
|
||||||
gGraphWindow * ahi;
|
|
||||||
ahi=new gGraphWindow(NULL,"",(QGLWidget *)NULL);
|
|
||||||
ahi->SetMargins(0,0,0,0);
|
|
||||||
gPointData *g_ahi=new AHIData();
|
|
||||||
//gCandleStick *l=new gCandleStick(g_ahi);
|
|
||||||
gPieChart *l=new gPieChart(g_ahi);
|
|
||||||
l->AddName(tr("H"));
|
|
||||||
l->AddName(tr("OA"));
|
|
||||||
l->AddName(tr("CA"));
|
|
||||||
l->AddName(tr("RE"));
|
|
||||||
l->AddName(tr("FL"));
|
|
||||||
l->AddName(tr("CSR"));
|
|
||||||
l->color.clear();
|
|
||||||
l->color.push_back(QColor("blue"));
|
|
||||||
l->color.push_back(QColor(0x40,0xaf,0xbf,0xff)); //#40afbf
|
|
||||||
l->color.push_back(QColor(0xb2,0x54,0xcd,0xff)); //b254cd; //wxPURPLE);
|
|
||||||
l->color.push_back(QColor("yellow"));
|
|
||||||
l->color.push_back(QColor(0x40,0x40,0x40,255));
|
|
||||||
l->color.push_back(QColor(0x60,0xff,0x60,0xff)); //80ff80
|
|
||||||
|
|
||||||
return ahi;
|
|
||||||
}
|
|
||||||
QList<QWebPluginFactory::Plugin> AHIGraph::plugins() const
|
|
||||||
{
|
|
||||||
QWebPluginFactory::MimeType mimeType;
|
|
||||||
mimeType.name = "text/csv";
|
|
||||||
mimeType.description = "Comma-separated values";
|
|
||||||
mimeType.fileExtensions = QStringList() << "csv";
|
|
||||||
|
|
||||||
QWebPluginFactory::Plugin plugin;
|
|
||||||
plugin.name = "Pie Chart";
|
|
||||||
plugin.description = "A Pie Chart Web plugin.";
|
|
||||||
plugin.mimeTypes = QList<MimeType>() << mimeType;
|
|
||||||
|
|
||||||
return QList<QWebPluginFactory::Plugin>() << plugin;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
4
daily.h
4
daily.h
@ -17,7 +17,7 @@
|
|||||||
#include <QWebPluginFactory>
|
#include <QWebPluginFactory>
|
||||||
#include <SleepLib/profiles.h>
|
#include <SleepLib/profiles.h>
|
||||||
#include <Graphs/graphwindow.h>
|
#include <Graphs/graphwindow.h>
|
||||||
#include <Graphs/graphdata.h>
|
//#include <Graphs/graphdata.h>
|
||||||
#include "Graphs/gLineChart.h"
|
#include "Graphs/gLineChart.h"
|
||||||
#include <Graphs/gFlagsLine.h>
|
#include <Graphs/gFlagsLine.h>
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
@ -33,6 +33,7 @@ public:
|
|||||||
~Daily();
|
~Daily();
|
||||||
void ReloadGraphs();
|
void ReloadGraphs();
|
||||||
void RedrawGraphs();
|
void RedrawGraphs();
|
||||||
|
void ResetGraphLayout();
|
||||||
QGLWidget *SharedWidget() { return SF; }
|
QGLWidget *SharedWidget() { return SF; }
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
@ -72,6 +73,7 @@ private:
|
|||||||
vector<gGraphWindow *> Graphs;
|
vector<gGraphWindow *> Graphs;
|
||||||
QGLContext *offscreen_context;
|
QGLContext *offscreen_context;
|
||||||
|
|
||||||
|
QList<int> splitter_sizes;
|
||||||
gLayer * AddCPAP(gLayer *d) { CPAPData.push_back(d); return d; }
|
gLayer * AddCPAP(gLayer *d) { CPAPData.push_back(d); return d; }
|
||||||
gLayer * AddOXI(gLayer *d) { OXIData.push_back(d); return d; }
|
gLayer * AddOXI(gLayer *d) { OXIData.push_back(d); return d; }
|
||||||
void AddGraph(gGraphWindow *w);
|
void AddGraph(gGraphWindow *w);
|
||||||
|
@ -343,3 +343,8 @@ void MainWindow::on_action_Memory_Hog_toggled(bool checked)
|
|||||||
{
|
{
|
||||||
pref["MemoryHog"]=checked;
|
pref["MemoryHog"]=checked;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_action_Reset_Graph_Layout_triggered()
|
||||||
|
{
|
||||||
|
if (daily) daily->ResetGraphLayout();
|
||||||
|
}
|
||||||
|
@ -76,6 +76,8 @@ private slots:
|
|||||||
|
|
||||||
void on_action_Memory_Hog_toggled(bool arg1);
|
void on_action_Memory_Hog_toggled(bool arg1);
|
||||||
|
|
||||||
|
void on_action_Reset_Graph_Layout_triggered();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
Daily * daily;
|
Daily * daily;
|
||||||
|
@ -597,6 +597,7 @@
|
|||||||
<addaction name="action_Memory_Hog"/>
|
<addaction name="action_Memory_Hog"/>
|
||||||
<addaction name="separator"/>
|
<addaction name="separator"/>
|
||||||
<addaction name="action_Fullscreen"/>
|
<addaction name="action_Fullscreen"/>
|
||||||
|
<addaction name="action_Reset_Graph_Layout"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menu_Help">
|
<widget class="QMenu" name="menu_Help">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
@ -727,6 +728,11 @@
|
|||||||
<string>&Memory Hog</string>
|
<string>&Memory Hog</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="action_Reset_Graph_Layout">
|
||||||
|
<property name="text">
|
||||||
|
<string>&Reset Graph Layout</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<customwidgets>
|
<customwidgets>
|
||||||
<customwidget>
|
<customwidget>
|
||||||
|
Loading…
Reference in New Issue
Block a user