OSCAR-code/preferencesdialog.cpp

173 lines
6.0 KiB
C++
Raw Normal View History

2011-08-03 03:09:57 +00:00
#include <QLabel>
#include <QColorDialog>
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,Profile * _profile) :
2011-08-02 22:37:15 +00:00
QDialog(parent),
ui(new Ui::PreferencesDialog),
profile(_profile)
2011-08-02 22:37:15 +00:00
{
ui->setupUi(this);
Q_ASSERT(profile!=NULL);
2011-10-02 04:23:17 +00:00
ui->tabWidget->setCurrentIndex(0);
int i=ui->unitCombo->findText((*profile)["UnitSystem"].toString());
if (i<0) i=0;
ui->unitCombo->setCurrentIndex(i);
2011-10-02 04:23:17 +00:00
//i=ui->timeZoneCombo->findText((*profile)["TimeZone"].toString());
//ui->timeZoneCombo->setCurrentIndex(i);
QTime t=pref["DaySplitTime"].toTime();
ui->timeEdit->setTime(t);
int val;
val=pref["CombineCloserSessions"].toInt();
ui->combineSlider->setValue(val);
if (val>0) {
ui->combineLCD->display(val);
} else ui->combineLCD->display(tr("OFF"));
val=pref["IgnoreShorterSessions"].toInt();
ui->IgnoreSlider->setValue(val);
if (val>0) {
ui->IgnoreLCD->display(val);
} else ui->IgnoreLCD->display(tr("OFF"));
ui->overlayFlagsCombo->setCurrentIndex(pref["AlwaysShowOverlayBars"].toInt());
ui->useAntiAliasing->setChecked(pref["UseAntiAliasing"].toBool());
ui->memoryHogCheckbox->setChecked(pref["MemoryHog"].toBool());
ui->useGraphSnapshots->setChecked(pref["EnableGraphSnapshots"].toBool());
ui->intentionalLeakEdit->setValue(pref["IntentionalLeak"].toDouble());
ui->useMultithreading->setChecked(pref["EnableMultithreading"].toBool());
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);
ui->eventTable->setColumnHidden(3,true);
2011-08-03 03:09:57 +00:00
int row=0;
QTableWidgetItem *item;
2011-09-17 12:39:00 +00:00
QHash<QString, schema::Channel *>::iterator ci;
for (ci=schema::channel.names.begin();ci!=schema::channel.names.end();ci++) {
if (ci.value()->type()==schema::DATA) {
2011-08-03 03:09:57 +00:00
ui->eventTable->insertRow(row);
int id=ci.value()->id();
ui->eventTable->setItem(row,3,new QTableWidgetItem(QString::number(id)));
2011-09-17 12:39:00 +00:00
item=new QTableWidgetItem(ci.value()->description());
2011-08-03 03:09:57 +00:00
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=ci.value()->defaultColor();//(rand() % 255, rand() % 255, rand() % 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-10-02 04:23:17 +00:00
/* QLocale locale=QLocale::system();
2011-09-12 05:18:31 +00:00
QString shortformat=locale.dateFormat(QLocale::ShortFormat);
if (!shortformat.toLower().contains("yyyy")) {
shortformat.replace("yy","yyyy");
2011-10-02 04:23:17 +00:00
}*/
2011-10-05 03:05:35 +00:00
QTreeWidget *tree=ui->graphTree;
tree->clear();
tree->setColumnCount(1); // 1 visible common.. (1 hidden)
QTreeWidgetItem *daily=new QTreeWidgetItem((QTreeWidget *)0,QStringList("Daily Graphs"));
QTreeWidgetItem *overview=new QTreeWidgetItem((QTreeWidget *)0,QStringList("Overview Graphs"));
tree->insertTopLevelItem(0,daily);
tree->insertTopLevelItem(0,overview);
QTreeWidgetItem *it=new QTreeWidgetItem(daily,QStringList("Event Flags"));//,QTreeWidgetItem::UserType);
it->setFlags(Qt::ItemIsUserCheckable|Qt::ItemIsSelectable|Qt::ItemIsEnabled);
it->setCheckState(0,Qt::Checked);
daily->addChild(it);
//QTreeWidgetItem *root=NULL;//new QTreeWidgetItem((QTreeWidget *)0,QStringList("Stuff"));
//=new QTreeWidgetItem(root,l);
//ui->graphTree->setModel(
tree->sortByColumn(0,Qt::AscendingOrder);
2011-08-03 03:09:57 +00:00
}
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();
bool ok;
int id=ui->eventTable->item(row,3)->text().toInt(&ok);
2011-08-03 03:09:57 +00:00
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);
m_new_colors[id]=c;
//qDebug() << "Color accepted" << col << id;
2011-08-03 03:09:57 +00:00
}
}
}
2011-08-05 07:52:32 +00:00
void PreferencesDialog::Save()
2011-08-05 07:52:32 +00:00
{
(*profile)["UnitSystem"]=ui->unitCombo->currentText();
2011-10-02 04:23:17 +00:00
//(*profile)["TimeZone"]=ui->timeZoneCombo->currentText();
pref["CombineCloserSessions"]=ui->combineSlider->value();
pref["IgnoreShorterSessions"]=ui->IgnoreSlider->value();
pref["MemoryHog"]=ui->memoryHogCheckbox->isChecked();
2011-08-05 07:52:32 +00:00
pref["DaySplitTime"]=ui->timeEdit->time();
pref["AlwaysShowOverlayBars"]=ui->overlayFlagsCombo->currentIndex();
pref["UseAntiAliasing"]=ui->useAntiAliasing->isChecked();
pref["MemoryHog"]=ui->memoryHogCheckbox->isChecked();
pref["EnableGraphSnapshots"]=ui->useGraphSnapshots->isChecked();
pref["IntentionalLeak"]=ui->intentionalLeakEdit->value();
pref["EnableMultithreading"]=ui->useMultithreading->isChecked();
for (QHash<int,QColor>::iterator i=m_new_colors.begin();i!=m_new_colors.end();i++) {
schema::Channel &chan=schema::channel[i.key()];
if (!chan.isNull()) {
qDebug() << "TODO: Change" << chan.name() << "color to" << i.value();
chan.setDefaultColor(i.value());
}
}
qDebug() << "TODO: Save channels.xml to update channel data";
profile->Save();
pref.Save();
2011-08-05 07:52:32 +00:00
}
void PreferencesDialog::on_combineSlider_valueChanged(int position)
2011-08-05 07:52:32 +00:00
{
if (position>0) {
ui->combineLCD->display(position);
} else ui->combineLCD->display(tr("OFF"));
}
void PreferencesDialog::on_IgnoreSlider_valueChanged(int position)
2011-08-05 07:52:32 +00:00
{
if (position>0) {
ui->IgnoreLCD->display(position);
} else ui->IgnoreLCD->display(tr("OFF"));
}