* Deleted all ^M
* Added common/process.cpp git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@174 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
e74d736b5a
commit
ca7731b7c8
47
src/common/process.cpp
Normal file
47
src/common/process.cpp
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Name: process.cpp
|
||||||
|
// Purpose: Process termination classes
|
||||||
|
// Author: Guilhem Lavaux
|
||||||
|
// Modified by:
|
||||||
|
// Created: 24/06/98
|
||||||
|
// RCS-ID: $Id$
|
||||||
|
// Copyright: (c) Guilhem Lavaux
|
||||||
|
// Licence: wxWindows license
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#ifdef __GNUG__
|
||||||
|
#pragma implementation "process.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// For compilers that support precompilation, includes "wx.h".
|
||||||
|
#include "wx/wxprec.h"
|
||||||
|
|
||||||
|
#ifdef __BORLANDC__
|
||||||
|
#pragma hdrstop
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef WX_PRECOMP
|
||||||
|
#include "wx/defs.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "wx/process.h"
|
||||||
|
|
||||||
|
#if !USE_SHARED_LIBRARY
|
||||||
|
IMPLEMENT_DYNAMIC_CLASS(wxProcess, wxEvtHandler)
|
||||||
|
IMPLEMENT_DYNAMIC_CLASS(wxProcessEvent, wxEvent)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
wxProcess::wxProcess(wxEvtHandler *parent, int id)
|
||||||
|
{
|
||||||
|
if (parent)
|
||||||
|
SetPreviousHandler(parent);
|
||||||
|
|
||||||
|
m_id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
void wxProcess::OnTerminate(int pid)
|
||||||
|
{
|
||||||
|
wxProcessEvent event(m_id, pid);
|
||||||
|
|
||||||
|
ProcessEvent(event);
|
||||||
|
}
|
@ -347,12 +347,16 @@ IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent)
|
|||||||
IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent)
|
IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent)
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent)
|
IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent)
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxEvent)
|
IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxEvent)
|
||||||
|
IMPLEMENT_DYNAMIC_CLASS(wxProcessEvent, wxEvent)
|
||||||
|
|
||||||
#include "wx/utils.h"
|
#include "wx/utils.h"
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxPathList, wxList)
|
IMPLEMENT_DYNAMIC_CLASS(wxPathList, wxList)
|
||||||
|
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxRect, wxObject)
|
IMPLEMENT_DYNAMIC_CLASS(wxRect, wxObject)
|
||||||
|
|
||||||
|
#include "wx/process.h"
|
||||||
|
IMPLEMENT_DYNAMIC_CLASS(wxProcess, wxEvtHandler)
|
||||||
|
|
||||||
#if USE_TIMEDATE
|
#if USE_TIMEDATE
|
||||||
#include "wx/date.h"
|
#include "wx/date.h"
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxDate, wxObject)
|
IMPLEMENT_DYNAMIC_CLASS(wxDate, wxObject)
|
||||||
|
@ -108,7 +108,8 @@ COMMONOBJS = \
|
|||||||
$(COMMDIR)\wxexpr.obj \
|
$(COMMDIR)\wxexpr.obj \
|
||||||
$(COMMDIR)\y_tab.obj \
|
$(COMMDIR)\y_tab.obj \
|
||||||
$(COMMDIR)\datstrm.obj \
|
$(COMMDIR)\datstrm.obj \
|
||||||
$(COMMDIR)\extended.obj
|
$(COMMDIR)\extended.obj \
|
||||||
|
$(COMMDIR)\process.obj
|
||||||
|
|
||||||
# $(COMMDIR)\wxstrgnu\wxstrgnu.obj \
|
# $(COMMDIR)\wxstrgnu\wxstrgnu.obj \
|
||||||
# $(COMMDIR)\wxstrgnu\wxregex.obj \
|
# $(COMMDIR)\wxstrgnu\wxregex.obj \
|
||||||
@ -897,6 +898,11 @@ $(COMMDIR)/extended.obj: $*.c
|
|||||||
$(CPPFLAGS2) /c /Tp $*.c /Fo$@
|
$(CPPFLAGS2) /c /Tp $*.c /Fo$@
|
||||||
<<
|
<<
|
||||||
|
|
||||||
|
$(COMMDIR)/process.obj: $*.$(SRCSUFF)
|
||||||
|
cl @<<
|
||||||
|
$(CPPFLAGS2) /c /Tp $*.$(SRCSUFF) /Fo$@
|
||||||
|
<<
|
||||||
|
|
||||||
$(COMMDIR)/y_tab.obj: $*.c $(COMMDIR)/lex_yy.c
|
$(COMMDIR)/y_tab.obj: $*.c $(COMMDIR)/lex_yy.c
|
||||||
cl @<<
|
cl @<<
|
||||||
$(CPPFLAGS2) /c $*.c -DUSE_DEFINE -DYY_USE_PROTOS /Fo$@
|
$(CPPFLAGS2) /c $*.c -DUSE_DEFINE -DYY_USE_PROTOS /Fo$@
|
||||||
|
@ -63,10 +63,6 @@
|
|||||||
#endif
|
#endif
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxProcessEvent, wxEvent)
|
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxProcess, wxEvtHandler)
|
|
||||||
|
|
||||||
|
|
||||||
#define wxEXECUTE_WIN_MESSAGE 10000
|
#define wxEXECUTE_WIN_MESSAGE 10000
|
||||||
|
|
||||||
struct wxExecuteData {
|
struct wxExecuteData {
|
||||||
@ -206,22 +202,3 @@ p,i
|
|||||||
return(instanceID);
|
return(instanceID);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// DUMMIES TO SATISFY THE LINKER UNTIL GUILHEM FINISHES THE CODE
|
|
||||||
wxProcess::wxProcess(wxEvtHandler *parent, int id)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
wxProcess::~wxProcess()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxProcess::OnTerminate(int pid)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
wxProcessEvent::wxProcessEvent(int id, int pid)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user