1
0
mirror of https://github.com/gryf/wmdocklib.git synced 2025-12-19 04:20:17 +01:00

1714519 - object oriented library

separated the library part from the application part.
added wmoo module.
added pywmoonop (object oriented form of the empty dock).
This commit is contained in:
mfrasca
2007-05-15 07:31:09 +00:00
parent 844eecc535
commit b34c324414
3 changed files with 113 additions and 67 deletions

16
examples/pywmoonop.py Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python
"""pywmoonop.py
object oriented WindowMaker dockapp doing nothing
Copyright (C) 2007 Mario Frasca
Licensed under the GNU General Public License.
"""
from wmdocklib import wmoo
thisapp = wmoo.Application()
if __name__ == '__main__':
thisapp.run()