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"
22 #include "wx/stream.h"
24 // Process Event handling
25 class WXDLLEXPORT wxProcessEvent
: public wxEvent
27 DECLARE_DYNAMIC_CLASS(wxProcessEvent
)
30 wxProcessEvent(int id
= 0, int pid
= 0, int exitcode
= 0) : wxEvent(id
)
32 m_eventType
= wxEVT_END_PROCESS
;
34 m_exitcode
= exitcode
;
38 // PID of process which terminated
39 int GetPid() { return m_pid
; }
42 int GetExitCode() { return m_exitcode
; }
45 int m_pid
, m_exitcode
;
48 // A wxProcess object should be passed to wxExecute - than its OnTerminate()
49 // function will be called when the process terminates.
50 class WXDLLEXPORT wxProcess
: public wxEvtHandler
52 DECLARE_DYNAMIC_CLASS(wxProcess
)
55 wxProcess(wxEvtHandler
*parent
= (wxEvtHandler
*) NULL
, bool needPipe
= FALSE
, int id
= -1);
58 virtual void OnTerminate(int pid
, int status
);
60 // detach from the parent - should be called by the parent if it's deleted
61 // before the process it started terminates
65 wxInputStream
*GetInputStream() const;
66 wxOutputStream
*GetOutputStream() const;
68 // These functions should not be called by the usual user. They are only
69 // intended to be used by wxExecute.
71 void SetPipeStreams(wxInputStream
*in_stream
, wxOutputStream
*out_stream
);
72 bool NeedPipe() const;
77 wxInputStream
*m_in_stream
;
78 wxOutputStream
*m_out_stream
;
81 typedef void (wxObject::*wxProcessEventFunction
)(wxProcessEvent
&);
83 #define EVT_END_PROCESS(id, func) { wxEVT_END_PROCESS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxProcessEventFunction) & func, NULL},