From a0fc422a3a72b5fe1afab9aac5877ee8504ea052 Mon Sep 17 00:00:00 2001 From: pdn Date: Thu, 9 Oct 2014 13:42:09 +0400 Subject: [PATCH] 0025267: Implementation of callback before DRAW exit Callback mechanism implemented. Do the same treatment at DRAW exit on UNIX Add comments to the new methods Change callback type to be a function pointer --- src/Draw/Draw_Window.cxx | 31 +++++++++++++++++++++ src/Draw/Draw_Window.hxx | 59 +++++++++++++++++++++++++++++++++++++++- 2 files changed, 89 insertions(+), 1 deletion(-) diff --git a/src/Draw/Draw_Window.cxx b/src/Draw/Draw_Window.cxx index 7378ca4b30..ddebf5a682 100644 --- a/src/Draw/Draw_Window.cxx +++ b/src/Draw/Draw_Window.cxx @@ -23,13 +23,34 @@ #include #include +#include #include #include #include +#include extern Draw_Interpretor theCommands; extern Standard_Boolean Draw_VirtualWindows; static Tcl_Interp *interp; /* Interpreter for this application. */ +static NCollection_List MyCallbacks; + +void Draw_Window::AddCallbackBeforeTerminate(FCallbackBeforeTerminate theCB) +{ + MyCallbacks.Append(theCB); +} + +void Draw_Window::RemoveCallbackBeforeTerminate(FCallbackBeforeTerminate theCB) +{ + NCollection_List::Iterator Iter(MyCallbacks); + for(; Iter.More(); Iter.Next()) + { + if (Iter.Value() == theCB) + { + MyCallbacks.Remove(Iter); + break; + } + } +} /* *---------------------------------------------------------------------- @@ -1041,6 +1062,11 @@ void Run_Appli(Standard_Boolean (*interprete) (const char*)) } #endif + NCollection_List::Iterator Iter(MyCallbacks); + for(; Iter.More(); Iter.Next()) + { + (*Iter.Value())(); + } } //====================================================== @@ -2023,6 +2049,11 @@ static DWORD WINAPI readStdinThreadFunc(VOID) \*--------------------------------------------------------*/ void exitProc(ClientData /*dc*/) { + NCollection_List::Iterator Iter(MyCallbacks); + for(; Iter.More(); Iter.Next()) + { + (*Iter.Value())(); + } HANDLE proc = GetCurrentProcess(); TerminateProcess(proc, 0); } diff --git a/src/Draw/Draw_Window.hxx b/src/Draw/Draw_Window.hxx index 2cba926b94..41d4920ea6 100644 --- a/src/Draw/Draw_Window.hxx +++ b/src/Draw/Draw_Window.hxx @@ -62,9 +62,27 @@ typedef struct Event //==================================== class Draw_Window { - public : + /** + * Type of the callback function that is to be passed to the method + * AddCallbackBeforeTerminate(). + */ + typedef void (*FCallbackBeforeTerminate)(); + + /** + * This method registers a callback function that will be called just before exit. + * This is usefull especially for Windows platform, on which Draw is normally + * self-terminated instead of exiting. + */ + Standard_EXPORT static void AddCallbackBeforeTerminate(FCallbackBeforeTerminate theCB); + + /** + * Just in case method for un-registering a callback previously registered by + * AddCallbackBeforeTerminate() + */ + Standard_EXPORT static void RemoveCallbackBeforeTerminate(FCallbackBeforeTerminate theCB); + Draw_Window (); // the window is not initialized Draw_Window (const char* title, Standard_Integer X, Standard_Integer Y = 0, @@ -218,6 +236,25 @@ class Draw_Window { public : + /** + * Type of the callback function that is to be passed to the method + * AddCallbackBeforeTerminate(). + */ + typedef void (*FCallbackBeforeTerminate)(); + + /** + * This method registers a callback function that will be called just before exit. + * This is usefull especially for Windows platform, on which Draw is normally + * self-terminated instead of exiting. + */ + Standard_EXPORT static void AddCallbackBeforeTerminate(FCallbackBeforeTerminate theCB); + + /** + * Just in case method for un-registering a callback previously registered by + * AddCallbackBeforeTerminate() + */ + Standard_EXPORT static void RemoveCallbackBeforeTerminate(FCallbackBeforeTerminate theCB); + Draw_Window (); // the window is not initialized Draw_Window (Standard_CString theTitle, const Standard_Integer& theXLeft = 0, const Standard_Integer& theYTop = 0, @@ -359,6 +396,26 @@ class DrawWindow { //constructeur public: + + /** + * Type of the callback function that is to be passed to the method + * AddCallbackBeforeTerminate(). + */ + typedef void (*FCallbackBeforeTerminate)(); + + /** + * This method registers a callback function that will be called just before exit. + * This is usefull especially for Windows platform, on which Draw is normally + * self-terminated instead of exiting. + */ + Standard_EXPORT static void AddCallbackBeforeTerminate(FCallbackBeforeTerminate theCB); + + /** + * Just in case method for un-registering a callback previously registered by + * AddCallbackBeforeTerminate() + */ + Standard_EXPORT static void RemoveCallbackBeforeTerminate(FCallbackBeforeTerminate theCB); + __Draw_API DrawWindow(); __Draw_API DrawWindow(char*, Standard_Integer, Standard_Integer, Standard_Integer, Standard_Integer);