A little tweak to the wxProcess demo to make it run more smoothly
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@8645 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
22
wxPython/b
22
wxPython/b
@@ -1,32 +1,44 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ "$1" = "15" ]; then
|
||||||
|
PYVER=1.5
|
||||||
|
shift
|
||||||
|
elif [ "$1" = "20" ]; then
|
||||||
|
PYVER=2.0
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
SETUP="python$PYVER -u setup.py"
|
SETUP="python$PYVER -u setup.py"
|
||||||
FLAGS="USE_SWIG=1 IN_CVS_TREE=1"
|
FLAGS="USE_SWIG=1 IN_CVS_TREE=1"
|
||||||
|
OTHERFLAGS=""
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# "c" --> clean
|
# "c" --> clean
|
||||||
if [ "$1" = "c" ]; then
|
if [ "$1" = "c" ]; then
|
||||||
shift
|
shift
|
||||||
CMD="$SETUP $FLAGS clean"
|
CMD="$SETUP $FLAGS $OTHERFLAGS clean"
|
||||||
OTHERCMD="rm -f wxPython/*.so"
|
OTHERCMD="rm -f wxPython/*.so"
|
||||||
|
|
||||||
# "i" --> install
|
# "i" --> install
|
||||||
elif [ "$1" = "i" ]; then
|
elif [ "$1" = "i" ]; then
|
||||||
shift
|
shift
|
||||||
CMD="$SETUP build install"
|
CMD="$SETUP build $OTHERFLAGS install"
|
||||||
|
|
||||||
# "s" --> source dist
|
# "s" --> source dist
|
||||||
elif [ "$1" = "s" ]; then
|
elif [ "$1" = "s" ]; then
|
||||||
shift
|
shift
|
||||||
CMD="$SETUP sdist"
|
CMD="$SETUP $OTHERFLAGS sdist"
|
||||||
|
|
||||||
# "r" --> rpm dist
|
# "r" --> rpm dist
|
||||||
elif [ "$1" = "r" ]; then
|
elif [ "$1" = "r" ]; then
|
||||||
shift
|
shift
|
||||||
CMD="$SETUP bdist_rpm"
|
CMD="$SETUP $OTHERFLAGS bdist_rpm"
|
||||||
|
|
||||||
# (no command arg) --> normal build for development
|
# (no command arg) --> normal build for development
|
||||||
else
|
else
|
||||||
CMD="$SETUP $FLAGS build_ext --inplace $*"
|
CMD="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace $*"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
@@ -62,6 +62,7 @@ class TestPanel(wxPanel):
|
|||||||
if self.process is not None:
|
if self.process is not None:
|
||||||
self.process.Detach()
|
self.process.Detach()
|
||||||
self.process.CloseOutput()
|
self.process.CloseOutput()
|
||||||
|
self.process = None
|
||||||
|
|
||||||
|
|
||||||
def OnExecuteBtn(self, evt):
|
def OnExecuteBtn(self, evt):
|
||||||
@@ -85,6 +86,7 @@ class TestPanel(wxPanel):
|
|||||||
self.inp.SetValue('')
|
self.inp.SetValue('')
|
||||||
self.log.write('OnSendText: "%s"\n' % text)
|
self.log.write('OnSendText: "%s"\n' % text)
|
||||||
self.process.GetOutputStream().write(text + '\n')
|
self.process.GetOutputStream().write(text + '\n')
|
||||||
|
self.inp.SetFocus()
|
||||||
|
|
||||||
|
|
||||||
def OnCloseStream(self, evt):
|
def OnCloseStream(self, evt):
|
||||||
|
Reference in New Issue
Block a user