1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxProcess class
4 // Author: Guilhem Lavaux
5 // Modified by: Vadim Zeitlin to check error codes, added Detach() method
8 // Copyright: (c) 1998 Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PROCESSH__
13 #define _WX_PROCESSH__
16 #pragma interface "process.h"
20 #include "wx/object.h"
23 // Process Event handling
24 class WXDLLEXPORT wxProcessEvent
: public wxEvent
26 DECLARE_DYNAMIC_CLASS(wxProcessEvent
)
29 wxProcessEvent(int id
= 0, int pid
= 0, int exitcode
= 0) : wxEvent(id
)
31 m_eventType
= wxEVT_END_PROCESS
;
33 m_exitcode
= exitcode
;
37 // PID of process which terminated
38 int GetPid() { return m_pid
; }
41 int GetExitCode() { return m_exitcode
; }
44 int m_pid
, m_exitcode
;
47 // A wxProcess object should be passed to wxExecute - than its OnTerminate()
48 // function will be called when the process terminates.
49 class WXDLLEXPORT wxProcess
: public wxEvtHandler
51 DECLARE_DYNAMIC_CLASS(wxProcess
)
54 wxProcess(wxEvtHandler
*parent
= (wxEvtHandler
*) NULL
, int id
= -1);
56 virtual void OnTerminate(int pid
, int status
);
58 // detach from the parent - should be called by the parent if it's deleted
59 // before the process it started terminates
66 typedef void (wxObject::*wxProcessEventFunction
)(wxProcessEvent
&);
68 #define EVT_END_PROCESS(id, func) { wxEVT_END_PROCESS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxProcessEventFunction) & func, NULL},