Changeset 2355

Show
Ignore:
Timestamp:
09/11/08 04:18:31 (3 months ago)
Author:
gaph..@gmail.com
Message:

updated docs wrt new location of Handle

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphas/trunk/README.txt

    r2094 r2355  
    2828The item's parent/child relationships are maintained here (not in the Item!). 
    2929 
    30 An Item can have a set of Handle's (also from item.py) which can be used to 
     30An Item can have a set of Handle's (from connector.py) which can be used to 
    3131manipulate the item (although this is not necessary). Each item has it's own 
    3232coordinate system (a (0, 0) point). Item.matrix is the transformation 
     
    208208 
    209209item.py: 
    210     Canvas item and handle 
     210    Canvas item 
     211connector.py: 
     212    Handle and Port for items 
    211213canvas.py: 
    212214    Canvas class 
  • gaphas/trunk/gaphas/__init__.py

    r1130 r2355  
    1313 
    1414from canvas import Canvas 
    15 from item import Item, Line, Element, Handle 
     15from connector import Handle 
     16from item import Item, Line, Element 
    1617from view import View, GtkView 
    1718 
  • gaphas/trunk/state.txt

    r2095 r2355  
    5656 
    5757The ``@observed`` decorator can also be applied to properties, as is done in 
    58 gaphas/item.py's Handle class: 
     58gaphas/connector.py's Handle class: 
    5959 
    6060    >>> from gaphas.solver import Variable 
     
    169169    add() and remove() 
    170170 
     171connector.py: 
     172  Connector: 
     173    x and y properties 
     174  Handle: 
     175    connectable, movable, visible, connected_to and disconnect properties 
     176 
    171177item.py: 
    172   Handle: 
    173     x, y, connectable, movable, visible, connected_to and disconnect properties 
    174178  Item: 
    175179    canvas and matrix properties 
  • gaphas/trunk/undo.txt

    r2214 r2355  
    270270    [<gaphas.item.Item object at 0x...>] 
    271271 
    272 item.py: Handle 
     272connector.py: Handle 
    273273--------------- 
    274274Changing the Handle's position is reversible: