rawTherapee/rtgui/profilepanel.h

116 lines
3.4 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 <vector>
#include <gtkmm.h>
#include "guiutils.h"
#include "partialpastedlg.h"
#include "pparamschangelistener.h"
#include "profilechangelistener.h"
#include "profilestorecombobox.h"
#include "../rtengine/noncopyable.h"
#include "../rtengine/rtengine.h"
class RTImage;
class ProfilePanel :
public Gtk::Grid,
public PParamsChangeListener,
public ProfileStoreListener,
public rtengine::NonCopyable
{
private:
rtengine::procparams::PartialProfile* storedPProfile;
Glib::ustring storedValue;
Glib::ustring lastFilename;
Glib::ustring imagePath;
RTImage *profileFillModeOnImage;
RTImage *profileFillModeOffImage;
Gtk::ToggleButton* fillMode;
Gtk::TreeIter currRow;
ProfileStoreEntry *lastSavedPSE;
ProfileStoreEntry *customPSE;
void profileFillModeToggled ();
bool isCustomSelected ();
bool isLastSavedSelected ();
Gtk::TreeIter getCustomRow ();
Gtk::TreeIter getLastSavedRow ();
Gtk::TreeIter addCustomRow ();
Gtk::TreeIter addLastSavedRow ();
protected:
static PartialPasteDlg* partialProfileDlg;
Gtk::Button* save;
Gtk::Button* load;
Gtk::Button* copy;
Gtk::Button* paste;
ProfileStoreComboBox* profiles;
rtengine::procparams::PartialProfile* custom;
rtengine::procparams::PartialProfile* lastsaved;
ProfileChangeListener* tpc;
bool dontupdate;
sigc::connection changeconn;
static Gtk::Window* parent;
void changeTo (const rtengine::procparams::PartialProfile* newpp, Glib::ustring profname);
public:
explicit ProfilePanel ();
~ProfilePanel () override;
void setProfileChangeListener (ProfileChangeListener* ppl)
{
tpc = ppl;
}
static void init (Gtk::Window* parentWindow);
static void cleanup ();
void storeCurrentValue() override;
void updateProfileList () override;
void restoreValue() override;
void initProfile (const Glib::ustring& profileFullPath, rtengine::procparams::ProcParams* lastSaved);
void setInitialFileName (const Glib::ustring& filename);
// PParamsChangeListener interface
void procParamsChanged(
const rtengine::procparams::ProcParams* params,
const rtengine::ProcEvent& ev,
const Glib::ustring& descr,
const ParamsEdited* paramsEdited = nullptr
) override;
void clearParamChanges() override;
// gui callbacks
void save_clicked (GdkEventButton* event);
void load_clicked (GdkEventButton* event);
void copy_clicked (GdkEventButton* event);
void paste_clicked (GdkEventButton* event);
void selection_changed ();
void writeOptions();
};