Demosaicing and pre-processing parameters selectable for each image.
Dark frames subtraction and badpixels file support
Fast loading in editor.
This commit is contained in:
ffsup2
2010-10-30 22:14:47 +02:00
parent 5e7a81f0f1
commit 647dfb8366
153 changed files with 10304 additions and 6407 deletions

View File

@@ -32,6 +32,7 @@
#include <thumbnaillistener.h>
#include <navigator.h>
#include <progressconnector.h>
#include <filepanel.h>
class EditorPanel;
struct EditorPanelIdleHelper {
@@ -81,6 +82,9 @@ class EditorPanel : public Gtk::VBox,
ToolPanelCoordinator* tpc;
RTWindow* parent;
SaveAsDialog* saveAsDialog;
BatchToolPanelCoordinator* btpCoordinator;
FilePanel* fPanel;
Thumbnail* openThm;
rtengine::InitialImage* isrc;
@@ -100,7 +104,7 @@ class EditorPanel : public Gtk::VBox,
int err;
public:
EditorPanel ();
EditorPanel (FilePanel* filePanel = NULL);
virtual ~EditorPanel ();
void open (Thumbnail* tmb, rtengine::InitialImage* isrc);
@@ -145,6 +149,8 @@ class EditorPanel : public Gtk::VBox,
bool handleShortcutKey (GdkEventKey* event);
//void saveOptions ();
Gtk::Paned *catalogPane;
};
#endif