223 lines
6.3 KiB
C++
223 lines
6.3 KiB
C++
/*
|
|
* This file is part of RawTherapee.
|
|
*
|
|
* Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
|
|
*
|
|
* RawTherapee is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* RawTherapee is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with RawTherapee. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include <gtkmm.h>
|
|
|
|
#include "adjuster.h"
|
|
#include "guiutils.h"
|
|
#include "popupbutton.h"
|
|
#include "toolpanel.h"
|
|
|
|
#include "../rtengine/imagedata.h"
|
|
|
|
class ICMPanelListener
|
|
{
|
|
public:
|
|
virtual ~ICMPanelListener() = default;
|
|
virtual void saveInputICCReference(const Glib::ustring& fname, bool apply_wb) = 0;
|
|
};
|
|
|
|
class LabGrid;
|
|
|
|
class ICMPanel final :
|
|
public ToolParamBlock,
|
|
public FoldableToolPanel,
|
|
public rtengine::AutoprimListener,
|
|
public AdjusterListener
|
|
{
|
|
|
|
protected:
|
|
Gtk::Frame* dcpFrame;
|
|
Gtk::Frame* coipFrame;
|
|
Gtk::Frame* redFrame;
|
|
|
|
Adjuster* wGamma;
|
|
Adjuster* wSlope;
|
|
Adjuster* redx;
|
|
Adjuster* redy;
|
|
Adjuster* grex;
|
|
Adjuster* grey;
|
|
Adjuster* blux;
|
|
Adjuster* bluy;
|
|
Adjuster* preser;
|
|
|
|
Gtk::Label* labmga;
|
|
Gtk::Box* gabox;
|
|
Gtk::Label* blr;
|
|
Gtk::Label* blg;
|
|
Gtk::Label* blb;
|
|
Gtk::Button* neutral;
|
|
|
|
sigc::connection neutralconn;
|
|
bool lastToneCurve;
|
|
sigc::connection tcurveconn;
|
|
bool lastApplyLookTable;
|
|
sigc::connection ltableconn;
|
|
bool lastApplyBaselineExposureOffset;
|
|
sigc::connection beoconn;
|
|
bool lastApplyHueSatMap;
|
|
sigc::connection hsmconn;
|
|
bool lastobpc;
|
|
sigc::connection obpcconn;
|
|
bool lastfbw;
|
|
sigc::connection fbwconn;
|
|
bool isBatchMode;
|
|
|
|
private:
|
|
rtengine::ProcEvent EvICMprimariMethod;
|
|
rtengine::ProcEvent EvICMprofileMethod;
|
|
rtengine::ProcEvent EvICMtempMethod;
|
|
rtengine::ProcEvent EvICMpredx;
|
|
rtengine::ProcEvent EvICMpredy;
|
|
rtengine::ProcEvent EvICMpgrex;
|
|
rtengine::ProcEvent EvICMpgrey;
|
|
rtengine::ProcEvent EvICMpblux;
|
|
rtengine::ProcEvent EvICMpbluy;
|
|
rtengine::ProcEvent EvICMgamm;
|
|
rtengine::ProcEvent EvICMslop;
|
|
rtengine::ProcEvent EvICMtrcinMethod;
|
|
rtengine::ProcEvent EvICMwillMethod;
|
|
rtengine::ProcEvent EvICMwprimMethod;
|
|
rtengine::ProcEvent EvICMredx;
|
|
rtengine::ProcEvent EvICMredy;
|
|
rtengine::ProcEvent EvICMgrex;
|
|
rtengine::ProcEvent EvICMgrey;
|
|
rtengine::ProcEvent EvICMblux;
|
|
rtengine::ProcEvent EvICMbluy;
|
|
rtengine::ProcEvent EvaIntent;
|
|
rtengine::ProcEvent EvICMpreser;
|
|
rtengine::ProcEvent EvICMLabGridciexy;
|
|
rtengine::ProcEvent EvICMfbw;
|
|
LabGrid *labgridcie;
|
|
IdleRegister idle_register;
|
|
|
|
Gtk::Box* willuBox;
|
|
Gtk::Label* willulab;
|
|
Gtk::Box* wprimBox;
|
|
Gtk::Label* wprimlab;
|
|
Gtk::Label* cielab;
|
|
Gtk::Box* redBox;
|
|
Gtk::Box* greBox;
|
|
Gtk::Box* bluBox;
|
|
Gtk::Box* riaHBox;
|
|
Gtk::Box* preBox;
|
|
Gtk::Box* iVBox;
|
|
Gtk::Box* wTRCBox;
|
|
Gtk::CheckButton* fbw;
|
|
|
|
Gtk::CheckButton* obpc;
|
|
Gtk::RadioButton* inone;
|
|
|
|
Gtk::RadioButton* iembedded;
|
|
Gtk::RadioButton* icamera;
|
|
Gtk::RadioButton* icameraICC;
|
|
Gtk::RadioButton* ifromfile;
|
|
Gtk::Label* dcpIllLabel;
|
|
MyComboBoxText* dcpIll;
|
|
sigc::connection dcpillconn;
|
|
Gtk::CheckButton* ckbToneCurve;
|
|
Gtk::CheckButton* ckbApplyLookTable;
|
|
Gtk::CheckButton* ckbApplyBaselineExposureOffset;
|
|
Gtk::CheckButton* ckbApplyHueSatMap;
|
|
MyComboBoxText* wProfNames;
|
|
sigc::connection wprofnamesconn;
|
|
MyComboBoxText* wTRC;
|
|
sigc::connection wtrcconn;
|
|
MyComboBoxText* will;
|
|
sigc::connection willconn;
|
|
MyComboBoxText* wprim;
|
|
sigc::connection wprimconn;
|
|
std::unique_ptr<PopUpButton> aRendIntent;
|
|
sigc::connection arendintentconn;
|
|
|
|
MyComboBoxText* oProfNames;
|
|
sigc::connection oprofnamesconn;
|
|
std::unique_ptr<PopUpButton> oRendIntent;
|
|
sigc::connection orendintentconn;
|
|
Gtk::RadioButton* iunchanged;
|
|
MyFileChooserButton* ipDialog;
|
|
Gtk::RadioButton::Group opts;
|
|
Gtk::Button* saveRef;
|
|
sigc::connection ipc;
|
|
Glib::ustring oldip;
|
|
ICMPanelListener* icmplistener;
|
|
|
|
double dcpTemperatures[2];
|
|
Glib::ustring lastRefFilename;
|
|
Glib::ustring camName;
|
|
void updateDCP(int dcpIlluminant, Glib::ustring dcp_name);
|
|
void updateRenderingIntent(const Glib::ustring &profile);
|
|
|
|
float nextrx;
|
|
float nextry;
|
|
float nextbx;
|
|
float nextby;
|
|
float nextgx;
|
|
float nextgy;
|
|
float nextwx;
|
|
float nextwy;
|
|
|
|
public:
|
|
static const Glib::ustring TOOL_NAME;
|
|
|
|
ICMPanel();
|
|
~ICMPanel() override;
|
|
|
|
void read(const rtengine::procparams::ProcParams* pp, const ParamsEdited* pedited = nullptr) override;
|
|
void write(rtengine::procparams::ProcParams* pp, ParamsEdited* pedited = nullptr) override;
|
|
void setBatchMode(bool batchMode) override;
|
|
void setDefaults(const rtengine::procparams::ProcParams* defParams, const ParamsEdited* pedited = nullptr) override;
|
|
void adjusterChanged(Adjuster* a, double newval) override;
|
|
void primChanged (float rx, float ry, float bx, float by, float gx, float gy) override;
|
|
void iprimChanged (float r_x, float r_y, float b_x, float b_y, float g_x, float g_y, float w_x, float w_y) override;
|
|
void neutral_pressed();
|
|
|
|
void wpChanged();
|
|
void wtrcinChanged();
|
|
void willChanged();
|
|
void wprimChanged();
|
|
void opChanged();
|
|
void oiChanged(int n);
|
|
void aiChanged(int n);
|
|
void oBPCChanged();
|
|
void fbwChanged();
|
|
void ipChanged();
|
|
void ipSelectionChanged();
|
|
void dcpIlluminantChanged();
|
|
void toneCurveChanged();
|
|
void applyLookTableChanged();
|
|
void applyBaselineExposureOffsetChanged();
|
|
void applyHueSatMapChanged();
|
|
|
|
void setRawMeta(bool raw, const rtengine::FramesData* pMeta);
|
|
void saveReferencePressed();
|
|
void setListener(ToolPanelListener* tpl) override;
|
|
void setEditProvider(EditDataProvider *provider) override;
|
|
|
|
void setICMPanelListener(ICMPanelListener* ipl)
|
|
{
|
|
icmplistener = ipl;
|
|
}
|
|
|
|
};
|
|
|