source: sasview/src/sas/sasgui/guiframe/local_perspectives/plotting/boxSum.py @ d85c194

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since d85c194 was d85c194, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 8 years ago

Remaining modules refactored

  • Property mode set to 100644
File size: 26.7 KB
RevLine 
[51f14603]1"""
[b5de88e]2    Boxsum Class: determine 2 rectangular area to compute
3    the sum of pixel of a Data.
[51f14603]4"""
5import math
6import wx
7from BaseInteractor import _BaseInteractor
[d85c194]8from sas.sasgui.guiframe.events import SlicerParamUpdateEvent
9from sas.sasgui.guiframe.events import EVT_SLICER_PARS
10from sas.sasgui.guiframe.events import StatusEvent
[51f14603]11
12
13class BoxSum(_BaseInteractor):
14    """
[b5de88e]15        Boxsum Class: determine 2 rectangular area to compute
16        the sum of pixel of a Data.
[51f14603]17        Uses PointerInteractor , VerticalDoubleLine,HorizontalDoubleLine.
18        @param zorder:  Artists with lower zorder values are drawn first.
19        @param x_min: the minimum value of the x coordinate
20        @param x_max: the maximum value of the x coordinate
21        @param y_min: the minimum value of the y coordinate
22        @param y_max: the maximum value of the y coordinate
23
24    """
25    def __init__(self, base, axes, color='black', zorder=3, x_min=0.008,
[b5de88e]26                 x_max=0.008, y_min=0.0025, y_max=0.0025):
[51f14603]27        """
28        """
29        _BaseInteractor.__init__(self, base, axes, color=color)
[b5de88e]30        # # class initialization
31        # # list of Boxsmun markers
[51f14603]32        self.markers = []
33        self.axes = axes
[b5de88e]34        # # connect the artist for the motion
[51f14603]35        self.connect = self.base.connect
[b5de88e]36        # # when qmax is reached the selected line is reset the its previous value
[51f14603]37        self.qmax = min(self.base.data2D.xmax, self.base.data2D.xmin)
[b5de88e]38        # # Define the boxsum limits
[51f14603]39        self.xmin = -1 * 0.5 * min(math.fabs(self.base.data2D.xmax),
[b5de88e]40                                   math.fabs(self.base.data2D.xmin))
[51f14603]41        self.ymin = -1 * 0.5 * min(math.fabs(self.base.data2D.xmax),
[b5de88e]42                                   math.fabs(self.base.data2D.xmin))
[51f14603]43        self.xmax = 0.5 * min(math.fabs(self.base.data2D.xmax),
44                              math.fabs(self.base.data2D.xmin))
45        self.ymax = 0.5 * min(math.fabs(self.base.data2D.xmax),
46                              math.fabs(self.base.data2D.xmin))
[b5de88e]47        # # center of the boxSum
[51f14603]48        self.center_x = 0.0002
49        self.center_y = 0.0003
[b5de88e]50        # # Number of points on the plot
[51f14603]51        self.nbins = 20
[b5de88e]52        # # Define initial result the summation
[51f14603]53        self.count = 0
54        self.error = 0
55        self.total = 0
56        self.totalerror = 0
57        self.points = 0
[b5de88e]58        # # Flag to determine if the current figure has moved
59        # # set to False == no motion , set to True== motion
[51f14603]60        self.has_move = False
[b5de88e]61        # # Create Boxsum edges
[51f14603]62        self.horizontal_lines = HorizontalDoubleLine(self,
[b5de88e]63                                                     self.base.subplot,
64                                                     color='blue',
65                                                     zorder=zorder,
66                                                     y=self.ymax,
67                                                     x=self.xmax,
68                                                     center_x=self.center_x,
69                                                     center_y=self.center_y)
[51f14603]70        self.horizontal_lines.qmax = self.qmax
[b5de88e]71
[51f14603]72        self.vertical_lines = VerticalDoubleLine(self,
[b5de88e]73                                                 self.base.subplot,
74                                                 color='black',
75                                                 zorder=zorder,
76                                                 y=self.ymax,
77                                                 x=self.xmax,
78                                                 center_x=self.center_x,
79                                                 center_y=self.center_y)
[51f14603]80        self.vertical_lines.qmax = self.qmax
[b5de88e]81
[51f14603]82        self.center = PointInteractor(self,
[b5de88e]83                                      self.base.subplot, color='grey',
84                                      zorder=zorder,
85                                      center_x=self.center_x,
86                                      center_y=self.center_y)
87        # # Save the name of the slicer panel associate with this slicer
88        self.panel_name = ""
89        # # Update and post slicer parameters
[51f14603]90        self.update()
91        self._post_data()
[b5de88e]92        # # Bind to slice parameter events
[51f14603]93        self.base.Bind(EVT_SLICER_PARS, self._onEVT_SLICER_PARS)
[b5de88e]94
[51f14603]95    def set_panel_name(self, name):
96        """
97            Store the name of the panel associated to this slicer
98            @param name: the name of this panel
99        """
100        self.panel_name = name
[b5de88e]101
[51f14603]102    def _onEVT_SLICER_PARS(self, event):
103        """
104            receive an event containing parameters values to reset the slicer
[b5de88e]105            @param event: event of type SlicerParameterEvent with params as
[51f14603]106            attribute
107        """
[b5de88e]108        # # Post e message to declare what kind of event has being received
[51f14603]109        wx.PostEvent(self.base.parent,
110                     StatusEvent(status="Boxsum._onEVT_SLICER_PARS"))
111        event.Skip()
[b5de88e]112        # # reset the slicer with the values contains the event.params dictionary
[51f14603]113        if event.type == self.__class__.__name__:
114            self.set_params(event.params)
115            self.base.update()
116
117    def set_layer(self, n):
118        """
119        Allow adding plot to the same panel
120        :param n: the number of layer
121        """
122        self.layernum = n
123        self.update()
[b5de88e]124
[51f14603]125    def clear(self):
126        """
127        Clear the slicer and all connected events related to this slicer
128        """
129        self.clear_markers()
130        self.horizontal_lines.clear()
131        self.vertical_lines.clear()
132        self.center.clear()
133        self.base.connect.clearall()
134        self.base.Unbind(EVT_SLICER_PARS)
[b5de88e]135
[51f14603]136    def update(self):
137        """
138        Respond to changes in the model by recalculating the profiles and
139        resetting the widgets.
140        """
[b5de88e]141        # # check if the center point has moved and update the figure accordingly
[51f14603]142        if self.center.has_move:
143            self.center.update()
[b5de88e]144            self.horizontal_lines.update(center=self.center)
145            self.vertical_lines.update(center=self.center)
146        # # check if the horizontal lines have moved and
147        # update the figure accordingly
[51f14603]148        if self.horizontal_lines.has_move:
149            self.horizontal_lines.update()
150            self.vertical_lines.update(y1=self.horizontal_lines.y1,
151                                       y2=self.horizontal_lines.y2,
152                                       height=self.horizontal_lines.half_height)
[b5de88e]153        # # check if the vertical lines have moved and
154        # update the figure accordingly
[51f14603]155        if self.vertical_lines.has_move:
156            self.vertical_lines.update()
157            self.horizontal_lines.update(x1=self.vertical_lines.x1,
158                                         x2=self.vertical_lines.x2,
159                                         width=self.vertical_lines.half_width)
[b5de88e]160
[51f14603]161    def save(self, ev):
162        """
163        Remember the roughness for this layer and the next so that we
164        can restore on Esc.
165        """
166        self.base.freeze_axes()
167        self.horizontal_lines.save(ev)
168        self.vertical_lines.save(ev)
169        self.center.save(ev)
[b5de88e]170
[51f14603]171    def _post_data(self):
172        """
173        Get the limits of the boxsum and compute the sum of the pixel
174        contained in that region and the error on that sum
175        """
[b5de88e]176        # # the region of the summation
177        x_min = self.horizontal_lines.x2
178        x_max = self.horizontal_lines.x1
[51f14603]179        y_min = self.vertical_lines.y2
180        y_max = self.vertical_lines.y1
[b5de88e]181        # #computation of the sum and its error
[b699768]182        from sas.sascalc.dataloader.manipulations import Boxavg
[b5de88e]183        box = Boxavg(x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max)
[51f14603]184        self.count, self.error = box(self.base.data2D)
185        # Dig out number of points summed, SMK & PDB, 04/03/2013
[b699768]186        from sas.sascalc.dataloader.manipulations import Boxsum
[b5de88e]187        boxtotal = Boxsum(x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max)
[51f14603]188        self.total, self.totalerror, self.points = boxtotal(self.base.data2D)
[b5de88e]189
[51f14603]190    def moveend(self, ev):
191        """
192            After a dragging motion this function is called to compute
[b5de88e]193            the error and the sum of pixel of a given data 2D
[51f14603]194        """
195        self.base.thaw_axes()
[b5de88e]196        # # compute error an d sum of data's pixel
[51f14603]197        self._post_data()
[b5de88e]198        # # Create and event ( posted to guiframe)that  set the
199        # #current slicer parameter to a panel of name self.panel_name
[51f14603]200        self.type = self.__class__.__name__
201        params = self.get_params()
202        event = SlicerParamUpdateEvent(type=self.type,
203                                       params=params,
204                                       panel_name=self.panel_name)
205        wx.PostEvent(self.base.parent, event)
[b5de88e]206
[51f14603]207    def restore(self):
208        """
209        Restore the roughness for this layer.
210        """
211        self.horizontal_lines.restore()
212        self.vertical_lines.restore()
213        self.center.restore()
[b5de88e]214
[51f14603]215    def move(self, x, y, ev):
216        """
217        Process move to a new position, making sure that the move is allowed.
218        """
219        pass
[b5de88e]220
[51f14603]221    def set_cursor(self, x, y):
222        """
223        """
224        pass
[b5de88e]225
[51f14603]226    def get_params(self):
227        """
228        Store a copy of values of parameters of the slicer into a dictionary.
229        :return params: the dictionary created
230        """
231        params = {}
232        params["Width"] = math.fabs(self.vertical_lines.half_width) * 2
[b5de88e]233        params["Height"] = math.fabs(self.horizontal_lines.half_height) * 2
[51f14603]234        params["center_x"] = self.center.x
235        params["center_y"] = self.center.y
236        params["num_points"] = self.points
237        params["avg"] = self.count
238        params["avg_error"] = self.error
239        params["sum"] = self.total
240        params["sum_error"] = self.totalerror
241        return params
[b5de88e]242
[51f14603]243    def get_result(self):
244        """
245            return the result of box summation
246        """
247        result = {}
248        result["num_points"] = self.points
249        result["avg"] = self.count
250        result["avg_error"] = self.error
[b5de88e]251        result["sum"] = self.total
252        result["sum_error"] = self.totalerror
[51f14603]253        return result
[b5de88e]254
[51f14603]255    def set_params(self, params):
256        """
[b5de88e]257        Receive a dictionary and reset the slicer with values contained
[51f14603]258        in the values of the dictionary.
259        :param params: a dictionary containing name of slicer parameters and values the user assigned to the slicer.
260        """
[b5de88e]261        x_max = math.fabs(params["Width"]) / 2
262        y_max = math.fabs(params["Height"]) / 2
263
264        self.center_x = params["center_x"]
[51f14603]265        self.center_y = params["center_y"]
[b5de88e]266        # update the slicer given values of params
[51f14603]267        self.center.update(center_x=self.center_x, center_y=self.center_y)
268        self.horizontal_lines.update(center=self.center,
269                                     width=x_max, height=y_max)
270        self.vertical_lines.update(center=self.center,
[b5de88e]271                                   width=x_max, height=y_max)
272        # compute the new error and sum given values of params
[51f14603]273        self._post_data()
[b5de88e]274
[51f14603]275    def freeze_axes(self):
276        """
277        """
278        self.base.freeze_axes()
[b5de88e]279
[51f14603]280    def thaw_axes(self):
281        """
282        """
283        self.base.thaw_axes()
284
285    def draw(self):
286        """
287        """
288        self.base.draw()
[b5de88e]289
290
291
[51f14603]292class PointInteractor(_BaseInteractor):
293    """
294    Draw a point that can be dragged with the marker.
[b5de88e]295    this class controls the motion the center of the BoxSum
[51f14603]296    """
297    def __init__(self, base, axes, color='black', zorder=5, center_x=0.0,
298                 center_y=0.0):
299        """
300        """
301        _BaseInteractor.__init__(self, base, axes, color=color)
[b5de88e]302        # # Initialization the class
[51f14603]303        self.markers = []
304        self.axes = axes
305        # center coordinates
306        self.x = center_x
307        self.y = center_y
[b5de88e]308        # # saved value of the center coordinates
[51f14603]309        self.save_x = center_x
310        self.save_y = center_y
[b5de88e]311        # # Create a marker
312        self.center_marker = self.axes.plot([self.x], [self.y], linestyle='',
313                                            marker='s', markersize=10,
314                                            color=self.color, alpha=0.6,
315                                            pickradius=5, label="pick",
316                                            zorder=zorder,
317                                            visible=True)[0]
318        # # Draw a point
[51f14603]319        self.center = self.axes.plot([self.x], [self.y],
[b5de88e]320                                     linestyle='-', marker='',
321                                     color=self.color,
322                                     visible=True)[0]
323        # # Flag to determine the motion this point
324        self.has_move = False
325        # # connecting the marker to allow them to move
[51f14603]326        self.connect_markers([self.center_marker])
[b5de88e]327        # # Update the figure
[51f14603]328        self.update()
[b5de88e]329
[51f14603]330    def set_layer(self, n):
331        """
332            Allow adding plot to the same panel
333            @param n: the number of layer
334        """
335        self.layernum = n
336        self.update()
[b5de88e]337
[51f14603]338    def clear(self):
339        """
340            Clear this figure and its markers
341        """
342        self.clear_markers()
343        try:
344            self.center.remove()
345            self.center_marker.remove()
346        except:
347            # Old version of matplotlib
348            for item in range(len(self.axes.lines)):
349                del self.axes.lines[0]
[b5de88e]350
351    def update(self, center_x=None, center_y=None):
[51f14603]352        """
353            Draw the new roughness on the graph.
354        """
355        if center_x != None:
356            self.x = center_x
357        if center_y != None:
358            self.y = center_y
359        self.center_marker.set(xdata=[self.x], ydata=[self.y])
360        self.center.set(xdata=[self.x], ydata=[self.y])
[b5de88e]361
[51f14603]362    def save(self, ev):
363        """
364        Remember the roughness for this layer and the next so that we
365        can restore on Esc.
366        """
367        self.save_x = self.x
368        self.save_y = self.y
369        self.base.freeze_axes()
[b5de88e]370
[51f14603]371    def moveend(self, ev):
372        """
373        """
[b5de88e]374        self.has_move = False
[51f14603]375        self.base.moveend(ev)
[b5de88e]376
[51f14603]377    def restore(self):
378        """
379        Restore the roughness for this layer.
380        """
381        self.y = self.save_y
382        self.x = self.save_x
[b5de88e]383
[51f14603]384    def move(self, x, y, ev):
385        """
386        Process move to a new position, making sure that the move is allowed.
387        """
388        self.x = x
389        self.y = y
390        self.has_move = True
391        self.base.base.update()
[b5de88e]392
[51f14603]393    def set_cursor(self, x, y):
394        """
395        """
396        self.move(x, y, None)
397        self.update()
[b5de88e]398
[51f14603]399class VerticalDoubleLine(_BaseInteractor):
400    """
[b5de88e]401         Draw 2 vertical lines moving in opposite direction and centered on
[51f14603]402         a point (PointInteractor)
403    """
[b5de88e]404    def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5,
[51f14603]405                 center_x=0.0, center_y=0.0):
406        """
407        """
408        _BaseInteractor.__init__(self, base, axes, color=color)
[b5de88e]409        # # Initialization the class
[51f14603]410        self.markers = []
411        self.axes = axes
[b5de88e]412        # # Center coordinates
[51f14603]413        self.center_x = center_x
414        self.center_y = center_y
[b5de88e]415        # # defined end points vertical lignes and their saved values
[51f14603]416        self.y1 = y + self.center_y
[b5de88e]417        self.save_y1 = self.y1
418
[51f14603]419        delta = self.y1 - self.center_y
420        self.y2 = self.center_y - delta
421        self.save_y2 = self.y2
[b5de88e]422
[51f14603]423        self.x1 = x + self.center_x
424        self.save_x1 = self.x1
[b5de88e]425
[51f14603]426        delta = self.x1 - self.center_x
427        self.x2 = self.center_x - delta
428        self.save_x2 = self.x2
[b5de88e]429        # # save the color of the line
[51f14603]430        self.color = color
[b5de88e]431        # # the height of the rectangle
[51f14603]432        self.half_height = math.fabs(y)
433        self.save_half_height = math.fabs(y)
[b5de88e]434        # # the with of the rectangle
435        self.half_width = math.fabs(self.x1 - self.x2) / 2
436        self.save_half_width = math.fabs(self.x1 - self.x2) / 2
437        # # Create marker
438        self.right_marker = self.axes.plot([self.x1], [0], linestyle='',
439                                           marker='s', markersize=10,
440                                           color=self.color, alpha=0.6,
441                                           pickradius=5, label="pick",
442                                           zorder=zorder, visible=True)[0]
443
444        # # define the left and right lines of the rectangle
[51f14603]445        self.right_line = self.axes.plot([self.x1, self.x1], [self.y1, self.y2],
[b5de88e]446                                         linestyle='-', marker='',
447                                         color=self.color, visible=True)[0]
[51f14603]448        self.left_line = self.axes.plot([self.x2, self.x2], [self.y1, self.y2],
[b5de88e]449                                        linestyle='-', marker='',
450                                        color=self.color, visible=True)[0]
451        # # Flag to determine if the lines have moved
452        self.has_move = False
453        # # connection the marker and draw the pictures
[51f14603]454        self.connect_markers([self.right_marker])
455        self.update()
456
457    def set_layer(self, n):
458        """
459        Allow adding plot to the same panel
460        :param n: the number of layer
461        """
462        self.layernum = n
463        self.update()
[b5de88e]464
[51f14603]465    def clear(self):
466        """
467        Clear this slicer  and its markers
468        """
469        self.clear_markers()
470        try:
471            self.right_marker.remove()
472            self.right_line.remove()
473            self.left_line.remove()
474        except:
475            # Old version of matplotlib
476            for item in range(len(self.axes.lines)):
477                del self.axes.lines[0]
[b5de88e]478
479    def update(self, x1=None, x2=None, y1=None, y2=None, width=None,
480               height=None, center=None):
[51f14603]481        """
482        Draw the new roughness on the graph.
483        :param x1: new maximum value of x coordinates
484        :param x2: new minimum value of x coordinates
485        :param y1: new maximum value of y coordinates
486        :param y2: new minimum value of y coordinates
487        :param width: is the width of the new rectangle
488        :param height: is the height of the new rectangle
489        :param center: provided x, y  coordinates of the center point
490        """
[b5de88e]491        # # save the new height, witdh of the rectangle if given as a param
[51f14603]492        if width != None:
493            self.half_width = width
494        if height != None:
495            self.half_height = height
[b5de88e]496        # # If new  center coordinates are given draw the rectangle
497        # #given these value
[51f14603]498        if center != None:
499            self.center_x = center.x
500            self.center_y = center.y
501            self.x1 = self.half_width + self.center_x
[b5de88e]502            self.x2 = -self.half_width + self.center_x
[51f14603]503            self.y1 = self.half_height + self.center_y
[b5de88e]504            self.y2 = -self.half_height + self.center_y
505
[51f14603]506            self.right_marker.set(xdata=[self.x1], ydata=[self.center_y])
[b5de88e]507            self.right_line.set(xdata=[self.x1, self.x1],
[51f14603]508                                ydata=[self.y1, self.y2])
509            self.left_line.set(xdata=[self.x2, self.x2],
510                               ydata=[self.y1, self.y2])
[b5de88e]511            return
512        # # if x1, y1, y2, y3 are given draw the rectangle with this value
513        if x1 != None:
[51f14603]514            self.x1 = x1
[b5de88e]515        if x2 != None:
[51f14603]516            self.x2 = x2
[b5de88e]517        if y1 != None:
[51f14603]518            self.y1 = y1
[b5de88e]519        if y2 != None:
[51f14603]520            self.y2 = y2
[b5de88e]521        # # Draw 2 vertical lines and a marker
[51f14603]522        self.right_marker.set(xdata=[self.x1], ydata=[self.center_y])
523        self.right_line.set(xdata=[self.x1, self.x1], ydata=[self.y1, self.y2])
524        self.left_line.set(xdata=[self.x2, self.x2], ydata=[self.y1, self.y2])
[b5de88e]525
[51f14603]526    def save(self, ev):
527        """
528        Remember the roughness for this layer and the next so that we
529        can restore on Esc.
530        """
531        self.save_x2 = self.x2
532        self.save_y2 = self.y2
533        self.save_x1 = self.x1
534        self.save_y1 = self.y1
535        self.save_half_height = self.half_height
536        self.save_half_width = self.half_width
537        self.base.freeze_axes()
538
539    def moveend(self, ev):
540        """
541            After a dragging motion reset the flag self.has_move to False
542        """
543        self.has_move = False
544        self.base.moveend(ev)
[b5de88e]545
[51f14603]546    def restore(self):
547        """
548        Restore the roughness for this layer.
549        """
550        self.y2 = self.save_y2
551        self.x2 = self.save_x2
552        self.y1 = self.save_y1
553        self.x1 = self.save_x1
554        self.half_height = self.save_half_height
555        self.half_width = self.save_half_width
[b5de88e]556
[51f14603]557    def move(self, x, y, ev):
558        """
559        Process move to a new position, making sure that the move is allowed.
560        """
561        self.x1 = x
562        delta = self.x1 - self.center_x
563        self.x2 = self.center_x - delta
[b5de88e]564        self.half_width = math.fabs(self.x1 - self.x2) / 2
[51f14603]565        self.has_move = True
566        self.base.base.update()
[b5de88e]567
[51f14603]568    def set_cursor(self, x, y):
569        """
[b5de88e]570            Update the figure given x and y
[51f14603]571        """
572        self.move(x, y, None)
573        self.update()
[b5de88e]574
[51f14603]575class HorizontalDoubleLine(_BaseInteractor):
576    """
577         Select an annulus through a 2D plot
578    """
579    def __init__(self, base, axes, color='black', zorder=5, x=0.5, y=0.5,
580                 center_x=0.0, center_y=0.0):
[b5de88e]581
[51f14603]582        _BaseInteractor.__init__(self, base, axes, color=color)
[b5de88e]583        # # Initialization the class
[51f14603]584        self.markers = []
585        self.axes = axes
[b5de88e]586        # # Center coordinates
[51f14603]587        self.center_x = center_x
588        self.center_y = center_y
589        self.y1 = y + self.center_y
590        self.save_y1 = self.y1
591        delta = self.y1 - self.center_y
592        self.y2 = self.center_y - delta
593        self.save_y2 = self.y2
594        self.x1 = x + self.center_x
595        self.save_x1 = self.x1
596        delta = self.x1 - self.center_x
597        self.x2 = self.center_x - delta
598        self.save_x2 = self.x2
599        self.color = color
[b5de88e]600        self.half_height = math.fabs(y)
[51f14603]601        self.save_half_height = math.fabs(y)
602        self.half_width = math.fabs(x)
603        self.save_half_width = math.fabs(x)
[b5de88e]604        self.top_marker = self.axes.plot([0], [self.y1], linestyle='',
605                                         marker='s', markersize=10,
606                                         color=self.color, alpha=0.6,
607                                         pickradius=5, label="pick",
608                                         zorder=zorder, visible=True)[0]
609
[51f14603]610        # Define 2 horizotnal lines
611        self.top_line = self.axes.plot([self.x1, -self.x1], [self.y1, self.y1],
[b5de88e]612                                       linestyle='-', marker='',
613                                       color=self.color, visible=True)[0]
614        self.bottom_line = self.axes.plot([self.x1, -self.x1],
[51f14603]615                                          [self.y2, self.y2],
[b5de88e]616                                          linestyle='-', marker='',
617                                          color=self.color, visible=True)[0]
618        # # Flag to determine if the lines have moved
619        self.has_move = False
620        # # connection the marker and draw the pictures
[51f14603]621        self.connect_markers([self.top_marker])
622        self.update()
623
624    def set_layer(self, n):
625        """
626            Allow adding plot to the same panel
627            @param n: the number of layer
628        """
629        self.layernum = n
630        self.update()
[b5de88e]631
[51f14603]632    def clear(self):
633        """
634            Clear this figure and its markers
635        """
636        self.clear_markers()
637        try:
638            self.top_marker.remove()
639            self.bottom_line.remove()
640            self.top_line.remove()
641        except:
642            # Old version of matplotlib
643            for item in range(len(self.axes.lines)):
644                del self.axes.lines[0]
[b5de88e]645
[51f14603]646    def update(self, x1=None, x2=None, y1=None, y2=None,
647               width=None, height=None, center=None):
648        """
649        Draw the new roughness on the graph.
650        :param x1: new maximum value of x coordinates
651        :param x2: new minimum value of x coordinates
652        :param y1: new maximum value of y coordinates
653        :param y2: new minimum value of y coordinates
654        :param width: is the width of the new rectangle
655        :param height: is the height of the new rectangle
656        :param center: provided x, y  coordinates of the center point
657        """
[b5de88e]658        # # save the new height, witdh of the rectangle if given as a param
[51f14603]659        if width != None:
660            self.half_width = width
[b5de88e]661        if height != None:
[51f14603]662            self.half_height = height
[b5de88e]663        # # If new  center coordinates are given draw the rectangle
664        # #given these value
[51f14603]665        if center != None:
666            self.center_x = center.x
667            self.center_y = center.y
668            self.x1 = self.half_width + self.center_x
669            self.x2 = -self.half_width + self.center_x
[b5de88e]670
[51f14603]671            self.y1 = self.half_height + self.center_y
672            self.y2 = -self.half_height + self.center_y
[b5de88e]673
[51f14603]674            self.top_marker.set(xdata=[self.center_x], ydata=[self.y1])
675            self.top_line.set(xdata=[self.x1, self.x2],
676                              ydata=[self.y1, self.y1])
677            self.bottom_line.set(xdata=[self.x1, self.x2],
678                                 ydata=[self.y2, self.y2])
[b5de88e]679            return
680        # # if x1, y1, y2, y3 are given draw the rectangle with this value
681        if x1 != None:
[51f14603]682            self.x1 = x1
[b5de88e]683        if x2 != None:
[51f14603]684            self.x2 = x2
[b5de88e]685        if y1 != None:
[51f14603]686            self.y1 = y1
[b5de88e]687        if y2 != None:
[51f14603]688            self.y2 = y2
[b5de88e]689        # # Draw 2 vertical lines and a marker
[51f14603]690        self.top_marker.set(xdata=[self.center_x], ydata=[self.y1])
691        self.top_line.set(xdata=[self.x1, self.x2], ydata=[self.y1, self.y1])
692        self.bottom_line.set(xdata=[self.x1, self.x2], ydata=[self.y2, self.y2])
[b5de88e]693
[51f14603]694    def save(self, ev):
695        """
696        Remember the roughness for this layer and the next so that we
697        can restore on Esc.
698        """
699        self.save_x2 = self.x2
700        self.save_y2 = self.y2
701        self.save_x1 = self.x1
702        self.save_y1 = self.y1
703        self.save_half_height = self.half_height
[b5de88e]704        self.save_half_width = self.half_width
[51f14603]705        self.base.freeze_axes()
[b5de88e]706
[51f14603]707    def moveend(self, ev):
708        """
709        After a dragging motion reset the flag self.has_move to False
710        """
711        self.has_move = False
712        self.base.moveend(ev)
[b5de88e]713
[51f14603]714    def restore(self):
715        """
716        Restore the roughness for this layer.
717        """
718        self.y2 = self.save_y2
719        self.x2 = self.save_x2
720        self.y1 = self.save_y1
721        self.x1 = self.save_x1
722        self.half_height = self.save_half_height
723        self.half_width = self.save_half_width
[b5de88e]724
[51f14603]725    def move(self, x, y, ev):
726        """
727        Process move to a new position, making sure that the move is allowed.
728        """
729        self.y1 = y
730        delta = self.y1 - self.center_y
[b5de88e]731        self.y2 = self.center_y - delta
[51f14603]732        self.half_height = math.fabs(self.y1) - self.center_y
733        self.has_move = True
734        self.base.base.update()
[b5de88e]735
[51f14603]736    def set_cursor(self, x, y):
737        """
[b5de88e]738            Update the figure given x and y
[51f14603]739        """
740        self.move(x, y, None)
741        self.update()
Note: See TracBrowser for help on using the repository browser.