Changeset 1145
- Timestamp:
- 03/06/07 01:06:52 (2 years ago)
- Files:
-
- gaphas/trunk/demo.py (modified) (1 diff)
- gaphas/trunk/gaphas/examples.py (modified) (1 diff)
- gaphas/trunk/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/trunk/demo.py
r1134 r1145 22 22 """Box with an example connection protocol. 23 23 """ 24 25 def __init__(self, width=10, height=10):26 super(MyBox, self).__init__(width, height)27 24 28 25 class MyLine(Line): gaphas/trunk/gaphas/examples.py
r1134 r1145 18 18 SW +---+ SE 19 19 """ 20 min_width = 10 21 min_height = 10 20 22 21 def __init__(self, width=10, height=10): 23 #super(Box, self).__init__(width, height) 24 print 'Box.__init__' 25 Element.__init__(self,width, height) 22 super(Box, self).__init__(width, height) 26 23 27 24 def draw(self, context): gaphas/trunk/setup.py
r1096 r1145 8 8 setup( 9 9 name='gaphas', 10 version='0.1. 0',10 version='0.1.1', 11 11 description='Gaphas is a GTK+ based diagramming widget', 12 12 long_description="""\ … … 38 38 39 39 install_requires=[ 40 'PyGTK >= 2.8.0', 40 'decorator >= 2.0.1', 41 # 'PyGTK >= 2.8.0', 41 42 ], 42 43
