##// END OF EJS Templates
Redo CMake build system, get Qt5 support...
Redo CMake build system, get Qt5 support Qt5 support as discussed here: 3fbe">http://sourceforge.net/p/pythonqt/discussion/631392/thread/5f20c176/3fbe

File last commit:

r151:a5a8aa72950d
r205:706df4355685
Show More
example.py
14 lines | 290 B | text/x-python | PythonLexer
florianlink
fixed example for 2.0 API...
r151 from PythonQt.example import CustomObject
ezust
reorganized SVN tree into branches, tags and trunk...
r0
# create a new object
custom = CustomObject("John","Doe")
# print the methods available
print dir(custom)
# set a name
custom.setFirstName("Mike")
custom.setLastName("Michels")
# get the name
print custom.firstName() + " " + custom.lastName();