Configurable sound after longer editor operations; see issue #424

This commit is contained in:
Oliver Duis
2010-12-21 21:50:28 +01:00
parent 0c0ffd34d9
commit 84b7e9b6ea
7 changed files with 64 additions and 7 deletions

View File

@@ -102,6 +102,9 @@ class EditorPanel : public Gtk::VBox,
bool idle_sendToGimp( ProgressConnector<rtengine::IImage16*> *pc);
bool idle_sentToGimp(ProgressConnector<int> *pc,rtengine::IImage16* img,Glib::ustring filename);
int err;
time_t processingStartedTime;
public:
EditorPanel (FilePanel* filePanel = NULL);
@@ -120,8 +123,8 @@ class EditorPanel : public Gtk::VBox,
void setProgressStr (Glib::ustring str);
void setProgressState (int state);
void error (Glib::ustring descr);
void refreshProcessingState (bool state); // this is called by setProcessingState in the gtk thread
void displayError (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 (rtengine::procparams::ProcParams* params, rtengine::ProcEvent ev, Glib::ustring descr, ParamsEdited* paramsEdited=NULL);
@@ -148,8 +151,6 @@ class EditorPanel : public Gtk::VBox,
Glib::ustring getFileName ();
bool handleShortcutKey (GdkEventKey* event);
//void saveOptions ();
Gtk::Paned *catalogPane;
};