2013-07-09 12:37:53 +00:00
|
|
|
#include "printoptions.h"
|
|
|
|
#include "ui_printoptions.h"
|
2013-07-10 21:45:29 +00:00
|
|
|
#include "../display.h"
|
2013-07-09 12:37:53 +00:00
|
|
|
|
2013-07-09 20:43:21 +00:00
|
|
|
PrintOptions::PrintOptions(QWidget *parent, struct options *printOpt)
|
|
|
|
: ui( new Ui::PrintOptions())
|
2013-07-09 12:37:53 +00:00
|
|
|
{
|
2013-07-10 07:54:25 +00:00
|
|
|
hasSetupSlots = false;
|
|
|
|
ui->setupUi(this);
|
2013-07-09 20:43:21 +00:00
|
|
|
if (parent)
|
|
|
|
setParent(parent);
|
|
|
|
if (!printOpt)
|
|
|
|
return;
|
2013-07-10 07:54:25 +00:00
|
|
|
setup(printOpt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintOptions::setup(struct options *printOpt)
|
|
|
|
{
|
2013-07-09 20:43:21 +00:00
|
|
|
printOptions = printOpt;
|
2013-07-10 07:54:25 +00:00
|
|
|
// layout height sliders
|
2013-07-09 20:43:21 +00:00
|
|
|
initSliderWithLabel(ui->sliderPHeight, ui->valuePHeight, printOptions->profile_height);
|
|
|
|
initSliderWithLabel(ui->sliderOHeight, ui->valueOHeight, printOptions->notes_height);
|
|
|
|
initSliderWithLabel(ui->sliderNHeight, ui->valueNHeight, printOptions->tanks_height);
|
2013-07-10 07:54:25 +00:00
|
|
|
// print type radio buttons
|
2013-07-10 12:34:57 +00:00
|
|
|
switch (printOptions->type) {
|
2013-07-10 07:54:25 +00:00
|
|
|
case options::PRETTY:
|
|
|
|
ui->radioSixDives->setChecked(true);
|
|
|
|
break;
|
|
|
|
case options::TWOPERPAGE:
|
|
|
|
ui->radioTwoDives->setChecked(true);
|
|
|
|
break;
|
|
|
|
case options::TABLE:
|
|
|
|
ui->radioTablePrint->setChecked(true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// general print option checkboxes
|
|
|
|
if (printOptions->color_selected)
|
|
|
|
ui->printInColor->setChecked(true);
|
|
|
|
if (printOptions->print_selected)
|
|
|
|
ui->printSelected->setChecked(true);
|
|
|
|
// ordering
|
|
|
|
if (printOptions->notes_up)
|
|
|
|
ui->notesOnTop->setChecked(true);
|
|
|
|
else
|
|
|
|
ui->profileOnTop->setChecked(true);
|
|
|
|
|
|
|
|
// connect slots only once
|
|
|
|
if (hasSetupSlots)
|
|
|
|
return;
|
|
|
|
connect(ui->sliderPHeight, SIGNAL(sliderMoved(int)), this, SLOT(sliderPHeightMoved(int)));
|
|
|
|
connect(ui->sliderOHeight, SIGNAL(sliderMoved(int)), this, SLOT(sliderOHeightMoved(int)));
|
|
|
|
connect(ui->sliderNHeight, SIGNAL(sliderMoved(int)), this, SLOT(sliderNHeightMoved(int)));
|
|
|
|
|
|
|
|
connect(ui->radioSixDives, SIGNAL(clicked(bool)), this, SLOT(radioSixDivesClicked(bool)));
|
|
|
|
connect(ui->radioTwoDives, SIGNAL(clicked(bool)), this, SLOT(radioTwoDivesClicked(bool)));
|
|
|
|
connect(ui->radioTablePrint, SIGNAL(clicked(bool)), this, SLOT(radioTablePrintClicked(bool)));
|
|
|
|
|
|
|
|
connect(ui->printInColor, SIGNAL(clicked(bool)), this, SLOT(printInColorClicked(bool)));
|
|
|
|
connect(ui->printSelected, SIGNAL(clicked(bool)), this, SLOT(printSelectedClicked(bool)));
|
|
|
|
|
|
|
|
connect(ui->notesOnTop, SIGNAL(clicked(bool)), this, SLOT(notesOnTopClicked(bool)));
|
|
|
|
connect(ui->profileOnTop, SIGNAL(clicked(bool)), this, SLOT(profileOnTopClicked(bool)));
|
|
|
|
hasSetupSlots = true;
|
2013-07-09 12:37:53 +00:00
|
|
|
}
|
|
|
|
|
2013-07-10 07:54:25 +00:00
|
|
|
// layout height sliders
|
2013-07-09 20:43:21 +00:00
|
|
|
void PrintOptions::initSliderWithLabel(QSlider *slider, QLabel *label, int value)
|
2013-07-09 12:37:53 +00:00
|
|
|
{
|
2013-07-09 20:43:21 +00:00
|
|
|
slider->setValue(value);
|
|
|
|
label->setText(formatSliderValueText(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString PrintOptions::formatSliderValueText(int value)
|
|
|
|
{
|
|
|
|
QString str = QString("%1%").arg(QString::number(value));
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintOptions::sliderPHeightMoved(int value)
|
|
|
|
{
|
|
|
|
ui->valuePHeight->setText(formatSliderValueText(value));
|
|
|
|
printOptions->profile_height = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintOptions::sliderOHeightMoved(int value)
|
|
|
|
{
|
|
|
|
ui->valueOHeight->setText(formatSliderValueText(value));
|
|
|
|
printOptions->notes_height = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintOptions::sliderNHeightMoved(int value)
|
|
|
|
{
|
|
|
|
ui->valueNHeight->setText(formatSliderValueText(value));
|
|
|
|
printOptions->tanks_height = value;
|
2013-07-09 12:37:53 +00:00
|
|
|
}
|
2013-07-10 07:54:25 +00:00
|
|
|
|
|
|
|
// print type radio buttons
|
|
|
|
void PrintOptions::radioSixDivesClicked(bool check)
|
|
|
|
{
|
|
|
|
printOptions->type = options::PRETTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintOptions::radioTwoDivesClicked(bool check)
|
|
|
|
{
|
|
|
|
printOptions->type = options::TWOPERPAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintOptions::radioTablePrintClicked(bool check)
|
|
|
|
{
|
|
|
|
printOptions->type = options::TABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// general print option checkboxes
|
|
|
|
void PrintOptions::printInColorClicked(bool check)
|
|
|
|
{
|
|
|
|
printOptions->color_selected = (int)check;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintOptions::printSelectedClicked(bool check)
|
|
|
|
{
|
|
|
|
printOptions->print_selected = (int)check;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ordering
|
|
|
|
void PrintOptions::notesOnTopClicked(bool check)
|
|
|
|
{
|
|
|
|
printOptions->notes_up = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintOptions::profileOnTopClicked(bool check)
|
|
|
|
{
|
|
|
|
printOptions->notes_up = false;
|
|
|
|
}
|