From 4e7603f26e90ef341925e2344a328ce4c01e0fe7 Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Tue, 16 Aug 2016 21:20:06 +0000 Subject: Bringing over fix [11878+11879] from 1.3 current to the porting branch. Solves STR #3318: options for how to handle external editors on fluid quit git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11880 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- fluid/ExternalCodeEditor_WIN32.cxx | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) (limited to 'fluid/ExternalCodeEditor_WIN32.cxx') diff --git a/fluid/ExternalCodeEditor_WIN32.cxx b/fluid/ExternalCodeEditor_WIN32.cxx index 53170b643..ba7a2775c 100644 --- a/fluid/ExternalCodeEditor_WIN32.cxx +++ b/fluid/ExternalCodeEditor_WIN32.cxx @@ -72,7 +72,7 @@ ExternalCodeEditor::ExternalCodeEditor() { // DTOR ExternalCodeEditor::~ExternalCodeEditor() { - kill_editor(); // Kill any open editors, deletes tmp file + close_editor(); // close editor, delete tmp file set_filename(0); // free()s filename } @@ -132,6 +132,35 @@ static int terminate_app(DWORD pid, DWORD msecTimeout) { return ret; } +// [Protected] Wait for editor to close +void ExternalCodeEditor::close_editor() { + if ( G_debug ) printf("close_editor() called: pid=%ld\n", long(pinfo_.dwProcessId)); + // Wait until editor is closed + reaped + while ( is_editing() ) { + switch ( reap_editor() ) { + case -1: // error + fl_alert("Error reaping external editor\n" + "pid=%ld file=%s", long(pinfo_.dwProcessId), filename()); + break; + case 0: // process still running + switch ( fl_choice("Please close external editor\npid=%ld file=%s", + "Force Close", // button 0 + "Closed", // button 1 + 0, // button 2 + long(pinfo_.dwProcessId), filename() ) ) { + case 0: // Force Close + kill_editor(); + continue; + case 1: // Closed? try to reap + continue; + } + break; + default: // process reaped + return; + } + } +} + // [Protected] Kill the running editor (if any) and cleanup // Kills the editor, reaps the process, and removes the tmp file. // The dtor calls this to ensure no editors remain running when fluid exits. -- cgit v1.2.3