]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/ide/activegrid/tool/AbstractEditor.py
1 #----------------------------------------------------------------------------
2 # Name: AbstractEditor.py
3 # Purpose: Non-text editor for DataModel and Process
5 # Author: Peter Yared, Morgan Hua
9 # Copyright: (c) 2004-2005 ActiveGrid, Inc.
10 # License: wxWindows License
11 #----------------------------------------------------------------------------
16 import wx
. lib
. ogl
as ogl
17 import PropertyService
21 SELECT_BRUSH
= wx
. Brush ( "BLUE" , wx
. SOLID
)
22 SHAPE_BRUSH
= wx
. Brush ( "WHEAT" , wx
. SOLID
)
23 LINE_BRUSH
= wx
. BLACK_BRUSH
24 INACTIVE_SELECT_BRUSH
= wx
. Brush ( "LIGHT BLUE" , wx
. SOLID
)
27 def GetRawModel ( model
):
28 if hasattr ( model
, "GetRawModel" ):
29 rawModel
= model
. GetRawModel ()
35 class CanvasView ( wx
. lib
. docview
. View
):
38 #----------------------------------------------------------------------------
40 #----------------------------------------------------------------------------
43 def __init__ ( self
, brush
= SHAPE_BRUSH
):
44 wx
. lib
. docview
. View
.__ init
__ ( self
)
49 self
._ needEraseLasso
= False
50 self
._ propShape
= None
53 def OnCreate ( self
, doc
, flags
):
54 frame
= wx
. GetApp (). CreateDocumentFrame ( self
, doc
, flags
)
57 self
._ CreateCanvas
( frame
)
58 sizer
. Add ( self
._ canvas
, 1 , wx
. EXPAND
, 0 )
65 def OnActivateView ( self
, activate
, activeView
, deactiveView
):
66 if activate
and self
._ canvas
:
67 # In MDI mode just calling set focus doesn't work and in SDI mode using CallAfter causes an endless loop
68 if self
. GetDocumentManager (). GetFlags () & wx
. lib
. docview
. DOC_SDI
:
69 self
._ canvas
. SetFocus ()
71 wx
. CallAfter ( self
._ canvas
. SetFocus
)
74 def OnFocus ( self
, event
):
75 self
._ canvas
. SetFocus ()
76 self
. FocusColorPropertyShape ( True )
80 def OnKillFocus ( self
, event
):
81 self
. FocusColorPropertyShape ( False )
85 def OnClose ( self
, deleteWindow
= True ):
86 statusC
= wx
. GetApp (). CloseChildDocuments ( self
. GetDocument ())
87 statusP
= wx
. lib
. docview
. View
. OnClose ( self
, deleteWindow
= deleteWindow
)
88 if hasattr ( self
, "ClearOutline" ):
89 wx
. CallAfter ( self
. ClearOutline
) # need CallAfter because when closing the document, it is Activated and then Close, so need to match OnActivateView's CallAfter
90 if not ( statusC
and statusP
):
93 if deleteWindow
and self
. GetFrame ():
94 self
. GetFrame (). Destroy ()
98 def _CreateCanvas ( self
, parent
):
99 self
._ canvas
= ogl
. ShapeCanvas ( parent
)
100 wx
. EVT_LEFT_DOWN ( self
._ canvas
, self
. OnLeftClick
)
101 wx
. EVT_LEFT_UP ( self
._ canvas
, self
. OnLeftUp
)
102 wx
. EVT_MOTION ( self
._ canvas
, self
. OnLeftDrag
)
103 wx
. EVT_LEFT_DCLICK ( self
._ canvas
, self
. OnLeftDoubleClick
)
104 wx
. EVT_KEY_DOWN ( self
._ canvas
, self
. OnKeyPressed
)
106 # need this otherwise mouse clicks don't set focus to this view
107 wx
. EVT_LEFT_DOWN ( self
._ canvas
, self
. OnFocus
)
108 wx
. EVT_LEFT_DCLICK ( self
._ canvas
, self
. OnFocus
)
109 wx
. EVT_RIGHT_DOWN ( self
._ canvas
, self
. OnFocus
)
110 wx
. EVT_RIGHT_DCLICK ( self
._ canvas
, self
. OnFocus
)
111 wx
. EVT_MIDDLE_DOWN ( self
._ canvas
, self
. OnFocus
)
112 wx
. EVT_MIDDLE_DCLICK ( self
._ canvas
, self
. OnFocus
)
114 wx
. EVT_KILL_FOCUS ( self
._ canvas
, self
. OnKillFocus
)
115 wx
. EVT_SET_FOCUS ( self
._ canvas
, self
. OnFocus
)
119 self
._ canvas
. SetScrollbars ( 20 , 20 , maxWidth
/ 20 , maxHeight
/ 20 )
121 self
._ canvas
. SetBackgroundColour ( wx
. WHITE
)
122 self
._ diagram
= ogl
. Diagram ()
123 self
._ canvas
. SetDiagram ( self
._ diagram
)
124 self
._ diagram
. SetCanvas ( self
._ canvas
)
127 def OnKeyPressed ( self
, event
):
128 key
= event
. KeyCode ()
129 if key
== wx
. WXK_DELETE
:
135 def OnLeftClick ( self
, event
):
136 self
. EraseRubberBand ()
138 dc
= wx
. ClientDC ( self
._ canvas
)
139 self
._ canvas
. PrepareDC ( dc
)
141 # keep track of mouse down for group select
142 self
._ pt
1 = event
. GetLogicalPosition ( dc
) # this takes into account scrollbar offset
145 shape
= self
._ canvas
. FindShape ( self
._ pt
1 [ 0 ], self
._ pt
1 [ 1 ])[ 0 ]
147 self
. BringToFront ( shape
)
150 event
. Skip () # pass on event to shape handler to take care of selection
153 elif event
. ControlDown () or event
. ShiftDown (): # extend select, don't deselect
156 # click on empty part of canvas, deselect everything
158 for shape
in self
._ diagram
. GetShapeList ():
159 if hasattr ( shape
, "GetModel" ):
162 shape
. Select ( False , dc
)
164 self
._ canvas
. Redraw ( dc
)
166 self
. SetPropertyModel ( None )
168 if len ( self
. GetSelection ()) == 0 :
169 self
. SetPropertyShape ( None )
173 def OnLeftDoubleClick ( self
, event
):
174 propertyService
= wx
. GetApp (). GetService ( PropertyService
. PropertyService
)
176 propertyService
. ShowWindow ()
179 def OnLeftDrag ( self
, event
):
180 # draw lasso for group select
181 if self
._ pt
1 and event
. LeftIsDown (): # we are in middle of lasso selection
182 self
. EraseRubberBand ()
184 dc
= wx
. ClientDC ( self
._ canvas
)
185 self
._ canvas
. PrepareDC ( dc
)
186 self
._ pt
2 = event
. GetLogicalPosition ( dc
) # this takes into account scrollbar offset
187 self
. DrawRubberBand ()
192 def OnLeftUp ( self
, event
):
194 if self
._ needEraseLasso
:
195 self
. EraseRubberBand ()
197 dc
= wx
. ClientDC ( self
._ canvas
)
198 self
._ canvas
. PrepareDC ( dc
)
200 x2
, y2
= event
. GetLogicalPosition ( dc
) # this takes into account scrollbar offset
202 tol
= self
._ diagram
. GetMouseTolerance ()
203 if abs ( x1
- x2
) > tol
or abs ( y1
- y2
) > tol
:
204 # make sure x1 < x2 and y1 < y2 to make comparison test easier
214 for shape
in self
._ diagram
. GetShapeList ():
215 if not shape
. GetParent () and hasattr ( shape
, "GetModel" ): # if part of a composite, don't select it
216 x
, y
= shape
. GetX (), shape
. GetY ()
217 width
, height
= shape
. GetBoundingBoxMax ()
218 selected
= x1
< x
- width
/ 2 and x2
> x
+ width
/ 2 and y1
< y
- height
/ 2 and y2
> y
+ height
/ 2
219 if event
. ControlDown () or event
. ShiftDown (): # extend select, don't deselect
221 shape
. Select ( selected
, dc
)
222 else : # select items in lasso and deselect items out of lasso
223 shape
. Select ( selected
, dc
)
224 self
._ canvas
. Redraw ( dc
)
231 def EraseRubberBand ( self
):
232 if self
._ needEraseLasso
:
233 self
._ needEraseLasso
= False
235 dc
= wx
. ClientDC ( self
._ canvas
)
236 self
._ canvas
. PrepareDC ( dc
)
237 dc
. SetLogicalFunction ( wx
. XOR
)
238 pen
= wx
. Pen ( wx
. Colour ( 200 , 200 , 200 ), 1 , wx
. SHORT_DASH
)
240 brush
= wx
. Brush ( wx
. Colour ( 255 , 255 , 255 ), wx
. TRANSPARENT
)
242 dc
. ResetBoundingBox ()
248 # make sure x1 < x2 and y1 < y2
249 # this will make (x1, y1) = upper left corner
259 # erase previous outline
260 dc
. SetClippingRegion ( x1
, y1
, x2
- x1
, y2
- y1
)
261 dc
. DrawRectangle ( x1
, y1
, x2
- x1
, y2
- y1
)
265 def DrawRubberBand ( self
):
266 self
._ needEraseLasso
= True
268 dc
= wx
. ClientDC ( self
._ canvas
)
269 self
._ canvas
. PrepareDC ( dc
)
270 dc
. SetLogicalFunction ( wx
. XOR
)
271 pen
= wx
. Pen ( wx
. Colour ( 200 , 200 , 200 ), 1 , wx
. SHORT_DASH
)
273 brush
= wx
. Brush ( wx
. Colour ( 255 , 255 , 255 ), wx
. TRANSPARENT
)
275 dc
. ResetBoundingBox ()
281 # make sure x1 < x2 and y1 < y2
282 # this will make (x1, y1) = upper left corner
293 dc
. SetClippingRegion ( x1
, y1
, x2
- x1
, y2
- y1
)
294 dc
. DrawRectangle ( x1
, y1
, x2
- x1
, y2
- y1
)
298 def FindParkingSpot ( self
, width
, height
):
299 """ given a width and height, find a upper left corner where shape can be parked without overlapping other shape """
300 offset
= 30 # space between shapes
303 maxX
= 700 # max distance to the right where we'll place tables
307 point
= self
. isSpotOccupied ( x
, y
, width
, height
)
309 x
= point
[ 0 ] + offset
312 y
= point
[ 1 ] + offset
314 noParkingSpot
= False
319 def isSpotOccupied ( self
, x
, y
, width
, height
):
320 """ returns None if at x,y,width,height no object occupies that rectangle,
321 otherwise returns lower right corner of object that occupies given x,y position
326 for shape
in self
._ diagram
. GetShapeList ():
327 if isinstance ( shape
, ogl
. RectangleShape
) or isinstance ( shape
, ogl
. EllipseShape
):
328 if shape
. GetParent () and isinstance ( shape
. GetParent (), ogl
. CompositeShape
):
329 # skip, part of a composite shape
332 if hasattr ( shape
, "GetModel" ):
333 other_x
, other_y
, other_width
, other_height
= shape
. GetModel (). getEditorBounds ()
334 other_x2
= other_x
+ other_width
335 other_y2
= other_y
+ other_height
337 # shapes x,y are at the center of the shape, need to transform to upper left coordinate
338 other_width
, other_height
= shape
. GetBoundingBoxMax ()
339 other_x
= shape
. GetX () - other_width
/ 2
340 other_y
= shape
. GetY () - other_height
/ 2
342 other_x2
= other_x
+ other_width
343 other_y2
= other_y
+ other_height
345 if (( other_x2
< other_x
or other_x2
> x
) and
346 ( other_y2
< other_y
or other_y2
> y
) and
347 ( x2
< x
or x2
> other_x
) and
348 ( y2
< y
or y2
> other_y
)):
349 return ( other_x2
, other_y2
)
353 #----------------------------------------------------------------------------
355 #----------------------------------------------------------------------------
357 def AddShape ( self
, shape
, x
= None , y
= None , pen
= None , brush
= None , text
= None , eventHandler
= None ):
358 if isinstance ( shape
, ogl
. CompositeShape
):
359 dc
= wx
. ClientDC ( self
._ canvas
)
360 self
._ canvas
. PrepareDC ( dc
)
363 shape
. SetDraggable ( True , True )
364 shape
. SetCanvas ( self
._ canvas
)
370 shape
. SetCentreResize ( False )
374 shape
. SetBrush ( brush
)
377 shape
. SetShadowMode ( ogl
. SHADOW_RIGHT
)
378 self
._ diagram
. AddShape ( shape
)
381 eventHandler
= EditorCanvasShapeEvtHandler ( self
)
382 eventHandler
. SetShape ( shape
)
383 eventHandler
. SetPreviousHandler ( shape
. GetEventHandler ())
384 shape
. SetEventHandler ( eventHandler
)
388 def RemoveShape ( self
, model
= None , shape
= None ):
389 if not model
and not shape
:
393 shape
= self
. GetShape ( model
)
397 self
._ diagram
. RemoveShape ( shape
)
398 if isinstance ( shape
, ogl
. CompositeShape
):
399 shape
. RemoveFromCanvas ( self
._ canvas
)
402 def UpdateShape ( self
, model
):
403 for shape
in self
._ diagram
. GetShapeList ():
404 if hasattr ( shape
, "GetModel" ) and shape
. GetModel () == model
:
405 x
, y
, w
, h
= model
. getEditorBounds ()
409 if isinstance ( shape
, ogl
. CompositeShape
):
410 if shape
. GetX () != newX
or shape
. GetY () != newY
:
411 dc
= wx
. ClientDC ( self
._ canvas
)
412 self
._ canvas
. PrepareDC ( dc
)
413 shape
. SetSize ( w
, h
, True ) # wxBug: SetSize must be before Move because links won't go to the right place
414 shape
. Move ( dc
, newX
, newY
) # wxBug: Move must be before SetSize because links won't go to the right place
417 oldw
, oldh
= shape
. GetBoundingBoxMax ()
420 if oldw
!= w
or oldh
!= h
or oldx
!= newX
or oldy
!= newY
:
426 shape
. ResetControlPoints ()
427 self
._ canvas
. Refresh ()
431 def GetShape ( self
, model
):
432 for shape
in self
._ diagram
. GetShapeList ():
433 if hasattr ( shape
, "GetModel" ) and shape
. GetModel () == model
:
438 def GetSelection ( self
):
439 return filter ( lambda shape
: shape
. Selected (), self
._ diagram
. GetShapeList ())
442 def SetSelection ( self
, models
, extendSelect
= False ):
443 dc
= wx
. ClientDC ( self
._ canvas
)
444 self
._ canvas
. PrepareDC ( dc
)
446 if not isinstance ( models
, type ([])) and not isinstance ( models
, type (())):
448 for shape
in self
._ diagram
. GetShapeList ():
449 if hasattr ( shape
, "GetModel" ):
450 if shape
. Selected () and not shape
. GetModel () in models
: # was selected, but not in new list, so deselect, unless extend select
452 shape
. Select ( False , dc
)
454 elif not shape
. Selected () and shape
. GetModel () in models
: # was not selected and in new list, so select
455 shape
. Select ( True , dc
)
457 elif extendSelect
and shape
. Selected () and shape
. GetModel () in models
: # was selected, but extend select means to deselect
458 shape
. Select ( False , dc
)
461 self
._ canvas
. Redraw ( dc
)
464 def BringToFront ( self
, shape
):
465 if shape
. GetParent () and isinstance ( shape
. GetParent (), ogl
. CompositeShape
):
466 self
._ diagram
. RemoveShape ( shape
. GetParent ())
467 self
._ diagram
. AddShape ( shape
. GetParent ())
469 self
._ diagram
. RemoveShape ( shape
)
470 self
._ diagram
. AddShape ( shape
)
473 def SendToBack ( self
, shape
):
474 if shape
. GetParent () and isinstance ( shape
. GetParent (), ogl
. CompositeShape
):
475 self
._ diagram
. RemoveShape ( shape
. GetParent ())
476 self
._ diagram
. InsertShape ( shape
. GetParent ())
478 self
._ diagram
. RemoveShape ( shape
)
479 self
._ diagram
. InsertShape ( shape
)
482 def ScrollVisible ( self
, shape
):
483 xUnit
, yUnit
= shape
._ canvas
. GetScrollPixelsPerUnit ()
484 scrollX
, scrollY
= self
._ canvas
. GetViewStart () # in scroll units
485 scrollW
, scrollH
= self
._ canvas
. GetSize () # in pixels
486 w
, h
= shape
. GetBoundingBoxMax () # in pixels
487 x
= shape
. GetX () - w
/ 2 # convert to upper left coordinate from center
488 y
= shape
. GetY () - h
/ 2 # convert to upper left coordinate from center
490 if x
>= scrollX
* xUnit
and x
<= scrollX
* xUnit
+ scrollW
: # don't scroll if already visible
495 if y
>= scrollY
* yUnit
and y
<= scrollY
* yUnit
+ scrollH
: # don't scroll if already visible
500 self
._ canvas
. Scroll ( x
, y
) # in scroll units
503 def SetPropertyShape ( self
, shape
):
504 # no need to highlight if no PropertyService is running
505 propertyService
= wx
. GetApp (). GetService ( PropertyService
. PropertyService
)
506 if not propertyService
:
509 if shape
== self
._ propShape
:
512 if hasattr ( shape
, "GetPropertyShape" ):
513 shape
= shape
. GetPropertyShape ()
515 dc
= wx
. ClientDC ( self
._ canvas
)
516 self
._ canvas
. PrepareDC ( dc
)
519 # erase old selection if it still exists
520 if self
._ propShape
and self
._ propShape
in self
._ diagram
. GetShapeList ():
521 self
._ propShape
. SetBrush ( self
._ brush
)
522 if ( self
._ propShape
._ textColourName
in [ "BLACK" , "WHITE" ]): # Would use GetTextColour() but it is broken
523 self
._ propShape
. SetTextColour ( "BLACK" , 0 )
524 self
._ propShape
. Draw ( dc
)
527 self
._ propShape
= shape
530 if self
._ propShape
and self
._ propShape
in self
._ diagram
. GetShapeList ():
531 self
._ propShape
. SetBrush ( SELECT_BRUSH
)
532 if ( self
._ propShape
._ textColourName
in [ "BLACK" , "WHITE" ]): # Would use GetTextColour() but it is broken
533 self
._ propShape
. SetTextColour ( "WHITE" , 0 )
534 self
._ propShape
. Draw ( dc
)
539 def FocusColorPropertyShape ( self
, gotFocus
= False ):
540 # no need to change highlight if no PropertyService is running
541 propertyService
= wx
. GetApp (). GetService ( PropertyService
. PropertyService
)
542 if not propertyService
:
545 if not self
._ propShape
:
548 dc
= wx
. ClientDC ( self
._ canvas
)
549 self
._ canvas
. PrepareDC ( dc
)
552 # draw deactivated selection
553 if self
._ propShape
and self
._ propShape
in self
._ diagram
. GetShapeList ():
555 self
._ propShape
. SetBrush ( SELECT_BRUSH
)
557 self
._ propShape
. SetBrush ( INACTIVE_SELECT_BRUSH
)
558 if ( self
._ propShape
._ textColourName
in [ "BLACK" , "WHITE" ]): # Would use GetTextColour() but it is broken
559 self
._ propShape
. SetTextColour ( "WHITE" , 0 )
560 self
._ propShape
. Draw ( dc
)
565 #----------------------------------------------------------------------------
566 # Property Service methods
567 #----------------------------------------------------------------------------
569 def GetPropertyModel ( self
):
570 if hasattr ( self
, "_propModel" ):
571 return self
._ propModel
575 def SetPropertyModel ( self
, model
):
576 # no need to set the model if no PropertyService is running
577 propertyService
= wx
. GetApp (). GetService ( PropertyService
. PropertyService
)
578 if not propertyService
:
581 if hasattr ( self
, "_propModel" ) and model
== self
._ propModel
:
584 self
._ propModel
= model
585 propertyService
. LoadProperties ( self
._ propModel
, self
. GetDocument ())
588 class EditorCanvasShapeMixin
:
594 def SetModel ( self
, model
):
598 class EditorCanvasShapeEvtHandler ( ogl
. ShapeEvtHandler
):
600 """ wxBug: Bug in OLG package. With wxShape.SetShadowMode() turned on, when we set the size,
601 the width/height is larger by 6 pixels. Need to subtract this value from width and height when we
607 def __init__ ( self
, view
):
608 ogl
. ShapeEvtHandler
.__ init
__ ( self
)
612 def OnLeftClick ( self
, x
, y
, keys
= 0 , attachment
= 0 ):
613 shape
= self
. GetShape ()
614 if hasattr ( shape
, "GetModel" ): # Workaround, on drag, we should deselect all other objects and select the clicked on object
615 model
= shape
. GetModel ()
617 shape
= shape
. GetParent ()
619 model
= shape
. GetModel ()
621 self
._ view
. SetSelection ( model
, keys
== self
. SHIFT_KEY
or keys
== self
. CONTROL_KEY
)
622 self
._ view
. SetPropertyShape ( shape
)
623 self
._ view
. SetPropertyModel ( model
)
626 def OnEndDragLeft ( self
, x
, y
, keys
= 0 , attachment
= 0 ):
627 ogl
. ShapeEvtHandler
. OnEndDragLeft ( self
, x
, y
, keys
, attachment
)
628 shape
= self
. GetShape ()
629 if hasattr ( shape
, "GetModel" ): # Workaround, on drag, we should deselect all other objects and select the clicked on object
630 model
= shape
. GetModel ()
632 parentShape
= shape
. GetParent ()
634 model
= parentShape
. GetModel ()
635 self
._ view
. SetSelection ( model
, keys
== self
. SHIFT_KEY
or keys
== self
. CONTROL_KEY
)
638 def OnMovePost ( self
, dc
, x
, y
, oldX
, oldY
, display
):
639 if x
== oldX
and y
== oldY
:
641 if not self
._ view
. GetDocument ():
643 shape
= self
. GetShape ()
644 if isinstance ( shape
, EditorCanvasShapeMixin
) and shape
. Draggable ():
645 model
= shape
. GetModel ()
646 if hasattr ( model
, "getEditorBounds" ) and model
. getEditorBounds ():
647 x
, y
, w
, h
= model
. getEditorBounds ()
648 newX
= shape
. GetX () - shape
. GetBoundingBoxMax ()[ 0 ] / 2
649 newY
= shape
. GetY () - shape
. GetBoundingBoxMax ()[ 1 ] / 2
650 newWidth
= shape
. GetBoundingBoxMax ()[ 0 ]
651 newHeight
= shape
. GetBoundingBoxMax ()[ 1 ]
652 if shape
._ shadowMode
!= ogl
. SHADOW_NONE
:
653 newWidth
-= shape
._ shadowOffsetX
654 newHeight
-= shape
._ shadowOffsetY
655 newbounds
= ( newX
, newY
, newWidth
, newHeight
)
657 if x
!= newX
or y
!= newY
or w
!= newWidth
or h
!= newHeight
:
658 self
._ view
. GetDocument (). GetCommandProcessor (). Submit ( EditorCanvasUpdateShapeBoundariesCommand ( self
._ view
. GetDocument (), model
, newbounds
))
665 class EditorCanvasUpdateShapeBoundariesCommand ( wx
. lib
. docview
. Command
):
668 def __init__ ( self
, canvasDocument
, model
, newbounds
):
669 wx
. lib
. docview
. Command
.__ init
__ ( self
, canUndo
= True )
670 self
._ canvasDocument
= canvasDocument
672 self
._ oldbounds
= model
. getEditorBounds ()
673 self
._ newbounds
= newbounds
677 name
= self
._ canvasDocument
. GetNameForObject ( self
._ model
)
680 print "ERROR: AbstractEditor.EditorCanvasUpdateShapeBoundariesCommand.GetName: unable to get name for " , self
._ model
681 return _ ( "Move/Resize %s " ) % name
685 return self
._ canvasDocument
. UpdateEditorBoundaries ( self
._ model
, self
._ newbounds
)
689 return self
._ canvasDocument
. UpdateEditorBoundaries ( self
._ model
, self
._ oldbounds
)