[4972de2] | 1 | interface_color = 'black' |
---|
| 2 | disable_color = 'gray' |
---|
| 3 | active_color = 'red' |
---|
| 4 | rho_color = 'black' |
---|
| 5 | mu_color = 'green' |
---|
| 6 | P_color = 'blue' |
---|
| 7 | theta_color = 'orange' |
---|
| 8 | profile_colors = [rho_color, mu_color, P_color, theta_color] |
---|
| 9 | |
---|
| 10 | class _BaseInteractor: |
---|
| 11 | """ |
---|
| 12 | Share some functions between the interface interactor and various layer |
---|
| 13 | interactors. |
---|
| 14 | |
---|
| 15 | Individual interactors need the following functions: |
---|
| 16 | |
---|
| 17 | save(ev) - save the current state for later restore |
---|
| 18 | restore() - restore the old state |
---|
| 19 | move(x,y,ev) - move the interactor to position x,y |
---|
| 20 | moveend(ev) - end the drag event |
---|
| 21 | update() - draw the interactors |
---|
| 22 | |
---|
| 23 | The following are provided by the base class: |
---|
| 24 | |
---|
| 25 | connect_markers(markers) - register callbacks for all markers |
---|
| 26 | clear_markers() - remove all items in self.markers |
---|
| 27 | onHilite(ev) - enter/leave event processing |
---|
| 28 | onLeave(ev) - enter/leave event processing |
---|
| 29 | onClick(ev) - mouse click: calls save() |
---|
| 30 | onRelease(ev) - mouse click ends: calls moveend() |
---|
| 31 | onDrag(ev) - mouse move: calls move() or restore() |
---|
| 32 | onKey(ev) - keyboard move: calls move() or restore() |
---|
| 33 | |
---|
| 34 | Interactor attributes: |
---|
| 35 | |
---|
| 36 | base - model we are operating on |
---|
| 37 | axes - axes holding the interactor |
---|
| 38 | color - color of the interactor in non-active state |
---|
| 39 | markers - list of handles for the interactor |
---|
| 40 | """ |
---|
| 41 | def __init__(self,base,axes,color='black'): |
---|
| 42 | self.base = base |
---|
| 43 | self.axes = axes |
---|
| 44 | self.color = color |
---|
| 45 | |
---|
| 46 | def clear_markers(self): |
---|
| 47 | ''' |
---|
| 48 | Clear old markers and interfaces. |
---|
| 49 | ''' |
---|
| 50 | for h in self.markers: h.remove() |
---|
| 51 | if self.markers: self.base.connect.clear(*self.markers) |
---|
| 52 | self.markers = [] |
---|
| 53 | |
---|
| 54 | def save(self, ev): |
---|
| 55 | pass |
---|
| 56 | def restore(self, ev): |
---|
| 57 | pass |
---|
| 58 | def move(self, x, y, ev): |
---|
| 59 | pass |
---|
| 60 | def moveend(self, ev): |
---|
| 61 | pass |
---|
| 62 | |
---|
| 63 | def connect_markers(self,markers): |
---|
| 64 | """ |
---|
| 65 | Connect markers to callbacks |
---|
| 66 | """ |
---|
| 67 | for h in markers: |
---|
| 68 | connect = self.base.connect |
---|
| 69 | connect('enter', h, self.onHilite) |
---|
| 70 | connect('leave', h, self.onLeave) |
---|
| 71 | connect('click', h, self.onClick) |
---|
| 72 | connect('release', h, self.onRelease) |
---|
| 73 | connect('drag', h, self.onDrag) |
---|
| 74 | connect('key', h, self.onKey) |
---|
| 75 | |
---|
| 76 | def onHilite(self, ev): |
---|
| 77 | """ |
---|
| 78 | Hilite the artist reporting the event, indicating that it is |
---|
| 79 | ready to receive a click. |
---|
| 80 | """ |
---|
| 81 | ev.artist.set_color(active_color) |
---|
| 82 | self.base.draw() |
---|
| 83 | return True |
---|
| 84 | |
---|
| 85 | def onLeave(self, ev): |
---|
| 86 | """ |
---|
| 87 | Restore the artist to the original colour when the cursor leaves. |
---|
| 88 | """ |
---|
| 89 | ev.artist.set_color(self.color) |
---|
| 90 | self.base.draw() |
---|
| 91 | return True |
---|
| 92 | |
---|
| 93 | def onClick(self, ev): |
---|
| 94 | """ |
---|
| 95 | Prepare to move the artist. Calls save() to preserve the state for |
---|
| 96 | later restore(). |
---|
| 97 | """ |
---|
| 98 | self.clickx,self.clicky = ev.xdata,ev.ydata |
---|
| 99 | self.save(ev) |
---|
| 100 | return True |
---|
| 101 | |
---|
| 102 | def onRelease(self, ev): |
---|
| 103 | self.moveend(ev) |
---|
| 104 | return True |
---|
| 105 | |
---|
| 106 | def onDrag(self, ev): |
---|
| 107 | """ |
---|
| 108 | Move the artist. Calls move() to update the state, or restore() if |
---|
| 109 | the mouse leaves the window. |
---|
| 110 | """ |
---|
| 111 | inside,prop = self.axes.contains(ev) |
---|
| 112 | if inside: |
---|
| 113 | self.clickx,self.clicky = ev.xdata,ev.ydata |
---|
| 114 | self.move(ev.xdata,ev.ydata,ev) |
---|
| 115 | else: |
---|
| 116 | self.restore() |
---|
| 117 | self.base.update() |
---|
| 118 | return True |
---|
| 119 | |
---|
| 120 | def onKey(self, ev): |
---|
| 121 | ''' |
---|
| 122 | Respond to keyboard events. Arrow keys move the widget. Escape |
---|
| 123 | restores it to the position before the last click. |
---|
| 124 | |
---|
| 125 | Calls move() to update the state. Calls restore() on escape. |
---|
| 126 | ''' |
---|
| 127 | if ev.key == 'escape': |
---|
| 128 | self.restore() |
---|
| 129 | elif ev.key in ['up', 'down', 'right', 'left']: |
---|
| 130 | dx,dy = self.dpixel(self.clickx,self.clicky,nudge=ev.control) |
---|
| 131 | if ev.key == 'up': self.clicky += dy |
---|
| 132 | elif ev.key == 'down': self.clicky -= dy |
---|
| 133 | elif ev.key == 'right': self.clickx += dx |
---|
| 134 | else: self.clickx -= dx |
---|
| 135 | self.move(self.clickx,self.clicky,ev) |
---|
| 136 | else: |
---|
| 137 | return False |
---|
| 138 | self.base.update() |
---|
| 139 | return True |
---|
| 140 | |
---|
| 141 | def dpixel(self,x,y,nudge=False): |
---|
| 142 | ''' |
---|
| 143 | Return the step size in data coordinates for a small |
---|
| 144 | step in screen coordinates. If nudge is False (default) |
---|
| 145 | the step size is one pixel. If nudge is True, the step |
---|
| 146 | size is 0.2 pixels. |
---|
| 147 | ''' |
---|
| 148 | ax = self.axes |
---|
| 149 | px,py = ax.transData.inverse_xy_tup((x,y)) |
---|
| 150 | if nudge: |
---|
| 151 | nx,ny = ax.transData.xy_tup((px+0.2,py+0.2)) |
---|
| 152 | else: |
---|
| 153 | nx,ny = ax.transData.xy_tup((px+1.,py+1.)) |
---|
| 154 | dx,dy = nx-x,ny-y |
---|
| 155 | return dx,dy |
---|
| 156 | |
---|