/* * This file is part of RawTherapee. * * Copyright (c) 2004-2010 Gabor Horvath * Copyright (c) 2010 Oliver Duis * * 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 . */ #pragma once #include #include "filepanel.h" #include "histogrampanel.h" #include "history.h" #include "imageareapanel.h" #include "navigator.h" #include "profilepanel.h" #include "progressconnector.h" #include "saveasdlg.h" #include "thumbnaillistener.h" #include "../rtengine/noncopyable.h" #include "../rtengine/rtengine.h" class BatchQueueEntry; class EditorPanel; class FilePanel; class MyProgressBar; class Thumbnail; class ToolPanelCoordinator; struct EditorPanelIdleHelper { EditorPanel* epanel; bool destroyed; int pending; }; class RTWindow; class EditorPanel final : public Gtk::VBox, public PParamsChangeListener, public rtengine::ProgressListener, public ThumbnailListener, public HistoryBeforeLineListener, public rtengine::HistogramListener, public rtengine::NonCopyable { public: explicit EditorPanel (FilePanel* filePanel = nullptr); ~EditorPanel () override; void open (Thumbnail* tmb, rtengine::InitialImage* isrc); void setAspect (); void on_realize () override; void leftPaneButtonReleased (GdkEventButton *event); void rightPaneButtonReleased (GdkEventButton *event); void setParent (RTWindow* p) { parent = p; } void setParentWindow (Gtk::Window* p) { parentWindow = p; } void writeOptions(); void writeToolExpandedStatus (std::vector &tpOpen); void showTopPanel (bool show); bool isRealized() { return realized; } // ProgressListener interface void setProgress(double p) override; void setProgressStr(const Glib::ustring& str) override; void setProgressState(bool inProcessing) override; void error(const Glib::ustring& descr) override; void error(const Glib::ustring& title, const Glib::ustring& descr); void displayError(const Glib::ustring& title, const Glib::ustring& descr); // this is called by error in the gtk thread void refreshProcessingState (bool inProcessing); // this is called by setProcessingState in the gtk thread // 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; // thumbnaillistener interface void procParamsChanged (Thumbnail* thm, int whoChangedIt) override; // HistoryBeforeLineListener void historyBeforeLineChanged (const rtengine::procparams::ProcParams& params) override; // HistogramListener void histogramChanged( const LUTu& histRed, const LUTu& histGreen, const LUTu& histBlue, const LUTu& histLuma, const LUTu& histToneCurve, const LUTu& histLCurve, const LUTu& histCCurve, const LUTu& histLCAM, const LUTu& histCCAM, const LUTu& histRedRaw, const LUTu& histGreenRaw, const LUTu& histBlueRaw, const LUTu& histChroma, const LUTu& histLRETI ) override; // event handlers void info_toggled (); void hideHistoryActivated (); void tbRightPanel_1_toggled (); void tbTopPanel_1_toggled (); void beforeAfterToggled (); void tbBeforeLock_toggled(); void saveAsPressed (); void queueImgPressed (); void sendToGimpPressed (); void openNextEditorImage (); void openPreviousEditorImage (); void syncFileBrowser (); void tbTopPanel_1_visible (bool visible); bool CheckSidePanelsVisibility(); void tbShowHideSidePanels_managestate(); void toggleSidePanels(); void toggleSidePanelsZoomFit(); void saveProfile (); Glib::ustring getShortName (); Glib::ustring getFileName () const; bool handleShortcutKey (GdkEventKey* event); bool getIsProcessing() const { return isProcessing; } void updateProfiles (const Glib::ustring &printerProfile, rtengine::RenderingIntent printerIntent, bool printerBPC); void updateTPVScrollbar (bool hide); void updateHistogramPosition (int oldPosition, int newPosition); void defaultMonitorProfileChanged (const Glib::ustring &profile_name, bool auto_monitor_profile); bool saveImmediately (const Glib::ustring &filename, const SaveFormat &sf); Gtk::Paned* catalogPane; private: void close (); BatchQueueEntry* createBatchQueueEntry (); bool idle_imageSaved (ProgressConnector *pc, rtengine::IImagefloat* img, Glib::ustring fname, SaveFormat sf, rtengine::procparams::ProcParams &pparams); bool idle_saveImage (ProgressConnector *pc, Glib::ustring fname, SaveFormat sf, rtengine::procparams::ProcParams &pparams); bool idle_sendToGimp ( ProgressConnector *pc, Glib::ustring fname); bool idle_sentToGimp (ProgressConnector *pc, rtengine::IImagefloat* img, Glib::ustring filename); void histogramProfile_toggled (); Glib::ustring lastSaveAsFileName; bool realized; MyProgressBar *progressLabel; Gtk::ToggleButton* info; Gtk::ToggleButton* hidehp; Gtk::ToggleButton* tbShowHideSidePanels; Gtk::ToggleButton* tbTopPanel_1; Gtk::ToggleButton* tbRightPanel_1; Gtk::ToggleButton* tbBeforeLock; //bool bAllSidePanelsVisible; Gtk::ToggleButton* beforeAfter; Gtk::Paned* hpanedl; Gtk::Paned* hpanedr; Gtk::Image *iHistoryShow, *iHistoryHide; Gtk::Image *iTopPanel_1_Show, *iTopPanel_1_Hide; Gtk::Image *iRightPanel_1_Show, *iRightPanel_1_Hide; Gtk::Image *iShowHideSidePanels; Gtk::Image *iShowHideSidePanels_exit; Gtk::Image *iBeforeLockON, *iBeforeLockOFF; Gtk::Paned *leftbox; Gtk::Box *leftsubbox; Gtk::Paned *vboxright; Gtk::Box *vsubboxright; Gtk::Button* queueimg; Gtk::Button* saveimgas; Gtk::Button* sendtogimp; Gtk::Button* navSync; Gtk::Button* navNext; Gtk::Button* navPrev; class ColorManagementToolbar; std::unique_ptr colorMgmtToolBar; ImageAreaPanel* iareapanel; PreviewHandler* previewHandler; PreviewHandler* beforePreviewHandler; // for the before-after view Navigator* navigator; ImageAreaPanel* beforeIarea; // for the before-after view Gtk::Box* beforeBox; Gtk::Box* afterBox; Gtk::Label* beforeLabel; Gtk::Label* afterLabel; Gtk::Box* beforeAfterBox; Gtk::Box* beforeHeaderBox; Gtk::Box* afterHeaderBox; Gtk::ToggleButton* toggleHistogramProfile; Gtk::Frame* ppframe; ProfilePanel* profilep; History* history; HistogramPanel* histogramPanel; ToolPanelCoordinator* tpc; RTWindow* parent; Gtk::Window* parentWindow; //SaveAsDialog* saveAsDialog; FilePanel* fPanel; bool firstProcessingDone; Thumbnail* openThm; // may get invalid on external delete event Glib::ustring fname; // must be saved separately int selectedFrame; rtengine::InitialImage* isrc; rtengine::StagedImageProcessor* ipc; rtengine::StagedImageProcessor* beforeIpc; // for the before-after view EditorPanelIdleHelper* epih; int err; time_t processingStartedTime; sigc::connection ShowHideSidePanelsconn; bool isProcessing; IdleRegister idle_register; };