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
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
|
2011-08-02 22:37:15 +00:00
|
|
|
QDialog(parent),
|
2011-09-11 06:16:45 +00:00
|
|
|
ui(new Ui::PreferencesDialog),
|
|
|
|
profile(_profile)
|
2011-08-02 22:37:15 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2011-09-11 06:16:45 +00:00
|
|
|
Q_ASSERT(profile!=NULL);
|
2011-10-02 04:23:17 +00:00
|
|
|
ui->tabWidget->setCurrentIndex(0);
|
2011-09-08 09:50:05 +00:00
|
|
|
int i=ui->unitCombo->findText((*profile)["UnitSystem"].toString());
|
2011-09-10 14:17:45 +00:00
|
|
|
if (i<0) i=0;
|
2011-09-08 09:50:05 +00:00
|
|
|
ui->unitCombo->setCurrentIndex(i);
|
|
|
|
|
2011-10-02 04:23:17 +00:00
|
|
|
//i=ui->timeZoneCombo->findText((*profile)["TimeZone"].toString());
|
|
|
|
//ui->timeZoneCombo->setCurrentIndex(i);
|
2011-09-08 09:50:05 +00:00
|
|
|
|
2011-09-23 03:54:48 +00:00
|
|
|
QTime t=pref["DaySplitTime"].toTime();
|
|
|
|
ui->timeEdit->setTime(t);
|
2011-08-05 08:41:45 +00:00
|
|
|
int val;
|
|
|
|
|
2011-09-23 03:54:48 +00:00
|
|
|
val=pref["CombineCloserSessions"].toInt();
|
|
|
|
ui->combineSlider->setValue(val);
|
2011-08-05 08:41:45 +00:00
|
|
|
if (val>0) {
|
|
|
|
ui->combineLCD->display(val);
|
|
|
|
} else ui->combineLCD->display(tr("OFF"));
|
|
|
|
|
|
|
|
|
2011-09-23 03:54:48 +00:00
|
|
|
val=pref["IgnoreShorterSessions"].toInt();
|
|
|
|
ui->IgnoreSlider->setValue(val);
|
|
|
|
|
2011-08-05 08:41:45 +00:00
|
|
|
if (val>0) {
|
|
|
|
ui->IgnoreLCD->display(val);
|
|
|
|
} else ui->IgnoreLCD->display(tr("OFF"));
|
|
|
|
|
2011-09-23 03:54:48 +00:00
|
|
|
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);
|
2011-08-05 00:12:23 +00:00
|
|
|
ui->eventTable->setColumnWidth(1,55);
|
2011-09-23 05:22:52 +00:00
|
|
|
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);
|
2011-09-23 05:22:52 +00:00
|
|
|
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);
|
2011-08-05 00:12:23 +00:00
|
|
|
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);
|
2011-09-23 05:22:52 +00:00
|
|
|
|
2011-09-24 03:59:23 +00:00
|
|
|
|
2011-09-23 05:22:52 +00:00
|
|
|
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();
|
2011-09-23 05:22:52 +00:00
|
|
|
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);
|
2011-09-23 05:22:52 +00:00
|
|
|
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
|
|
|
|
2011-09-08 09:50:05 +00:00
|
|
|
void PreferencesDialog::Save()
|
2011-08-05 07:52:32 +00:00
|
|
|
{
|
2011-09-08 09:50:05 +00:00
|
|
|
(*profile)["UnitSystem"]=ui->unitCombo->currentText();
|
2011-10-02 04:23:17 +00:00
|
|
|
//(*profile)["TimeZone"]=ui->timeZoneCombo->currentText();
|
2011-09-08 09:50:05 +00:00
|
|
|
|
|
|
|
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();
|
|
|
|
|
2011-09-23 03:54:48 +00:00
|
|
|
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();
|
|
|
|
|
2011-09-23 05:22:52 +00:00
|
|
|
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";
|
2011-09-23 03:54:48 +00:00
|
|
|
|
2011-09-08 09:50:05 +00:00
|
|
|
profile->Save();
|
|
|
|
pref.Save();
|
2011-08-05 07:52:32 +00:00
|
|
|
}
|
|
|
|
|
2011-09-23 03:54:48 +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"));
|
|
|
|
}
|
|
|
|
|
2011-09-23 03:54:48 +00:00
|
|
|
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"));
|
|
|
|
}
|