Added dark frame subtraction

Moved debayer and preprocessing parameters to class ProcParams for every single image.
Added tab RAW for changing those parameters.
Progress bar shows only load step (work to do)
This commit is contained in:
ffsup2
2010-08-19 00:37:53 +02:00
commit eef14f76dd
603 changed files with 122309 additions and 0 deletions

91
rtgui/iptcpanel.h Normal file
View File

@@ -0,0 +1,91 @@
/*
* 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 _IPTCPANEL_
#define _IPTCPANEL_
#include <gtkmm.h>
#include <toolpanel.h>
class IPTCPanel : public Gtk::VBox, public ToolPanel {
private:
std::vector<rtengine::procparams::IPTCPair> changeList;
std::vector<rtengine::procparams::IPTCPair> defChangeList;
std::vector<rtengine::procparams::IPTCPair> embeddedData;
Gtk::TextView* captionView;
Glib::RefPtr<Gtk::TextBuffer> captionText;
Gtk::Entry* captionWriter;
Gtk::Entry* headline;
Gtk::Entry* instructions;
Gtk::ComboBoxEntryText* keyword;
Gtk::ListViewText* keywords;
Gtk::Button* addKW;
Gtk::Button* delKW;
Gtk::ComboBoxEntryText* category;
Gtk::ComboBoxEntryText* suppCategory;
Gtk::ListViewText* suppCategories;
Gtk::Button* addSC;
Gtk::Button* delSC;
Gtk::Entry* author;
Gtk::Entry* authorPos;
Gtk::Entry* credit;
Gtk::Entry* source;
Gtk::Entry* copyright;
Gtk::Entry* city;
Gtk::Entry* province;
Gtk::Entry* country;
Gtk::Entry* title;
Gtk::Entry* dateCreated;
Gtk::Entry* transReference;
Gtk::Button* reset;
Gtk::Button* file;
Gtk::Button* copy;
Gtk::Button* paste;
sigc::connection conns[16];
void applyChangeList ();
void updateChangeList ();
public:
IPTCPanel ();
void read (const rtengine::procparams::ProcParams* pp, const ParamsEdited* pedited=NULL);
void write (rtengine::procparams::ProcParams* pp, ParamsEdited* pedited=NULL);
void setDefaults (const rtengine::procparams::ProcParams* defParams, const ParamsEdited* pedited=NULL);
void setImageData (const rtengine::ImageMetaData* id);
void notifyListener ();
void addKeyWord ();
void delKeyWord ();
void addSuppCategory ();
void delSuppCategory ();
void resetClicked ();
void fileClicked ();
void copyClicked ();
void pasteClicked ();
};
#endif