rawTherapee/rtgui/profilepanel.h
Hombre 8b2eac9a3d Pipette and "On Preview Widgets" branch. See issue 227
The pipette part is already working quite nice but need to be finished. The widgets part needs more work...
2014-01-21 23:37:36 +01:00

98 lines
3.1 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 <http://www.gnu.org/licenses/>.
*/
#ifndef _PROFILEPANEL_
#define _PROFILEPANEL_
#include <gtkmm.h>
#include <vector>
#include "../rtengine/rtengine.h"
#include "pparamschangelistener.h"
#include "profilechangelistener.h"
#include "profilestore.h"
#include "partialpastedlg.h"
#include "guiutils.h"
#include "rtimage.h"
class ProfilePanel : public Gtk::VBox, public PParamsChangeListener, public ProfileStoreListener {
private:
rtengine::procparams::PartialProfile* storedPProfile;
Glib::ustring storedValue;
Glib::ustring lastFilename;
Glib::ustring imagePath;
RTImage *profileFillModeOnImage;
RTImage *profileFillModeOffImage;
Gtk::ToggleButton* fillMode;
Gtk::TreeIter currRow;
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;
void changeTo (const rtengine::procparams::PartialProfile* newpp, Glib::ustring profname);
public:
ProfilePanel (bool readOnly=false);
virtual ~ProfilePanel ();
void setProfileChangeListener (ProfileChangeListener* ppl) { tpc = ppl; }
static void init ();
static void cleanup ();
void storeCurrentValue();
void updateProfileList ();
void restoreValue();
void initProfile (const Glib::ustring& profileFullPath, rtengine::procparams::ProcParams* lastSaved);
void setInitialFileName (const Glib::ustring& filename);
// PParamsChangeListener interface
void procParamsChanged (rtengine::procparams::ProcParams* params, rtengine::ProcEvent ev, Glib::ustring descr, ParamsEdited* paramsEdited=NULL);
// 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();
};
#endif