nonchocoboy 2003/01/08 01:10:12 PST Modified files: phui/examples/python main.cpp setup.py Added files: phui/phui/python PyActionEvent.cpp PyActionListener.cpp PyButton.cpp PyCheckBox.cpp PyColor.cpp PyInsets.cpp PyLabel.cpp PyLayoutConstraint.cpp PyListBox.cpp PyPoint.cpp PyRootWidget.cpp PySize.cpp PyTextField.cpp PyWidget.cpp PyWidgetContainer.cpp PyWindow.cpp PyWindowEvent.cpp PyWindowListener.cpp PythonAPI.cpp SConscript Removed files: phui/phui PythonAPI.cpp Log: Split up the python wrapper into a seperate files for each class. This should ease the work required by the compiler and reduce compile time when classes change. As such, we no longer require over 250MB of memory to compile the python bindings. yay! ;) Revision Changes Path 1.3 +3 -3 lib/phui/examples/python/main.cpp 1.10 +1 -14 lib/phui/examples/python/setup.py 1.12 +0 -318 lib/phui/phui/PythonAPI.cpp (dead) 1.1 +44 -0 lib/phui/phui/python/PyActionEvent.cpp (new) 1.1 +59 -0 lib/phui/phui/python/PyActionListener.cpp (new) 1.1 +54 -0 lib/phui/phui/python/PyButton.cpp (new) 1.1 +53 -0 lib/phui/phui/python/PyCheckBox.cpp (new) 1.1 +53 -0 lib/phui/phui/python/PyColor.cpp (new) 1.1 +53 -0 lib/phui/phui/python/PyInsets.cpp (new) 1.1 +52 -0 lib/phui/phui/python/PyLabel.cpp (new) 1.1 +59 -0 lib/phui/phui/python/PyLayoutConstraint.cpp (new) 1.1 +57 -0 lib/phui/phui/python/PyListBox.cpp (new) 1.1 +55 -0 lib/phui/phui/python/PyPoint.cpp (new) 1.1 +45 -0 lib/phui/phui/python/PyRootWidget.cpp (new) 1.1 +51 -0 lib/phui/phui/python/PySize.cpp (new) 1.1 +52 -0 lib/phui/phui/python/PyTextField.cpp (new) 1.1 +62 -0 lib/phui/phui/python/PyWidget.cpp (new) 1.1 +48 -0 lib/phui/phui/python/PyWidgetContainer.cpp (new) 1.1 +52 -0 lib/phui/phui/python/PyWindow.cpp (new) 1.1 +44 -0 lib/phui/phui/python/PyWindowEvent.cpp (new) 1.1 +77 -0 lib/phui/phui/python/PyWindowListener.cpp (new) 1.1 +83 -0 lib/phui/phui/python/PythonAPI.cpp (new) 1.1 +36 -0 lib/phui/phui/python/SConscript (new) http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/examples/python/main.cpp.diff?r1=1.2&r2=1.3&diff_format=h http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/examples/python/setup.py.diff?r1=1.9&r2=1.10&diff_format=h http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/PythonAPI.cpp?rev=&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyActionEvent.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyActionListener.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyButton.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyCheckBox.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyColor.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyInsets.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyLabel.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyLayoutConstraint.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyListBox.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyPoint.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyRootWidget.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PySize.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyTextField.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyWidget.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyWidgetContainer.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyWindow.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyWindowEvent.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PyWindowListener.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/PythonAPI.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/lib/phui/phui/python/SConscript?rev=1.1&content-type=text/plain
You seem to have CSS turned off. Please don't fill out this field.
Click URL instructions: Right-click on the ad, choose "Copy Link", then paste here → (This may not be possible with some types of ads)
Ad destination/click URL: