Solving issue 1657: "Destination save path forgotten for photos in queue when RT crashes". Also allow to set the Saving parameters or not, when sent to the queue with the "Save as" dialog box
This commit is contained in:
@@ -29,6 +29,7 @@ class SaveAsDialog : public Gtk::Dialog, public FormatChangeListener {
|
||||
protected:
|
||||
Gtk::FileChooserWidget* fchooser;
|
||||
Gtk::CheckButton* autoSuffix;
|
||||
Gtk::CheckButton* forceFormatOpts;
|
||||
SaveFormatPanel* formatOpts;
|
||||
Glib::ustring fname;
|
||||
Gtk::FileFilter filter_jpg;
|
||||
@@ -38,18 +39,22 @@ class SaveAsDialog : public Gtk::Dialog, public FormatChangeListener {
|
||||
* 1 -> putToQueueHead
|
||||
* 2 -> putToQueueTail
|
||||
*/
|
||||
void forceFmtOptsSwitched ();
|
||||
void saveImmediatlyClicked ();
|
||||
void putToQueueClicked ();
|
||||
|
||||
public:
|
||||
SaveAsDialog (Glib::ustring initialDir);
|
||||
|
||||
Glib::ustring getFileName ();
|
||||
Glib::ustring getDirectory ();
|
||||
SaveFormat getFormat ();
|
||||
bool getAutoSuffix ();
|
||||
bool getImmediately ();
|
||||
bool getToHeadOfQueue ();
|
||||
bool getToTailOfQueue ();
|
||||
int getSaveMethodNum ();
|
||||
Glib::ustring getFileName ();
|
||||
Glib::ustring getDirectory ();
|
||||
SaveFormat getFormat ();
|
||||
bool getForceFormatOpts ();
|
||||
bool getAutoSuffix ();
|
||||
bool getImmediately ();
|
||||
bool getToHeadOfQueue ();
|
||||
bool getToTailOfQueue ();
|
||||
int getSaveMethodNum ();
|
||||
|
||||
void setInitialFileName (Glib::ustring iname);
|
||||
void setImagePath (Glib::ustring ipath);
|
||||
|
Reference in New Issue
Block a user