Moved tools to be a Python package in wxPython.tools, added scripts to

import and launch each tool.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16418 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-08-08 18:28:21 +00:00
parent f341e39bdf
commit f6f98ecccd
25 changed files with 89 additions and 23 deletions

5
wxPython/scripts/img2png Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env python
from wxPython.tools.img2png import main
main()

6
wxPython/scripts/img2py Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env python
import sys
from wxPython.tools.img2py import main
main(sys.argv[1:])

5
wxPython/scripts/img2xpm Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env python
from wxPython.tools.img2xpm import main
main()

4
wxPython/scripts/xrced Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env python
from wxPython.tools.XRCed.xrced import main
main()