Merge branch 'dev' into metadata-exiv2
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
#include "options.h"
|
||||
#include "../rtengine/procparams.h"
|
||||
#include "rtimage.h"
|
||||
#include "eventmapper.h"
|
||||
|
||||
using namespace rtengine;
|
||||
using namespace procparams;
|
||||
@@ -53,8 +54,9 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
spotMethod_(Gtk::manage(new MyComboBoxText())),
|
||||
shapeMethod_(Gtk::manage(new MyComboBoxText())),
|
||||
qualityMethod_(Gtk::manage(new MyComboBoxText())),
|
||||
complexMethod_(Gtk::manage(new MyComboBoxText())),
|
||||
//complexMethod_(Gtk::manage(new MyComboBoxText())),
|
||||
wavMethod_(Gtk::manage(new MyComboBoxText())),
|
||||
avoidgamutMethod_(Gtk::manage(new MyComboBoxText())),
|
||||
|
||||
sensiexclu_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_SENSIEXCLU"), 0, 100, 1, 12))),
|
||||
structexclu_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_STRUCCOL"), 0, 100, 1, 0))),
|
||||
@@ -76,20 +78,19 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
balanh_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_BALANH"), 0.2, 2.5, 0.1, 1.0, Gtk::manage(new RTImage("rawtherapee-logo-16.png")), Gtk::manage(new RTImage("circle-red-green-small.png"))))),
|
||||
colorde_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_COLORDE"), -15, 15, 2, 5, Gtk::manage(new RTImage("circle-blue-yellow-small.png")), Gtk::manage(new RTImage("circle-gray-green-small.png"))))),
|
||||
colorscope_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_COLORSCOPE"), 0., 100.0, 1., 30.))),
|
||||
avoidrad_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_AVOIDRAD"), 0., 30.0, 0.1, 0.7))),
|
||||
avoidrad_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_AVOIDRAD"), 0., 30.0, 0.1, 0.))),
|
||||
scopemask_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_SCOPEMASK"), 0, 100, 1, 60))),
|
||||
denoichmask_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_DENOIMASK"), 0., 100., 0.5, 0))),
|
||||
lumask_(Gtk::manage(new Adjuster(M("TP_LOCALLAB_LUMASK"), -50, 30, 1, 10, Gtk::manage(new RTImage("circle-yellow-small.png")), Gtk::manage(new RTImage("circle-gray-small.png")) ))),
|
||||
|
||||
hishow_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_PREVSHOW")))),
|
||||
activ_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_ACTIVSPOT")))),
|
||||
avoid_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_AVOID")))),
|
||||
avoidmun_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_AVOIDMUN")))),
|
||||
blwh_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_BLWH")))),
|
||||
recurs_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_RECURS")))),
|
||||
laplac_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_LAPLACC")))),
|
||||
deltae_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_DELTAEC")))),
|
||||
shortc_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_SHORTC")))),
|
||||
savrest_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_SAVREST")))),
|
||||
//savrest_(Gtk::manage(new Gtk::CheckButton(M("TP_LOCALLAB_SAVREST")))),
|
||||
|
||||
expTransGrad_(Gtk::manage(new MyExpander(false, M("TP_LOCALLAB_TRANSIT")))),
|
||||
expShapeDetect_(Gtk::manage(new MyExpander(false, M("TP_LOCALLAB_ARTIF")))),
|
||||
@@ -99,6 +100,7 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
preview_(Gtk::manage(new Gtk::ToggleButton(M("TP_LOCALLAB_PREVIEW")))),
|
||||
ctboxshape(Gtk::manage(new Gtk::Box())),
|
||||
ctboxshapemethod(Gtk::manage(new Gtk::Box())),
|
||||
ctboxgamut(Gtk::manage(new Gtk::Box())),
|
||||
|
||||
controlPanelListener(nullptr),
|
||||
lastObject_(-1),
|
||||
@@ -110,6 +112,8 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
excluFrame(Gtk::manage(new Gtk::Frame(M("TP_LOCALLAB_EXCLUF")))),
|
||||
maskPrevActive(false)
|
||||
{
|
||||
auto m = ProcEventMapper::getInstance();
|
||||
EvLocallabavoidgamutMethod = m->newEvent(AUTOEXP, "HISTORY_MSG_LOCAL_GAMUTMUNSEL");
|
||||
const bool showtooltip = options.showtooltip;
|
||||
pack_start(*hishow_);
|
||||
|
||||
@@ -330,6 +334,7 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
feather_->set_tooltip_text(M("TP_LOCALLAB_FEATH_TOOLTIP"));
|
||||
transitgrad_->set_tooltip_text(M("TP_LOCALLAB_TRANSITGRAD_TOOLTIP"));
|
||||
scopemask_->set_tooltip_text(M("TP_LOCALLAB_SCOPEMASK_TOOLTIP"));
|
||||
denoichmask_->set_tooltip_text(M("TP_LOCALLAB_DENOIMASK_TOOLTIP"));
|
||||
}
|
||||
|
||||
transit_->setAdjusterListener(this);
|
||||
@@ -337,6 +342,7 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
transitgrad_->setAdjusterListener(this);
|
||||
feather_->setAdjusterListener(this);
|
||||
scopemask_->setAdjusterListener(this);
|
||||
denoichmask_->setAdjusterListener(this);
|
||||
transitBox->pack_start(*transit_);
|
||||
transitBox->pack_start(*transitweak_);
|
||||
transitBox->pack_start(*transitgrad_);
|
||||
@@ -394,20 +400,31 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
activConn_ = activ_->signal_toggled().connect(
|
||||
sigc::mem_fun(*this, &ControlSpotPanel::activChanged));
|
||||
|
||||
avoidConn_ = avoid_->signal_toggled().connect(
|
||||
sigc::mem_fun(*this, &ControlSpotPanel::avoidChanged));
|
||||
avoidmunConn_ = avoidmun_->signal_toggled().connect(
|
||||
sigc::mem_fun(*this, &ControlSpotPanel::avoidmunChanged));
|
||||
|
||||
Gtk::Frame* const avFrame = Gtk::manage(new Gtk::Frame());
|
||||
Gtk::Label* const labelgamut = Gtk::manage(new Gtk::Label(M("TP_LOCALLAB_AVOID") + ":"));
|
||||
ctboxgamut->pack_start(*labelgamut, Gtk::PACK_SHRINK, 4);
|
||||
avoidgamutMethod_->append(M("TP_LOCALLAB_GAMUTNON"));
|
||||
avoidgamutMethod_->append(M("TP_LOCALLAB_GAMUTLABRELA"));
|
||||
avoidgamutMethod_->append(M("TP_LOCALLAB_GAMUTXYZABSO"));
|
||||
avoidgamutMethod_->append(M("TP_LOCALLAB_GAMUTXYZRELA"));
|
||||
avoidgamutMethod_->append(M("TP_LOCALLAB_GAMUTMUNSELL"));
|
||||
avoidgamutMethod_->set_active(4);
|
||||
avoidgamutconn_ = avoidgamutMethod_->signal_changed().connect(
|
||||
sigc::mem_fun(
|
||||
*this, &ControlSpotPanel::avoidgamutMethodChanged));
|
||||
ctboxgamut->pack_start(*avoidgamutMethod_);
|
||||
if (showtooltip) {
|
||||
ctboxgamut->set_tooltip_text(M("TP_LOCALLAB_AVOIDCOLORSHIFT_TOOLTIP"));
|
||||
}
|
||||
|
||||
Gtk::Frame* const avFrame = Gtk::manage(new Gtk::Frame());
|
||||
ToolParamBlock* const avbox = Gtk::manage(new ToolParamBlock());
|
||||
avFrame->set_label_align(0.025, 0.5);
|
||||
avFrame->set_label_widget(*avoid_);
|
||||
avbox->pack_start(*ctboxgamut);
|
||||
avbox->pack_start(*avoidrad_);
|
||||
avbox->pack_start(*avoidmun_);
|
||||
avFrame->add(*avbox);
|
||||
specCaseBox->pack_start(*avFrame);
|
||||
|
||||
|
||||
blwhConn_ = blwh_->signal_toggled().connect(
|
||||
sigc::mem_fun(*this, &ControlSpotPanel::blwhChanged));
|
||||
|
||||
@@ -422,7 +439,6 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
|
||||
if (showtooltip) {
|
||||
recurs_->set_tooltip_text(M("TP_LOCALLAB_RECURS_TOOLTIP"));
|
||||
avoid_->set_tooltip_text(M("TP_LABCURVE_AVOIDCOLORSHIFT_TOOLTIP"));
|
||||
}
|
||||
|
||||
specCaseBox->pack_start(*recurs_);
|
||||
@@ -469,11 +485,11 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
}
|
||||
|
||||
lumask_->setAdjusterListener(this);
|
||||
savrestConn_ = savrest_->signal_toggled().connect(
|
||||
sigc::mem_fun(*this, &ControlSpotPanel::savrestChanged));
|
||||
//savrestConn_ = savrest_->signal_toggled().connect(
|
||||
// sigc::mem_fun(*this, &ControlSpotPanel::savrestChanged));
|
||||
|
||||
if (showtooltip) {
|
||||
savrest_->set_tooltip_text(M("TP_LOCALLAB_SAVREST_TOOLTIP"));
|
||||
//savrest_->set_tooltip_text(M("TP_LOCALLAB_SAVREST_TOOLTIP"));
|
||||
lumask_->set_tooltip_text(M("TP_LOCALLAB_LUMASK_TOOLTIP"));
|
||||
laplac_->set_tooltip_text(M("TP_LOCALLAB_LAP_MASK_TOOLTIP"));
|
||||
}
|
||||
@@ -481,6 +497,7 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
// maskBox->pack_start(*laplac_);
|
||||
maskBox->pack_start(*deltae_);
|
||||
maskBox->pack_start(*scopemask_);
|
||||
maskBox->pack_start(*denoichmask_);
|
||||
// maskBox->pack_start(*shortc_);
|
||||
maskBox->pack_start(*lumask_);
|
||||
// maskBox->pack_start(*savrest_);
|
||||
@@ -490,27 +507,27 @@ ControlSpotPanel::ControlSpotPanel():
|
||||
Gtk::Separator *separatormet = Gtk::manage(new Gtk::Separator(Gtk::ORIENTATION_HORIZONTAL));
|
||||
pack_start(*separatormet, Gtk::PACK_SHRINK, 2);
|
||||
|
||||
Gtk::Box* const ctboxcomplexmethod = Gtk::manage(new Gtk::Box());
|
||||
//Gtk::Box* const ctboxcomplexmethod = Gtk::manage(new Gtk::Box());
|
||||
|
||||
if (showtooltip) {
|
||||
ctboxcomplexmethod->set_tooltip_markup(M("TP_LOCALLAB_COMPLEXMETHOD_TOOLTIP"));
|
||||
}
|
||||
//if (showtooltip) {
|
||||
// ctboxcomplexmethod->set_tooltip_markup(M("TP_LOCALLAB_COMPLEXMETHOD_TOOLTIP"));
|
||||
//}
|
||||
|
||||
Gtk::Label* const labelcomplexmethod = Gtk::manage(new Gtk::Label(M("TP_LOCALLAB_COMPLEX_METHOD") + ":"));
|
||||
ctboxcomplexmethod->pack_start(*labelcomplexmethod, Gtk::PACK_SHRINK, 4);
|
||||
//Gtk::Label* const labelcomplexmethod = Gtk::manage(new Gtk::Label(M("TP_LOCALLAB_COMPLEX_METHOD") + ":"));
|
||||
//ctboxcomplexmethod->pack_start(*labelcomplexmethod, Gtk::PACK_SHRINK, 4);
|
||||
|
||||
if (showtooltip) {
|
||||
complexMethod_->set_tooltip_markup(M("TP_LOCALLAB_COMPLEX_TOOLTIP"));
|
||||
}
|
||||
//if (showtooltip) {
|
||||
// complexMethod_->set_tooltip_markup(M("TP_LOCALLAB_COMPLEX_TOOLTIP"));
|
||||
//}
|
||||
|
||||
complexMethod_->append(M("TP_LOCALLAB_SIM"));
|
||||
complexMethod_->append(M("TP_LOCALLAB_MED"));
|
||||
complexMethod_->append(M("TP_LOCALLAB_ALL"));
|
||||
complexMethod_->set_active(1);
|
||||
complexMethodconn_ = complexMethod_->signal_changed().connect(
|
||||
sigc::mem_fun(
|
||||
*this, &ControlSpotPanel::complexMethodChanged));
|
||||
ctboxcomplexmethod->pack_start(*complexMethod_);
|
||||
//complexMethod_->append(M("TP_LOCALLAB_SIM"));
|
||||
//complexMethod_->append(M("TP_LOCALLAB_MED"));
|
||||
//complexMethod_->append(M("TP_LOCALLAB_ALL"));
|
||||
//complexMethod_->set_active(1);
|
||||
//complexMethodconn_ = complexMethod_->signal_changed().connect(
|
||||
// sigc::mem_fun(
|
||||
// *this, &ControlSpotPanel::complexMethodChanged));
|
||||
//ctboxcomplexmethod->pack_start(*complexMethod_);
|
||||
// pack_start(*ctboxcomplexmethod);
|
||||
/*
|
||||
Gtk::Box* const ctboxwavmethod = Gtk::manage(new Gtk::Box());
|
||||
@@ -703,6 +720,9 @@ void ControlSpotPanel::on_button_rename()
|
||||
row[spots_.name] = newname;
|
||||
treeview_->columns_autosize();
|
||||
listener->panelChanged(EvLocallabSpotName, newname);
|
||||
if (controlPanelListener) {
|
||||
controlPanelListener->spotNameChanged(newname);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -843,19 +863,20 @@ void ControlSpotPanel::load_ControlSpot_param()
|
||||
avoidrad_->setValue((double)row[spots_.avoidrad]);
|
||||
hishow_->set_active(row[spots_.hishow]);
|
||||
activ_->set_active(row[spots_.activ]);
|
||||
avoid_->set_active(row[spots_.avoid]);
|
||||
avoidmun_->set_active(row[spots_.avoidmun]);
|
||||
blwh_->set_active(row[spots_.blwh]);
|
||||
recurs_->set_active(row[spots_.recurs]);
|
||||
// laplac_->set_active(row[spots_.laplac]);
|
||||
laplac_->set_active(true);
|
||||
deltae_->set_active(row[spots_.deltae]);
|
||||
scopemask_->setValue((double)row[spots_.scopemask]);
|
||||
denoichmask_->setValue(row[spots_.denoichmask]);
|
||||
shortc_->set_active(row[spots_.shortc]);
|
||||
lumask_->setValue((double)row[spots_.lumask]);
|
||||
savrest_->set_active(row[spots_.savrest]);
|
||||
complexMethod_->set_active(row[spots_.complexMethod]);
|
||||
//savrest_->set_active(row[spots_.savrest]);
|
||||
//complexMethod_->set_active(row[spots_.complexMethod]);
|
||||
wavMethod_->set_active(row[spots_.wavMethod]);
|
||||
avoidgamutMethod_->set_active(row[spots_.avoidgamutMethod]);
|
||||
|
||||
}
|
||||
|
||||
void ControlSpotPanel::controlspotChanged()
|
||||
@@ -1043,6 +1064,34 @@ void ControlSpotPanel::spotMethodChanged()
|
||||
}
|
||||
}
|
||||
|
||||
void ControlSpotPanel::avoidgamutMethodChanged()
|
||||
{
|
||||
|
||||
// Get selected control spot
|
||||
const auto s = treeview_->get_selection();
|
||||
|
||||
if (!s->count_selected_rows()) {
|
||||
return;
|
||||
}
|
||||
const int meth = avoidgamutMethod_->get_active_row_number();
|
||||
avoidrad_->show();
|
||||
|
||||
if(meth == 2 || meth == 3 || meth == 4) {
|
||||
avoidrad_->hide();
|
||||
}
|
||||
|
||||
const auto iter = s->get_selected();
|
||||
Gtk::TreeModel::Row row = *iter;
|
||||
|
||||
row[spots_.avoidgamutMethod] = avoidgamutMethod_->get_active_row_number();
|
||||
|
||||
// Raise event
|
||||
if (listener) {
|
||||
listener->panelChanged(EvLocallabavoidgamutMethod, avoidgamutMethod_->get_active_text());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void ControlSpotPanel::shapeMethodChanged()
|
||||
{
|
||||
// printf("shapeMethodChanged\n");
|
||||
@@ -1145,37 +1194,37 @@ void ControlSpotPanel::qualityMethodChanged()
|
||||
}
|
||||
}
|
||||
|
||||
void ControlSpotPanel::complexMethodChanged()
|
||||
{
|
||||
// printf("qualityMethodChanged\n");
|
||||
|
||||
// Get selected control spot
|
||||
const auto s = treeview_->get_selection();
|
||||
|
||||
if (!s->count_selected_rows()) {
|
||||
return;
|
||||
}
|
||||
|
||||
const auto iter = s->get_selected();
|
||||
Gtk::TreeModel::Row row = *iter;
|
||||
|
||||
row[spots_.complexMethod] = complexMethod_->get_active_row_number();
|
||||
|
||||
if (multiImage && complexMethod_->get_active_text() == M("GENERAL_UNCHANGED")) {
|
||||
// excluFrame->show();
|
||||
} else if (complexMethod_->get_active_row_number() == 0) { //sim
|
||||
// excluFrame->hide();
|
||||
} else if (complexMethod_->get_active_row_number() == 1) { // mod
|
||||
// excluFrame->show();
|
||||
} else if (complexMethod_->get_active_row_number() == 2) { // all
|
||||
// excluFrame->show();
|
||||
}
|
||||
|
||||
// Raise event
|
||||
if (listener) {
|
||||
listener->panelChanged(EvLocallabSpotcomplexMethod, complexMethod_->get_active_text());
|
||||
}
|
||||
}
|
||||
//void ControlSpotPanel::complexMethodChanged()
|
||||
//{
|
||||
// // printf("qualityMethodChanged\n");
|
||||
//
|
||||
// // Get selected control spot
|
||||
// const auto s = treeview_->get_selection();
|
||||
//
|
||||
// if (!s->count_selected_rows()) {
|
||||
// return;
|
||||
// }
|
||||
//
|
||||
// const auto iter = s->get_selected();
|
||||
// Gtk::TreeModel::Row row = *iter;
|
||||
//
|
||||
// row[spots_.complexMethod] = complexMethod_->get_active_row_number();
|
||||
//
|
||||
// if (multiImage && complexMethod_->get_active_text() == M("GENERAL_UNCHANGED")) {
|
||||
// // excluFrame->show();
|
||||
// } else if (complexMethod_->get_active_row_number() == 0) { //sim
|
||||
// // excluFrame->hide();
|
||||
// } else if (complexMethod_->get_active_row_number() == 1) { // mod
|
||||
// // excluFrame->show();
|
||||
// } else if (complexMethod_->get_active_row_number() == 2) { // all
|
||||
// // excluFrame->show();
|
||||
// }
|
||||
//
|
||||
// // Raise event
|
||||
// if (listener) {
|
||||
// listener->panelChanged(EvLocallabSpotcomplexMethod, complexMethod_->get_active_text());
|
||||
// }
|
||||
//}
|
||||
|
||||
void ControlSpotPanel::wavMethodChanged()
|
||||
{
|
||||
@@ -1205,6 +1254,7 @@ void ControlSpotPanel::updateParamVisibility()
|
||||
|
||||
// Update Control Spot GUI according to shapeMethod_ combobox state (to be compliant with shapeMethodChanged function)
|
||||
const int method = shapeMethod_->get_active_row_number();
|
||||
const int meth = avoidgamutMethod_->get_active_row_number();
|
||||
|
||||
if (!batchMode) {
|
||||
if (method == 1 || method == 3) { // Symmetrical cases
|
||||
@@ -1248,6 +1298,12 @@ void ControlSpotPanel::updateParamVisibility()
|
||||
centerY_->show();
|
||||
}
|
||||
|
||||
if(meth == 1) {
|
||||
avoidrad_->show();
|
||||
} else {
|
||||
avoidrad_->hide();
|
||||
}
|
||||
|
||||
// Update Control Spot GUI according to spotMethod_ combobox state (to be compliant with spotMethodChanged function)
|
||||
if (multiImage && spotMethod_->get_active_text() == M("GENERAL_UNCHANGED")) {
|
||||
excluFrame->show();
|
||||
@@ -1513,6 +1569,14 @@ void ControlSpotPanel::adjusterChanged(Adjuster* a, double newval)
|
||||
}
|
||||
}
|
||||
|
||||
if (a == denoichmask_) {
|
||||
row[spots_.denoichmask] = denoichmask_->getValue();
|
||||
|
||||
if (listener) {
|
||||
listener->panelChanged(EvLocallabSpotdenoichmask, denoichmask_->getTextValue());
|
||||
}
|
||||
}
|
||||
|
||||
if (a == lumask_) {
|
||||
row[spots_.lumask] = lumask_->getIntValue();
|
||||
|
||||
@@ -1568,57 +1632,6 @@ void ControlSpotPanel::hishowChanged()
|
||||
}
|
||||
|
||||
|
||||
|
||||
void ControlSpotPanel::avoidChanged()
|
||||
{
|
||||
// printf("avoidChanged\n");
|
||||
|
||||
// Get selected control spot
|
||||
const auto s = treeview_->get_selection();
|
||||
|
||||
if (!s->count_selected_rows()) {
|
||||
return;
|
||||
}
|
||||
|
||||
const auto iter = s->get_selected();
|
||||
Gtk::TreeModel::Row row = *iter;
|
||||
row[spots_.avoid] = avoid_->get_active();
|
||||
|
||||
// Raise event
|
||||
if (listener) {
|
||||
if (avoid_->get_active()) {
|
||||
listener->panelChanged(Evlocallabavoid, M("GENERAL_ENABLED"));
|
||||
} else {
|
||||
listener->panelChanged(Evlocallabavoid, M("GENERAL_DISABLED"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ControlSpotPanel::avoidmunChanged()
|
||||
{
|
||||
// printf("avoidmunChanged\n");
|
||||
|
||||
// Get selected control spot
|
||||
const auto s = treeview_->get_selection();
|
||||
|
||||
if (!s->count_selected_rows()) {
|
||||
return;
|
||||
}
|
||||
|
||||
const auto iter = s->get_selected();
|
||||
Gtk::TreeModel::Row row = *iter;
|
||||
row[spots_.avoidmun] = avoidmun_->get_active();
|
||||
|
||||
// Raise event
|
||||
if (listener) {
|
||||
if (avoidmun_->get_active()) {
|
||||
listener->panelChanged(EvLocallabSpotavoidmun, M("GENERAL_ENABLED"));
|
||||
} else {
|
||||
listener->panelChanged(EvLocallabSpotavoidmun, M("GENERAL_DISABLED"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ControlSpotPanel::activChanged()
|
||||
{
|
||||
// printf("activChanged\n");
|
||||
@@ -1766,28 +1779,28 @@ void ControlSpotPanel::shortcChanged()
|
||||
}
|
||||
}
|
||||
|
||||
void ControlSpotPanel::savrestChanged()
|
||||
{
|
||||
// Get selected control spot
|
||||
const auto s = treeview_->get_selection();
|
||||
|
||||
if (!s->count_selected_rows()) {
|
||||
return;
|
||||
}
|
||||
|
||||
const auto iter = s->get_selected();
|
||||
Gtk::TreeModel::Row row = *iter;
|
||||
row[spots_.savrest] = savrest_->get_active();
|
||||
|
||||
// Raise event
|
||||
if (listener) {
|
||||
if (savrest_->get_active()) {
|
||||
listener->panelChanged(Evlocallabsavrest, M("GENERAL_ENABLED"));
|
||||
} else {
|
||||
listener->panelChanged(Evlocallabsavrest, M("GENERAL_DISABLED"));
|
||||
}
|
||||
}
|
||||
}
|
||||
//void ControlSpotPanel::savrestChanged()
|
||||
//{
|
||||
// // Get selected control spot
|
||||
// const auto s = treeview_->get_selection();
|
||||
//
|
||||
// if (!s->count_selected_rows()) {
|
||||
// return;
|
||||
// }
|
||||
//
|
||||
// const auto iter = s->get_selected();
|
||||
// Gtk::TreeModel::Row row = *iter;
|
||||
// row[spots_.savrest] = savrest_->get_active();
|
||||
//
|
||||
// // Raise event
|
||||
// if (listener) {
|
||||
// if (savrest_->get_active()) {
|
||||
// listener->panelChanged(Evlocallabsavrest, M("GENERAL_ENABLED"));
|
||||
// } else {
|
||||
// listener->panelChanged(Evlocallabsavrest, M("GENERAL_DISABLED"));
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
|
||||
void ControlSpotPanel::previewChanged()
|
||||
{
|
||||
@@ -1839,18 +1852,19 @@ void ControlSpotPanel::disableParamlistener(bool cond)
|
||||
avoidrad_->block(cond);
|
||||
hishowconn_.block(cond);
|
||||
activConn_.block(cond);
|
||||
avoidConn_.block(cond);
|
||||
avoidmunConn_.block(cond);
|
||||
blwhConn_.block(cond);
|
||||
recursConn_.block(cond);
|
||||
laplacConn_.block(cond);
|
||||
deltaeConn_.block(cond);
|
||||
scopemask_->block(cond);
|
||||
denoichmask_->block(cond);
|
||||
shortcConn_.block(cond);
|
||||
lumask_->block(cond);
|
||||
savrestConn_.block(cond);
|
||||
complexMethodconn_.block(cond);
|
||||
//savrestConn_.block(cond);
|
||||
//complexMethodconn_.block(cond);
|
||||
wavMethodconn_.block(cond);
|
||||
avoidgamutconn_.block(cond);
|
||||
|
||||
}
|
||||
|
||||
void ControlSpotPanel::setParamEditable(bool cond)
|
||||
@@ -1885,19 +1899,19 @@ void ControlSpotPanel::setParamEditable(bool cond)
|
||||
avoidrad_->set_sensitive(cond);
|
||||
hishow_->set_sensitive(cond);
|
||||
activ_->set_sensitive(cond);
|
||||
avoid_->set_sensitive(cond);
|
||||
avoidmun_->set_sensitive(cond);
|
||||
blwh_->set_sensitive(cond);
|
||||
recurs_->set_sensitive(cond);
|
||||
laplac_->set_sensitive(cond);
|
||||
deltae_->set_sensitive(cond);
|
||||
scopemask_->set_sensitive(cond);
|
||||
denoichmask_->set_sensitive(cond);
|
||||
shortc_->set_sensitive(cond);
|
||||
lumask_->set_sensitive(cond);
|
||||
savrest_->set_sensitive(cond);
|
||||
complexMethod_->set_sensitive(cond);
|
||||
//savrest_->set_sensitive(cond);
|
||||
//complexMethod_->set_sensitive(cond);
|
||||
wavMethod_->set_sensitive(cond);
|
||||
preview_->set_sensitive(cond);
|
||||
avoidgamutMethod_->set_sensitive(cond);
|
||||
|
||||
if (!cond) {
|
||||
// Reset complex parameters visibility to default state
|
||||
@@ -2197,7 +2211,7 @@ void ControlSpotPanel::updateCurveOpacity(const Gtk::TreeModel::Row& selectedRow
|
||||
}
|
||||
}
|
||||
|
||||
CursorShape ControlSpotPanel::getCursor(int objectID) const
|
||||
CursorShape ControlSpotPanel::getCursor(int objectID, int xPos, int yPos) const
|
||||
{
|
||||
// printf("Object ID: %d\n", objectID);
|
||||
|
||||
@@ -2566,18 +2580,18 @@ ControlSpotPanel::SpotRow* ControlSpotPanel::getSpot(const int index)
|
||||
r->transitweak = row[spots_.transitweak];
|
||||
r->transitgrad = row[spots_.transitgrad];
|
||||
r->scopemask = row[spots_.scopemask];
|
||||
r->denoichmask = row[spots_.denoichmask];
|
||||
r->lumask = row[spots_.lumask];
|
||||
r->hishow = row[spots_.hishow];
|
||||
r->activ = row[spots_.activ];
|
||||
r->avoid = row[spots_.avoid];
|
||||
r->avoidmun = row[spots_.avoidmun];
|
||||
r->blwh = row[spots_.blwh];
|
||||
r->recurs = row[spots_.recurs];
|
||||
r->laplac = row[spots_.laplac];
|
||||
r->deltae = row[spots_.deltae];
|
||||
r->shortc = row[spots_.shortc];
|
||||
r->savrest = row[spots_.savrest];
|
||||
//r->savrest = row[spots_.savrest];
|
||||
r->wavMethod = row[spots_.wavMethod];
|
||||
r->avoidgamutMethod = row[spots_.avoidgamutMethod];
|
||||
|
||||
return r;
|
||||
}
|
||||
@@ -2702,18 +2716,18 @@ void ControlSpotPanel::addControlSpot(SpotRow* newSpot)
|
||||
row[spots_.avoidrad] = newSpot->avoidrad;
|
||||
row[spots_.hishow] = newSpot->hishow;
|
||||
row[spots_.activ] = newSpot->activ;
|
||||
row[spots_.avoid] = newSpot->avoid;
|
||||
row[spots_.avoidmun] = newSpot->avoidmun;
|
||||
row[spots_.blwh] = newSpot->blwh;
|
||||
row[spots_.recurs] = newSpot->recurs;
|
||||
row[spots_.laplac] = newSpot->laplac;
|
||||
row[spots_.deltae] = newSpot->deltae;
|
||||
row[spots_.scopemask] = newSpot->scopemask;
|
||||
row[spots_.denoichmask] = newSpot->denoichmask;
|
||||
row[spots_.shortc] = newSpot->shortc;
|
||||
row[spots_.lumask] = newSpot->lumask;
|
||||
row[spots_.savrest] = newSpot->savrest;
|
||||
//row[spots_.savrest] = newSpot->savrest;
|
||||
row[spots_.complexMethod] = newSpot->complexMethod;
|
||||
row[spots_.wavMethod] = newSpot->wavMethod;
|
||||
row[spots_.avoidgamutMethod] = newSpot->avoidgamutMethod;
|
||||
updateParamVisibility();
|
||||
disableParamlistener(false);
|
||||
|
||||
@@ -2776,6 +2790,7 @@ void ControlSpotPanel::setDefaults(const rtengine::procparams::ProcParams * defP
|
||||
colorscope_->setDefault(defSpot.colorscope);
|
||||
avoidrad_->setDefault(defSpot.avoidrad);
|
||||
scopemask_->setDefault((double)defSpot.scopemask);
|
||||
denoichmask_->setDefault((double)defSpot.denoichmask);
|
||||
lumask_->setDefault((double)defSpot.lumask);
|
||||
}
|
||||
|
||||
@@ -2820,18 +2835,18 @@ ControlSpotPanel::ControlSpots::ControlSpots()
|
||||
add(avoidrad);
|
||||
add(hishow);
|
||||
add(activ);
|
||||
add(avoid);
|
||||
add(avoidmun);
|
||||
add(blwh);
|
||||
add(recurs);
|
||||
add(laplac);
|
||||
add(deltae);
|
||||
add(scopemask);
|
||||
add(denoichmask);
|
||||
add(shortc);
|
||||
add(lumask);
|
||||
add(savrest);
|
||||
//add(savrest);
|
||||
add(complexMethod);
|
||||
add(wavMethod);
|
||||
add(avoidgamutMethod);
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user