diff --git a/Graphs/graphdata_custom.h b/Graphs/graphdata_custom.h index 5e22215f..537facb3 100644 --- a/Graphs/graphdata_custom.h +++ b/Graphs/graphdata_custom.h @@ -4,7 +4,7 @@ License: GPL *********************************************************************/ -#ifndef GRAPHDATA_CUSTOM_H +/*#ifndef GRAPHDATA_CUSTOM_H #define GRAPHDATA_CUSTOM_H #include @@ -13,7 +13,7 @@ #include "SleepLib/machine_common.h" #include "graphdata.h" -/* + class FlagData:public gPointData { public: @@ -128,5 +128,6 @@ protected: T_UHD uhd; }; -*/ + #endif // GRAPHDATA_CUSTOM_H +*/ diff --git a/SleepyHeadQT.pro b/SleepyHeadQT.pro index 3078f881..44ba9e0d 100644 --- a/SleepyHeadQT.pro +++ b/SleepyHeadQT.pro @@ -89,8 +89,6 @@ HEADERS += \ SleepLib/day.h \ Graphs/graphwindow.h \ Graphs/graphlayer.h \ - Graphs/graphdata.h \ - Graphs/graphdata_custom.h \ Graphs/gLineChart.h \ Graphs/gLineOverlay.h \ Graphs/gFooBar.h \ diff --git a/daily.cpp b/daily.cpp index e91391a9..93f8c9cc 100644 --- a/daily.cpp +++ b/daily.cpp @@ -264,6 +264,7 @@ Daily::Daily(QWidget *parent,QGLWidget * shared) : i=gSplitter->indexOf(FRW); gSplitter->setStretchFactor(i,15); + //gSplitter->refresh(); gSplitter->setChildrenCollapsible(false); // We set this per widget.. @@ -272,6 +273,8 @@ Daily::Daily(QWidget *parent,QGLWidget * shared) : gSplitter->layout(); + splitter_sizes=gSplitter->sizes(); + QTextCharFormat format = ui->calendar->weekdayTextFormat(Qt::Saturday); format.setForeground(QBrush(Qt::black, Qt::SolidPattern)); ui->calendar->setWeekdayTextFormat(Qt::Saturday, format); @@ -427,6 +430,11 @@ void Daily::on_calendar_selectionChanged() Load(ui->calendar->selectedDate()); } +void Daily::ResetGraphLayout() +{ + gSplitter->setSizes(splitter_sizes); +} + void Daily::Load(QDate date) { static Day * lastcpapday=NULL; @@ -451,14 +459,6 @@ void Daily::Load(QDate date) const int gwwidth=240; const int gwheight=25; UpdateOXIGraphs(oxi); - //gSplitter->blockSignals(true); - //ui->scrollArea->blockSignals(true); - //ui->scrollArea->setUpdatesEnabled(false); - //gSplitter->setUpdatesEnabled(false); - //for (unsigned i=0;isetUpdatesEnabled(false); - //} - UpdateCPAPGraphs(cpap); UpdateEventsTree(ui->treeWidget,cpap); @@ -470,7 +470,6 @@ void Daily::Load(QDate date) Graphs[i]->hide(); } spacer->hide(); - //if (SF->isVisible()) SF->hide(); } else { NoData->hide(); @@ -486,20 +485,10 @@ void Daily::Load(QDate date) gSplitter->setMinimumHeight(vis*default_height); spacer->show(); - //if (!SF->isVisible()) SF->show(); } - /*for (unsigned i=0;ilayout(); - //for (unsigned i=0;isetUpdatesEnabled(true); - //} - //gSplitter->layout(); - //ui->scrollArea->update(); gSplitter->update(); RedrawGraphs(); - //ui->scrollArea->update(); QString epr,modestr; float iap90,eap90; @@ -913,51 +902,3 @@ void Daily::on_JournalNotesUnderline_clicked() cursor.mergeCharFormat(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 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; - - return QList() << plugin; -} - */ diff --git a/daily.h b/daily.h index 0df9454e..49f28ad7 100644 --- a/daily.h +++ b/daily.h @@ -17,7 +17,7 @@ #include #include #include -#include +//#include #include "Graphs/gLineChart.h" #include namespace Ui { @@ -33,6 +33,7 @@ public: ~Daily(); void ReloadGraphs(); void RedrawGraphs(); + void ResetGraphLayout(); QGLWidget *SharedWidget() { return SF; } private slots: @@ -72,6 +73,7 @@ private: vector Graphs; QGLContext *offscreen_context; + QList splitter_sizes; gLayer * AddCPAP(gLayer *d) { CPAPData.push_back(d); return d; } gLayer * AddOXI(gLayer *d) { OXIData.push_back(d); return d; } void AddGraph(gGraphWindow *w); diff --git a/mainwindow.cpp b/mainwindow.cpp index 523f87ab..8109aa49 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -343,3 +343,8 @@ void MainWindow::on_action_Memory_Hog_toggled(bool checked) { pref["MemoryHog"]=checked; } + +void MainWindow::on_action_Reset_Graph_Layout_triggered() +{ + if (daily) daily->ResetGraphLayout(); +} diff --git a/mainwindow.h b/mainwindow.h index a73e02b4..ac0640d2 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -76,6 +76,8 @@ private slots: void on_action_Memory_Hog_toggled(bool arg1); + void on_action_Reset_Graph_Layout_triggered(); + private: Ui::MainWindow *ui; Daily * daily; diff --git a/mainwindow.ui b/mainwindow.ui index 04b010f6..0bdafa9c 100644 --- a/mainwindow.ui +++ b/mainwindow.ui @@ -597,6 +597,7 @@ + @@ -727,6 +728,11 @@ &Memory Hog + + + &Reset Graph Layout + +