Ignore:
Timestamp:
Mar 5, 2015 2:18:47 PM (10 years ago)
Author:
Mathieu Doucet <doucetm@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
b5de88e
Parents:
b9dbd6b
Message:

pylint fixes and remove old code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/guiframe/local_perspectives/plotting/BaseInteractor.py

    r79492222 r824e488  
    88profile_colors = [rho_color, mu_color, P_color, theta_color] 
    99 
    10 class _BaseInteractor: 
     10class _BaseInteractor(object): 
    1111    """ 
    1212    Share some functions between the interface interactor and various layer 
    1313    interactors. 
    14      
     14 
    1515    Individual interactors need the following functions: 
    16      
     16 
    1717        save(ev)  - save the current state for later restore 
    1818        restore() - restore the old state 
     
    2020        moveend(ev) - end the drag event 
    2121        update() - draw the interactors 
    22          
     22 
    2323    The following are provided by the base class: 
    24      
     24 
    2525        connect_markers(markers) - register callbacks for all markers 
    2626        clear_markers() - remove all items in self.markers 
     
    3131        onDrag(ev) - mouse move: calls move() or restore() 
    3232        onKey(ev) - keyboard move: calls move() or restore() 
    33          
     33 
    3434    Interactor attributes: 
    35      
     35 
    3636        base  - model we are operating on 
    3737        axes  - axes holding the interactor 
    3838        color - color of the interactor in non-active state 
    3939        markers - list of handles for the interactor 
    40          
     40 
    4141    """ 
    4242    def __init__(self, base, axes, color='black'): 
     
    4949        self.clicky = None 
    5050        self.markers = [] 
    51          
     51 
    5252    def clear_markers(self): 
    5353        """ 
     
    6363        """ 
    6464        pass 
    65      
     65 
    6666    def restore(self, ev): 
    6767        """ 
    6868        """ 
    6969        pass 
    70      
     70 
    7171    def move(self, x, y, ev): 
    7272        """ 
    7373        """ 
    7474        pass 
    75      
     75 
    7676    def moveend(self, ev): 
    7777        """ 
     
    8383        Connect markers to callbacks 
    8484        """ 
    85         
     85 
    8686        for h in markers: 
    8787            connect = self.base.connect 
     
    109109        self.base.draw() 
    110110        return True 
    111              
     111 
    112112    def onClick(self, ev): 
    113113        """ 
     
    138138        self.base.update() 
    139139        return True 
    140      
     140 
    141141    def onKey(self, ev): 
    142142        """ 
    143143        Respond to keyboard events.  Arrow keys move the widget.  Escape 
    144144        restores it to the position before the last click. 
    145          
     145 
    146146        Calls move() to update the state.  Calls restore() on escape. 
    147147        """ 
     
    173173        px, py = ax.transData.inverse_xy_tup((x, y)) 
    174174        if nudge: 
    175             nx, ny = ax.transData.xy_tup((px+0.2, py+0.2)) 
     175            nx, ny = ax.transData.xy_tup((px + 0.2, py + 0.2)) 
    176176        else: 
    177             nx, ny = ax.transData.xy_tup((px+1.0, py+1.0)) 
    178         dx, dy = nx-x, ny-y 
     177            nx, ny = ax.transData.xy_tup((px + 1.0, py + 1.0)) 
     178        dx, dy = nx - x, ny - y 
    179179        return dx, dy 
    180180 
Note: See TracChangeset for help on using the changeset viewer.