Changeset 2335 for gaphas/trunk/demo_profile.py
- Timestamp:
- 07/16/08 02:45:17 (5 months ago)
- Files:
-
- gaphas/trunk/demo_profile.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/trunk/demo_profile.py
r2334 r2335 1 1 #!/usr/bin/env python 2 3 import pygtk4 pygtk.require('2.0')5 6 import sys7 import math8 import gtk9 from gaphas import Canvas, GtkView, View10 from gaphas.examples import Box, Text, DefaultExampleTool11 from gaphas.item import Line, NW, SE12 from gaphas.tool import PlacementTool, HandleTool13 from gaphas.painter import ItemPainter14 from gaphas import state15 from gaphas.util import text_extents16 2 17 3 from demo import *
