leocad/qt/lc_qpropertiesdialog.cpp
2016-11-15 12:12:47 -08:00

229 lines
7.9 KiB
C++

#include "lc_global.h"
#include "lc_qpropertiesdialog.h"
#include "ui_lc_qpropertiesdialog.h"
#include "lc_qutils.h"
#include "lc_basewindow.h"
#include "lc_colors.h"
#include "lc_application.h"
#include "pieceinf.h"
lcQPropertiesDialog::lcQPropertiesDialog(QWidget *parent, void *data) :
QDialog(parent),
ui(new Ui::lcQPropertiesDialog)
{
ui->setupUi(this);
ui->fogDensityEdit->setValidator(new QDoubleValidator(ui->fogDensityEdit));
connect(ui->solidColorButton, SIGNAL(clicked()), this, SLOT(colorClicked()));
connect(ui->gradient1ColorButton, SIGNAL(clicked()), this, SLOT(colorClicked()));
connect(ui->gradient2ColorButton, SIGNAL(clicked()), this, SLOT(colorClicked()));
connect(ui->fogColorButton, SIGNAL(clicked()), this, SLOT(colorClicked()));
connect(ui->ambientColorButton, SIGNAL(clicked()), this, SLOT(colorClicked()));
options = (lcPropertiesDialogOptions*)data;
setWindowTitle(tr("%1 Properties").arg(options->Properties.mName));
ui->descriptionEdit->setText(options->Properties.mDescription);
ui->authorEdit->setText(options->Properties.mAuthor);
ui->commentsEdit->setText(options->Properties.mComments);
if (options->Properties.mBackgroundType == LC_BACKGROUND_IMAGE)
ui->imageRadio->setChecked(true);
else if (options->Properties.mBackgroundType == LC_BACKGROUND_GRADIENT)
ui->gradientRadio->setChecked(true);
else
ui->solidRadio->setChecked(true);
ui->imageNameEdit->setText(options->Properties.mBackgroundImage);
ui->imageTileCheckBox->setChecked(options->Properties.mBackgroundImageTile);
ui->fogCheckBox->setChecked(options->Properties.mFogEnabled);
ui->fogDensityEdit->setText(lcFormatValueLocalized(options->Properties.mFogDensity));
QPixmap pix(12, 12);
pix.fill(QColor(options->Properties.mBackgroundSolidColor[0] * 255, options->Properties.mBackgroundSolidColor[1] * 255, options->Properties.mBackgroundSolidColor[2] * 255));
ui->solidColorButton->setIcon(pix);
pix.fill(QColor(options->Properties.mBackgroundGradientColor1[0] * 255, options->Properties.mBackgroundGradientColor1[1] * 255, options->Properties.mBackgroundGradientColor1[2] * 255));
ui->gradient1ColorButton->setIcon(pix);
pix.fill(QColor(options->Properties.mBackgroundGradientColor2[0] * 255, options->Properties.mBackgroundGradientColor2[1] * 255, options->Properties.mBackgroundGradientColor2[2] * 255));
ui->gradient2ColorButton->setIcon(pix);
pix.fill(QColor(options->Properties.mFogColor[0] * 255, options->Properties.mFogColor[1] * 255, options->Properties.mFogColor[2] * 255));
ui->fogColorButton->setIcon(pix);
pix.fill(QColor(options->Properties.mAmbientColor[0] * 255, options->Properties.mAmbientColor[1] * 255, options->Properties.mAmbientColor[2] * 255));
ui->ambientColorButton->setIcon(pix);
lcArray<lcPartsListEntry>& partsUsed = options->PartsList;
QStringList horizontalLabels, partNames;
QVector<bool> ColorsUsed(gNumUserColors);
QMap<PieceInfo*, int> InfoRows;
for (int PartIdx = 0; PartIdx < partsUsed.GetSize(); PartIdx++)
{
ColorsUsed[partsUsed[PartIdx].ColorIndex] = true;
PieceInfo* Info = partsUsed[PartIdx].Info;
if (!InfoRows.value(Info))
{
InfoRows[Info] = InfoRows.size();
partNames.append(Info->m_strDescription);
}
}
QVector<int> ColorColumns(gNumUserColors);
int NumColors = 0;
horizontalLabels.append(tr("Part"));
for (int colorIdx = 0; colorIdx < gNumUserColors; colorIdx++)
{
if (ColorsUsed[colorIdx])
{
ColorColumns[colorIdx] = NumColors++;
horizontalLabels.append(gColorList[colorIdx].Name);
}
}
horizontalLabels.append(tr("Total"));
QTableWidget *table = ui->partsTable;
table->setColumnCount(NumColors + 2);
table->setRowCount(InfoRows.size() + 1);
table->setHorizontalHeaderLabels(horizontalLabels);
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
table->horizontalHeader()->setSectionResizeMode(0, QHeaderView::ResizeToContents);
#else
table->horizontalHeader()->setResizeMode(0, QHeaderView::ResizeToContents);
#endif
for (int rowIdx = 0; rowIdx < partNames.size(); rowIdx++)
table->setItem(rowIdx, 0, new QTableWidgetItem(partNames[rowIdx]));
table->setItem(partNames.size(), 0, new QTableWidgetItem(tr("Total")));
QVector<int> InfoTotals;
QVector<int> ColorTotals;
int total = 0;
InfoTotals.resize(InfoRows.size());
ColorTotals.resize(NumColors);
for (int partIdx = 0; partIdx < partsUsed.GetSize(); partIdx++)
{
int colorIndex = partsUsed[partIdx].ColorIndex;
PieceInfo* info = partsUsed[partIdx].Info;
int count = partsUsed[partIdx].Count;
QTableWidgetItem *item = new QTableWidgetItem(QString::number(count));
item->setTextAlignment(Qt::AlignCenter);
table->setItem(InfoRows[info] - 1, ColorColumns[colorIndex] + 1, item);
InfoTotals[InfoRows[info] - 1] += count;
ColorTotals[ColorColumns[colorIndex]] += count;
total += count;
}
for (int infoIdx = 0; infoIdx < InfoRows.size(); infoIdx++)
{
QTableWidgetItem *item = new QTableWidgetItem(QString::number(InfoTotals[infoIdx]));
item->setTextAlignment(Qt::AlignCenter);
table->setItem(infoIdx, NumColors + 1, item);
}
for (int colorIdx = 0; colorIdx < NumColors; colorIdx++)
{
QTableWidgetItem *item = new QTableWidgetItem(QString::number(ColorTotals[colorIdx]));
item->setTextAlignment(Qt::AlignCenter);
table->setItem(InfoRows.size(), colorIdx + 1, item);
}
QTableWidgetItem *item = new QTableWidgetItem(QString::number(total));
item->setTextAlignment(Qt::AlignCenter);
table->setItem(InfoRows.size(), NumColors + 1, item);
}
lcQPropertiesDialog::~lcQPropertiesDialog()
{
delete ui;
}
void lcQPropertiesDialog::accept()
{
options->Properties.mDescription = ui->descriptionEdit->text();
options->Properties.mAuthor = ui->authorEdit->text();
options->Properties.mComments = ui->commentsEdit->toPlainText();
if (ui->imageRadio->isChecked())
options->Properties.mBackgroundType = LC_BACKGROUND_IMAGE;
else if (ui->gradientRadio->isChecked())
options->Properties.mBackgroundType = LC_BACKGROUND_GRADIENT;
else
options->Properties.mBackgroundType = LC_BACKGROUND_SOLID;
options->Properties.mBackgroundImage = ui->imageNameEdit->text();
options->Properties.mBackgroundImageTile = ui->imageTileCheckBox->isChecked();
options->Properties.mFogEnabled = ui->fogCheckBox->isChecked();
options->Properties.mFogDensity = lcParseValueLocalized(ui->fogDensityEdit->text());
options->SetDefault = ui->setDefaultCheckBox->isChecked();
QDialog::accept();
}
void lcQPropertiesDialog::colorClicked()
{
QObject *button = sender();
QString title;
float *color = NULL;
if (button == ui->solidColorButton)
{
color = options->Properties.mBackgroundSolidColor;
title = tr("Select Background Color");
}
else if (button == ui->gradient1ColorButton)
{
color = options->Properties.mBackgroundGradientColor1;
title = tr("Select Background Top Color");
}
else if (button == ui->gradient2ColorButton)
{
color = options->Properties.mBackgroundGradientColor2;
title = tr("Select Background Bottom Color");
}
else if (button == ui->fogColorButton)
{
color = options->Properties.mFogColor;
title = tr("Select Fog Color");
}
else if (button == ui->ambientColorButton)
{
color = options->Properties.mAmbientColor;
title = tr("Select Ambient Light Color");
}
QColor oldColor = QColor(color[0] * 255, color[1] * 255, color[2] * 255);
QColor newColor = QColorDialog::getColor(oldColor, this, title);
if (newColor == oldColor || !newColor.isValid())
return;
color[0] = (float)newColor.red() / 255.0f;
color[1] = (float)newColor.green() / 255.0f;
color[2] = (float)newColor.blue() / 255.0f;
QPixmap pix(12, 12);
pix.fill(newColor);
((QToolButton*)button)->setIcon(pix);
}
void lcQPropertiesDialog::on_imageNameButton_clicked()
{
QString result = QFileDialog::getOpenFileName(this, tr("Select Background Image"), ui->imageNameEdit->text(), tr("All Image Files (*.png *.jpg *.gif *.bmp);;PNG Files (*.png);;JPEG Files (*.jpg);;GIF Files (*.gif);;BMP Files (*.bmp);;All Files (*.*)"));
if (!result.isEmpty())
ui->imageNameEdit->setText(QDir::toNativeSeparators(result));
}