OSCAR-code/preferencesdialog.cpp

128 lines
3.6 KiB
C++
Raw Normal View History

2011-08-03 03:09:57 +00:00
#include <QLabel>
#include <QColorDialog>
2011-08-05 07:52:32 +00:00
#include "SleepLib/profiles.h"
2011-08-02 22:37:15 +00:00
#include "preferencesdialog.h"
#include "ui_preferencesdialog.h"
2011-08-03 03:09:57 +00:00
#include "SleepLib/machine_common.h"
2011-08-02 22:37:15 +00:00
PreferencesDialog::PreferencesDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::PreferencesDialog)
{
ui->setupUi(this);
2011-08-05 07:52:32 +00:00
if (pref.Exists("DaySplitTime")) {
QTime t=pref["DaySplitTime"].toTime();
ui->timeEdit->setTime(t);
}
int val;
2011-08-05 07:52:32 +00:00
if (pref.Exists("CombineCloserSessions")) {
val=pref["CombineCloserSessions"].toInt();
ui->combineSlider->setValue(val);
} else {
ui->combineSlider->setValue(val=0);
pref["CombineCloserSessions"]=val;
2011-08-05 07:52:32 +00:00
}
if (val>0) {
ui->combineLCD->display(val);
} else ui->combineLCD->display(tr("OFF"));
2011-08-05 07:52:32 +00:00
if (pref.Exists("IgnoreShorterSessions")) {
val=pref["IgnoreShorterSessions"].toInt();
ui->IgnoreSlider->setValue(val);
} else {
ui->IgnoreSlider->setValue(val=0);
pref["IgnoreShorterSessions"]=val;
2011-08-05 07:52:32 +00:00
}
if (val>0) {
ui->IgnoreLCD->display(val);
} else ui->IgnoreLCD->display(tr("OFF"));
bool b;
2011-08-05 07:52:32 +00:00
if (pref.Exists("MemoryHog")) {
b=pref["MemoryHog"].toBool();
} else {
pref["MemoryHog"]=b=false;
2011-08-05 07:52:32 +00:00
}
ui->memoryHogCheckbox->setChecked(b);
2011-08-05 07:52:32 +00:00
2011-08-03 03:09:57 +00:00
ui->eventTable->setColumnWidth(0,40);
ui->eventTable->setColumnWidth(1,55);
2011-08-03 03:09:57 +00:00
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);
c->setChecked(true);
2011-08-03 03:09:57 +00:00
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);
2011-08-03 03:09:57 +00:00
QPalette p(a,a,a,a,a,a,a);
pb->setPalette(p);
pb->setAutoFillBackground(true);
pb->setBackgroundRole(QPalette::Background);
row++;
}
}
}
2011-08-05 07:52:32 +00:00
2011-08-02 22:37:15 +00:00
PreferencesDialog::~PreferencesDialog()
{
delete ui;
}
2011-08-03 03:09:57 +00:00
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;
}
}
}
2011-08-05 07:52:32 +00:00
void PreferencesDialog::on_timeEdit_editingFinished()
{
pref["DaySplitTime"]=ui->timeEdit->time();
}
void PreferencesDialog::on_memoryHogCheckbox_toggled(bool checked)
{
pref["MemoryHog"]=checked;
}
void PreferencesDialog::on_combineSlider_valueChanged(int position)
{
if (position>0) {
ui->combineLCD->display(position);
} else ui->combineLCD->display(tr("OFF"));
pref["CombineCloserSessions"]=position;
}
void PreferencesDialog::on_IgnoreSlider_valueChanged(int position)
{
if (position>0) {
ui->IgnoreLCD->display(position);
} else ui->IgnoreLCD->display(tr("OFF"));
pref["IgnoreShorterSessions"]=position;
}