diff --git a/daily.cpp b/daily.cpp
index 4fc1f362..ffa0a307 100644
--- a/daily.cpp
+++ b/daily.cpp
@@ -234,6 +234,12 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
ui->webView->settings()->setFontSize(QWebSettings::DefaultFontSize,QApplication::font().pointSize());
ui->webView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks);
connect(ui->webView,SIGNAL(linkClicked(QUrl)),this,SLOT(on_Link_clicked(QUrl)));
+
+ if (!PROFILE.Exists("EventViewSize")) PROFILE["EventViewSize"]=4;
+ int ews=PROFILE["EventViewSize"].toInt();
+ ui->evViewSlider->setValue(ews);
+ ui->evViewLCD->display(ews);
+
// TODO: Add preference to hide do this for Widget Haters..
//ui->calNavWidget->hide();
}
@@ -907,7 +913,7 @@ void Daily::on_treeWidget_itemSelectionChanged()
QDateTime d;
if (!item->text(1).isEmpty()) {
d=d.fromString(item->text(1),"yyyy-MM-dd HH:mm:ss");
- int winsize=PROFILE["EventWindowSize"].toInt()*60;
+ int winsize=PROFILE["EventViewSize"].toInt()*60;
double st=qint64((d.addSecs(-(winsize/2))).toTime_t())*1000L;
double et=qint64((d.addSecs(winsize/2)).toTime_t())*1000L;
@@ -978,3 +984,9 @@ void Daily::on_todayButton_clicked()
LoadDate(d);
}
+void Daily::on_evViewSlider_valueChanged(int value)
+{
+ ui->evViewLCD->display(value);
+ PROFILE["EventViewSize"]=value;
+}
+
diff --git a/daily.h b/daily.h
index 36db4799..bdfdc3b5 100644
--- a/daily.h
+++ b/daily.h
@@ -66,6 +66,8 @@ private slots:
void on_todayButton_clicked();
void on_Link_clicked(const QUrl &url);
+ void on_evViewSlider_valueChanged(int value);
+
protected:
private:
diff --git a/daily.ui b/daily.ui
index b222c6b8..338b8aaa 100644
--- a/daily.ui
+++ b/daily.ui
@@ -251,7 +251,7 @@
- 2
+ 1
true
@@ -291,7 +291,10 @@
Events
-
+
+
+ 0
+
0
@@ -319,6 +322,52 @@
+ -
+
+
-
+
+
+ View Size
+
+
+
+ -
+
+
+ 1
+
+
+ 30
+
+
+ Qt::Horizontal
+
+
+ QSlider::TicksAbove
+
+
+ 2
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ 3
+
+
+ QLCDNumber::Flat
+
+
+
+
+
diff --git a/preferencesdialog.cpp b/preferencesdialog.cpp
index ef006ec7..04d38531 100644
--- a/preferencesdialog.cpp
+++ b/preferencesdialog.cpp
@@ -95,10 +95,6 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
if (!(*profile).Exists("SquareWavePlots")) (*profile)["SquareWavePlots"]=true;
ui->squareWavePlots->setChecked((*profile)["SquareWavePlots"].toBool());
- if (!(*profile).Exists("EventWindowSize")) (*profile)["EventWindowSize"]=4;
- ui->eventWindowSlider->setValue((*profile)["EventWindowSize"].toInt());
- ui->eventWindowLCD->display((*profile)["EventWindowSize"].toInt());
-
if (!PREF.Exists("Updates_AutoCheck")) PREF["Updates_AutoCheck"]=true;
ui->automaticallyCheckUpdates->setChecked(PREF["Updates_AutoCheck"].toBool());
@@ -239,8 +235,6 @@ void PreferencesDialog::Save()
PREF["SkipLoginScreen"]=ui->skipLoginScreen->isChecked();
- (*profile)["EventWindowSize"]=ui->eventWindowSlider->value();
-
if (ui->squareWavePlots->isChecked() != (*profile)["SquareWavePlots"].toBool()) {
needs_restart=true;
}
diff --git a/preferencesdialog.ui b/preferencesdialog.ui
index 7a2088e6..a0b715ed 100644
--- a/preferencesdialog.ui
+++ b/preferencesdialog.ui
@@ -45,7 +45,7 @@
&CPAP/Visual
- -
+
-
@@ -58,7 +58,7 @@
- -
+
-
@@ -71,7 +71,7 @@
- -
+
-
@@ -84,7 +84,7 @@
- -
+
-
@@ -102,7 +102,7 @@
- -
+
-
The visual method of displaying waveform overlay flags.
@@ -119,7 +119,7 @@
- -
+
-
-
@@ -133,7 +133,7 @@
- -
+
-
Qt::Vertical
@@ -146,7 +146,7 @@
- -
+
-
@@ -163,7 +163,7 @@ This takes extra space, and has been known to cause problems on certain computer
- -
+
-
@@ -179,76 +179,14 @@ This takes extra space, and has been known to cause problems on certain computer
- -
-
-
- Event List View
-
-
-
- -
-
-
-
-
-
- This adjusts how much surrounding data is shown when an event is selected in Daily Views Event tab.
-
-
- 1
-
-
- 30
-
-
- 5
-
-
- Qt::Horizontal
-
-
- false
-
-
- QSlider::TicksAbove
-
-
- 1
-
-
-
- -
-
-
- (minutes)
-
-
-
- -
-
-
-
- 50
- 16777215
-
-
-
- 2
-
-
- QLCDNumber::Flat
-
-
-
-
-
- -
+
-
Square Wave Plots
- -
+
-
Skip empty days with Prev & Next buttons above daily view calendar
@@ -1357,21 +1295,5 @@ It has no effect on single cpu machines.
-
- eventWindowSlider
- valueChanged(int)
- eventWindowLCD
- display(int)
-
-
- 300
- 56
-
-
- 564
- 56
-
-
-