Initial Preferences Color support: No Summary Charts, and No Saving Yet.

This commit is contained in:
Mark Watkins 2011-09-23 15:22:52 +10:00
parent 774d3f3ed3
commit 6ba03a4e45
8 changed files with 32 additions and 5 deletions

View File

@ -137,6 +137,7 @@ void gFlagsLine::paint(gGraph & w,int left, int top, int width, int height)
float bottom=top+height-2; float bottom=top+height-2;
bool verts_exceeded=false; bool verts_exceeded=false;
qint64 X,Y; qint64 X,Y;
m_flag_color=schema::channel[m_code].defaultColor();
for (QVector<Session *>::iterator s=m_day->begin();s!=m_day->end(); s++) { for (QVector<Session *>::iterator s=m_day->begin();s!=m_day->end(); s++) {
if ((*s)->eventlist.find(m_code)==(*s)->eventlist.end()) continue; if ((*s)->eventlist.find(m_code)==(*s)->eventlist.end()) continue;

View File

@ -124,6 +124,7 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height)
QHash<ChannelID,QVector<EventList *> >::iterator ci; QHash<ChannelID,QVector<EventList *> >::iterator ci;
m_line_color=schema::channel[m_code].defaultColor();
for (int svi=0;svi<m_day->size();svi++) { for (int svi=0;svi<m_day->size();svi++) {
if (!(*m_day)[svi]) { if (!(*m_day)[svi]) {
qWarning() << "gLineChart::Plot() NULL Session Record.. This should not happen"; qWarning() << "gLineChart::Plot() NULL Session Record.. This should not happen";

View File

@ -50,6 +50,7 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh
bool verts_exceeded=false; bool verts_exceeded=false;
QHash<ChannelID,QVector<EventList *> >::iterator cei; QHash<ChannelID,QVector<EventList *> >::iterator cei;
m_flag_color=schema::channel[m_code].defaultColor();
for (QVector<Session *>::iterator s=m_day->begin();s!=m_day->end(); s++) { for (QVector<Session *>::iterator s=m_day->begin();s!=m_day->end(); s++) {
cei=(*s)->eventlist.find(m_code); cei=(*s)->eventlist.find(m_code);
if (cei==(*s)->eventlist.end()) continue; if (cei==(*s)->eventlist.end()) continue;

View File

@ -103,7 +103,7 @@ void gSegmentChart::paint(gGraph & w,int left, int top, int width, int height)
GLBuffer *lines2=w.lines(); GLBuffer *lines2=w.lines();
for (unsigned m=0;m<size;m++) { for (unsigned m=0;m<size;m++) {
data=m_values[m]; data=m_values[m];
QColor & col=m_colors[m % m_colors.size()]; QColor & col=schema::channel[m_codes[m % m_colors.size()]].defaultColor();
if (data==0) continue; if (data==0) continue;
///////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////

View File

@ -39,6 +39,8 @@ public:
const QString & name() { return m_name; } const QString & name() { return m_name; }
const QString & description() { return m_description; } const QString & description() { return m_description; }
const QString & label() { return m_label; } const QString & label() { return m_label; }
QColor & defaultColor() { return m_defaultcolor; }
void setDefaultColor(QColor color) { m_defaultcolor=color; }
QHash<int,QString> m_options; QHash<int,QString> m_options;
QHash<Function,QColor> m_colors; QHash<Function,QColor> m_colors;
QList<Channel *> m_links; // better versions of this data type QList<Channel *> m_links; // better versions of this data type

View File

@ -69,12 +69,15 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
ui->eventTable->setColumnWidth(0,40); ui->eventTable->setColumnWidth(0,40);
ui->eventTable->setColumnWidth(1,55); ui->eventTable->setColumnWidth(1,55);
ui->eventTable->setColumnHidden(3,true);
int row=0; int row=0;
QTableWidgetItem *item; QTableWidgetItem *item;
QHash<QString, schema::Channel *>::iterator ci; QHash<QString, schema::Channel *>::iterator ci;
for (ci=schema::channel.names.begin();ci!=schema::channel.names.end();ci++) { for (ci=schema::channel.names.begin();ci!=schema::channel.names.end();ci++) {
if (ci.value()->type()==schema::DATA) { if (ci.value()->type()==schema::DATA) {
ui->eventTable->insertRow(row); ui->eventTable->insertRow(row);
int id=ci.value()->id();
ui->eventTable->setItem(row,3,new QTableWidgetItem(QString::number(id)));
item=new QTableWidgetItem(ci.value()->description()); item=new QTableWidgetItem(ci.value()->description());
ui->eventTable->setItem(row,2,item); ui->eventTable->setItem(row,2,item);
QCheckBox *c=new QCheckBox(ui->eventTable); QCheckBox *c=new QCheckBox(ui->eventTable);
@ -83,7 +86,9 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
pb->setText("foo"); pb->setText("foo");
ui->eventTable->setCellWidget(row,0,c); ui->eventTable->setCellWidget(row,0,c);
ui->eventTable->setCellWidget(row,1,pb); ui->eventTable->setCellWidget(row,1,pb);
QColor a(rand() % 255, rand() % 255, rand() % 255, 255);
QColor a=ci.value()->defaultColor();//(rand() % 255, rand() % 255, rand() % 255, 255);
QPalette p(a,a,a,a,a,a,a); QPalette p(a,a,a,a,a,a,a);
pb->setPalette(p); pb->setPalette(p);
@ -121,6 +126,8 @@ void PreferencesDialog::on_eventTable_doubleClicked(const QModelIndex &index)
{ {
int row=index.row(); int row=index.row();
int col=index.column(); int col=index.column();
bool ok;
int id=ui->eventTable->item(row,3)->text().toInt(&ok);
if (col==1) { if (col==1) {
QWidget *w=ui->eventTable->cellWidget(row,col); QWidget *w=ui->eventTable->cellWidget(row,col);
QColorDialog a; QColorDialog a;
@ -130,7 +137,8 @@ void PreferencesDialog::on_eventTable_doubleClicked(const QModelIndex &index)
QColor c=a.currentColor(); QColor c=a.currentColor();
QPalette p(c,c,c,c,c,c,c); QPalette p(c,c,c,c,c,c,c);
w->setPalette(p); w->setPalette(p);
qDebug() << "Color accepted" << col; m_new_colors[id]=c;
//qDebug() << "Color accepted" << col << id;
} }
} }
} }
@ -163,6 +171,14 @@ void PreferencesDialog::Save()
pref["IntentionalLeak"]=ui->intentionalLeakEdit->value(); pref["IntentionalLeak"]=ui->intentionalLeakEdit->value();
pref["EnableMultithreading"]=ui->useMultithreading->isChecked(); 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(); profile->Save();
pref.Save(); pref.Save();

View File

@ -32,6 +32,7 @@ private slots:
private: private:
Ui::PreferencesDialog *ui; Ui::PreferencesDialog *ui;
Profile * profile; Profile * profile;
QHash<int,QColor> m_new_colors;
}; };
#endif // PREFERENCESDIALOG_H #endif // PREFERENCESDIALOG_H

View File

@ -29,7 +29,7 @@
<item> <item>
<widget class="QTabWidget" name="tabWidget"> <widget class="QTabWidget" name="tabWidget">
<property name="currentIndex"> <property name="currentIndex">
<number>2</number> <number>3</number>
</property> </property>
<widget class="QWidget" name="profileTab"> <widget class="QWidget" name="profileTab">
<attribute name="title"> <attribute name="title">
@ -663,7 +663,7 @@ It has no effect on single cpu machines.</string>
<number>0</number> <number>0</number>
</property> </property>
<property name="columnCount"> <property name="columnCount">
<number>3</number> <number>4</number>
</property> </property>
<attribute name="horizontalHeaderStretchLastSection"> <attribute name="horizontalHeaderStretchLastSection">
<bool>true</bool> <bool>true</bool>
@ -689,6 +689,11 @@ It has no effect on single cpu machines.</string>
<string>Event</string> <string>Event</string>
</property> </property>
</column> </column>
<column>
<property name="text">
<string>ID</string>
</property>
</column>
</widget> </widget>
</item> </item>
</layout> </layout>