mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
More Preferences Dialog Stub work
This commit is contained in:
parent
31ffec35dd
commit
8ca96d752f
@ -1,14 +1,74 @@
|
|||||||
|
#include <QLabel>
|
||||||
|
#include <QColorDialog>
|
||||||
#include "preferencesdialog.h"
|
#include "preferencesdialog.h"
|
||||||
#include "ui_preferencesdialog.h"
|
#include "ui_preferencesdialog.h"
|
||||||
|
#include "SleepLib/machine_common.h"
|
||||||
|
|
||||||
PreferencesDialog::PreferencesDialog(QWidget *parent) :
|
PreferencesDialog::PreferencesDialog(QWidget *parent) :
|
||||||
QDialog(parent),
|
QDialog(parent),
|
||||||
ui(new Ui::PreferencesDialog)
|
ui(new Ui::PreferencesDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
ui->eventTable->setColumnWidth(0,40);
|
||||||
|
ui->eventTable->setColumnWidth(1,50);
|
||||||
|
int row=0;
|
||||||
|
QTableWidgetItem *item;
|
||||||
|
QHash<ChannelID, Channel>::iterator ci;
|
||||||
|
for (ci=channel.begin();ci!=channel.end();ci++) {
|
||||||
|
if ((ci.value().channeltype()==CT_Event) || (ci.value().channeltype()==CT_Graph)) {
|
||||||
|
ui->eventTable->insertRow(row);
|
||||||
|
item=new QTableWidgetItem(ci.value().details());
|
||||||
|
ui->eventTable->setItem(row,2,item);
|
||||||
|
QCheckBox *c=new QCheckBox(ui->eventTable);
|
||||||
|
QLabel *pb=new QLabel(ui->eventTable);
|
||||||
|
pb->setText("foo");
|
||||||
|
ui->eventTable->setCellWidget(row,0,c);
|
||||||
|
ui->eventTable->setCellWidget(row,1,pb);
|
||||||
|
QColor a(random() % 255, random() %255, random()%255, 255);
|
||||||
|
QPalette p(a,a,a,a,a,a,a);
|
||||||
|
|
||||||
|
pb->setPalette(p);
|
||||||
|
pb->setAutoFillBackground(true);
|
||||||
|
pb->setBackgroundRole(QPalette::Background);
|
||||||
|
row++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void PreferencesDialog::on_eventColor_selected(QString col)
|
||||||
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
PreferencesDialog::~PreferencesDialog()
|
PreferencesDialog::~PreferencesDialog()
|
||||||
{
|
{
|
||||||
delete ui;
|
delete ui;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void PreferencesDialog::on_combineSlider_sliderMoved(int position)
|
||||||
|
{
|
||||||
|
ui->combineLCD->display(position);
|
||||||
|
}
|
||||||
|
|
||||||
|
void PreferencesDialog::on_IgnoreSlider_sliderMoved(int position)
|
||||||
|
{
|
||||||
|
if (position>0) {
|
||||||
|
ui->IgnoreLCD->display(position);
|
||||||
|
} else ui->IgnoreLCD->display(tr("OFF"));
|
||||||
|
}
|
||||||
|
|
||||||
|
void PreferencesDialog::on_eventTable_doubleClicked(const QModelIndex &index)
|
||||||
|
{
|
||||||
|
int row=index.row();
|
||||||
|
int col=index.column();
|
||||||
|
if (col==1) {
|
||||||
|
QWidget *w=ui->eventTable->cellWidget(row,col);
|
||||||
|
QColorDialog a;
|
||||||
|
QColor color=w->palette().background().color();
|
||||||
|
a.setCurrentColor(color);
|
||||||
|
if (a.exec()==QColorDialog::Accepted) {
|
||||||
|
QColor c=a.currentColor();
|
||||||
|
QPalette p(c,c,c,c,c,c,c);
|
||||||
|
w->setPalette(p);
|
||||||
|
qDebug() << "Color accepted" << col;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#define PREFERENCESDIALOG_H
|
#define PREFERENCESDIALOG_H
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
#include <QModelIndex>
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class PreferencesDialog;
|
class PreferencesDialog;
|
||||||
}
|
}
|
||||||
@ -15,6 +15,14 @@ public:
|
|||||||
explicit PreferencesDialog(QWidget *parent = 0);
|
explicit PreferencesDialog(QWidget *parent = 0);
|
||||||
~PreferencesDialog();
|
~PreferencesDialog();
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void on_combineSlider_sliderMoved(int position);
|
||||||
|
|
||||||
|
void on_IgnoreSlider_sliderMoved(int position);
|
||||||
|
|
||||||
|
void on_eventColor_selected(QString);
|
||||||
|
void on_eventTable_doubleClicked(const QModelIndex &index);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::PreferencesDialog *ui;
|
Ui::PreferencesDialog *ui;
|
||||||
};
|
};
|
||||||
|
@ -29,13 +29,13 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>0</number>
|
<number>1</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="tab">
|
<widget class="QWidget" name="tab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>&Sessions</string>
|
<string>&Sessions</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_4">
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
<item>
|
<item>
|
||||||
@ -51,9 +51,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QTimeEdit" name="timeEdit">
|
<widget class="QTimeEdit" name="timeEdit">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Sessions before this time will go to the previous calendar day.
|
<string>Sessions starting before this time will go to the previous calendar day.</string>
|
||||||
You must restart SleepyHead to see these changes,
|
|
||||||
unless you haven't imported any data yet.</string>
|
|
||||||
</property>
|
</property>
|
||||||
<property name="buttonSymbols">
|
<property name="buttonSymbols">
|
||||||
<enum>QAbstractSpinBox::UpDownArrows</enum>
|
<enum>QAbstractSpinBox::UpDownArrows</enum>
|
||||||
@ -97,7 +95,7 @@ It will be faster changing to days you've already been to if you leave it on. </
|
|||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -109,62 +107,74 @@ It will be faster changing to days you've already been to if you leave it on. </
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
<widget class="QLabel" name="label_4">
|
||||||
<item>
|
<property name="text">
|
||||||
<widget class="QSlider" name="horizontalSlider">
|
<string>Minutes</string>
|
||||||
<property name="minimumSize">
|
</property>
|
||||||
<size>
|
<property name="alignment">
|
||||||
<width>0</width>
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
<height>0</height>
|
</property>
|
||||||
</size>
|
</widget>
|
||||||
</property>
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Sessions shorter than this value will be kept together on the same day.
|
|
||||||
You must restart SleepyHead to see these changes,
|
|
||||||
unless you haven't imported any data yet.</string>
|
|
||||||
</property>
|
|
||||||
<property name="minimum">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="maximum">
|
|
||||||
<number>240</number>
|
|
||||||
</property>
|
|
||||||
<property name="singleStep">
|
|
||||||
<number>15</number>
|
|
||||||
</property>
|
|
||||||
<property name="pageStep">
|
|
||||||
<number>60</number>
|
|
||||||
</property>
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="invertedAppearance">
|
|
||||||
<bool>false</bool>
|
|
||||||
</property>
|
|
||||||
<property name="invertedControls">
|
|
||||||
<bool>false</bool>
|
|
||||||
</property>
|
|
||||||
<property name="tickPosition">
|
|
||||||
<enum>QSlider::TicksAbove</enum>
|
|
||||||
</property>
|
|
||||||
<property name="tickInterval">
|
|
||||||
<number>15</number>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLCDNumber" name="lcdNumber_2">
|
|
||||||
<property name="frameShape">
|
|
||||||
<enum>QFrame::Box</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
|
<item>
|
||||||
|
<widget class="QSlider" name="combineSlider">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Multiple sessions closer together than this value will be kept on the same day.
|
||||||
|
</string>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>240</number>
|
||||||
|
</property>
|
||||||
|
<property name="singleStep">
|
||||||
|
<number>10</number>
|
||||||
|
</property>
|
||||||
|
<property name="pageStep">
|
||||||
|
<number>60</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="invertedAppearance">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="invertedControls">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="tickPosition">
|
||||||
|
<enum>QSlider::TicksAbove</enum>
|
||||||
|
</property>
|
||||||
|
<property name="tickInterval">
|
||||||
|
<number>30</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLCDNumber" name="combineLCD">
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::Box</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_3">
|
<widget class="QLabel" name="label_3">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -176,38 +186,52 @@ unless you haven't imported any data yet.</string>
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
<widget class="QLabel" name="label_5">
|
||||||
<item>
|
<property name="text">
|
||||||
<widget class="QSlider" name="horizontalSlider_2">
|
<string>Minutes</string>
|
||||||
<property name="toolTip">
|
</property>
|
||||||
<string>Sessions shorter than this will not be imported.
|
<property name="alignment">
|
||||||
Changing this value only affects future imports.</string>
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximum">
|
</widget>
|
||||||
<number>60</number>
|
</item>
|
||||||
</property>
|
</layout>
|
||||||
<property name="pageStep">
|
</item>
|
||||||
<number>5</number>
|
<item>
|
||||||
</property>
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||||
<property name="orientation">
|
<item>
|
||||||
<enum>Qt::Horizontal</enum>
|
<widget class="QSlider" name="IgnoreSlider">
|
||||||
</property>
|
<property name="toolTip">
|
||||||
<property name="tickPosition">
|
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<enum>QSlider::TicksAbove</enum>
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
</property>
|
p, li { white-space: pre-wrap; }
|
||||||
<property name="tickInterval">
|
</style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||||
<number>5</number>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Sessions shorter in duration than this will not be displayed<span style=" font-style:italic;">.</span></p>
|
||||||
</property>
|
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-style:italic;"></p></body></html></string>
|
||||||
</widget>
|
</property>
|
||||||
</item>
|
<property name="maximum">
|
||||||
<item>
|
<number>60</number>
|
||||||
<widget class="QLCDNumber" name="lcdNumber">
|
</property>
|
||||||
<property name="frameShape">
|
<property name="pageStep">
|
||||||
<enum>QFrame::Box</enum>
|
<number>5</number>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
<property name="orientation">
|
||||||
</item>
|
<enum>Qt::Horizontal</enum>
|
||||||
</layout>
|
</property>
|
||||||
|
<property name="tickPosition">
|
||||||
|
<enum>QSlider::TicksAbove</enum>
|
||||||
|
</property>
|
||||||
|
<property name="tickInterval">
|
||||||
|
<number>5</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLCDNumber" name="IgnoreLCD">
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::Box</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
@ -226,6 +250,50 @@ Changing this value only affects future imports.</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
<widget class="QWidget" name="tab_2">
|
||||||
|
<attribute name="title">
|
||||||
|
<string>&Events</string>
|
||||||
|
</attribute>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||||
|
<item>
|
||||||
|
<widget class="QTableWidget" name="eventTable">
|
||||||
|
<property name="sortingEnabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="rowCount">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="columnCount">
|
||||||
|
<number>3</number>
|
||||||
|
</property>
|
||||||
|
<attribute name="horizontalHeaderStretchLastSection">
|
||||||
|
<bool>true</bool>
|
||||||
|
</attribute>
|
||||||
|
<column>
|
||||||
|
<property name="text">
|
||||||
|
<string>Show</string>
|
||||||
|
</property>
|
||||||
|
<property name="textAlignment">
|
||||||
|
<set>AlignHCenter|AlignVCenter|AlignCenter</set>
|
||||||
|
</property>
|
||||||
|
</column>
|
||||||
|
<column>
|
||||||
|
<property name="text">
|
||||||
|
<string>Colour</string>
|
||||||
|
</property>
|
||||||
|
<property name="textAlignment">
|
||||||
|
<set>AlignHCenter|AlignVCenter|AlignCenter</set>
|
||||||
|
</property>
|
||||||
|
</column>
|
||||||
|
<column>
|
||||||
|
<property name="text">
|
||||||
|
<string>Event</string>
|
||||||
|
</property>
|
||||||
|
</column>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
Loading…
Reference in New Issue
Block a user